@charset "UTF-8";
/*
Version: 3.5.2 Timestamp: Sat Nov  1 14:43:36 EDT 2014
*/
@import url("//fonts.googleapis.com/css?family=Lato:300,400,700,900&amp;subset=latin-ext");
.select2-container {
  margin: 0;
  position: relative;
  display: inline-block;
  /* inline-block for ie7 */
  zoom: 1;
  *display: inline;
  vertical-align: middle;
}

.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.
    More Info : http://www.quirksmode.org/css/box.html
  */
  -webkit-box-sizing: border-box; /* webkit */
  -moz-box-sizing: border-box; /* firefox */
  box-sizing: border-box; /* css3 */
}

.select2-container .select2-choice {
  display: block;
  height: 26px;
  padding: 0 0 0 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid #aaa;
  white-space: nowrap;
  line-height: 26px;
  color: #444;
  text-decoration: none;
  border-radius: 4px;
  background-clip: padding-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #fff;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
  background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
  background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
  background-image: linear-gradient(to top, #eee 0%, #fff 50%);
}

html[dir=rtl] .select2-container .select2-choice {
  padding: 0 8px 0 0;
}

.select2-container.select2-drop-above .select2-choice {
  border-bottom-color: #aaa;
  border-radius: 0 0 4px 4px;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
  background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
  background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
  background-image: linear-gradient(to bottom, #eee 0%, #fff 90%);
}

.select2-container.select2-allowclear .select2-choice .select2-chosen {
  margin-right: 42px;
}

.select2-container .select2-choice > .select2-chosen {
  margin-right: 26px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  float: none;
  width: auto;
}

html[dir=rtl] .select2-container .select2-choice > .select2-chosen {
  margin-left: 26px;
  margin-right: 0;
}

.select2-container .select2-choice abbr {
  display: none;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 24px;
  top: 8px;
  font-size: 1px;
  text-decoration: none;
  border: 0;
  background: url("select2.png") right top no-repeat;
  cursor: pointer;
  outline: 0;
}

.select2-container.select2-allowclear .select2-choice abbr {
  display: inline-block;
}

.select2-container .select2-choice abbr:hover {
  background-position: right -11px;
  cursor: pointer;
}

.select2-drop-mask {
  border: 0;
  margin: 0;
  padding: 0;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 9998;
  /* styles required for IE to work */
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-drop {
  width: 100%;
  margin-top: -1px;
  position: absolute;
  z-index: 9999;
  top: 100%;
  background: #fff;
  color: #000;
  border: 1px solid #aaa;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}

.select2-drop.select2-drop-above {
  margin-top: 1px;
  border-top: 1px solid #aaa;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
}

.select2-drop-active {
  border: 1px solid #5897fb;
  border-top: none;
}

.select2-drop.select2-drop-above.select2-drop-active {
  border-top: 1px solid #5897fb;
}

.select2-drop-auto-width {
  border-top: 1px solid #aaa;
  width: auto;
}

.select2-drop-auto-width .select2-search {
  padding-top: 4px;
}

.select2-container .select2-choice .select2-arrow {
  display: inline-block;
  width: 18px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border-left: 1px solid #aaa;
  border-radius: 0 4px 4px 0;
  background-clip: padding-box;
  background: #ccc;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
  background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
  background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
  background-image: linear-gradient(to top, #ccc 0%, #eee 60%);
}

html[dir=rtl] .select2-container .select2-choice .select2-arrow {
  left: 0;
  right: auto;
  border-left: none;
  border-right: 1px solid #aaa;
  border-radius: 4px 0 0 4px;
}

.select2-container .select2-choice .select2-arrow b {
  display: block;
  width: 100%;
  height: 100%;
  background: url("select2.png") no-repeat 0 1px;
}

html[dir=rtl] .select2-container .select2-choice .select2-arrow b {
  background-position: 2px 1px;
}

.select2-search {
  display: inline-block;
  width: 100%;
  min-height: 26px;
  margin: 0;
  padding-left: 4px;
  padding-right: 4px;
  position: relative;
  z-index: 10000;
  white-space: nowrap;
}

.select2-search input {
  width: 100%;
  height: auto !important;
  min-height: 26px;
  padding: 4px 20px 4px 5px;
  margin: 0;
  outline: 0;
  font-family: sans-serif;
  font-size: 1em;
  border: 1px solid #aaa;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #fff url("select2.png") no-repeat 100% -22px;
  background: url("select2.png") no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
  background: url("select2.png") no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url("select2.png") no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url("select2.png") no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

html[dir=rtl] .select2-search input {
  padding: 4px 5px 4px 20px;
  background: #fff url("select2.png") no-repeat -37px -22px;
  background: url("select2.png") no-repeat -37px -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
  background: url("select2.png") no-repeat -37px -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url("select2.png") no-repeat -37px -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url("select2.png") no-repeat -37px -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-drop.select2-drop-above .select2-search input {
  margin-top: 4px;
}

.select2-search input.select2-active {
  background: #fff url("select2-spinner.gif") no-repeat 100%;
  background: url("select2-spinner.gif") no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
  background: url("select2-spinner.gif") no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url("select2-spinner.gif") no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url("select2-spinner.gif") no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

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

.select2-dropdown-open .select2-choice {
  border-bottom-color: transparent;
  -webkit-box-shadow: 0 1px 0 #fff inset;
  box-shadow: 0 1px 0 #fff inset;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #eee;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee));
  background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
  background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
  background-image: linear-gradient(to top, #fff 0%, #eee 50%);
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
  border: 1px solid #5897fb;
  border-top-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee));
  background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
  background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
}

.select2-dropdown-open .select2-choice .select2-arrow {
  background: transparent;
  border-left: none;
  filter: none;
}

html[dir=rtl] .select2-dropdown-open .select2-choice .select2-arrow {
  border-right: none;
}

.select2-dropdown-open .select2-choice .select2-arrow b {
  background-position: -18px 1px;
}

html[dir=rtl] .select2-dropdown-open .select2-choice .select2-arrow b {
  background-position: -16px 1px;
}

.select2-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* results */
.select2-results {
  max-height: 200px;
  padding: 0 0 0 4px;
  margin: 4px 4px 4px 0;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html[dir=rtl] .select2-results {
  padding: 0 4px 0 0;
  margin: 4px 0 4px 4px;
}

.select2-results ul.select2-result-sub {
  margin: 0;
  padding-left: 0;
}

.select2-results li {
  list-style: none;
  display: list-item;
  background-image: none;
}

.select2-results li.select2-result-with-children > .select2-result-label {
  font-weight: bold;
}

.select2-results .select2-result-label {
  padding: 3px 7px 4px;
  margin: 0;
  cursor: pointer;
  min-height: 1em;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.select2-results-dept-1 .select2-result-label {
  padding-left: 20px;
}

.select2-results-dept-2 .select2-result-label {
  padding-left: 40px;
}

.select2-results-dept-3 .select2-result-label {
  padding-left: 60px;
}

.select2-results-dept-4 .select2-result-label {
  padding-left: 80px;
}

.select2-results-dept-5 .select2-result-label {
  padding-left: 100px;
}

.select2-results-dept-6 .select2-result-label {
  padding-left: 110px;
}

.select2-results-dept-7 .select2-result-label {
  padding-left: 120px;
}

.select2-results .select2-highlighted {
  background: #3875d7;
  color: #fff;
}

.select2-results li em {
  background: #feffde;
  font-style: normal;
}

.select2-results .select2-highlighted em {
  background: transparent;
}

.select2-results .select2-highlighted ul {
  background: #fff;
  color: #000;
}

.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-ajax-error,
.select2-results .select2-selection-limit {
  background: #f4f4f4;
  display: list-item;
  padding-left: 5px;
}

/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
  color: #666;
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}

.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}

.select2-results .select2-selected {
  display: none;
}

.select2-more-results.select2-active {
  background: #f4f4f4 url("select2-spinner.gif") no-repeat 100%;
}

.select2-results .select2-ajax-error {
  background: rgba(255, 50, 50, 0.2);
}

.select2-more-results {
  background: #f4f4f4;
  display: list-item;
}

/* disabled styles */
.select2-container.select2-container-disabled .select2-choice {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default;
}

.select2-container.select2-container-disabled .select2-choice .select2-arrow {
  background-color: #f4f4f4;
  background-image: none;
  border-left: 0;
}

.select2-container.select2-container-disabled .select2-choice abbr {
  display: none;
}

/* multiselect */
.select2-container-multi .select2-choices {
  height: auto !important;
  height: 1%;
  margin: 0;
  padding: 0 5px 0 0;
  position: relative;
  border: 1px solid #aaa;
  cursor: text;
  overflow: hidden;
  background-color: #fff;
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
  background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
  background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
  background-image: linear-gradient(to bottom, #eee 1%, #fff 15%);
}

html[dir=rtl] .select2-container-multi .select2-choices {
  padding: 0 0 0 5px;
}

.select2-locked {
  padding: 3px 5px 3px 5px !important;
}

.select2-container-multi .select2-choices {
  min-height: 26px;
}

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

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

html[dir=rtl] .select2-container-multi .select2-choices li {
  float: right;
}

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

.select2-container-multi .select2-choices .select2-search-field input {
  padding: 5px;
  margin: 1px 0;
  font-family: sans-serif;
  font-size: 100%;
  color: #666;
  outline: 0;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent !important;
}

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
  background: #fff url("select2-spinner.gif") no-repeat 100% !important;
}

.select2-default {
  color: #999 !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
  padding: 3px 5px 3px 18px;
  margin: 3px 0 3px 5px;
  position: relative;
  line-height: 13px;
  color: #333;
  cursor: default;
  border: 1px solid #aaaaaa;
  border-radius: 3px;
  -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);
  background-clip: padding-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #e4e4e4;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
  background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: linear-gradient(to bottom, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}

html[dir=rtl] .select2-container-multi .select2-choices .select2-search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 18px 3px 5px;
}

.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
  cursor: default;
}

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

.select2-search-choice-close {
  display: block;
  width: 12px;
  height: 13px;
  position: absolute;
  right: 3px;
  top: 4px;
  font-size: 1px;
  outline: none;
  background: url("select2.png") right top no-repeat;
}

html[dir=rtl] .select2-search-choice-close {
  right: auto;
  left: 3px;
}

.select2-container-multi .select2-search-choice-close {
  left: 3px;
}

html[dir=rtl] .select2-container-multi .select2-search-choice-close {
  left: auto;
  right: 2px;
}

.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px;
}

.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
  background-position: right -11px;
}

/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
  padding: 3px 5px 3px 5px;
  border: 1px solid #ddd;
  background-image: none;
  background-color: #f4f4f4;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
  display: none;
  background: none;
}

/* end multiselect */
.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
  text-decoration: underline;
}

.select2-offscreen, .select2-offscreen:focus {
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  outline: 0 !important;
  left: 0px !important;
  top: 0px !important;
}

.select2-display-none {
  display: none;
}

.select2-measure-scrollbar {
  position: absolute;
  top: -10000px;
  left: -10000px;
  width: 100px;
  height: 100px;
  overflow: scroll;
}

/* Retina-ize icons */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx) {
  .select2-search input,
  .select2-search-choice-close,
  .select2-container .select2-choice abbr,
  .select2-container .select2-choice .select2-arrow b {
    background-image: url("select2x2.png") !important;
    background-repeat: no-repeat !important;
    background-size: 60px 40px !important;
  }
  .select2-search input {
    background-position: 100% -21px !important;
  }
}
@keyframes passing-through {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
  }
  20% {
    transform: scale(1);
  }
}
.dropzone, .dropzone * {
  box-sizing: border-box;
}

.dropzone {
  min-height: 150px;
  border: 1px solid rgba(0, 0, 0, 0.8);
  border-radius: 5px;
  padding: 20px 20px;
}

.dropzone.dz-clickable {
  cursor: pointer;
}

.dropzone.dz-clickable * {
  cursor: default;
}

.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}

.dropzone.dz-started .dz-message {
  display: none;
}

.dropzone.dz-drag-hover {
  border-style: solid;
}

.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}

.dropzone .dz-message {
  text-align: center;
  margin: 3em 0;
}

.dropzone .dz-message .dz-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}

.dropzone .dz-preview:hover {
  z-index: 1000;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(to bottom, #eee, #ddd);
}

.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}

.dropzone .dz-preview.dz-image-preview {
  background: #fff;
}

.dropzone .dz-preview.dz-image-preview .dz-details {
  transition: opacity 0.2s linear;
}

.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}

.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}

.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}

.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}

.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}

.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}

.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}

.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}

.dropzone .dz-preview:hover .dz-image img {
  transform: scale(1.05, 1.05);
  filter: blur(8px);
}

.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}

.dropzone .dz-preview .dz-image img {
  display: block;
}

.dropzone .dz-preview.dz-success .dz-success-mark {
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
}

.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
  fill: #fff;
}

.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  transition: all 0.2s linear;
}

.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  transition: opacity 0.4s ease-in;
}

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  animation: pulse 6s ease infinite;
}

.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 20px;
  top: 50%;
  margin-top: -10px;
  left: 15%;
  right: 15%;
  border: 3px solid rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  overflow: hidden;
}

.dropzone .dz-preview .dz-progress .dz-upload {
  background: #fff;
  display: block;
  position: relative;
  height: 100%;
  width: 0;
  transition: width 300ms ease-in-out;
  border-radius: 17px;
}

.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}

.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #b10606;
  padding: 0.5em 1em;
  color: #fff;
}

.dropzone .dz-preview .dz-error-message:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #b10606;
} 
/**
 * selectize.default.css (v0.12.1) - Default Theme
 * Copyright (c) 2013–2015 Brian Reavis & contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 * @author Brian Reavis <brian@thirdroute.com>
 */
.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
  visibility: visible !important;
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 none !important;
  -webkit-box-shadow: inset 0 0 12px 4px #ffffff;
  box-shadow: inset 0 0 12px 4px #ffffff;
}

.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
  content: "!";
  visibility: hidden;
}

.selectize-control.plugin-drag_drop .ui-sortable-helper {
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.selectize-dropdown-header {
  position: relative;
  padding: 5px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: #f8f8f8;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}

.selectize-dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}

.selectize-dropdown-header-close:hover {
  color: #000000;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}

.selectize-control.plugin-remove_button [data-value] {
  position: relative;
  padding-right: 24px !important;
}

.selectize-control.plugin-remove_button [data-value] .remove {
  z-index: 1;
  /* fixes ie bug (see #392) */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 17px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 2px 0 0 0;
  border-left: 1px solid #0073bb;
  -webkit-border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  border-radius: 0 2px 2px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.selectize-control.plugin-remove_button [data-value] .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}

.selectize-control.plugin-remove_button [data-value].active .remove {
  border-left-color: #00578d;
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
  background: none;
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove {
  border-left-color: #aaaaaa;
}

.selectize-control {
  position: relative;
}

.selectize-dropdown,
.selectize-input,
.selectize-input input {
  color: #303030;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px;
  -webkit-font-smoothing: inherit;
}

.selectize-input,
.selectize-control.single .selectize-input.input-active {
  background: #ffffff;
  cursor: text;
  display: inline-block;
}

.selectize-input {
  border: 1px solid #d0d0d0;
  padding: 8px 8px;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.selectize-control.multi .selectize-input.has-items {
  padding: 5px 8px 2px;
}

.selectize-input.full {
  background-color: #ffffff;
}

.selectize-input.disabled,
.selectize-input.disabled * {
  cursor: default !important;
}

.selectize-input.focus {
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}

.selectize-input.dropdown-active {
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
}

.selectize-input > * {
  vertical-align: baseline;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.selectize-control.multi .selectize-input > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
  background: #1da7ee;
  color: #ffffff;
  border: 1px solid #0073bb;
}

.selectize-control.multi .selectize-input > div.active {
  background: #92c836;
  color: #ffffff;
  border: 1px solid #00578d;
}

.selectize-control.multi .selectize-input.disabled > div,
.selectize-control.multi .selectize-input.disabled > div.active {
  color: #ffffff;
  background: #d2d2d2;
  border: 1px solid #aaaaaa;
}

.selectize-input > input {
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 1px !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.selectize-input > input::-ms-clear {
  display: none;
}

.selectize-input > input:focus {
  outline: none !important;
}

.selectize-input::after {
  content: " ";
  display: block;
  clear: left;
}

.selectize-input.dropdown-active::before {
  content: " ";
  display: block;
  position: absolute;
  background: #f0f0f0;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
}

.selectize-dropdown {
  position: absolute;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #ffffff;
  margin: -1px 0 0 0;
  border-top: 0 none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
}

.selectize-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}

.selectize-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}

.selectize-dropdown [data-selectable],
.selectize-dropdown .optgroup-header {
  padding: 5px 8px;
}

.selectize-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}

.selectize-dropdown .optgroup-header {
  color: #303030;
  background: #ffffff;
  cursor: default;
}

.selectize-dropdown .active {
  background-color: #f5fafd;
  color: #495c68;
}

.selectize-dropdown .active.create {
  color: #495c68;
}

.selectize-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}

.selectize-dropdown-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
}

.selectize-control.single .selectize-input,
.selectize-control.single .selectize-input input {
  cursor: pointer;
}

.selectize-control.single .selectize-input.input-active,
.selectize-control.single .selectize-input.input-active input {
  cursor: text;
}

.selectize-control.single .selectize-input:after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #808080 transparent transparent transparent;
}

.selectize-control.single .selectize-input.dropdown-active:after {
  margin-top: -4px;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #808080 transparent;
}

.selectize-control.rtl.single .selectize-input:after {
  left: 15px;
  right: auto;
}

.selectize-control.rtl .selectize-input > input {
  margin: 0 4px 0 -2px !important;
}

.selectize-control .selectize-input.disabled {
  opacity: 0.5;
  background-color: #fafafa;
}

.selectize-control.multi .selectize-input.has-items {
  padding-left: 5px;
  padding-right: 5px;
}

.selectize-control.multi .selectize-input.disabled [data-value] {
  color: #999;
  text-shadow: none;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.selectize-control.multi .selectize-input.disabled [data-value],
.selectize-control.multi .selectize-input.disabled [data-value] .remove {
  border-color: #e6e6e6;
}

.selectize-control.multi .selectize-input.disabled [data-value] .remove {
  background: none;
}

.selectize-control.multi .selectize-input [data-value] {
  text-shadow: 0 1px 0 rgba(0, 51, 83, 0.3);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #1b9dec;
  background-image: -moz-linear-gradient(top, #1da7ee, #178ee9);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#1da7ee), to(#178ee9));
  background-image: -webkit-linear-gradient(top, #1da7ee, #178ee9);
  background-image: -o-linear-gradient(top, #1da7ee, #178ee9);
  background-image: linear-gradient(to bottom, #1da7ee, #178ee9);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff1da7ee', endColorstr='#ff178ee9', GradientType=0);
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.03);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.03);
}

.selectize-control.multi .selectize-input [data-value].active {
  background-color: #0085d4;
  background-image: -moz-linear-gradient(top, #008fd8, #0075cf);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#008fd8), to(#0075cf));
  background-image: -webkit-linear-gradient(top, #008fd8, #0075cf);
  background-image: -o-linear-gradient(top, #008fd8, #0075cf);
  background-image: linear-gradient(to bottom, #008fd8, #0075cf);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff008fd8', endColorstr='#ff0075cf', GradientType=0);
}

.selectize-control.single .selectize-input {
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  background-color: #f9f9f9;
  background-image: -moz-linear-gradient(top, #fefefe, #f2f2f2);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fefefe), to(#f2f2f2));
  background-image: -webkit-linear-gradient(top, #fefefe, #f2f2f2);
  background-image: -o-linear-gradient(top, #fefefe, #f2f2f2);
  background-image: linear-gradient(to bottom, #fefefe, #f2f2f2);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffefefe', endColorstr='#fff2f2f2', GradientType=0);
}

.selectize-control.single .selectize-input,
.selectize-dropdown.single {
  border-color: #b8b8b8;
}

.selectize-dropdown .optgroup-header {
  padding-top: 7px;
  font-weight: bold;
  font-size: 0.85em;
}

.selectize-dropdown .optgroup {
  border-top: 1px solid #f0f0f0;
}

.selectize-dropdown .optgroup:first-child {
  border-top: 0 none;
}

/*!
 * Copyright (c) 2014 Tamble, Inc.
 * Licensed under MIT (https://github.com/tamble/jquery-ui-daterangepicker/raw/master/LICENSE.txt)
 */
.comiseo-daterangepicker-triggerbutton.ui-button {
  text-align: left;
  min-width: 18em;
}

.comiseo-daterangepicker {
  position: absolute;
  padding: 5px;
}

.comiseo-daterangepicker-mask {
  margin: 0;
  padding: 0;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  /* required for IE */
  background-color: #fff;
  opacity: 0;
  filter: alpha(opacity=0);
}

.comiseo-daterangepicker-presets,
.comiseo-daterangepicker-calendar {
  display: table-cell;
  vertical-align: top;
  height: 230px;
}

.comiseo-daterangepicker-right .comiseo-daterangepicker-presets {
  padding: 2px 7px 7px 2px;
}

.comiseo-daterangepicker-left .comiseo-daterangepicker-presets {
  padding: 2px 2px 7px 7px;
}

.ui-menu {
  white-space: nowrap;
}

.comiseo-daterangepicker .ui-widget-content,
.comiseo-daterangepicker .ui-datepicker .ui-state-highlight {
  border-width: 0;
}

.comiseo-daterangepicker > .comiseo-daterangepicker-main.ui-widget-content {
  border-bottom-width: 1px;
}

.comiseo-daterangepicker .ui-datepicker .ui-datepicker-today .ui-state-highlight {
  border-width: 1px;
}

.comiseo-daterangepicker-right .comiseo-daterangepicker-calendar {
  border-left-width: 1px;
  padding-left: 5px;
}

.comiseo-daterangepicker-left .comiseo-daterangepicker-calendar {
  border-right-width: 1px;
  padding-right: 5px;
}

.comiseo-daterangepicker-right .comiseo-daterangepicker-buttonpanel {
  float: left;
}

.comiseo-daterangepicker-left .comiseo-daterangepicker-buttonpanel {
  float: right;
}

.comiseo-daterangepicker-buttonpanel > button {
  margin-top: 6px;
}

.comiseo-daterangepicker-right .comiseo-daterangepicker-buttonpanel > button {
  margin-right: 6px;
}

.comiseo-daterangepicker-left .comiseo-daterangepicker-buttonpanel > button {
  margin-left: 6px;
}

/* themeable styles */
.comiseo-daterangepicker-calendar .ui-state-highlight a.ui-state-default {
  background: #b0c4de;
  color: #fff;
}

/*!
 * Font Awesome Pro 5.10.0-11 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
.fas,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fas {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
}

@font-face {
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: 900;
  font-display: auto;
  src: url("/assets/fontawesome-5/fa-solid-900-de330855.eot");
  src: url("/assets/fontawesome-5/fa-solid-900-de330855.eot?#iefix") format("embedded-opentype"), url("/assets/fontawesome-5/fa-solid-900-cde600d3.woff2") format("woff2"), url("/assets/fontawesome-5/fa-solid-900-845666ae.woff") format("woff"), url("/assets/fontawesome-5/fa-solid-900-ac85d827.ttf") format("truetype"), url("/assets/fontawesome-5/fa-solid-900-d7620e37.svg#fontawesome") format("svg");
}
.fas-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fas-xs {
  font-size: 0.75em;
}

.fas-sm {
  font-size: 0.875em;
}

.fas-1x {
  font-size: 1em;
}

.fas-2x {
  font-size: 2em;
}

.fas-3x {
  font-size: 3em;
}

.fas-4x {
  font-size: 4em;
}

.fas-5x {
  font-size: 5em;
}

.fas-6x {
  font-size: 6em;
}

.fas-7x {
  font-size: 7em;
}

.fas-8x {
  font-size: 8em;
}

.fas-9x {
  font-size: 9em;
}

.fas-10x {
  font-size: 10em;
}

.fas-fw {
  text-align: center;
  width: 1.25em;
}

.fas-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}
.fas-ul > li {
  position: relative;
}

.fas-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fas-border {
  border: solid 0.08em #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.fas-pull-left {
  float: left;
}

.fas-pull-right {
  float: right;
}

.fas.fas-pull-left,
.fas.fas-pull-left,
.far.fas-pull-left,
.fal.fas-pull-left,
.fab.fas-pull-left {
  margin-right: 0.3em;
}
.fas.fas-pull-right,
.fas.fas-pull-right,
.far.fas-pull-right,
.fal.fas-pull-right,
.fab.fas-pull-right {
  margin-left: 0.3em;
}

.fas-spin {
  animation: fa-spin 2s infinite linear;
}

.fas-pulse {
  animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fas-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fas-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fas-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fas-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

.fas-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

.fas-flip-both, .fas-flip-horizontal.fas-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1);
}

:root .fas-rotate-90,
:root .fas-rotate-180,
:root .fas-rotate-270,
:root .fas-flip-horizontal,
:root .fas-flip-vertical,
:root .fas-flip-both {
  filter: none;
}

.fas-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fas-stack-1x,
.fas-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fas-stack-1x {
  line-height: inherit;
}

.fas-stack-2x {
  font-size: 2em;
}

.fas-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fas-500px:before {
  content: "\f26e";
}

.fas-abacus:before {
  content: "\f640";
}

.fas-accessible-icon:before {
  content: "\f368";
}

.fas-accusoft:before {
  content: "\f369";
}

.fas-acorn:before {
  content: "\f6ae";
}

.fas-acquisitions-incorporated:before {
  content: "\f6af";
}

.fas-ad:before {
  content: "\f641";
}

.fas-address-book:before {
  content: "\f2b9";
}

.fas-address-card:before {
  content: "\f2bb";
}

.fas-adjust:before {
  content: "\f042";
}

.fas-adn:before {
  content: "\f170";
}

.fas-adobe:before {
  content: "\f778";
}

.fas-adversal:before {
  content: "\f36a";
}

.fas-affiliatetheme:before {
  content: "\f36b";
}

.fas-air-freshener:before {
  content: "\f5d0";
}

.fas-airbnb:before {
  content: "\f834";
}

.fas-alarm-clock:before {
  content: "\f34e";
}

.fas-alarm-exclamation:before {
  content: "\f843";
}

.fas-alarm-plus:before {
  content: "\f844";
}

.fas-alarm-snooze:before {
  content: "\f845";
}

.fas-algolia:before {
  content: "\f36c";
}

.fas-alicorn:before {
  content: "\f6b0";
}

.fas-align-center:before {
  content: "\f037";
}

.fas-align-justify:before {
  content: "\f039";
}

.fas-align-left:before {
  content: "\f036";
}

.fas-align-right:before {
  content: "\f038";
}

.fas-align-slash:before {
  content: "\f846";
}

.fas-alipay:before {
  content: "\f642";
}

.fas-allergies:before {
  content: "\f461";
}

.fas-amazon:before {
  content: "\f270";
}

.fas-amazon-pay:before {
  content: "\f42c";
}

.fas-ambulance:before {
  content: "\f0f9";
}

.fas-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fas-amilia:before {
  content: "\f36d";
}

.fas-analytics:before {
  content: "\f643";
}

.fas-anchor:before {
  content: "\f13d";
}

.fas-android:before {
  content: "\f17b";
}

.fas-angel:before {
  content: "\f779";
}

.fas-angellist:before {
  content: "\f209";
}

.fas-angle-double-down:before {
  content: "\f103";
}

.fas-angle-double-left:before {
  content: "\f100";
}

.fas-angle-double-right:before {
  content: "\f101";
}

.fas-angle-double-up:before {
  content: "\f102";
}

.fas-angle-down:before {
  content: "\f107";
}

.fas-angle-left:before {
  content: "\f104";
}

.fas-angle-right:before {
  content: "\f105";
}

.fas-angle-up:before {
  content: "\f106";
}

.fas-angry:before {
  content: "\f556";
}

.fas-angrycreative:before {
  content: "\f36e";
}

.fas-angular:before {
  content: "\f420";
}

.fas-ankh:before {
  content: "\f644";
}

.fas-app-store:before {
  content: "\f36f";
}

.fas-app-store-ios:before {
  content: "\f370";
}

.fas-apper:before {
  content: "\f371";
}

.fas-apple:before {
  content: "\f179";
}

.fas-apple-alt:before {
  content: "\f5d1";
}

.fas-apple-crate:before {
  content: "\f6b1";
}

.fas-apple-pay:before {
  content: "\f415";
}

.fas-archive:before {
  content: "\f187";
}

.fas-archway:before {
  content: "\f557";
}

.fas-arrow-alt-circle-down:before {
  content: "\f358";
}

.fas-arrow-alt-circle-left:before {
  content: "\f359";
}

.fas-arrow-alt-circle-right:before {
  content: "\f35a";
}

.fas-arrow-alt-circle-up:before {
  content: "\f35b";
}

.fas-arrow-alt-down:before {
  content: "\f354";
}

.fas-arrow-alt-from-bottom:before {
  content: "\f346";
}

.fas-arrow-alt-from-left:before {
  content: "\f347";
}

.fas-arrow-alt-from-right:before {
  content: "\f348";
}

.fas-arrow-alt-from-top:before {
  content: "\f349";
}

.fas-arrow-alt-left:before {
  content: "\f355";
}

.fas-arrow-alt-right:before {
  content: "\f356";
}

.fas-arrow-alt-square-down:before {
  content: "\f350";
}

.fas-arrow-alt-square-left:before {
  content: "\f351";
}

.fas-arrow-alt-square-right:before {
  content: "\f352";
}

.fas-arrow-alt-square-up:before {
  content: "\f353";
}

.fas-arrow-alt-to-bottom:before {
  content: "\f34a";
}

.fas-arrow-alt-to-left:before {
  content: "\f34b";
}

.fas-arrow-alt-to-right:before {
  content: "\f34c";
}

.fas-arrow-alt-to-top:before {
  content: "\f34d";
}

.fas-arrow-alt-up:before {
  content: "\f357";
}

.fas-arrow-circle-down:before {
  content: "\f0ab";
}

.fas-arrow-circle-left:before {
  content: "\f0a8";
}

.fas-arrow-circle-right:before {
  content: "\f0a9";
}

.fas-arrow-circle-up:before {
  content: "\f0aa";
}

.fas-arrow-down:before {
  content: "\f063";
}

.fas-arrow-from-bottom:before {
  content: "\f342";
}

.fas-arrow-from-left:before {
  content: "\f343";
}

.fas-arrow-from-right:before {
  content: "\f344";
}

.fas-arrow-from-top:before {
  content: "\f345";
}

.fas-arrow-left:before {
  content: "\f060";
}

.fas-arrow-right:before {
  content: "\f061";
}

.fas-arrow-square-down:before {
  content: "\f339";
}

.fas-arrow-square-left:before {
  content: "\f33a";
}

.fas-arrow-square-right:before {
  content: "\f33b";
}

.fas-arrow-square-up:before {
  content: "\f33c";
}

.fas-arrow-to-bottom:before {
  content: "\f33d";
}

.fas-arrow-to-left:before {
  content: "\f33e";
}

.fas-arrow-to-right:before {
  content: "\f340";
}

.fas-arrow-to-top:before {
  content: "\f341";
}

.fas-arrow-up:before {
  content: "\f062";
}

.fas-arrows:before {
  content: "\f047";
}

.fas-arrows-alt:before {
  content: "\f0b2";
}

.fas-arrows-alt-h:before {
  content: "\f337";
}

.fas-arrows-alt-v:before {
  content: "\f338";
}

.fas-arrows-h:before {
  content: "\f07e";
}

.fas-arrows-v:before {
  content: "\f07d";
}

.fas-artstation:before {
  content: "\f77a";
}

.fas-assistive-listening-systems:before {
  content: "\f2a2";
}

.fas-asterisk:before {
  content: "\f069";
}

.fas-asymmetrik:before {
  content: "\f372";
}

.fas-at:before {
  content: "\f1fa";
}

.fas-atlas:before {
  content: "\f558";
}

.fas-atlassian:before {
  content: "\f77b";
}

.fas-atom:before {
  content: "\f5d2";
}

.fas-atom-alt:before {
  content: "\f5d3";
}

.fas-audible:before {
  content: "\f373";
}

.fas-audio-description:before {
  content: "\f29e";
}

.fas-autoprefixer:before {
  content: "\f41c";
}

.fas-avianex:before {
  content: "\f374";
}

.fas-aviato:before {
  content: "\f421";
}

.fas-award:before {
  content: "\f559";
}

.fas-aws:before {
  content: "\f375";
}

.fas-axe:before {
  content: "\f6b2";
}

.fas-axe-battle:before {
  content: "\f6b3";
}

.fas-baby:before {
  content: "\f77c";
}

.fas-baby-carriage:before {
  content: "\f77d";
}

.fas-backpack:before {
  content: "\f5d4";
}

.fas-backspace:before {
  content: "\f55a";
}

.fas-backward:before {
  content: "\f04a";
}

.fas-bacon:before {
  content: "\f7e5";
}

.fas-badge:before {
  content: "\f335";
}

.fas-badge-check:before {
  content: "\f336";
}

.fas-badge-dollar:before {
  content: "\f645";
}

.fas-badge-percent:before {
  content: "\f646";
}

.fas-badger-honey:before {
  content: "\f6b4";
}

.fas-bags-shopping:before {
  content: "\f847";
}

.fas-balance-scale:before {
  content: "\f24e";
}

.fas-balance-scale-left:before {
  content: "\f515";
}

.fas-balance-scale-right:before {
  content: "\f516";
}

.fas-ball-pile:before {
  content: "\f77e";
}

.fas-ballot:before {
  content: "\f732";
}

.fas-ballot-check:before {
  content: "\f733";
}

.fas-ban:before {
  content: "\f05e";
}

.fas-band-aid:before {
  content: "\f462";
}

.fas-bandcamp:before {
  content: "\f2d5";
}

.fas-barcode:before {
  content: "\f02a";
}

.fas-barcode-alt:before {
  content: "\f463";
}

.fas-barcode-read:before {
  content: "\f464";
}

.fas-barcode-scan:before {
  content: "\f465";
}

.fas-bars:before {
  content: "\f0c9";
}

.fas-baseball:before {
  content: "\f432";
}

.fas-baseball-ball:before {
  content: "\f433";
}

.fas-basketball-ball:before {
  content: "\f434";
}

.fas-basketball-hoop:before {
  content: "\f435";
}

.fas-bat:before {
  content: "\f6b5";
}

.fas-bath:before {
  content: "\f2cd";
}

.fas-battery-bolt:before {
  content: "\f376";
}

.fas-battery-empty:before {
  content: "\f244";
}

.fas-battery-full:before {
  content: "\f240";
}

.fas-battery-half:before {
  content: "\f242";
}

.fas-battery-quarter:before {
  content: "\f243";
}

.fas-battery-slash:before {
  content: "\f377";
}

.fas-battery-three-quarters:before {
  content: "\f241";
}

.fas-battle-net:before {
  content: "\f835";
}

.fas-bed:before {
  content: "\f236";
}

.fas-beer:before {
  content: "\f0fc";
}

.fas-behance:before {
  content: "\f1b4";
}

.fas-behance-square:before {
  content: "\f1b5";
}

.fas-bell:before {
  content: "\f0f3";
}

.fas-bell-exclamation:before {
  content: "\f848";
}

.fas-bell-plus:before {
  content: "\f849";
}

.fas-bell-school:before {
  content: "\f5d5";
}

.fas-bell-school-slash:before {
  content: "\f5d6";
}

.fas-bell-slash:before {
  content: "\f1f6";
}

.fas-bells:before {
  content: "\f77f";
}

.fas-bezier-curve:before {
  content: "\f55b";
}

.fas-bible:before {
  content: "\f647";
}

.fas-bicycle:before {
  content: "\f206";
}

.fas-biking:before {
  content: "\f84a";
}

.fas-biking-mountain:before {
  content: "\f84b";
}

.fas-bimobject:before {
  content: "\f378";
}

.fas-binoculars:before {
  content: "\f1e5";
}

.fas-biohazard:before {
  content: "\f780";
}

.fas-birthday-cake:before {
  content: "\f1fd";
}

.fas-bitbucket:before {
  content: "\f171";
}

.fas-bitcoin:before {
  content: "\f379";
}

.fas-bity:before {
  content: "\f37a";
}

.fas-black-tie:before {
  content: "\f27e";
}

.fas-blackberry:before {
  content: "\f37b";
}

.fas-blanket:before {
  content: "\f498";
}

.fas-blender:before {
  content: "\f517";
}

.fas-blender-phone:before {
  content: "\f6b6";
}

.fas-blind:before {
  content: "\f29d";
}

.fas-blog:before {
  content: "\f781";
}

.fas-blogger:before {
  content: "\f37c";
}

.fas-blogger-b:before {
  content: "\f37d";
}

.fas-bluetooth:before {
  content: "\f293";
}

.fas-bluetooth-b:before {
  content: "\f294";
}

.fas-bold:before {
  content: "\f032";
}

.fas-bolt:before {
  content: "\f0e7";
}

.fas-bomb:before {
  content: "\f1e2";
}

.fas-bone:before {
  content: "\f5d7";
}

.fas-bone-break:before {
  content: "\f5d8";
}

.fas-bong:before {
  content: "\f55c";
}

.fas-book:before {
  content: "\f02d";
}

.fas-book-alt:before {
  content: "\f5d9";
}

.fas-book-dead:before {
  content: "\f6b7";
}

.fas-book-heart:before {
  content: "\f499";
}

.fas-book-medical:before {
  content: "\f7e6";
}

.fas-book-open:before {
  content: "\f518";
}

.fas-book-reader:before {
  content: "\f5da";
}

.fas-book-spells:before {
  content: "\f6b8";
}

.fas-book-user:before {
  content: "\f7e7";
}

.fas-bookmark:before {
  content: "\f02e";
}

.fas-books:before {
  content: "\f5db";
}

.fas-books-medical:before {
  content: "\f7e8";
}

.fas-boot:before {
  content: "\f782";
}

.fas-booth-curtain:before {
  content: "\f734";
}

.fas-bootstrap:before {
  content: "\f836";
}

.fas-border-all:before {
  content: "\f84c";
}

.fas-border-bottom:before {
  content: "\f84d";
}

.fas-border-inner:before {
  content: "\f84e";
}

.fas-border-left:before {
  content: "\f84f";
}

.fas-border-none:before {
  content: "\f850";
}

.fas-border-outer:before {
  content: "\f851";
}

.fas-border-right:before {
  content: "\f852";
}

.fas-border-style:before {
  content: "\f853";
}

.fas-border-style-alt:before {
  content: "\f854";
}

.fas-border-top:before {
  content: "\f855";
}

.fas-bow-arrow:before {
  content: "\f6b9";
}

.fas-bowling-ball:before {
  content: "\f436";
}

.fas-bowling-pins:before {
  content: "\f437";
}

.fas-box:before {
  content: "\f466";
}

.fas-box-alt:before {
  content: "\f49a";
}

.fas-box-ballot:before {
  content: "\f735";
}

.fas-box-check:before {
  content: "\f467";
}

.fas-box-fragile:before {
  content: "\f49b";
}

.fas-box-full:before {
  content: "\f49c";
}

.fas-box-heart:before {
  content: "\f49d";
}

.fas-box-open:before {
  content: "\f49e";
}

.fas-box-up:before {
  content: "\f49f";
}

.fas-box-usd:before {
  content: "\f4a0";
}

.fas-boxes:before {
  content: "\f468";
}

.fas-boxes-alt:before {
  content: "\f4a1";
}

.fas-boxing-glove:before {
  content: "\f438";
}

.fas-brackets:before {
  content: "\f7e9";
}

.fas-brackets-curly:before {
  content: "\f7ea";
}

.fas-braille:before {
  content: "\f2a1";
}

.fas-brain:before {
  content: "\f5dc";
}

.fas-bread-loaf:before {
  content: "\f7eb";
}

.fas-bread-slice:before {
  content: "\f7ec";
}

.fas-briefcase:before {
  content: "\f0b1";
}

.fas-briefcase-medical:before {
  content: "\f469";
}

.fas-bring-forward:before {
  content: "\f856";
}

.fas-bring-front:before {
  content: "\f857";
}

.fas-broadcast-tower:before {
  content: "\f519";
}

.fas-broom:before {
  content: "\f51a";
}

.fas-browser:before {
  content: "\f37e";
}

.fas-brush:before {
  content: "\f55d";
}

.fas-btc:before {
  content: "\f15a";
}

.fas-buffer:before {
  content: "\f837";
}

.fas-bug:before {
  content: "\f188";
}

.fas-building:before {
  content: "\f1ad";
}

.fas-bullhorn:before {
  content: "\f0a1";
}

.fas-bullseye:before {
  content: "\f140";
}

.fas-bullseye-arrow:before {
  content: "\f648";
}

.fas-bullseye-pointer:before {
  content: "\f649";
}

.fas-burger-soda:before {
  content: "\f858";
}

.fas-burn:before {
  content: "\f46a";
}

.fas-buromobelexperte:before {
  content: "\f37f";
}

.fas-burrito:before {
  content: "\f7ed";
}

.fas-bus:before {
  content: "\f207";
}

.fas-bus-alt:before {
  content: "\f55e";
}

.fas-bus-school:before {
  content: "\f5dd";
}

.fas-business-time:before {
  content: "\f64a";
}

.fas-buysellads:before {
  content: "\f20d";
}

.fas-cabinet-filing:before {
  content: "\f64b";
}

.fas-calculator:before {
  content: "\f1ec";
}

.fas-calculator-alt:before {
  content: "\f64c";
}

.fas-calendar:before {
  content: "\f133";
}

.fas-calendar-alt:before {
  content: "\f073";
}

.fas-calendar-check:before {
  content: "\f274";
}

.fas-calendar-day:before {
  content: "\f783";
}

.fas-calendar-edit:before {
  content: "\f333";
}

.fas-calendar-exclamation:before {
  content: "\f334";
}

.fas-calendar-minus:before {
  content: "\f272";
}

.fas-calendar-plus:before {
  content: "\f271";
}

.fas-calendar-star:before {
  content: "\f736";
}

.fas-calendar-times:before {
  content: "\f273";
}

.fas-calendar-week:before {
  content: "\f784";
}

.fas-camera:before {
  content: "\f030";
}

.fas-camera-alt:before {
  content: "\f332";
}

.fas-camera-retro:before {
  content: "\f083";
}

.fas-campfire:before {
  content: "\f6ba";
}

.fas-campground:before {
  content: "\f6bb";
}

.fas-canadian-maple-leaf:before {
  content: "\f785";
}

.fas-candle-holder:before {
  content: "\f6bc";
}

.fas-candy-cane:before {
  content: "\f786";
}

.fas-candy-corn:before {
  content: "\f6bd";
}

.fas-cannabis:before {
  content: "\f55f";
}

.fas-capsules:before {
  content: "\f46b";
}

.fas-car:before {
  content: "\f1b9";
}

.fas-car-alt:before {
  content: "\f5de";
}

.fas-car-battery:before {
  content: "\f5df";
}

.fas-car-building:before {
  content: "\f859";
}

.fas-car-bump:before {
  content: "\f5e0";
}

.fas-car-bus:before {
  content: "\f85a";
}

.fas-car-crash:before {
  content: "\f5e1";
}

.fas-car-garage:before {
  content: "\f5e2";
}

.fas-car-mechanic:before {
  content: "\f5e3";
}

.fas-car-side:before {
  content: "\f5e4";
}

.fas-car-tilt:before {
  content: "\f5e5";
}

.fas-car-wash:before {
  content: "\f5e6";
}

.fas-caret-circle-down:before {
  content: "\f32d";
}

.fas-caret-circle-left:before {
  content: "\f32e";
}

.fas-caret-circle-right:before {
  content: "\f330";
}

.fas-caret-circle-up:before {
  content: "\f331";
}

.fas-caret-down:before {
  content: "\f0d7";
}

.fas-caret-left:before {
  content: "\f0d9";
}

.fas-caret-right:before {
  content: "\f0da";
}

.fas-caret-square-down:before {
  content: "\f150";
}

.fas-caret-square-left:before {
  content: "\f191";
}

.fas-caret-square-right:before {
  content: "\f152";
}

.fas-caret-square-up:before {
  content: "\f151";
}

.fas-caret-up:before {
  content: "\f0d8";
}

.fas-carrot:before {
  content: "\f787";
}

.fas-cars:before {
  content: "\f85b";
}

.fas-cart-arrow-down:before {
  content: "\f218";
}

.fas-cart-plus:before {
  content: "\f217";
}

.fas-cash-register:before {
  content: "\f788";
}

.fas-cat:before {
  content: "\f6be";
}

.fas-cauldron:before {
  content: "\f6bf";
}

.fas-cc-amazon-pay:before {
  content: "\f42d";
}

.fas-cc-amex:before {
  content: "\f1f3";
}

.fas-cc-apple-pay:before {
  content: "\f416";
}

.fas-cc-diners-club:before {
  content: "\f24c";
}

.fas-cc-discover:before {
  content: "\f1f2";
}

.fas-cc-jcb:before {
  content: "\f24b";
}

.fas-cc-mastercard:before {
  content: "\f1f1";
}

.fas-cc-paypal:before {
  content: "\f1f4";
}

.fas-cc-stripe:before {
  content: "\f1f5";
}

.fas-cc-visa:before {
  content: "\f1f0";
}

.fas-centercode:before {
  content: "\f380";
}

.fas-centos:before {
  content: "\f789";
}

.fas-certificate:before {
  content: "\f0a3";
}

.fas-chair:before {
  content: "\f6c0";
}

.fas-chair-office:before {
  content: "\f6c1";
}

.fas-chalkboard:before {
  content: "\f51b";
}

.fas-chalkboard-teacher:before {
  content: "\f51c";
}

.fas-charging-station:before {
  content: "\f5e7";
}

.fas-chart-area:before {
  content: "\f1fe";
}

.fas-chart-bar:before {
  content: "\f080";
}

.fas-chart-line:before {
  content: "\f201";
}

.fas-chart-line-down:before {
  content: "\f64d";
}

.fas-chart-network:before {
  content: "\f78a";
}

.fas-chart-pie:before {
  content: "\f200";
}

.fas-chart-pie-alt:before {
  content: "\f64e";
}

.fas-chart-scatter:before {
  content: "\f7ee";
}

.fas-check:before {
  content: "\f00c";
}

.fas-check-circle:before {
  content: "\f058";
}

.fas-check-double:before {
  content: "\f560";
}

.fas-check-square:before {
  content: "\f14a";
}

.fas-cheese:before {
  content: "\f7ef";
}

.fas-cheese-swiss:before {
  content: "\f7f0";
}

.fas-cheeseburger:before {
  content: "\f7f1";
}

.fas-chess:before {
  content: "\f439";
}

.fas-chess-bishop:before {
  content: "\f43a";
}

.fas-chess-bishop-alt:before {
  content: "\f43b";
}

.fas-chess-board:before {
  content: "\f43c";
}

.fas-chess-clock:before {
  content: "\f43d";
}

.fas-chess-clock-alt:before {
  content: "\f43e";
}

.fas-chess-king:before {
  content: "\f43f";
}

.fas-chess-king-alt:before {
  content: "\f440";
}

.fas-chess-knight:before {
  content: "\f441";
}

.fas-chess-knight-alt:before {
  content: "\f442";
}

.fas-chess-pawn:before {
  content: "\f443";
}

.fas-chess-pawn-alt:before {
  content: "\f444";
}

.fas-chess-queen:before {
  content: "\f445";
}

.fas-chess-queen-alt:before {
  content: "\f446";
}

.fas-chess-rook:before {
  content: "\f447";
}

.fas-chess-rook-alt:before {
  content: "\f448";
}

.fas-chevron-circle-down:before {
  content: "\f13a";
}

.fas-chevron-circle-left:before {
  content: "\f137";
}

.fas-chevron-circle-right:before {
  content: "\f138";
}

.fas-chevron-circle-up:before {
  content: "\f139";
}

.fas-chevron-double-down:before {
  content: "\f322";
}

.fas-chevron-double-left:before {
  content: "\f323";
}

.fas-chevron-double-right:before {
  content: "\f324";
}

.fas-chevron-double-up:before {
  content: "\f325";
}

.fas-chevron-down:before {
  content: "\f078";
}

.fas-chevron-left:before {
  content: "\f053";
}

.fas-chevron-right:before {
  content: "\f054";
}

.fas-chevron-square-down:before {
  content: "\f329";
}

.fas-chevron-square-left:before {
  content: "\f32a";
}

.fas-chevron-square-right:before {
  content: "\f32b";
}

.fas-chevron-square-up:before {
  content: "\f32c";
}

.fas-chevron-up:before {
  content: "\f077";
}

.fas-child:before {
  content: "\f1ae";
}

.fas-chimney:before {
  content: "\f78b";
}

.fas-chrome:before {
  content: "\f268";
}

.fas-chromecast:before {
  content: "\f838";
}

.fas-church:before {
  content: "\f51d";
}

.fas-circle:before {
  content: "\f111";
}

.fas-circle-notch:before {
  content: "\f1ce";
}

.fas-city:before {
  content: "\f64f";
}

.fas-claw-marks:before {
  content: "\f6c2";
}

.fas-clinic-medical:before {
  content: "\f7f2";
}

.fas-clipboard:before {
  content: "\f328";
}

.fas-clipboard-check:before {
  content: "\f46c";
}

.fas-clipboard-list:before {
  content: "\f46d";
}

.fas-clipboard-list-check:before {
  content: "\f737";
}

.fas-clipboard-prescription:before {
  content: "\f5e8";
}

.fas-clipboard-user:before {
  content: "\f7f3";
}

.fas-clock:before {
  content: "\f017";
}

.fas-clone:before {
  content: "\f24d";
}

.fas-closed-captioning:before {
  content: "\f20a";
}

.fas-cloud:before {
  content: "\f0c2";
}

.fas-cloud-download:before {
  content: "\f0ed";
}

.fas-cloud-download-alt:before {
  content: "\f381";
}

.fas-cloud-drizzle:before {
  content: "\f738";
}

.fas-cloud-hail:before {
  content: "\f739";
}

.fas-cloud-hail-mixed:before {
  content: "\f73a";
}

.fas-cloud-meatball:before {
  content: "\f73b";
}

.fas-cloud-moon:before {
  content: "\f6c3";
}

.fas-cloud-moon-rain:before {
  content: "\f73c";
}

.fas-cloud-rain:before {
  content: "\f73d";
}

.fas-cloud-rainbow:before {
  content: "\f73e";
}

.fas-cloud-showers:before {
  content: "\f73f";
}

.fas-cloud-showers-heavy:before {
  content: "\f740";
}

.fas-cloud-sleet:before {
  content: "\f741";
}

.fas-cloud-snow:before {
  content: "\f742";
}

.fas-cloud-sun:before {
  content: "\f6c4";
}

.fas-cloud-sun-rain:before {
  content: "\f743";
}

.fas-cloud-upload:before {
  content: "\f0ee";
}

.fas-cloud-upload-alt:before {
  content: "\f382";
}

.fas-clouds:before {
  content: "\f744";
}

.fas-clouds-moon:before {
  content: "\f745";
}

.fas-clouds-sun:before {
  content: "\f746";
}

.fas-cloudscale:before {
  content: "\f383";
}

.fas-cloudsmith:before {
  content: "\f384";
}

.fas-cloudversify:before {
  content: "\f385";
}

.fas-club:before {
  content: "\f327";
}

.fas-cocktail:before {
  content: "\f561";
}

.fas-code:before {
  content: "\f121";
}

.fas-code-branch:before {
  content: "\f126";
}

.fas-code-commit:before {
  content: "\f386";
}

.fas-code-merge:before {
  content: "\f387";
}

.fas-codepen:before {
  content: "\f1cb";
}

.fas-codiepie:before {
  content: "\f284";
}

.fas-coffee:before {
  content: "\f0f4";
}

.fas-coffee-togo:before {
  content: "\f6c5";
}

.fas-coffin:before {
  content: "\f6c6";
}

.fas-cog:before {
  content: "\f013";
}

.fas-cogs:before {
  content: "\f085";
}

.fas-coin:before {
  content: "\f85c";
}

.fas-coins:before {
  content: "\f51e";
}

.fas-columns:before {
  content: "\f0db";
}

.fas-comment:before {
  content: "\f075";
}

.fas-comment-alt:before {
  content: "\f27a";
}

.fas-comment-alt-check:before {
  content: "\f4a2";
}

.fas-comment-alt-dollar:before {
  content: "\f650";
}

.fas-comment-alt-dots:before {
  content: "\f4a3";
}

.fas-comment-alt-edit:before {
  content: "\f4a4";
}

.fas-comment-alt-exclamation:before {
  content: "\f4a5";
}

.fas-comment-alt-lines:before {
  content: "\f4a6";
}

.fas-comment-alt-medical:before {
  content: "\f7f4";
}

.fas-comment-alt-minus:before {
  content: "\f4a7";
}

.fas-comment-alt-plus:before {
  content: "\f4a8";
}

.fas-comment-alt-slash:before {
  content: "\f4a9";
}

.fas-comment-alt-smile:before {
  content: "\f4aa";
}

.fas-comment-alt-times:before {
  content: "\f4ab";
}

.fas-comment-check:before {
  content: "\f4ac";
}

.fas-comment-dollar:before {
  content: "\f651";
}

.fas-comment-dots:before {
  content: "\f4ad";
}

.fas-comment-edit:before {
  content: "\f4ae";
}

.fas-comment-exclamation:before {
  content: "\f4af";
}

.fas-comment-lines:before {
  content: "\f4b0";
}

.fas-comment-medical:before {
  content: "\f7f5";
}

.fas-comment-minus:before {
  content: "\f4b1";
}

.fas-comment-plus:before {
  content: "\f4b2";
}

.fas-comment-slash:before {
  content: "\f4b3";
}

.fas-comment-smile:before {
  content: "\f4b4";
}

.fas-comment-times:before {
  content: "\f4b5";
}

.fas-comments:before {
  content: "\f086";
}

.fas-comments-alt:before {
  content: "\f4b6";
}

.fas-comments-alt-dollar:before {
  content: "\f652";
}

.fas-comments-dollar:before {
  content: "\f653";
}

.fas-compact-disc:before {
  content: "\f51f";
}

.fas-compass:before {
  content: "\f14e";
}

.fas-compass-slash:before {
  content: "\f5e9";
}

.fas-compress:before {
  content: "\f066";
}

.fas-compress-alt:before {
  content: "\f422";
}

.fas-compress-arrows-alt:before {
  content: "\f78c";
}

.fas-compress-wide:before {
  content: "\f326";
}

.fas-concierge-bell:before {
  content: "\f562";
}

.fas-confluence:before {
  content: "\f78d";
}

.fas-connectdevelop:before {
  content: "\f20e";
}

.fas-construction:before {
  content: "\f85d";
}

.fas-container-storage:before {
  content: "\f4b7";
}

.fas-contao:before {
  content: "\f26d";
}

.fas-conveyor-belt:before {
  content: "\f46e";
}

.fas-conveyor-belt-alt:before {
  content: "\f46f";
}

.fas-cookie:before {
  content: "\f563";
}

.fas-cookie-bite:before {
  content: "\f564";
}

.fas-copy:before {
  content: "\f0c5";
}

.fas-copyright:before {
  content: "\f1f9";
}

.fas-corn:before {
  content: "\f6c7";
}

.fas-couch:before {
  content: "\f4b8";
}

.fas-cow:before {
  content: "\f6c8";
}

.fas-cpanel:before {
  content: "\f388";
}

.fas-creative-commons:before {
  content: "\f25e";
}

.fas-creative-commons-by:before {
  content: "\f4e7";
}

.fas-creative-commons-nc:before {
  content: "\f4e8";
}

.fas-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fas-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fas-creative-commons-nd:before {
  content: "\f4eb";
}

.fas-creative-commons-pd:before {
  content: "\f4ec";
}

.fas-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fas-creative-commons-remix:before {
  content: "\f4ee";
}

.fas-creative-commons-sa:before {
  content: "\f4ef";
}

.fas-creative-commons-sampling:before {
  content: "\f4f0";
}

.fas-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fas-creative-commons-share:before {
  content: "\f4f2";
}

.fas-creative-commons-zero:before {
  content: "\f4f3";
}

.fas-credit-card:before {
  content: "\f09d";
}

.fas-credit-card-blank:before {
  content: "\f389";
}

.fas-credit-card-front:before {
  content: "\f38a";
}

.fas-cricket:before {
  content: "\f449";
}

.fas-critical-role:before {
  content: "\f6c9";
}

.fas-croissant:before {
  content: "\f7f6";
}

.fas-crop:before {
  content: "\f125";
}

.fas-crop-alt:before {
  content: "\f565";
}

.fas-cross:before {
  content: "\f654";
}

.fas-crosshairs:before {
  content: "\f05b";
}

.fas-crow:before {
  content: "\f520";
}

.fas-crown:before {
  content: "\f521";
}

.fas-crutch:before {
  content: "\f7f7";
}

.fas-crutches:before {
  content: "\f7f8";
}

.fas-css3:before {
  content: "\f13c";
}

.fas-css3-alt:before {
  content: "\f38b";
}

.fas-cube:before {
  content: "\f1b2";
}

.fas-cubes:before {
  content: "\f1b3";
}

.fas-curling:before {
  content: "\f44a";
}

.fas-cut:before {
  content: "\f0c4";
}

.fas-cuttlefish:before {
  content: "\f38c";
}

.fas-d-and-d:before {
  content: "\f38d";
}

.fas-d-and-d-beyond:before {
  content: "\f6ca";
}

.fas-dagger:before {
  content: "\f6cb";
}

.fas-dashcube:before {
  content: "\f210";
}

.fas-database:before {
  content: "\f1c0";
}

.fas-deaf:before {
  content: "\f2a4";
}

.fas-debug:before {
  content: "\f7f9";
}

.fas-deer:before {
  content: "\f78e";
}

.fas-deer-rudolph:before {
  content: "\f78f";
}

.fas-delicious:before {
  content: "\f1a5";
}

.fas-democrat:before {
  content: "\f747";
}

.fas-deploydog:before {
  content: "\f38e";
}

.fas-deskpro:before {
  content: "\f38f";
}

.fas-desktop:before {
  content: "\f108";
}

.fas-desktop-alt:before {
  content: "\f390";
}

.fas-dev:before {
  content: "\f6cc";
}

.fas-deviantart:before {
  content: "\f1bd";
}

.fas-dewpoint:before {
  content: "\f748";
}

.fas-dharmachakra:before {
  content: "\f655";
}

.fas-dhl:before {
  content: "\f790";
}

.fas-diagnoses:before {
  content: "\f470";
}

.fas-diamond:before {
  content: "\f219";
}

.fas-diaspora:before {
  content: "\f791";
}

.fas-dice:before {
  content: "\f522";
}

.fas-dice-d10:before {
  content: "\f6cd";
}

.fas-dice-d12:before {
  content: "\f6ce";
}

.fas-dice-d20:before {
  content: "\f6cf";
}

.fas-dice-d4:before {
  content: "\f6d0";
}

.fas-dice-d6:before {
  content: "\f6d1";
}

.fas-dice-d8:before {
  content: "\f6d2";
}

.fas-dice-five:before {
  content: "\f523";
}

.fas-dice-four:before {
  content: "\f524";
}

.fas-dice-one:before {
  content: "\f525";
}

.fas-dice-six:before {
  content: "\f526";
}

.fas-dice-three:before {
  content: "\f527";
}

.fas-dice-two:before {
  content: "\f528";
}

.fas-digg:before {
  content: "\f1a6";
}

.fas-digging:before {
  content: "\f85e";
}

.fas-digital-ocean:before {
  content: "\f391";
}

.fas-digital-tachograph:before {
  content: "\f566";
}

.fas-diploma:before {
  content: "\f5ea";
}

.fas-directions:before {
  content: "\f5eb";
}

.fas-discord:before {
  content: "\f392";
}

.fas-discourse:before {
  content: "\f393";
}

.fas-disease:before {
  content: "\f7fa";
}

.fas-divide:before {
  content: "\f529";
}

.fas-dizzy:before {
  content: "\f567";
}

.fas-dna:before {
  content: "\f471";
}

.fas-do-not-enter:before {
  content: "\f5ec";
}

.fas-dochub:before {
  content: "\f394";
}

.fas-docker:before {
  content: "\f395";
}

.fas-dog:before {
  content: "\f6d3";
}

.fas-dog-leashed:before {
  content: "\f6d4";
}

.fas-dollar-sign:before {
  content: "\f155";
}

.fas-dolly:before {
  content: "\f472";
}

.fas-dolly-empty:before {
  content: "\f473";
}

.fas-dolly-flatbed:before {
  content: "\f474";
}

.fas-dolly-flatbed-alt:before {
  content: "\f475";
}

.fas-dolly-flatbed-empty:before {
  content: "\f476";
}

.fas-donate:before {
  content: "\f4b9";
}

.fas-door-closed:before {
  content: "\f52a";
}

.fas-door-open:before {
  content: "\f52b";
}

.fas-dot-circle:before {
  content: "\f192";
}

.fas-dove:before {
  content: "\f4ba";
}

.fas-download:before {
  content: "\f019";
}

.fas-draft2digital:before {
  content: "\f396";
}

.fas-drafting-compass:before {
  content: "\f568";
}

.fas-dragon:before {
  content: "\f6d5";
}

.fas-draw-circle:before {
  content: "\f5ed";
}

.fas-draw-polygon:before {
  content: "\f5ee";
}

.fas-draw-square:before {
  content: "\f5ef";
}

.fas-dreidel:before {
  content: "\f792";
}

.fas-dribbble:before {
  content: "\f17d";
}

.fas-dribbble-square:before {
  content: "\f397";
}

.fas-drone:before {
  content: "\f85f";
}

.fas-drone-alt:before {
  content: "\f860";
}

.fas-dropbox:before {
  content: "\f16b";
}

.fas-drum:before {
  content: "\f569";
}

.fas-drum-steelpan:before {
  content: "\f56a";
}

.fas-drumstick:before {
  content: "\f6d6";
}

.fas-drumstick-bite:before {
  content: "\f6d7";
}

.fas-drupal:before {
  content: "\f1a9";
}

.fas-dryer:before {
  content: "\f861";
}

.fas-dryer-alt:before {
  content: "\f862";
}

.fas-duck:before {
  content: "\f6d8";
}

.fas-dumbbell:before {
  content: "\f44b";
}

.fas-dumpster:before {
  content: "\f793";
}

.fas-dumpster-fire:before {
  content: "\f794";
}

.fas-dungeon:before {
  content: "\f6d9";
}

.fas-dyalog:before {
  content: "\f399";
}

.fas-ear:before {
  content: "\f5f0";
}

.fas-ear-muffs:before {
  content: "\f795";
}

.fas-earlybirds:before {
  content: "\f39a";
}

.fas-ebay:before {
  content: "\f4f4";
}

.fas-eclipse:before {
  content: "\f749";
}

.fas-eclipse-alt:before {
  content: "\f74a";
}

.fas-edge:before {
  content: "\f282";
}

.fas-edit:before {
  content: "\f044";
}

.fas-egg:before {
  content: "\f7fb";
}

.fas-egg-fried:before {
  content: "\f7fc";
}

.fas-eject:before {
  content: "\f052";
}

.fas-elementor:before {
  content: "\f430";
}

.fas-elephant:before {
  content: "\f6da";
}

.fas-ellipsis-h:before {
  content: "\f141";
}

.fas-ellipsis-h-alt:before {
  content: "\f39b";
}

.fas-ellipsis-v:before {
  content: "\f142";
}

.fas-ellipsis-v-alt:before {
  content: "\f39c";
}

.fas-ello:before {
  content: "\f5f1";
}

.fas-ember:before {
  content: "\f423";
}

.fas-empire:before {
  content: "\f1d1";
}

.fas-empty-set:before {
  content: "\f656";
}

.fas-engine-warning:before {
  content: "\f5f2";
}

.fas-envelope:before, .fas-email:before {
  content: "\f0e0";
}

.fas-envelope-open:before {
  content: "\f2b6";
}

.fas-envelope-open-dollar:before {
  content: "\f657";
}

.fas-envelope-open-text:before {
  content: "\f658";
}

.fas-envelope-square:before {
  content: "\f199";
}

.fas-envira:before {
  content: "\f299";
}

.fas-equals:before {
  content: "\f52c";
}

.fas-eraser:before {
  content: "\f12d";
}

.fas-erlang:before {
  content: "\f39d";
}

.fas-ethereum:before {
  content: "\f42e";
}

.fas-ethernet:before {
  content: "\f796";
}

.fas-etsy:before {
  content: "\f2d7";
}

.fas-euro-sign:before {
  content: "\f153";
}

.fas-evernote:before {
  content: "\f839";
}

.fas-exchange:before {
  content: "\f0ec";
}

.fas-exchange-alt:before {
  content: "\f362";
}

.fas-exclamation:before {
  content: "\f12a";
}

.fas-exclamation-circle:before {
  content: "\f06a";
}

.fas-exclamation-square:before {
  content: "\f321";
}

.fas-exclamation-triangle:before {
  content: "\f071";
}

.fas-expand:before {
  content: "\f065";
}

.fas-expand-alt:before {
  content: "\f424";
}

.fas-expand-arrows:before {
  content: "\f31d";
}

.fas-expand-arrows-alt:before {
  content: "\f31e";
}

.fas-expand-wide:before {
  content: "\f320";
}

.fas-expeditedssl:before {
  content: "\f23e";
}

.fas-external-link:before {
  content: "\f08e";
}

.fas-external-link-alt:before {
  content: "\f35d";
}

.fas-external-link-square:before {
  content: "\f14c";
}

.fas-external-link-square-alt:before {
  content: "\f360";
}

.fas-eye:before {
  content: "\f06e";
}

.fas-eye-dropper:before {
  content: "\f1fb";
}

.fas-eye-evil:before {
  content: "\f6db";
}

.fas-eye-slash:before {
  content: "\f070";
}

.fas-facebook:before {
  content: "\f09a";
}

.fas-facebook-f:before {
  content: "\f39e";
}

.fas-facebook-messenger:before {
  content: "\f39f";
}

.fas-facebook-square:before {
  content: "\f082";
}

.fas-fan:before {
  content: "\f863";
}

.fas-fantasy-flight-games:before {
  content: "\f6dc";
}

.fas-farm:before {
  content: "\f864";
}

.fas-fast-backward:before {
  content: "\f049";
}

.fas-fast-forward:before {
  content: "\f050";
}

.fas-fax:before {
  content: "\f1ac";
}

.fas-feather:before {
  content: "\f52d";
}

.fas-feather-alt:before {
  content: "\f56b";
}

.fas-fedex:before {
  content: "\f797";
}

.fas-fedora:before {
  content: "\f798";
}

.fas-female:before {
  content: "\f182";
}

.fas-field-hockey:before {
  content: "\f44c";
}

.fas-fighter-jet:before {
  content: "\f0fb";
}

.fas-figma:before {
  content: "\f799";
}

.fas-file:before {
  content: "\f15b";
}

.fas-file-alt:before {
  content: "\f15c";
}

.fas-file-archive:before {
  content: "\f1c6";
}

.fas-file-audio:before {
  content: "\f1c7";
}

.fas-file-certificate:before {
  content: "\f5f3";
}

.fas-file-chart-line:before {
  content: "\f659";
}

.fas-file-chart-pie:before {
  content: "\f65a";
}

.fas-file-check:before {
  content: "\f316";
}

.fas-file-code:before {
  content: "\f1c9";
}

.fas-file-contract:before {
  content: "\f56c";
}

.fas-file-csv:before {
  content: "\f6dd";
}

.fas-file-download:before {
  content: "\f56d";
}

.fas-file-edit:before {
  content: "\f31c";
}

.fas-file-excel:before {
  content: "\f1c3";
}

.fas-file-exclamation:before {
  content: "\f31a";
}

.fas-file-export:before {
  content: "\f56e";
}

.fas-file-image:before {
  content: "\f1c5";
}

.fas-file-import:before {
  content: "\f56f";
}

.fas-file-invoice:before {
  content: "\f570";
}

.fas-file-invoice-dollar:before {
  content: "\f571";
}

.fas-file-medical:before {
  content: "\f477";
}

.fas-file-medical-alt:before {
  content: "\f478";
}

.fas-file-minus:before {
  content: "\f318";
}

.fas-file-pdf:before {
  content: "\f1c1";
}

.fas-file-plus:before {
  content: "\f319";
}

.fas-file-powerpoint:before {
  content: "\f1c4";
}

.fas-file-prescription:before {
  content: "\f572";
}

.fas-file-search:before {
  content: "\f865";
}

.fas-file-signature:before {
  content: "\f573";
}

.fas-file-spreadsheet:before {
  content: "\f65b";
}

.fas-file-times:before {
  content: "\f317";
}

.fas-file-upload:before {
  content: "\f574";
}

.fas-file-user:before {
  content: "\f65c";
}

.fas-file-video:before {
  content: "\f1c8";
}

.fas-file-word:before {
  content: "\f1c2";
}

.fas-files-medical:before {
  content: "\f7fd";
}

.fas-fill:before {
  content: "\f575";
}

.fas-fill-drip:before {
  content: "\f576";
}

.fas-film:before {
  content: "\f008";
}

.fas-film-alt:before {
  content: "\f3a0";
}

.fas-filter:before {
  content: "\f0b0";
}

.fas-fingerprint:before {
  content: "\f577";
}

.fas-fire:before {
  content: "\f06d";
}

.fas-fire-alt:before {
  content: "\f7e4";
}

.fas-fire-extinguisher:before {
  content: "\f134";
}

.fas-fire-smoke:before {
  content: "\f74b";
}

.fas-firefox:before {
  content: "\f269";
}

.fas-fireplace:before {
  content: "\f79a";
}

.fas-first-aid:before {
  content: "\f479";
}

.fas-first-order:before {
  content: "\f2b0";
}

.fas-first-order-alt:before {
  content: "\f50a";
}

.fas-firstdraft:before {
  content: "\f3a1";
}

.fas-fish:before {
  content: "\f578";
}

.fas-fish-cooked:before {
  content: "\f7fe";
}

.fas-fist-raised:before {
  content: "\f6de";
}

.fas-flag:before {
  content: "\f024";
}

.fas-flag-alt:before {
  content: "\f74c";
}

.fas-flag-checkered:before {
  content: "\f11e";
}

.fas-flag-usa:before {
  content: "\f74d";
}

.fas-flame:before {
  content: "\f6df";
}

.fas-flask:before {
  content: "\f0c3";
}

.fas-flask-poison:before {
  content: "\f6e0";
}

.fas-flask-potion:before {
  content: "\f6e1";
}

.fas-flickr:before {
  content: "\f16e";
}

.fas-flipboard:before {
  content: "\f44d";
}

.fas-flower:before {
  content: "\f7ff";
}

.fas-flower-daffodil:before {
  content: "\f800";
}

.fas-flower-tulip:before {
  content: "\f801";
}

.fas-flushed:before {
  content: "\f579";
}

.fas-fly:before {
  content: "\f417";
}

.fas-fog:before {
  content: "\f74e";
}

.fas-folder:before {
  content: "\f07b";
}

.fas-folder-minus:before {
  content: "\f65d";
}

.fas-folder-open:before {
  content: "\f07c";
}

.fas-folder-plus:before {
  content: "\f65e";
}

.fas-folder-times:before {
  content: "\f65f";
}

.fas-folder-tree:before {
  content: "\f802";
}

.fas-folders:before {
  content: "\f660";
}

.fas-font:before {
  content: "\f031";
}

.fas-font-awesome:before {
  content: "\f2b4";
}

.fas-font-awesome-alt:before {
  content: "\f35c";
}

.fas-font-awesome-flag:before {
  content: "\f425";
}

.fas-font-awesome-logo-full:before {
  content: "\f4e6";
}

.fas-font-case:before {
  content: "\f866";
}

.fas-fonticons:before {
  content: "\f280";
}

.fas-fonticons-fi:before {
  content: "\f3a2";
}

.fas-football-ball:before {
  content: "\f44e";
}

.fas-football-helmet:before {
  content: "\f44f";
}

.fas-forklift:before {
  content: "\f47a";
}

.fas-fort-awesome:before {
  content: "\f286";
}

.fas-fort-awesome-alt:before {
  content: "\f3a3";
}

.fas-forumbee:before {
  content: "\f211";
}

.fas-forward:before {
  content: "\f04e";
}

.fas-foursquare:before {
  content: "\f180";
}

.fas-fragile:before {
  content: "\f4bb";
}

.fas-free-code-camp:before {
  content: "\f2c5";
}

.fas-freebsd:before {
  content: "\f3a4";
}

.fas-french-fries:before {
  content: "\f803";
}

.fas-frog:before {
  content: "\f52e";
}

.fas-frosty-head:before {
  content: "\f79b";
}

.fas-frown:before {
  content: "\f119";
}

.fas-frown-open:before {
  content: "\f57a";
}

.fas-fulcrum:before {
  content: "\f50b";
}

.fas-function:before {
  content: "\f661";
}

.fas-funnel-dollar:before {
  content: "\f662";
}

.fas-futbol:before {
  content: "\f1e3";
}

.fas-galactic-republic:before {
  content: "\f50c";
}

.fas-galactic-senate:before {
  content: "\f50d";
}

.fas-game-board:before {
  content: "\f867";
}

.fas-game-board-alt:before {
  content: "\f868";
}

.fas-gamepad:before {
  content: "\f11b";
}

.fas-gas-pump:before {
  content: "\f52f";
}

.fas-gas-pump-slash:before {
  content: "\f5f4";
}

.fas-gavel:before {
  content: "\f0e3";
}

.fas-gem:before {
  content: "\f3a5";
}

.fas-genderless:before {
  content: "\f22d";
}

.fas-get-pocket:before {
  content: "\f265";
}

.fas-gg:before {
  content: "\f260";
}

.fas-gg-circle:before {
  content: "\f261";
}

.fas-ghost:before {
  content: "\f6e2";
}

.fas-gift:before {
  content: "\f06b";
}

.fas-gift-card:before {
  content: "\f663";
}

.fas-gifts:before {
  content: "\f79c";
}

.fas-gingerbread-man:before {
  content: "\f79d";
}

.fas-git:before {
  content: "\f1d3";
}

.fas-git-alt:before {
  content: "\f841";
}

.fas-git-square:before {
  content: "\f1d2";
}

.fas-github:before {
  content: "\f09b";
}

.fas-github-alt:before {
  content: "\f113";
}

.fas-github-square:before {
  content: "\f092";
}

.fas-gitkraken:before {
  content: "\f3a6";
}

.fas-gitlab:before {
  content: "\f296";
}

.fas-gitter:before {
  content: "\f426";
}

.fas-glass:before {
  content: "\f804";
}

.fas-glass-champagne:before {
  content: "\f79e";
}

.fas-glass-cheers:before {
  content: "\f79f";
}

.fas-glass-citrus:before {
  content: "\f869";
}

.fas-glass-martini:before {
  content: "\f000";
}

.fas-glass-martini-alt:before {
  content: "\f57b";
}

.fas-glass-whiskey:before {
  content: "\f7a0";
}

.fas-glass-whiskey-rocks:before {
  content: "\f7a1";
}

.fas-glasses:before {
  content: "\f530";
}

.fas-glasses-alt:before {
  content: "\f5f5";
}

.fas-glide:before {
  content: "\f2a5";
}

.fas-glide-g:before {
  content: "\f2a6";
}

.fas-globe:before {
  content: "\f0ac";
}

.fas-globe-africa:before {
  content: "\f57c";
}

.fas-globe-americas:before {
  content: "\f57d";
}

.fas-globe-asia:before {
  content: "\f57e";
}

.fas-globe-europe:before {
  content: "\f7a2";
}

.fas-globe-snow:before {
  content: "\f7a3";
}

.fas-globe-stand:before {
  content: "\f5f6";
}

.fas-gofore:before {
  content: "\f3a7";
}

.fas-golf-ball:before {
  content: "\f450";
}

.fas-golf-club:before {
  content: "\f451";
}

.fas-goodreads:before {
  content: "\f3a8";
}

.fas-goodreads-g:before {
  content: "\f3a9";
}

.fas-google:before {
  content: "\f1a0";
}

.fas-google-drive:before {
  content: "\f3aa";
}

.fas-google-play:before {
  content: "\f3ab";
}

.fas-google-plus:before {
  content: "\f2b3";
}

.fas-google-plus-g:before {
  content: "\f0d5";
}

.fas-google-plus-square:before {
  content: "\f0d4";
}

.fas-google-wallet:before {
  content: "\f1ee";
}

.fas-gopuram:before {
  content: "\f664";
}

.fas-graduation-cap:before {
  content: "\f19d";
}

.fas-gratipay:before {
  content: "\f184";
}

.fas-grav:before {
  content: "\f2d6";
}

.fas-greater-than:before {
  content: "\f531";
}

.fas-greater-than-equal:before {
  content: "\f532";
}

.fas-grimace:before {
  content: "\f57f";
}

.fas-grin:before {
  content: "\f580";
}

.fas-grin-alt:before {
  content: "\f581";
}

.fas-grin-beam:before {
  content: "\f582";
}

.fas-grin-beam-sweat:before {
  content: "\f583";
}

.fas-grin-hearts:before {
  content: "\f584";
}

.fas-grin-squint:before {
  content: "\f585";
}

.fas-grin-squint-tears:before {
  content: "\f586";
}

.fas-grin-stars:before {
  content: "\f587";
}

.fas-grin-tears:before {
  content: "\f588";
}

.fas-grin-tongue:before {
  content: "\f589";
}

.fas-grin-tongue-squint:before {
  content: "\f58a";
}

.fas-grin-tongue-wink:before {
  content: "\f58b";
}

.fas-grin-wink:before {
  content: "\f58c";
}

.fas-grip-horizontal:before {
  content: "\f58d";
}

.fas-grip-lines:before {
  content: "\f7a4";
}

.fas-grip-lines-vertical:before {
  content: "\f7a5";
}

.fas-grip-vertical:before {
  content: "\f58e";
}

.fas-gripfire:before {
  content: "\f3ac";
}

.fas-grunt:before {
  content: "\f3ad";
}

.fas-guitar:before {
  content: "\f7a6";
}

.fas-gulp:before {
  content: "\f3ae";
}

.fas-h-square:before {
  content: "\f0fd";
}

.fas-h1:before {
  content: "\f313";
}

.fas-h2:before {
  content: "\f314";
}

.fas-h3:before {
  content: "\f315";
}

.fas-h4:before {
  content: "\f86a";
}

.fas-hacker-news:before {
  content: "\f1d4";
}

.fas-hacker-news-square:before {
  content: "\f3af";
}

.fas-hackerrank:before {
  content: "\f5f7";
}

.fas-hamburger:before {
  content: "\f805";
}

.fas-hammer:before {
  content: "\f6e3";
}

.fas-hammer-war:before {
  content: "\f6e4";
}

.fas-hamsa:before {
  content: "\f665";
}

.fas-hand-heart:before {
  content: "\f4bc";
}

.fas-hand-holding:before {
  content: "\f4bd";
}

.fas-hand-holding-box:before {
  content: "\f47b";
}

.fas-hand-holding-heart:before {
  content: "\f4be";
}

.fas-hand-holding-magic:before {
  content: "\f6e5";
}

.fas-hand-holding-seedling:before {
  content: "\f4bf";
}

.fas-hand-holding-usd:before {
  content: "\f4c0";
}

.fas-hand-holding-water:before {
  content: "\f4c1";
}

.fas-hand-lizard:before {
  content: "\f258";
}

.fas-hand-middle-finger:before {
  content: "\f806";
}

.fas-hand-paper:before {
  content: "\f256";
}

.fas-hand-peace:before {
  content: "\f25b";
}

.fas-hand-point-down:before {
  content: "\f0a7";
}

.fas-hand-point-left:before {
  content: "\f0a5";
}

.fas-hand-point-right:before {
  content: "\f0a4";
}

.fas-hand-point-up:before {
  content: "\f0a6";
}

.fas-hand-pointer:before {
  content: "\f25a";
}

.fas-hand-receiving:before {
  content: "\f47c";
}

.fas-hand-rock:before {
  content: "\f255";
}

.fas-hand-scissors:before {
  content: "\f257";
}

.fas-hand-spock:before {
  content: "\f259";
}

.fas-hands:before {
  content: "\f4c2";
}

.fas-hands-heart:before {
  content: "\f4c3";
}

.fas-hands-helping:before {
  content: "\f4c4";
}

.fas-hands-usd:before {
  content: "\f4c5";
}

.fas-handshake:before {
  content: "\f2b5";
}

.fas-handshake-alt:before {
  content: "\f4c6";
}

.fas-hanukiah:before {
  content: "\f6e6";
}

.fas-hard-hat:before {
  content: "\f807";
}

.fas-hashtag:before {
  content: "\f292";
}

.fas-hat-chef:before {
  content: "\f86b";
}

.fas-hat-santa:before {
  content: "\f7a7";
}

.fas-hat-winter:before {
  content: "\f7a8";
}

.fas-hat-witch:before {
  content: "\f6e7";
}

.fas-hat-wizard:before {
  content: "\f6e8";
}

.fas-haykal:before {
  content: "\f666";
}

.fas-hdd:before {
  content: "\f0a0";
}

.fas-head-side:before {
  content: "\f6e9";
}

.fas-head-side-brain:before {
  content: "\f808";
}

.fas-head-side-medical:before {
  content: "\f809";
}

.fas-head-vr:before {
  content: "\f6ea";
}

.fas-heading:before {
  content: "\f1dc";
}

.fas-headphones:before {
  content: "\f025";
}

.fas-headphones-alt:before {
  content: "\f58f";
}

.fas-headset:before {
  content: "\f590";
}

.fas-heart:before {
  content: "\f004";
}

.fas-heart-broken:before {
  content: "\f7a9";
}

.fas-heart-circle:before {
  content: "\f4c7";
}

.fas-heart-rate:before {
  content: "\f5f8";
}

.fas-heart-square:before {
  content: "\f4c8";
}

.fas-heartbeat:before {
  content: "\f21e";
}

.fas-helicopter:before {
  content: "\f533";
}

.fas-helmet-battle:before {
  content: "\f6eb";
}

.fas-hexagon:before {
  content: "\f312";
}

.fas-highlighter:before {
  content: "\f591";
}

.fas-hiking:before {
  content: "\f6ec";
}

.fas-hippo:before {
  content: "\f6ed";
}

.fas-hips:before {
  content: "\f452";
}

.fas-hire-a-helper:before {
  content: "\f3b0";
}

.fas-history:before {
  content: "\f1da";
}

.fas-hockey-mask:before {
  content: "\f6ee";
}

.fas-hockey-puck:before {
  content: "\f453";
}

.fas-hockey-sticks:before {
  content: "\f454";
}

.fas-holly-berry:before {
  content: "\f7aa";
}

.fas-home:before {
  content: "\f015";
}

.fas-home-alt:before {
  content: "\f80a";
}

.fas-home-heart:before {
  content: "\f4c9";
}

.fas-home-lg:before {
  content: "\f80b";
}

.fas-home-lg-alt:before {
  content: "\f80c";
}

.fas-hood-cloak:before {
  content: "\f6ef";
}

.fas-hooli:before {
  content: "\f427";
}

.fas-horizontal-rule:before {
  content: "\f86c";
}

.fas-hornbill:before {
  content: "\f592";
}

.fas-horse:before {
  content: "\f6f0";
}

.fas-horse-head:before {
  content: "\f7ab";
}

.fas-hospital:before {
  content: "\f0f8";
}

.fas-hospital-alt:before {
  content: "\f47d";
}

.fas-hospital-symbol:before {
  content: "\f47e";
}

.fas-hospital-user:before {
  content: "\f80d";
}

.fas-hospitals:before {
  content: "\f80e";
}

.fas-hot-tub:before {
  content: "\f593";
}

.fas-hotdog:before {
  content: "\f80f";
}

.fas-hotel:before {
  content: "\f594";
}

.fas-hotjar:before {
  content: "\f3b1";
}

.fas-hourglass:before {
  content: "\f254";
}

.fas-hourglass-end:before {
  content: "\f253";
}

.fas-hourglass-half:before {
  content: "\f252";
}

.fas-hourglass-start:before {
  content: "\f251";
}

.fas-house-damage:before {
  content: "\f6f1";
}

.fas-house-flood:before {
  content: "\f74f";
}

.fas-houzz:before {
  content: "\f27c";
}

.fas-hryvnia:before {
  content: "\f6f2";
}

.fas-html5:before {
  content: "\f13b";
}

.fas-hubspot:before {
  content: "\f3b2";
}

.fas-humidity:before {
  content: "\f750";
}

.fas-hurricane:before {
  content: "\f751";
}

.fas-i-cursor:before {
  content: "\f246";
}

.fas-ice-cream:before {
  content: "\f810";
}

.fas-ice-skate:before {
  content: "\f7ac";
}

.fas-icicles:before {
  content: "\f7ad";
}

.fas-icons:before {
  content: "\f86d";
}

.fas-icons-alt:before {
  content: "\f86e";
}

.fas-id-badge:before {
  content: "\f2c1";
}

.fas-id-card:before {
  content: "\f2c2";
}

.fas-id-card-alt:before {
  content: "\f47f";
}

.fas-igloo:before {
  content: "\f7ae";
}

.fas-image:before {
  content: "\f03e";
}

.fas-images:before {
  content: "\f302";
}

.fas-imdb:before {
  content: "\f2d8";
}

.fas-inbox:before {
  content: "\f01c";
}

.fas-inbox-in:before {
  content: "\f310";
}

.fas-inbox-out:before {
  content: "\f311";
}

.fas-indent:before {
  content: "\f03c";
}

.fas-industry:before {
  content: "\f275";
}

.fas-industry-alt:before {
  content: "\f3b3";
}

.fas-infinity:before {
  content: "\f534";
}

.fas-info:before {
  content: "\f129";
}

.fas-info-circle:before {
  content: "\f05a";
}

.fas-info-square:before {
  content: "\f30f";
}

.fas-inhaler:before {
  content: "\f5f9";
}

.fas-instagram:before {
  content: "\f16d";
}

.fas-integral:before {
  content: "\f667";
}

.fas-intercom:before {
  content: "\f7af";
}

.fas-internet-explorer:before {
  content: "\f26b";
}

.fas-intersection:before {
  content: "\f668";
}

.fas-inventory:before {
  content: "\f480";
}

.fas-invision:before {
  content: "\f7b0";
}

.fas-ioxhost:before {
  content: "\f208";
}

.fas-island-tropical:before {
  content: "\f811";
}

.fas-italic:before {
  content: "\f033";
}

.fas-itch-io:before {
  content: "\f83a";
}

.fas-itunes:before {
  content: "\f3b4";
}

.fas-itunes-note:before {
  content: "\f3b5";
}

.fas-jack-o-lantern:before {
  content: "\f30e";
}

.fas-java:before {
  content: "\f4e4";
}

.fas-jedi:before {
  content: "\f669";
}

.fas-jedi-order:before {
  content: "\f50e";
}

.fas-jenkins:before {
  content: "\f3b6";
}

.fas-jira:before {
  content: "\f7b1";
}

.fas-joget:before {
  content: "\f3b7";
}

.fas-joint:before {
  content: "\f595";
}

.fas-joomla:before {
  content: "\f1aa";
}

.fas-journal-whills:before {
  content: "\f66a";
}

.fas-js:before {
  content: "\f3b8";
}

.fas-js-square:before {
  content: "\f3b9";
}

.fas-jsfiddle:before {
  content: "\f1cc";
}

.fas-kaaba:before {
  content: "\f66b";
}

.fas-kaggle:before {
  content: "\f5fa";
}

.fas-kerning:before {
  content: "\f86f";
}

.fas-key:before {
  content: "\f084";
}

.fas-key-skeleton:before {
  content: "\f6f3";
}

.fas-keybase:before {
  content: "\f4f5";
}

.fas-keyboard:before {
  content: "\f11c";
}

.fas-keycdn:before {
  content: "\f3ba";
}

.fas-keynote:before {
  content: "\f66c";
}

.fas-khanda:before {
  content: "\f66d";
}

.fas-kickstarter:before {
  content: "\f3bb";
}

.fas-kickstarter-k:before {
  content: "\f3bc";
}

.fas-kidneys:before {
  content: "\f5fb";
}

.fas-kiss:before {
  content: "\f596";
}

.fas-kiss-beam:before {
  content: "\f597";
}

.fas-kiss-wink-heart:before {
  content: "\f598";
}

.fas-kite:before {
  content: "\f6f4";
}

.fas-kiwi-bird:before {
  content: "\f535";
}

.fas-knife-kitchen:before {
  content: "\f6f5";
}

.fas-korvue:before {
  content: "\f42f";
}

.fas-lambda:before {
  content: "\f66e";
}

.fas-lamp:before {
  content: "\f4ca";
}

.fas-landmark:before {
  content: "\f66f";
}

.fas-landmark-alt:before {
  content: "\f752";
}

.fas-language:before {
  content: "\f1ab";
}

.fas-laptop:before {
  content: "\f109";
}

.fas-laptop-code:before {
  content: "\f5fc";
}

.fas-laptop-medical:before {
  content: "\f812";
}

.fas-laravel:before {
  content: "\f3bd";
}

.fas-lastfm:before {
  content: "\f202";
}

.fas-lastfm-square:before {
  content: "\f203";
}

.fas-laugh:before {
  content: "\f599";
}

.fas-laugh-beam:before {
  content: "\f59a";
}

.fas-laugh-squint:before {
  content: "\f59b";
}

.fas-laugh-wink:before {
  content: "\f59c";
}

.fas-layer-group:before {
  content: "\f5fd";
}

.fas-layer-minus:before {
  content: "\f5fe";
}

.fas-layer-plus:before {
  content: "\f5ff";
}

.fas-leaf:before {
  content: "\f06c";
}

.fas-leaf-heart:before {
  content: "\f4cb";
}

.fas-leaf-maple:before {
  content: "\f6f6";
}

.fas-leaf-oak:before {
  content: "\f6f7";
}

.fas-leanpub:before {
  content: "\f212";
}

.fas-lemon:before {
  content: "\f094";
}

.fas-less:before {
  content: "\f41d";
}

.fas-less-than:before {
  content: "\f536";
}

.fas-less-than-equal:before {
  content: "\f537";
}

.fas-level-down:before {
  content: "\f149";
}

.fas-level-down-alt:before {
  content: "\f3be";
}

.fas-level-up:before {
  content: "\f148";
}

.fas-level-up-alt:before {
  content: "\f3bf";
}

.fas-life-ring:before {
  content: "\f1cd";
}

.fas-lightbulb:before {
  content: "\f0eb";
}

.fas-lightbulb-dollar:before {
  content: "\f670";
}

.fas-lightbulb-exclamation:before {
  content: "\f671";
}

.fas-lightbulb-on:before {
  content: "\f672";
}

.fas-lightbulb-slash:before {
  content: "\f673";
}

.fas-lights-holiday:before {
  content: "\f7b2";
}

.fas-line:before {
  content: "\f3c0";
}

.fas-line-columns:before {
  content: "\f870";
}

.fas-line-height:before {
  content: "\f871";
}

.fas-link:before {
  content: "\f0c1";
}

.fas-linkedin:before {
  content: "\f08c";
}

.fas-linkedin-in:before {
  content: "\f0e1";
}

.fas-linode:before {
  content: "\f2b8";
}

.fas-linux:before {
  content: "\f17c";
}

.fas-lips:before {
  content: "\f600";
}

.fas-lira-sign:before {
  content: "\f195";
}

.fas-list:before {
  content: "\f03a";
}

.fas-list-alt:before {
  content: "\f022";
}

.fas-list-ol:before {
  content: "\f0cb";
}

.fas-list-ul:before {
  content: "\f0ca";
}

.fas-location:before {
  content: "\f601";
}

.fas-location-arrow:before {
  content: "\f124";
}

.fas-location-circle:before {
  content: "\f602";
}

.fas-location-slash:before {
  content: "\f603";
}

.fas-lock:before {
  content: "\f023";
}

.fas-lock-alt:before {
  content: "\f30d";
}

.fas-lock-open:before {
  content: "\f3c1";
}

.fas-lock-open-alt:before {
  content: "\f3c2";
}

.fas-long-arrow-alt-down:before {
  content: "\f309";
}

.fas-long-arrow-alt-left:before {
  content: "\f30a";
}

.fas-long-arrow-alt-right:before {
  content: "\f30b";
}

.fas-long-arrow-alt-up:before {
  content: "\f30c";
}

.fas-long-arrow-down:before {
  content: "\f175";
}

.fas-long-arrow-left:before {
  content: "\f177";
}

.fas-long-arrow-right:before {
  content: "\f178";
}

.fas-long-arrow-up:before {
  content: "\f176";
}

.fas-loveseat:before {
  content: "\f4cc";
}

.fas-low-vision:before {
  content: "\f2a8";
}

.fas-luchador:before {
  content: "\f455";
}

.fas-luggage-cart:before {
  content: "\f59d";
}

.fas-lungs:before {
  content: "\f604";
}

.fas-lyft:before {
  content: "\f3c3";
}

.fas-mace:before {
  content: "\f6f8";
}

.fas-magento:before {
  content: "\f3c4";
}

.fas-magic:before {
  content: "\f0d0";
}

.fas-magnet:before {
  content: "\f076";
}

.fas-mail-bulk:before {
  content: "\f674";
}

.fas-mailbox:before {
  content: "\f813";
}

.fas-mailchimp:before {
  content: "\f59e";
}

.fas-male:before {
  content: "\f183";
}

.fas-mandalorian:before {
  content: "\f50f";
}

.fas-mandolin:before {
  content: "\f6f9";
}

.fas-map:before {
  content: "\f279";
}

.fas-map-marked:before {
  content: "\f59f";
}

.fas-map-marked-alt:before {
  content: "\f5a0";
}

.fas-map-marker:before {
  content: "\f041";
}

.fas-map-marker-alt:before {
  content: "\f3c5";
}

.fas-map-marker-alt-slash:before {
  content: "\f605";
}

.fas-map-marker-check:before {
  content: "\f606";
}

.fas-map-marker-edit:before {
  content: "\f607";
}

.fas-map-marker-exclamation:before {
  content: "\f608";
}

.fas-map-marker-minus:before {
  content: "\f609";
}

.fas-map-marker-plus:before {
  content: "\f60a";
}

.fas-map-marker-question:before {
  content: "\f60b";
}

.fas-map-marker-slash:before {
  content: "\f60c";
}

.fas-map-marker-smile:before {
  content: "\f60d";
}

.fas-map-marker-times:before {
  content: "\f60e";
}

.fas-map-pin:before {
  content: "\f276";
}

.fas-map-signs:before {
  content: "\f277";
}

.fas-markdown:before {
  content: "\f60f";
}

.fas-marker:before {
  content: "\f5a1";
}

.fas-mars:before {
  content: "\f222";
}

.fas-mars-double:before {
  content: "\f227";
}

.fas-mars-stroke:before {
  content: "\f229";
}

.fas-mars-stroke-h:before {
  content: "\f22b";
}

.fas-mars-stroke-v:before {
  content: "\f22a";
}

.fas-mask:before {
  content: "\f6fa";
}

.fas-mastodon:before {
  content: "\f4f6";
}

.fas-maxcdn:before {
  content: "\f136";
}

.fas-meat:before {
  content: "\f814";
}

.fas-medal:before {
  content: "\f5a2";
}

.fas-medapps:before {
  content: "\f3c6";
}

.fas-medium:before {
  content: "\f23a";
}

.fas-medium-m:before {
  content: "\f3c7";
}

.fas-medkit:before {
  content: "\f0fa";
}

.fas-medrt:before {
  content: "\f3c8";
}

.fas-meetup:before {
  content: "\f2e0";
}

.fas-megaphone:before {
  content: "\f675";
}

.fas-megaport:before {
  content: "\f5a3";
}

.fas-meh:before {
  content: "\f11a";
}

.fas-meh-blank:before {
  content: "\f5a4";
}

.fas-meh-rolling-eyes:before {
  content: "\f5a5";
}

.fas-memory:before {
  content: "\f538";
}

.fas-mendeley:before {
  content: "\f7b3";
}

.fas-menorah:before {
  content: "\f676";
}

.fas-mercury:before {
  content: "\f223";
}

.fas-meteor:before {
  content: "\f753";
}

.fas-microchip:before {
  content: "\f2db";
}

.fas-microphone:before {
  content: "\f130";
}

.fas-microphone-alt:before {
  content: "\f3c9";
}

.fas-microphone-alt-slash:before {
  content: "\f539";
}

.fas-microphone-slash:before {
  content: "\f131";
}

.fas-microscope:before {
  content: "\f610";
}

.fas-microsoft:before {
  content: "\f3ca";
}

.fas-mind-share:before {
  content: "\f677";
}

.fas-minus:before {
  content: "\f068";
}

.fas-minus-circle:before {
  content: "\f056";
}

.fas-minus-hexagon:before {
  content: "\f307";
}

.fas-minus-octagon:before {
  content: "\f308";
}

.fas-minus-square:before {
  content: "\f146";
}

.fas-mistletoe:before {
  content: "\f7b4";
}

.fas-mitten:before {
  content: "\f7b5";
}

.fas-mix:before {
  content: "\f3cb";
}

.fas-mixcloud:before {
  content: "\f289";
}

.fas-mizuni:before {
  content: "\f3cc";
}

.fas-mobile:before {
  content: "\f10b";
}

.fas-mobile-alt:before {
  content: "\f3cd";
}

.fas-mobile-android:before {
  content: "\f3ce";
}

.fas-mobile-android-alt:before {
  content: "\f3cf";
}

.fas-modx:before {
  content: "\f285";
}

.fas-monero:before {
  content: "\f3d0";
}

.fas-money-bill:before {
  content: "\f0d6";
}

.fas-money-bill-alt:before {
  content: "\f3d1";
}

.fas-money-bill-wave:before {
  content: "\f53a";
}

.fas-money-bill-wave-alt:before {
  content: "\f53b";
}

.fas-money-check:before {
  content: "\f53c";
}

.fas-money-check-alt:before {
  content: "\f53d";
}

.fas-money-check-edit:before {
  content: "\f872";
}

.fas-money-check-edit-alt:before {
  content: "\f873";
}

.fas-monitor-heart-rate:before {
  content: "\f611";
}

.fas-monkey:before {
  content: "\f6fb";
}

.fas-monument:before {
  content: "\f5a6";
}

.fas-moon:before {
  content: "\f186";
}

.fas-moon-cloud:before {
  content: "\f754";
}

.fas-moon-stars:before {
  content: "\f755";
}

.fas-mortar-pestle:before {
  content: "\f5a7";
}

.fas-mosque:before {
  content: "\f678";
}

.fas-motorcycle:before {
  content: "\f21c";
}

.fas-mountain:before {
  content: "\f6fc";
}

.fas-mountains:before {
  content: "\f6fd";
}

.fas-mouse-pointer:before {
  content: "\f245";
}

.fas-mug:before {
  content: "\f874";
}

.fas-mug-hot:before {
  content: "\f7b6";
}

.fas-mug-marshmallows:before {
  content: "\f7b7";
}

.fas-mug-tea:before {
  content: "\f875";
}

.fas-music:before {
  content: "\f001";
}

.fas-napster:before {
  content: "\f3d2";
}

.fas-narwhal:before {
  content: "\f6fe";
}

.fas-neos:before {
  content: "\f612";
}

.fas-network-wired:before {
  content: "\f6ff";
}

.fas-neuter:before {
  content: "\f22c";
}

.fas-newspaper:before {
  content: "\f1ea";
}

.fas-nimblr:before {
  content: "\f5a8";
}

.fas-node:before {
  content: "\f419";
}

.fas-node-js:before {
  content: "\f3d3";
}

.fas-not-equal:before {
  content: "\f53e";
}

.fas-notes-medical:before {
  content: "\f481";
}

.fas-npm:before {
  content: "\f3d4";
}

.fas-ns8:before {
  content: "\f3d5";
}

.fas-nutritionix:before {
  content: "\f3d6";
}

.fas-object-group:before {
  content: "\f247";
}

.fas-object-ungroup:before {
  content: "\f248";
}

.fas-octagon:before {
  content: "\f306";
}

.fas-odnoklassniki:before {
  content: "\f263";
}

.fas-odnoklassniki-square:before {
  content: "\f264";
}

.fas-oil-can:before {
  content: "\f613";
}

.fas-oil-temp:before {
  content: "\f614";
}

.fas-old-republic:before {
  content: "\f510";
}

.fas-om:before {
  content: "\f679";
}

.fas-omega:before {
  content: "\f67a";
}

.fas-opencart:before {
  content: "\f23d";
}

.fas-openid:before {
  content: "\f19b";
}

.fas-opera:before {
  content: "\f26a";
}

.fas-optin-monster:before {
  content: "\f23c";
}

.fas-ornament:before {
  content: "\f7b8";
}

.fas-osi:before {
  content: "\f41a";
}

.fas-otter:before {
  content: "\f700";
}

.fas-outdent:before {
  content: "\f03b";
}

.fas-overline:before {
  content: "\f876";
}

.fas-page-break:before {
  content: "\f877";
}

.fas-page4:before {
  content: "\f3d7";
}

.fas-pagelines:before {
  content: "\f18c";
}

.fas-pager:before {
  content: "\f815";
}

.fas-paint-brush:before {
  content: "\f1fc";
}

.fas-paint-brush-alt:before {
  content: "\f5a9";
}

.fas-paint-roller:before {
  content: "\f5aa";
}

.fas-palette:before {
  content: "\f53f";
}

.fas-palfed:before {
  content: "\f3d8";
}

.fas-pallet:before {
  content: "\f482";
}

.fas-pallet-alt:before {
  content: "\f483";
}

.fas-paper-plane:before {
  content: "\f1d8";
}

.fas-paperclip:before {
  content: "\f0c6";
}

.fas-parachute-box:before {
  content: "\f4cd";
}

.fas-paragraph:before {
  content: "\f1dd";
}

.fas-paragraph-rtl:before {
  content: "\f878";
}

.fas-parking:before {
  content: "\f540";
}

.fas-parking-circle:before {
  content: "\f615";
}

.fas-parking-circle-slash:before {
  content: "\f616";
}

.fas-parking-slash:before {
  content: "\f617";
}

.fas-passport:before {
  content: "\f5ab";
}

.fas-pastafarianism:before {
  content: "\f67b";
}

.fas-paste:before {
  content: "\f0ea";
}

.fas-patreon:before {
  content: "\f3d9";
}

.fas-pause:before {
  content: "\f04c";
}

.fas-pause-circle:before {
  content: "\f28b";
}

.fas-paw:before {
  content: "\f1b0";
}

.fas-paw-alt:before {
  content: "\f701";
}

.fas-paw-claws:before {
  content: "\f702";
}

.fas-paypal:before {
  content: "\f1ed";
}

.fas-peace:before {
  content: "\f67c";
}

.fas-pegasus:before {
  content: "\f703";
}

.fas-pen:before {
  content: "\f304";
}

.fas-pen-alt:before {
  content: "\f305";
}

.fas-pen-fancy:before {
  content: "\f5ac";
}

.fas-pen-nib:before {
  content: "\f5ad";
}

.fas-pen-square:before {
  content: "\f14b";
}

.fas-pencil:before {
  content: "\f040";
}

.fas-pencil-alt:before {
  content: "\f303";
}

.fas-pencil-paintbrush:before {
  content: "\f618";
}

.fas-pencil-ruler:before {
  content: "\f5ae";
}

.fas-pennant:before {
  content: "\f456";
}

.fas-penny-arcade:before {
  content: "\f704";
}

.fas-people-carry:before {
  content: "\f4ce";
}

.fas-pepper-hot:before {
  content: "\f816";
}

.fas-percent:before {
  content: "\f295";
}

.fas-percentage:before {
  content: "\f541";
}

.fas-periscope:before {
  content: "\f3da";
}

.fas-person-booth:before {
  content: "\f756";
}

.fas-person-carry:before {
  content: "\f4cf";
}

.fas-person-dolly:before {
  content: "\f4d0";
}

.fas-person-dolly-empty:before {
  content: "\f4d1";
}

.fas-person-sign:before {
  content: "\f757";
}

.fas-phabricator:before {
  content: "\f3db";
}

.fas-phoenix-framework:before {
  content: "\f3dc";
}

.fas-phoenix-squadron:before {
  content: "\f511";
}

.fas-phone:before {
  content: "\f095";
}

.fas-phone-alt:before {
  content: "\f879";
}

.fas-phone-laptop:before {
  content: "\f87a";
}

.fas-phone-office:before {
  content: "\f67d";
}

.fas-phone-plus:before {
  content: "\f4d2";
}

.fas-phone-slash:before {
  content: "\f3dd";
}

.fas-phone-square:before {
  content: "\f098";
}

.fas-phone-square-alt:before {
  content: "\f87b";
}

.fas-phone-volume:before {
  content: "\f2a0";
}

.fas-photo-video:before {
  content: "\f87c";
}

.fas-php:before {
  content: "\f457";
}

.fas-pi:before {
  content: "\f67e";
}

.fas-pie:before {
  content: "\f705";
}

.fas-pied-piper:before {
  content: "\f2ae";
}

.fas-pied-piper-alt:before {
  content: "\f1a8";
}

.fas-pied-piper-hat:before {
  content: "\f4e5";
}

.fas-pied-piper-pp:before {
  content: "\f1a7";
}

.fas-pig:before {
  content: "\f706";
}

.fas-piggy-bank:before {
  content: "\f4d3";
}

.fas-pills:before {
  content: "\f484";
}

.fas-pinterest:before {
  content: "\f0d2";
}

.fas-pinterest-p:before {
  content: "\f231";
}

.fas-pinterest-square:before {
  content: "\f0d3";
}

.fas-pizza:before {
  content: "\f817";
}

.fas-pizza-slice:before {
  content: "\f818";
}

.fas-place-of-worship:before {
  content: "\f67f";
}

.fas-plane:before {
  content: "\f072";
}

.fas-plane-alt:before {
  content: "\f3de";
}

.fas-plane-arrival:before {
  content: "\f5af";
}

.fas-plane-departure:before {
  content: "\f5b0";
}

.fas-play:before {
  content: "\f04b";
}

.fas-play-circle:before {
  content: "\f144";
}

.fas-playstation:before {
  content: "\f3df";
}

.fas-plug:before {
  content: "\f1e6";
}

.fas-plus:before {
  content: "\f067";
}

.fas-plus-circle:before {
  content: "\f055";
}

.fas-plus-hexagon:before {
  content: "\f300";
}

.fas-plus-octagon:before {
  content: "\f301";
}

.fas-plus-square:before {
  content: "\f0fe";
}

.fas-podcast:before {
  content: "\f2ce";
}

.fas-podium:before {
  content: "\f680";
}

.fas-podium-star:before {
  content: "\f758";
}

.fas-poll:before {
  content: "\f681";
}

.fas-poll-h:before {
  content: "\f682";
}

.fas-poll-people:before {
  content: "\f759";
}

.fas-poo:before {
  content: "\f2fe";
}

.fas-poo-storm:before {
  content: "\f75a";
}

.fas-poop:before {
  content: "\f619";
}

.fas-popcorn:before {
  content: "\f819";
}

.fas-portrait:before {
  content: "\f3e0";
}

.fas-pound-sign:before {
  content: "\f154";
}

.fas-power-off:before {
  content: "\f011";
}

.fas-pray:before {
  content: "\f683";
}

.fas-praying-hands:before {
  content: "\f684";
}

.fas-prescription:before {
  content: "\f5b1";
}

.fas-prescription-bottle:before {
  content: "\f485";
}

.fas-prescription-bottle-alt:before {
  content: "\f486";
}

.fas-presentation:before {
  content: "\f685";
}

.fas-print:before {
  content: "\f02f";
}

.fas-print-search:before {
  content: "\f81a";
}

.fas-print-slash:before {
  content: "\f686";
}

.fas-procedures:before {
  content: "\f487";
}

.fas-product-hunt:before {
  content: "\f288";
}

.fas-project-diagram:before {
  content: "\f542";
}

.fas-pumpkin:before {
  content: "\f707";
}

.fas-pushed:before {
  content: "\f3e1";
}

.fas-puzzle-piece:before {
  content: "\f12e";
}

.fas-python:before {
  content: "\f3e2";
}

.fas-qq:before {
  content: "\f1d6";
}

.fas-qrcode:before {
  content: "\f029";
}

.fas-question:before {
  content: "\f128";
}

.fas-question-circle:before {
  content: "\f059";
}

.fas-question-square:before {
  content: "\f2fd";
}

.fas-quidditch:before {
  content: "\f458";
}

.fas-quinscape:before {
  content: "\f459";
}

.fas-quora:before {
  content: "\f2c4";
}

.fas-quote-left:before {
  content: "\f10d";
}

.fas-quote-right:before {
  content: "\f10e";
}

.fas-quran:before {
  content: "\f687";
}

.fas-r-project:before {
  content: "\f4f7";
}

.fas-rabbit:before {
  content: "\f708";
}

.fas-rabbit-fast:before {
  content: "\f709";
}

.fas-racquet:before {
  content: "\f45a";
}

.fas-radiation:before {
  content: "\f7b9";
}

.fas-radiation-alt:before {
  content: "\f7ba";
}

.fas-rainbow:before {
  content: "\f75b";
}

.fas-raindrops:before {
  content: "\f75c";
}

.fas-ram:before {
  content: "\f70a";
}

.fas-ramp-loading:before {
  content: "\f4d4";
}

.fas-random:before {
  content: "\f074";
}

.fas-raspberry-pi:before {
  content: "\f7bb";
}

.fas-ravelry:before {
  content: "\f2d9";
}

.fas-react:before {
  content: "\f41b";
}

.fas-reacteurope:before {
  content: "\f75d";
}

.fas-readme:before {
  content: "\f4d5";
}

.fas-rebel:before {
  content: "\f1d0";
}

.fas-receipt:before {
  content: "\f543";
}

.fas-rectangle-landscape:before {
  content: "\f2fa";
}

.fas-rectangle-portrait:before {
  content: "\f2fb";
}

.fas-rectangle-wide:before {
  content: "\f2fc";
}

.fas-recycle:before {
  content: "\f1b8";
}

.fas-red-river:before {
  content: "\f3e3";
}

.fas-reddit:before {
  content: "\f1a1";
}

.fas-reddit-alien:before {
  content: "\f281";
}

.fas-reddit-square:before {
  content: "\f1a2";
}

.fas-redhat:before {
  content: "\f7bc";
}

.fas-redo:before {
  content: "\f01e";
}

.fas-redo-alt:before {
  content: "\f2f9";
}

.fas-registered:before {
  content: "\f25d";
}

.fas-remove-format:before {
  content: "\f87d";
}

.fas-renren:before {
  content: "\f18b";
}

.fas-repeat:before {
  content: "\f363";
}

.fas-repeat-1:before {
  content: "\f365";
}

.fas-repeat-1-alt:before {
  content: "\f366";
}

.fas-repeat-alt:before {
  content: "\f364";
}

.fas-reply:before {
  content: "\f3e5";
}

.fas-reply-all:before {
  content: "\f122";
}

.fas-replyd:before {
  content: "\f3e6";
}

.fas-republican:before {
  content: "\f75e";
}

.fas-researchgate:before {
  content: "\f4f8";
}

.fas-resolving:before {
  content: "\f3e7";
}

.fas-restroom:before {
  content: "\f7bd";
}

.fas-retweet:before {
  content: "\f079";
}

.fas-retweet-alt:before {
  content: "\f361";
}

.fas-rev:before {
  content: "\f5b2";
}

.fas-ribbon:before {
  content: "\f4d6";
}

.fas-ring:before {
  content: "\f70b";
}

.fas-rings-wedding:before {
  content: "\f81b";
}

.fas-road:before {
  content: "\f018";
}

.fas-robot:before {
  content: "\f544";
}

.fas-rocket:before {
  content: "\f135";
}

.fas-rocketchat:before {
  content: "\f3e8";
}

.fas-rockrms:before {
  content: "\f3e9";
}

.fas-route:before {
  content: "\f4d7";
}

.fas-route-highway:before {
  content: "\f61a";
}

.fas-route-interstate:before {
  content: "\f61b";
}

.fas-rss:before {
  content: "\f09e";
}

.fas-rss-square:before {
  content: "\f143";
}

.fas-ruble-sign:before {
  content: "\f158";
}

.fas-ruler:before {
  content: "\f545";
}

.fas-ruler-combined:before {
  content: "\f546";
}

.fas-ruler-horizontal:before {
  content: "\f547";
}

.fas-ruler-triangle:before {
  content: "\f61c";
}

.fas-ruler-vertical:before {
  content: "\f548";
}

.fas-running:before {
  content: "\f70c";
}

.fas-rupee-sign:before {
  content: "\f156";
}

.fas-rv:before {
  content: "\f7be";
}

.fas-sack:before {
  content: "\f81c";
}

.fas-sack-dollar:before {
  content: "\f81d";
}

.fas-sad-cry:before {
  content: "\f5b3";
}

.fas-sad-tear:before {
  content: "\f5b4";
}

.fas-safari:before {
  content: "\f267";
}

.fas-salad:before {
  content: "\f81e";
}

.fas-salesforce:before {
  content: "\f83b";
}

.fas-sandwich:before {
  content: "\f81f";
}

.fas-sass:before {
  content: "\f41e";
}

.fas-satellite:before {
  content: "\f7bf";
}

.fas-satellite-dish:before {
  content: "\f7c0";
}

.fas-sausage:before {
  content: "\f820";
}

.fas-save:before {
  content: "\f0c7";
}

.fas-scalpel:before {
  content: "\f61d";
}

.fas-scalpel-path:before {
  content: "\f61e";
}

.fas-scanner:before {
  content: "\f488";
}

.fas-scanner-keyboard:before {
  content: "\f489";
}

.fas-scanner-touchscreen:before {
  content: "\f48a";
}

.fas-scarecrow:before {
  content: "\f70d";
}

.fas-scarf:before {
  content: "\f7c1";
}

.fas-schlix:before {
  content: "\f3ea";
}

.fas-school:before {
  content: "\f549";
}

.fas-screwdriver:before {
  content: "\f54a";
}

.fas-scribd:before {
  content: "\f28a";
}

.fas-scroll:before {
  content: "\f70e";
}

.fas-scroll-old:before {
  content: "\f70f";
}

.fas-scrubber:before {
  content: "\f2f8";
}

.fas-scythe:before {
  content: "\f710";
}

.fas-sd-card:before {
  content: "\f7c2";
}

.fas-search:before {
  content: "\f002";
}

.fas-search-dollar:before {
  content: "\f688";
}

.fas-search-location:before {
  content: "\f689";
}

.fas-search-minus:before {
  content: "\f010";
}

.fas-search-plus:before {
  content: "\f00e";
}

.fas-searchengin:before {
  content: "\f3eb";
}

.fas-seedling:before {
  content: "\f4d8";
}

.fas-sellcast:before {
  content: "\f2da";
}

.fas-sellsy:before {
  content: "\f213";
}

.fas-send-back:before {
  content: "\f87e";
}

.fas-send-backward:before {
  content: "\f87f";
}

.fas-server:before {
  content: "\f233";
}

.fas-servicestack:before {
  content: "\f3ec";
}

.fas-shapes:before {
  content: "\f61f";
}

.fas-share:before {
  content: "\f064";
}

.fas-share-all:before {
  content: "\f367";
}

.fas-share-alt:before {
  content: "\f1e0";
}

.fas-share-alt-square:before {
  content: "\f1e1";
}

.fas-share-square:before {
  content: "\f14d";
}

.fas-sheep:before {
  content: "\f711";
}

.fas-shekel-sign:before {
  content: "\f20b";
}

.fas-shield:before {
  content: "\f132";
}

.fas-shield-alt:before {
  content: "\f3ed";
}

.fas-shield-check:before {
  content: "\f2f7";
}

.fas-shield-cross:before {
  content: "\f712";
}

.fas-ship:before {
  content: "\f21a";
}

.fas-shipping-fast:before {
  content: "\f48b";
}

.fas-shipping-timed:before {
  content: "\f48c";
}

.fas-shirtsinbulk:before {
  content: "\f214";
}

.fas-shish-kebab:before {
  content: "\f821";
}

.fas-shoe-prints:before {
  content: "\f54b";
}

.fas-shopping-bag:before {
  content: "\f290";
}

.fas-shopping-basket:before {
  content: "\f291";
}

.fas-shopping-cart:before {
  content: "\f07a";
}

.fas-shopware:before {
  content: "\f5b5";
}

.fas-shovel:before {
  content: "\f713";
}

.fas-shovel-snow:before {
  content: "\f7c3";
}

.fas-shower:before {
  content: "\f2cc";
}

.fas-shredder:before {
  content: "\f68a";
}

.fas-shuttle-van:before {
  content: "\f5b6";
}

.fas-shuttlecock:before {
  content: "\f45b";
}

.fas-sickle:before {
  content: "\f822";
}

.fas-sigma:before {
  content: "\f68b";
}

.fas-sign:before {
  content: "\f4d9";
}

.fas-sign-in:before {
  content: "\f090";
}

.fas-sign-in-alt:before {
  content: "\f2f6";
}

.fas-sign-language:before {
  content: "\f2a7";
}

.fas-sign-out:before {
  content: "\f08b";
}

.fas-sign-out-alt:before {
  content: "\f2f5";
}

.fas-signal:before {
  content: "\f012";
}

.fas-signal-1:before {
  content: "\f68c";
}

.fas-signal-2:before {
  content: "\f68d";
}

.fas-signal-3:before {
  content: "\f68e";
}

.fas-signal-4:before {
  content: "\f68f";
}

.fas-signal-alt:before {
  content: "\f690";
}

.fas-signal-alt-1:before {
  content: "\f691";
}

.fas-signal-alt-2:before {
  content: "\f692";
}

.fas-signal-alt-3:before {
  content: "\f693";
}

.fas-signal-alt-slash:before {
  content: "\f694";
}

.fas-signal-slash:before {
  content: "\f695";
}

.fas-signature:before {
  content: "\f5b7";
}

.fas-sim-card:before {
  content: "\f7c4";
}

.fas-simplybuilt:before {
  content: "\f215";
}

.fas-sistrix:before {
  content: "\f3ee";
}

.fas-sitemap:before {
  content: "\f0e8";
}

.fas-sith:before {
  content: "\f512";
}

.fas-skating:before {
  content: "\f7c5";
}

.fas-skeleton:before {
  content: "\f620";
}

.fas-sketch:before {
  content: "\f7c6";
}

.fas-ski-jump:before {
  content: "\f7c7";
}

.fas-ski-lift:before {
  content: "\f7c8";
}

.fas-skiing:before {
  content: "\f7c9";
}

.fas-skiing-nordic:before {
  content: "\f7ca";
}

.fas-skull:before {
  content: "\f54c";
}

.fas-skull-crossbones:before {
  content: "\f714";
}

.fas-skyatlas:before {
  content: "\f216";
}

.fas-skype:before {
  content: "\f17e";
}

.fas-slack:before {
  content: "\f198";
}

.fas-slack-hash:before {
  content: "\f3ef";
}

.fas-slash:before {
  content: "\f715";
}

.fas-sledding:before {
  content: "\f7cb";
}

.fas-sleigh:before {
  content: "\f7cc";
}

.fas-sliders-h:before {
  content: "\f1de";
}

.fas-sliders-h-square:before {
  content: "\f3f0";
}

.fas-sliders-v:before {
  content: "\f3f1";
}

.fas-sliders-v-square:before {
  content: "\f3f2";
}

.fas-slideshare:before {
  content: "\f1e7";
}

.fas-smile:before {
  content: "\f118";
}

.fas-smile-beam:before {
  content: "\f5b8";
}

.fas-smile-plus:before {
  content: "\f5b9";
}

.fas-smile-wink:before {
  content: "\f4da";
}

.fas-smog:before {
  content: "\f75f";
}

.fas-smoke:before {
  content: "\f760";
}

.fas-smoking:before {
  content: "\f48d";
}

.fas-smoking-ban:before {
  content: "\f54d";
}

.fas-sms:before {
  content: "\f7cd";
}

.fas-snake:before {
  content: "\f716";
}

.fas-snapchat:before {
  content: "\f2ab";
}

.fas-snapchat-ghost:before {
  content: "\f2ac";
}

.fas-snapchat-square:before {
  content: "\f2ad";
}

.fas-snooze:before {
  content: "\f880";
}

.fas-snow-blowing:before {
  content: "\f761";
}

.fas-snowboarding:before {
  content: "\f7ce";
}

.fas-snowflake:before {
  content: "\f2dc";
}

.fas-snowflakes:before {
  content: "\f7cf";
}

.fas-snowman:before {
  content: "\f7d0";
}

.fas-snowmobile:before {
  content: "\f7d1";
}

.fas-snowplow:before {
  content: "\f7d2";
}

.fas-socks:before {
  content: "\f696";
}

.fas-solar-panel:before {
  content: "\f5ba";
}

.fas-sort:before {
  content: "\f0dc";
}

.fas-sort-alpha-down:before {
  content: "\f15d";
}

.fas-sort-alpha-down-alt:before {
  content: "\f881";
}

.fas-sort-alpha-up:before {
  content: "\f15e";
}

.fas-sort-alpha-up-alt:before {
  content: "\f882";
}

.fas-sort-alt:before {
  content: "\f883";
}

.fas-sort-amount-down:before {
  content: "\f160";
}

.fas-sort-amount-down-alt:before {
  content: "\f884";
}

.fas-sort-amount-up:before {
  content: "\f161";
}

.fas-sort-amount-up-alt:before {
  content: "\f885";
}

.fas-sort-down:before {
  content: "\f0dd";
}

.fas-sort-numeric-down:before {
  content: "\f162";
}

.fas-sort-numeric-down-alt:before {
  content: "\f886";
}

.fas-sort-numeric-up:before {
  content: "\f163";
}

.fas-sort-numeric-up-alt:before {
  content: "\f887";
}

.fas-sort-shapes-down:before {
  content: "\f888";
}

.fas-sort-shapes-down-alt:before {
  content: "\f889";
}

.fas-sort-shapes-up:before {
  content: "\f88a";
}

.fas-sort-shapes-up-alt:before {
  content: "\f88b";
}

.fas-sort-size-down:before {
  content: "\f88c";
}

.fas-sort-size-down-alt:before {
  content: "\f88d";
}

.fas-sort-size-up:before {
  content: "\f88e";
}

.fas-sort-size-up-alt:before {
  content: "\f88f";
}

.fas-sort-up:before {
  content: "\f0de";
}

.fas-soundcloud:before {
  content: "\f1be";
}

.fas-soup:before {
  content: "\f823";
}

.fas-sourcetree:before {
  content: "\f7d3";
}

.fas-spa:before {
  content: "\f5bb";
}

.fas-space-shuttle:before {
  content: "\f197";
}

.fas-spade:before {
  content: "\f2f4";
}

.fas-sparkles:before {
  content: "\f890";
}

.fas-speakap:before {
  content: "\f3f3";
}

.fas-speaker-deck:before {
  content: "\f83c";
}

.fas-spell-check:before {
  content: "\f891";
}

.fas-spider:before {
  content: "\f717";
}

.fas-spider-black-widow:before {
  content: "\f718";
}

.fas-spider-web:before {
  content: "\f719";
}

.fas-spinner:before {
  content: "\f110";
}

.fas-spinner-third:before {
  content: "\f3f4";
}

.fas-splotch:before {
  content: "\f5bc";
}

.fas-spotify:before {
  content: "\f1bc";
}

.fas-spray-can:before {
  content: "\f5bd";
}

.fas-square:before {
  content: "\f0c8";
}

.fas-square-full:before {
  content: "\f45c";
}

.fas-square-root:before {
  content: "\f697";
}

.fas-square-root-alt:before {
  content: "\f698";
}

.fas-squarespace:before {
  content: "\f5be";
}

.fas-squirrel:before {
  content: "\f71a";
}

.fas-stack-exchange:before {
  content: "\f18d";
}

.fas-stack-overflow:before {
  content: "\f16c";
}

.fas-stackpath:before {
  content: "\f842";
}

.fas-staff:before {
  content: "\f71b";
}

.fas-stamp:before {
  content: "\f5bf";
}

.fas-star:before {
  content: "\f005";
}

.fas-star-and-crescent:before {
  content: "\f699";
}

.fas-star-christmas:before {
  content: "\f7d4";
}

.fas-star-exclamation:before {
  content: "\f2f3";
}

.fas-star-half:before {
  content: "\f089";
}

.fas-star-half-alt:before {
  content: "\f5c0";
}

.fas-star-of-david:before {
  content: "\f69a";
}

.fas-star-of-life:before {
  content: "\f621";
}

.fas-stars:before {
  content: "\f762";
}

.fas-staylinked:before {
  content: "\f3f5";
}

.fas-steak:before {
  content: "\f824";
}

.fas-steam:before {
  content: "\f1b6";
}

.fas-steam-square:before {
  content: "\f1b7";
}

.fas-steam-symbol:before {
  content: "\f3f6";
}

.fas-steering-wheel:before {
  content: "\f622";
}

.fas-step-backward:before {
  content: "\f048";
}

.fas-step-forward:before {
  content: "\f051";
}

.fas-stethoscope:before {
  content: "\f0f1";
}

.fas-sticker-mule:before {
  content: "\f3f7";
}

.fas-sticky-note:before {
  content: "\f249";
}

.fas-stocking:before {
  content: "\f7d5";
}

.fas-stomach:before {
  content: "\f623";
}

.fas-stop:before {
  content: "\f04d";
}

.fas-stop-circle:before {
  content: "\f28d";
}

.fas-stopwatch:before {
  content: "\f2f2";
}

.fas-store:before {
  content: "\f54e";
}

.fas-store-alt:before {
  content: "\f54f";
}

.fas-strava:before {
  content: "\f428";
}

.fas-stream:before {
  content: "\f550";
}

.fas-street-view:before {
  content: "\f21d";
}

.fas-stretcher:before {
  content: "\f825";
}

.fas-strikethrough:before {
  content: "\f0cc";
}

.fas-stripe:before {
  content: "\f429";
}

.fas-stripe-s:before {
  content: "\f42a";
}

.fas-stroopwafel:before {
  content: "\f551";
}

.fas-studiovinari:before {
  content: "\f3f8";
}

.fas-stumbleupon:before {
  content: "\f1a4";
}

.fas-stumbleupon-circle:before {
  content: "\f1a3";
}

.fas-subscript:before {
  content: "\f12c";
}

.fas-subway:before {
  content: "\f239";
}

.fas-suitcase:before {
  content: "\f0f2";
}

.fas-suitcase-rolling:before {
  content: "\f5c1";
}

.fas-sun:before {
  content: "\f185";
}

.fas-sun-cloud:before {
  content: "\f763";
}

.fas-sun-dust:before {
  content: "\f764";
}

.fas-sun-haze:before {
  content: "\f765";
}

.fas-sunglasses:before {
  content: "\f892";
}

.fas-sunrise:before {
  content: "\f766";
}

.fas-sunset:before {
  content: "\f767";
}

.fas-superpowers:before {
  content: "\f2dd";
}

.fas-superscript:before {
  content: "\f12b";
}

.fas-supple:before {
  content: "\f3f9";
}

.fas-surprise:before {
  content: "\f5c2";
}

.fas-suse:before {
  content: "\f7d6";
}

.fas-swatchbook:before {
  content: "\f5c3";
}

.fas-swimmer:before {
  content: "\f5c4";
}

.fas-swimming-pool:before {
  content: "\f5c5";
}

.fas-sword:before {
  content: "\f71c";
}

.fas-swords:before {
  content: "\f71d";
}

.fas-symfony:before {
  content: "\f83d";
}

.fas-synagogue:before {
  content: "\f69b";
}

.fas-sync:before {
  content: "\f021";
}

.fas-sync-alt:before {
  content: "\f2f1";
}

.fas-syringe:before {
  content: "\f48e";
}

.fas-table:before {
  content: "\f0ce";
}

.fas-table-tennis:before {
  content: "\f45d";
}

.fas-tablet:before {
  content: "\f10a";
}

.fas-tablet-alt:before {
  content: "\f3fa";
}

.fas-tablet-android:before {
  content: "\f3fb";
}

.fas-tablet-android-alt:before {
  content: "\f3fc";
}

.fas-tablet-rugged:before {
  content: "\f48f";
}

.fas-tablets:before {
  content: "\f490";
}

.fas-tachometer:before {
  content: "\f0e4";
}

.fas-tachometer-alt:before {
  content: "\f3fd";
}

.fas-tachometer-alt-average:before {
  content: "\f624";
}

.fas-tachometer-alt-fast:before {
  content: "\f625";
}

.fas-tachometer-alt-fastest:before {
  content: "\f626";
}

.fas-tachometer-alt-slow:before {
  content: "\f627";
}

.fas-tachometer-alt-slowest:before {
  content: "\f628";
}

.fas-tachometer-average:before {
  content: "\f629";
}

.fas-tachometer-fast:before {
  content: "\f62a";
}

.fas-tachometer-fastest:before {
  content: "\f62b";
}

.fas-tachometer-slow:before {
  content: "\f62c";
}

.fas-tachometer-slowest:before {
  content: "\f62d";
}

.fas-taco:before {
  content: "\f826";
}

.fas-tag:before {
  content: "\f02b";
}

.fas-tags:before {
  content: "\f02c";
}

.fas-tally:before {
  content: "\f69c";
}

.fas-tanakh:before {
  content: "\f827";
}

.fas-tape:before {
  content: "\f4db";
}

.fas-tasks:before {
  content: "\f0ae";
}

.fas-tasks-alt:before {
  content: "\f828";
}

.fas-taxi:before {
  content: "\f1ba";
}

.fas-teamspeak:before {
  content: "\f4f9";
}

.fas-teeth:before {
  content: "\f62e";
}

.fas-teeth-open:before {
  content: "\f62f";
}

.fas-telegram:before {
  content: "\f2c6";
}

.fas-telegram-plane:before {
  content: "\f3fe";
}

.fas-temperature-frigid:before {
  content: "\f768";
}

.fas-temperature-high:before {
  content: "\f769";
}

.fas-temperature-hot:before {
  content: "\f76a";
}

.fas-temperature-low:before {
  content: "\f76b";
}

.fas-tencent-weibo:before {
  content: "\f1d5";
}

.fas-tenge:before {
  content: "\f7d7";
}

.fas-tennis-ball:before {
  content: "\f45e";
}

.fas-terminal:before {
  content: "\f120";
}

.fas-text:before {
  content: "\f893";
}

.fas-text-height:before {
  content: "\f034";
}

.fas-text-size:before {
  content: "\f894";
}

.fas-text-width:before {
  content: "\f035";
}

.fas-th:before {
  content: "\f00a";
}

.fas-th-large:before {
  content: "\f009";
}

.fas-th-list:before {
  content: "\f00b";
}

.fas-the-red-yeti:before {
  content: "\f69d";
}

.fas-theater-masks:before {
  content: "\f630";
}

.fas-themeco:before {
  content: "\f5c6";
}

.fas-themeisle:before {
  content: "\f2b2";
}

.fas-thermometer:before {
  content: "\f491";
}

.fas-thermometer-empty:before {
  content: "\f2cb";
}

.fas-thermometer-full:before {
  content: "\f2c7";
}

.fas-thermometer-half:before {
  content: "\f2c9";
}

.fas-thermometer-quarter:before {
  content: "\f2ca";
}

.fas-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fas-theta:before {
  content: "\f69e";
}

.fas-think-peaks:before {
  content: "\f731";
}

.fas-thumbs-down:before {
  content: "\f165";
}

.fas-thumbs-up:before {
  content: "\f164";
}

.fas-thumbtack:before {
  content: "\f08d";
}

.fas-thunderstorm:before {
  content: "\f76c";
}

.fas-thunderstorm-moon:before {
  content: "\f76d";
}

.fas-thunderstorm-sun:before {
  content: "\f76e";
}

.fas-ticket:before {
  content: "\f145";
}

.fas-ticket-alt:before {
  content: "\f3ff";
}

.fas-tilde:before {
  content: "\f69f";
}

.fas-times:before {
  content: "\f00d";
}

.fas-times-circle:before {
  content: "\f057";
}

.fas-times-hexagon:before {
  content: "\f2ee";
}

.fas-times-octagon:before {
  content: "\f2f0";
}

.fas-times-square:before {
  content: "\f2d3";
}

.fas-tint:before {
  content: "\f043";
}

.fas-tint-slash:before {
  content: "\f5c7";
}

.fas-tire:before {
  content: "\f631";
}

.fas-tire-flat:before {
  content: "\f632";
}

.fas-tire-pressure-warning:before {
  content: "\f633";
}

.fas-tire-rugged:before {
  content: "\f634";
}

.fas-tired:before {
  content: "\f5c8";
}

.fas-toggle-off:before {
  content: "\f204";
}

.fas-toggle-on:before {
  content: "\f205";
}

.fas-toilet:before {
  content: "\f7d8";
}

.fas-toilet-paper:before {
  content: "\f71e";
}

.fas-toilet-paper-alt:before {
  content: "\f71f";
}

.fas-tombstone:before {
  content: "\f720";
}

.fas-tombstone-alt:before {
  content: "\f721";
}

.fas-toolbox:before {
  content: "\f552";
}

.fas-tools:before {
  content: "\f7d9";
}

.fas-tooth:before {
  content: "\f5c9";
}

.fas-toothbrush:before {
  content: "\f635";
}

.fas-torah:before {
  content: "\f6a0";
}

.fas-torii-gate:before {
  content: "\f6a1";
}

.fas-tornado:before {
  content: "\f76f";
}

.fas-tractor:before {
  content: "\f722";
}

.fas-trade-federation:before {
  content: "\f513";
}

.fas-trademark:before {
  content: "\f25c";
}

.fas-traffic-cone:before {
  content: "\f636";
}

.fas-traffic-light:before {
  content: "\f637";
}

.fas-traffic-light-go:before {
  content: "\f638";
}

.fas-traffic-light-slow:before {
  content: "\f639";
}

.fas-traffic-light-stop:before {
  content: "\f63a";
}

.fas-train:before {
  content: "\f238";
}

.fas-tram:before {
  content: "\f7da";
}

.fas-transgender:before {
  content: "\f224";
}

.fas-transgender-alt:before {
  content: "\f225";
}

.fas-trash:before {
  content: "\f1f8";
}

.fas-trash-alt:before {
  content: "\f2ed";
}

.fas-trash-restore:before {
  content: "\f829";
}

.fas-trash-restore-alt:before {
  content: "\f82a";
}

.fas-trash-undo:before {
  content: "\f895";
}

.fas-trash-undo-alt:before {
  content: "\f896";
}

.fas-treasure-chest:before {
  content: "\f723";
}

.fas-tree:before {
  content: "\f1bb";
}

.fas-tree-alt:before {
  content: "\f400";
}

.fas-tree-christmas:before {
  content: "\f7db";
}

.fas-tree-decorated:before {
  content: "\f7dc";
}

.fas-tree-large:before {
  content: "\f7dd";
}

.fas-tree-palm:before {
  content: "\f82b";
}

.fas-trees:before {
  content: "\f724";
}

.fas-trello:before {
  content: "\f181";
}

.fas-triangle:before {
  content: "\f2ec";
}

.fas-tripadvisor:before {
  content: "\f262";
}

.fas-trophy:before {
  content: "\f091";
}

.fas-trophy-alt:before {
  content: "\f2eb";
}

.fas-truck:before {
  content: "\f0d1";
}

.fas-truck-container:before {
  content: "\f4dc";
}

.fas-truck-couch:before {
  content: "\f4dd";
}

.fas-truck-loading:before {
  content: "\f4de";
}

.fas-truck-monster:before {
  content: "\f63b";
}

.fas-truck-moving:before {
  content: "\f4df";
}

.fas-truck-pickup:before {
  content: "\f63c";
}

.fas-truck-plow:before {
  content: "\f7de";
}

.fas-truck-ramp:before {
  content: "\f4e0";
}

.fas-tshirt:before {
  content: "\f553";
}

.fas-tty:before {
  content: "\f1e4";
}

.fas-tumblr:before {
  content: "\f173";
}

.fas-tumblr-square:before {
  content: "\f174";
}

.fas-turkey:before {
  content: "\f725";
}

.fas-turtle:before {
  content: "\f726";
}

.fas-tv:before {
  content: "\f26c";
}

.fas-tv-retro:before {
  content: "\f401";
}

.fas-twitch:before {
  content: "\f1e8";
}

.fas-twitter:before {
  content: "\f099";
}

.fas-twitter-square:before {
  content: "\f081";
}

.fas-typo3:before {
  content: "\f42b";
}

.fas-uber:before {
  content: "\f402";
}

.fas-ubuntu:before {
  content: "\f7df";
}

.fas-uikit:before {
  content: "\f403";
}

.fas-umbrella:before {
  content: "\f0e9";
}

.fas-umbrella-beach:before {
  content: "\f5ca";
}

.fas-underline:before {
  content: "\f0cd";
}

.fas-undo:before {
  content: "\f0e2";
}

.fas-undo-alt:before {
  content: "\f2ea";
}

.fas-unicorn:before {
  content: "\f727";
}

.fas-union:before {
  content: "\f6a2";
}

.fas-uniregistry:before {
  content: "\f404";
}

.fas-universal-access:before {
  content: "\f29a";
}

.fas-university:before {
  content: "\f19c";
}

.fas-unlink:before {
  content: "\f127";
}

.fas-unlock:before {
  content: "\f09c";
}

.fas-unlock-alt:before {
  content: "\f13e";
}

.fas-untappd:before {
  content: "\f405";
}

.fas-upload:before {
  content: "\f093";
}

.fas-ups:before {
  content: "\f7e0";
}

.fas-usb:before {
  content: "\f287";
}

.fas-usd-circle:before {
  content: "\f2e8";
}

.fas-usd-square:before {
  content: "\f2e9";
}

.fas-user:before {
  content: "\f007";
}

.fas-user-alt:before {
  content: "\f406";
}

.fas-user-alt-slash:before {
  content: "\f4fa";
}

.fas-user-astronaut:before {
  content: "\f4fb";
}

.fas-user-chart:before {
  content: "\f6a3";
}

.fas-user-check:before {
  content: "\f4fc";
}

.fas-user-circle:before {
  content: "\f2bd";
}

.fas-user-clock:before {
  content: "\f4fd";
}

.fas-user-cog:before {
  content: "\f4fe";
}

.fas-user-crown:before {
  content: "\f6a4";
}

.fas-user-edit:before {
  content: "\f4ff";
}

.fas-user-friends:before {
  content: "\f500";
}

.fas-user-graduate:before {
  content: "\f501";
}

.fas-user-hard-hat:before {
  content: "\f82c";
}

.fas-user-headset:before {
  content: "\f82d";
}

.fas-user-injured:before {
  content: "\f728";
}

.fas-user-lock:before {
  content: "\f502";
}

.fas-user-md:before {
  content: "\f0f0";
}

.fas-user-md-chat:before {
  content: "\f82e";
}

.fas-user-minus:before {
  content: "\f503";
}

.fas-user-ninja:before {
  content: "\f504";
}

.fas-user-nurse:before {
  content: "\f82f";
}

.fas-user-plus:before {
  content: "\f234";
}

.fas-user-secret:before {
  content: "\f21b";
}

.fas-user-shield:before {
  content: "\f505";
}

.fas-user-slash:before {
  content: "\f506";
}

.fas-user-tag:before {
  content: "\f507";
}

.fas-user-tie:before {
  content: "\f508";
}

.fas-user-times:before {
  content: "\f235";
}

.fas-users:before {
  content: "\f0c0";
}

.fas-users-class:before {
  content: "\f63d";
}

.fas-users-cog:before {
  content: "\f509";
}

.fas-users-crown:before {
  content: "\f6a5";
}

.fas-users-medical:before {
  content: "\f830";
}

.fas-usps:before {
  content: "\f7e1";
}

.fas-ussunnah:before {
  content: "\f407";
}

.fas-utensil-fork:before {
  content: "\f2e3";
}

.fas-utensil-knife:before {
  content: "\f2e4";
}

.fas-utensil-spoon:before {
  content: "\f2e5";
}

.fas-utensils:before {
  content: "\f2e7";
}

.fas-utensils-alt:before {
  content: "\f2e6";
}

.fas-vaadin:before {
  content: "\f408";
}

.fas-value-absolute:before {
  content: "\f6a6";
}

.fas-vector-square:before {
  content: "\f5cb";
}

.fas-venus:before {
  content: "\f221";
}

.fas-venus-double:before {
  content: "\f226";
}

.fas-venus-mars:before {
  content: "\f228";
}

.fas-viacoin:before {
  content: "\f237";
}

.fas-viadeo:before {
  content: "\f2a9";
}

.fas-viadeo-square:before {
  content: "\f2aa";
}

.fas-vial:before {
  content: "\f492";
}

.fas-vials:before {
  content: "\f493";
}

.fas-viber:before {
  content: "\f409";
}

.fas-video:before {
  content: "\f03d";
}

.fas-video-plus:before {
  content: "\f4e1";
}

.fas-video-slash:before {
  content: "\f4e2";
}

.fas-vihara:before {
  content: "\f6a7";
}

.fas-vimeo:before {
  content: "\f40a";
}

.fas-vimeo-square:before {
  content: "\f194";
}

.fas-vimeo-v:before {
  content: "\f27d";
}

.fas-vine:before {
  content: "\f1ca";
}

.fas-vk:before {
  content: "\f189";
}

.fas-vnv:before {
  content: "\f40b";
}

.fas-voicemail:before {
  content: "\f897";
}

.fas-volcano:before {
  content: "\f770";
}

.fas-volleyball-ball:before {
  content: "\f45f";
}

.fas-volume:before {
  content: "\f6a8";
}

.fas-volume-down:before {
  content: "\f027";
}

.fas-volume-mute:before {
  content: "\f6a9";
}

.fas-volume-off:before {
  content: "\f026";
}

.fas-volume-slash:before {
  content: "\f2e2";
}

.fas-volume-up:before {
  content: "\f028";
}

.fas-vote-nay:before {
  content: "\f771";
}

.fas-vote-yea:before {
  content: "\f772";
}

.fas-vr-cardboard:before {
  content: "\f729";
}

.fas-vuejs:before {
  content: "\f41f";
}

.fas-walker:before {
  content: "\f831";
}

.fas-walking:before {
  content: "\f554";
}

.fas-wallet:before {
  content: "\f555";
}

.fas-wand:before {
  content: "\f72a";
}

.fas-wand-magic:before {
  content: "\f72b";
}

.fas-warehouse:before {
  content: "\f494";
}

.fas-warehouse-alt:before {
  content: "\f495";
}

.fas-washer:before {
  content: "\f898";
}

.fas-watch:before {
  content: "\f2e1";
}

.fas-watch-fitness:before {
  content: "\f63e";
}

.fas-water:before {
  content: "\f773";
}

.fas-water-lower:before {
  content: "\f774";
}

.fas-water-rise:before {
  content: "\f775";
}

.fas-wave-sine:before {
  content: "\f899";
}

.fas-wave-square:before {
  content: "\f83e";
}

.fas-wave-triangle:before {
  content: "\f89a";
}

.fas-waze:before {
  content: "\f83f";
}

.fas-webcam:before {
  content: "\f832";
}

.fas-webcam-slash:before {
  content: "\f833";
}

.fas-weebly:before {
  content: "\f5cc";
}

.fas-weibo:before {
  content: "\f18a";
}

.fas-weight:before {
  content: "\f496";
}

.fas-weight-hanging:before {
  content: "\f5cd";
}

.fas-weixin:before {
  content: "\f1d7";
}

.fas-whale:before {
  content: "\f72c";
}

.fas-whatsapp:before {
  content: "\f232";
}

.fas-whatsapp-square:before {
  content: "\f40c";
}

.fas-wheat:before {
  content: "\f72d";
}

.fas-wheelchair:before {
  content: "\f193";
}

.fas-whistle:before {
  content: "\f460";
}

.fas-whmcs:before {
  content: "\f40d";
}

.fas-wifi:before {
  content: "\f1eb";
}

.fas-wifi-1:before {
  content: "\f6aa";
}

.fas-wifi-2:before {
  content: "\f6ab";
}

.fas-wifi-slash:before {
  content: "\f6ac";
}

.fas-wikipedia-w:before {
  content: "\f266";
}

.fas-wind:before {
  content: "\f72e";
}

.fas-wind-turbine:before {
  content: "\f89b";
}

.fas-wind-warning:before {
  content: "\f776";
}

.fas-window:before {
  content: "\f40e";
}

.fas-window-alt:before {
  content: "\f40f";
}

.fas-window-close:before {
  content: "\f410";
}

.fas-window-maximize:before {
  content: "\f2d0";
}

.fas-window-minimize:before {
  content: "\f2d1";
}

.fas-window-restore:before {
  content: "\f2d2";
}

.fas-windows:before {
  content: "\f17a";
}

.fas-windsock:before {
  content: "\f777";
}

.fas-wine-bottle:before {
  content: "\f72f";
}

.fas-wine-glass:before {
  content: "\f4e3";
}

.fas-wine-glass-alt:before {
  content: "\f5ce";
}

.fas-wix:before {
  content: "\f5cf";
}

.fas-wizards-of-the-coast:before {
  content: "\f730";
}

.fas-wolf-pack-battalion:before {
  content: "\f514";
}

.fas-won-sign:before {
  content: "\f159";
}

.fas-wordpress:before {
  content: "\f19a";
}

.fas-wordpress-simple:before {
  content: "\f411";
}

.fas-wpbeginner:before {
  content: "\f297";
}

.fas-wpexplorer:before {
  content: "\f2de";
}

.fas-wpforms:before {
  content: "\f298";
}

.fas-wpressr:before {
  content: "\f3e4";
}

.fas-wreath:before {
  content: "\f7e2";
}

.fas-wrench:before {
  content: "\f0ad";
}

.fas-x-ray:before {
  content: "\f497";
}

.fas-xbox:before {
  content: "\f412";
}

.fas-xing:before {
  content: "\f168";
}

.fas-xing-square:before {
  content: "\f169";
}

.fas-y-combinator:before {
  content: "\f23b";
}

.fas-yahoo:before {
  content: "\f19e";
}

.fas-yammer:before {
  content: "\f840";
}

.fas-yandex:before {
  content: "\f413";
}

.fas-yandex-international:before {
  content: "\f414";
}

.fas-yarn:before {
  content: "\f7e3";
}

.fas-yelp:before {
  content: "\f1e9";
}

.fas-yen-sign:before {
  content: "\f157";
}

.fas-yin-yang:before {
  content: "\f6ad";
}

.fas-yoast:before {
  content: "\f2b1";
}

.fas-youtube:before {
  content: "\f167";
}

.fas-youtube-square:before {
  content: "\f431";
}

.fas-zhihu:before {
  content: "\f63f";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*!
 * Font Awesome Pro 5.10.0-11 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 400;
  font-display: auto;
  src: url("/assets/fontawesome-5/fa-regular-400-e6de7027.eot");
  src: url("/assets/fontawesome-5/fa-regular-400-e6de7027.eot?#iefix") format("embedded-opentype"), url("/assets/fontawesome-5/fa-regular-400-5d3b6dc1.woff2") format("woff2"), url("/assets/fontawesome-5/fa-regular-400-821d7f35.woff") format("woff"), url("/assets/fontawesome-5/fa-regular-400-728dedf8.ttf") format("truetype"), url("/assets/fontawesome-5/fa-regular-400-266d28af.svg#fontawesome") format("svg");
}
.far {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

/*!
 * Font Awesome Pro 5.10.0-11 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 900;
  font-display: auto;
  src: url("/assets/fontawesome-5/fa-solid-900-de330855.eot");
  src: url("/assets/fontawesome-5/fa-solid-900-de330855.eot?#iefix") format("embedded-opentype"), url("/assets/fontawesome-5/fa-solid-900-cde600d3.woff2") format("woff2"), url("/assets/fontawesome-5/fa-solid-900-845666ae.woff") format("woff"), url("/assets/fontawesome-5/fa-solid-900-ac85d827.ttf") format("truetype"), url("/assets/fontawesome-5/fa-solid-900-d7620e37.svg#fontawesome") format("svg");
}
.fas {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
}

/*!
 * Font Awesome Pro 5.10.0-11 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 300;
  font-display: auto;
  src: url("/assets/fontawesome-5/fa-light-300-30043198.eot");
  src: url("/assets/fontawesome-5/fa-light-300-30043198.eot?#iefix") format("embedded-opentype"), url("/assets/fontawesome-5/fa-light-300-a8c01852.woff2") format("woff2"), url("/assets/fontawesome-5/fa-light-300-6bb76d8e.woff") format("woff"), url("/assets/fontawesome-5/fa-light-300-19f6bc19.ttf") format("truetype"), url("/assets/fontawesome-5/fa-light-300-f1d83178.svg#fontawesome") format("svg");
}
.fal {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
}

/*!
 * Font Awesome Pro 5.10.0-11 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
.fas.fas-glass:before {
  content: "\f000";
}

.fas.fas-meetup {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-star-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-star-o:before {
  content: "\f005";
}

.fas.fas-remove:before {
  content: "\f00d";
}

.fas.fas-close:before {
  content: "\f00d";
}

.fas.fas-gear:before {
  content: "\f013";
}

.fas.fas-trash-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-trash-o:before {
  content: "\f2ed";
}

.fas.fas-file-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-file-o:before {
  content: "\f15b";
}

.fas.fas-clock-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-clock-o:before {
  content: "\f017";
}

.fas.fas-arrow-circle-o-down {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-arrow-circle-o-down:before {
  content: "\f358";
}

.fas.fas-arrow-circle-o-up {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-arrow-circle-o-up:before {
  content: "\f35b";
}

.fas.fas-play-circle-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-play-circle-o:before {
  content: "\f144";
}

.fas.fas-repeat:before {
  content: "\f01e";
}

.fas.fas-rotate-right:before {
  content: "\f01e";
}

.fas.fas-refresh:before {
  content: "\f021";
}

.fas.fas-list-alt {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-dedent:before {
  content: "\f03b";
}

.fas.fas-video-camera:before {
  content: "\f03d";
}

.fas.fas-picture-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-picture-o:before {
  content: "\f03e";
}

.fas.fas-photo {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-photo:before {
  content: "\f03e";
}

.fas.fas-image {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-image:before {
  content: "\f03e";
}

.fas.fas-pencil:before {
  content: "\f303";
}

.fas.fas-map-marker:before {
  content: "\f3c5";
}

.fas.fas-pencil-square-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-pencil-square-o:before {
  content: "\f044";
}

.fas.fas-share-square-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-share-square-o:before {
  content: "\f14d";
}

.fas.fas-check-square-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-check-square-o:before {
  content: "\f14a";
}

.fas.fas-arrows:before {
  content: "\f0b2";
}

.fas.fas-times-circle-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-times-circle-o:before {
  content: "\f057";
}

.fas.fas-check-circle-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-check-circle-o:before {
  content: "\f058";
}

.fas.fas-mail-forward:before {
  content: "\f064";
}

.fas.fas-eye {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-eye-slash {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-warning:before {
  content: "\f071";
}

.fas.fas-calendar:before {
  content: "\f073";
}

.fas.fas-arrows-v:before {
  content: "\f338";
}

.fas.fas-arrows-h:before {
  content: "\f337";
}

.fas.fas-bar-chart {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-bar-chart:before {
  content: "\f080";
}

.fas.fas-bar-chart-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-bar-chart-o:before {
  content: "\f080";
}

.fas.fas-twitter-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-facebook-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-gears:before {
  content: "\f085";
}

.fas.fas-thumbs-o-up {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-thumbs-o-up:before {
  content: "\f164";
}

.fas.fas-thumbs-o-down {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-thumbs-o-down:before {
  content: "\f165";
}

.fas.fas-heart-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-heart-o:before {
  content: "\f004";
}

.fas.fas-sign-out:before {
  content: "\f2f5";
}

.fas.fas-linkedin-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-linkedin-square:before {
  content: "\f08c";
}

.fas.fas-thumb-tack:before {
  content: "\f08d";
}

.fas.fas-external-link:before {
  content: "\f35d";
}

.fas.fas-sign-in:before {
  content: "\f2f6";
}

.fas.fas-github-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-lemon-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-lemon-o:before {
  content: "\f094";
}

.fas.fas-square-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-square-o:before {
  content: "\f0c8";
}

.fas.fas-bookmark-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-bookmark-o:before {
  content: "\f02e";
}

.fas.fas-twitter {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-facebook {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-facebook:before {
  content: "\f39e";
}

.fas.fas-facebook-f {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-facebook-f:before {
  content: "\f39e";
}

.fas.fas-github {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-credit-card {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-feed:before {
  content: "\f09e";
}

.fas.fas-hdd-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-hdd-o:before {
  content: "\f0a0";
}

.fas.fas-hand-o-right {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-hand-o-right:before {
  content: "\f0a4";
}

.fas.fas-hand-o-left {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-hand-o-left:before {
  content: "\f0a5";
}

.fas.fas-hand-o-up {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-hand-o-up:before {
  content: "\f0a6";
}

.fas.fas-hand-o-down {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-hand-o-down:before {
  content: "\f0a7";
}

.fas.fas-arrows-alt:before {
  content: "\f31e";
}

.fas.fas-group:before {
  content: "\f0c0";
}

.fas.fas-chain:before {
  content: "\f0c1";
}

.fas.fas-scissors:before {
  content: "\f0c4";
}

.fas.fas-files-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-files-o:before {
  content: "\f0c5";
}

.fas.fas-floppy-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-floppy-o:before {
  content: "\f0c7";
}

.fas.fas-navicon:before {
  content: "\f0c9";
}

.fas.fas-reorder:before {
  content: "\f0c9";
}

.fas.fas-pinterest {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-pinterest-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-google-plus-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-google-plus {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-google-plus:before {
  content: "\f0d5";
}

.fas.fas-money {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-money:before {
  content: "\f3d1";
}

.fas.fas-unsorted:before {
  content: "\f0dc";
}

.fas.fas-sort-desc:before {
  content: "\f0dd";
}

.fas.fas-sort-asc:before {
  content: "\f0de";
}

.fas.fas-linkedin {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-linkedin:before {
  content: "\f0e1";
}

.fas.fas-rotate-left:before {
  content: "\f0e2";
}

.fas.fas-legal:before {
  content: "\f0e3";
}

.fas.fas-tachometer:before {
  content: "\f3fd";
}

.fas.fas-dashboard:before {
  content: "\f3fd";
}

.fas.fas-comment-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-comment-o:before {
  content: "\f075";
}

.fas.fas-comments-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-comments-o:before {
  content: "\f086";
}

.fas.fas-flash:before {
  content: "\f0e7";
}

.fas.fas-clipboard {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-paste {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-paste:before {
  content: "\f328";
}

.fas.fas-lightbulb-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-lightbulb-o:before {
  content: "\f0eb";
}

.fas.fas-exchange:before {
  content: "\f362";
}

.fas.fas-cloud-download:before {
  content: "\f381";
}

.fas.fas-cloud-upload:before {
  content: "\f382";
}

.fas.fas-bell-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-bell-o:before {
  content: "\f0f3";
}

.fas.fas-cutlery:before {
  content: "\f2e7";
}

.fas.fas-file-text-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-file-text-o:before {
  content: "\f15c";
}

.fas.fas-building-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-building-o:before {
  content: "\f1ad";
}

.fas.fas-hospital-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-hospital-o:before {
  content: "\f0f8";
}

.fas.fas-tablet:before {
  content: "\f3fa";
}

.fas.fas-mobile:before {
  content: "\f3cd";
}

.fas.fas-mobile-phone:before {
  content: "\f3cd";
}

.fas.fas-circle-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-circle-o:before {
  content: "\f111";
}

.fas.fas-mail-reply:before {
  content: "\f3e5";
}

.fas.fas-github-alt {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-folder-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-folder-o:before {
  content: "\f07b";
}

.fas.fas-folder-open-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-folder-open-o:before {
  content: "\f07c";
}

.fas.fas-smile-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-smile-o:before {
  content: "\f118";
}

.fas.fas-frown-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-frown-o:before {
  content: "\f119";
}

.fas.fas-meh-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-meh-o:before {
  content: "\f11a";
}

.fas.fas-keyboard-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-keyboard-o:before {
  content: "\f11c";
}

.fas.fas-flag-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-flag-o:before {
  content: "\f024";
}

.fas.fas-mail-reply-all:before {
  content: "\f122";
}

.fas.fas-star-half-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-star-half-o:before {
  content: "\f089";
}

.fas.fas-star-half-empty {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-star-half-empty:before {
  content: "\f089";
}

.fas.fas-star-half-full {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-star-half-full:before {
  content: "\f089";
}

.fas.fas-code-fork:before {
  content: "\f126";
}

.fas.fas-chain-broken:before {
  content: "\f127";
}

.fas.fas-shield:before {
  content: "\f3ed";
}

.fas.fas-calendar-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-calendar-o:before {
  content: "\f133";
}

.fas.fas-maxcdn {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-html5 {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-css3 {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-ticket:before {
  content: "\f3ff";
}

.fas.fas-minus-square-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-minus-square-o:before {
  content: "\f146";
}

.fas.fas-level-up:before {
  content: "\f3bf";
}

.fas.fas-level-down:before {
  content: "\f3be";
}

.fas.fas-pencil-square:before {
  content: "\f14b";
}

.fas.fas-external-link-square:before {
  content: "\f360";
}

.fas.fas-compass {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-caret-square-o-down {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-caret-square-o-down:before {
  content: "\f150";
}

.fas.fas-toggle-down {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-toggle-down:before {
  content: "\f150";
}

.fas.fas-caret-square-o-up {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-caret-square-o-up:before {
  content: "\f151";
}

.fas.fas-toggle-up {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-toggle-up:before {
  content: "\f151";
}

.fas.fas-caret-square-o-right {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-caret-square-o-right:before {
  content: "\f152";
}

.fas.fas-toggle-right {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-toggle-right:before {
  content: "\f152";
}

.fas.fas-eur:before {
  content: "\f153";
}

.fas.fas-euro:before {
  content: "\f153";
}

.fas.fas-gbp:before {
  content: "\f154";
}

.fas.fas-usd:before {
  content: "\f155";
}

.fas.fas-dollar:before {
  content: "\f155";
}

.fas.fas-inr:before {
  content: "\f156";
}

.fas.fas-rupee:before {
  content: "\f156";
}

.fas.fas-jpy:before {
  content: "\f157";
}

.fas.fas-cny:before {
  content: "\f157";
}

.fas.fas-rmb:before {
  content: "\f157";
}

.fas.fas-yen:before {
  content: "\f157";
}

.fas.fas-rub:before {
  content: "\f158";
}

.fas.fas-ruble:before {
  content: "\f158";
}

.fas.fas-rouble:before {
  content: "\f158";
}

.fas.fas-krw:before {
  content: "\f159";
}

.fas.fas-won:before {
  content: "\f159";
}

.fas.fas-btc {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-bitcoin {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-bitcoin:before {
  content: "\f15a";
}

.fas.fas-file-text:before {
  content: "\f15c";
}

.fas.fas-sort-alpha-asc:before {
  content: "\f15d";
}

.fas.fas-sort-alpha-desc:before {
  content: "\f15e";
}

.fas.fas-sort-amount-asc:before {
  content: "\f160";
}

.fas.fas-sort-amount-desc:before {
  content: "\f161";
}

.fas.fas-sort-numeric-asc:before {
  content: "\f162";
}

.fas.fas-sort-numeric-desc:before {
  content: "\f163";
}

.fas.fas-youtube-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-youtube {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-xing {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-xing-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-youtube-play {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-youtube-play:before {
  content: "\f167";
}

.fas.fas-dropbox {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-stack-overflow {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-instagram {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-flickr {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-adn {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-bitbucket {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-bitbucket-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-bitbucket-square:before {
  content: "\f171";
}

.fas.fas-tumblr {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-tumblr-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-long-arrow-down:before {
  content: "\f309";
}

.fas.fas-long-arrow-up:before {
  content: "\f30c";
}

.fas.fas-long-arrow-left:before {
  content: "\f30a";
}

.fas.fas-long-arrow-right:before {
  content: "\f30b";
}

.fas.fas-apple {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-windows {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-android {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-linux {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-dribbble {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-skype {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-foursquare {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-trello {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-gratipay {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-gittip {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-gittip:before {
  content: "\f184";
}

.fas.fas-sun-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-sun-o:before {
  content: "\f185";
}

.fas.fas-moon-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-moon-o:before {
  content: "\f186";
}

.fas.fas-vk {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-weibo {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-renren {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-pagelines {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-stack-exchange {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-arrow-circle-o-right {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-arrow-circle-o-right:before {
  content: "\f35a";
}

.fas.fas-arrow-circle-o-left {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-arrow-circle-o-left:before {
  content: "\f359";
}

.fas.fas-caret-square-o-left {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-caret-square-o-left:before {
  content: "\f191";
}

.fas.fas-toggle-left {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-toggle-left:before {
  content: "\f191";
}

.fas.fas-dot-circle-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-dot-circle-o:before {
  content: "\f192";
}

.fas.fas-vimeo-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-try:before {
  content: "\f195";
}

.fas.fas-turkish-lira:before {
  content: "\f195";
}

.fas.fas-plus-square-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-plus-square-o:before {
  content: "\f0fe";
}

.fas.fas-slack {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-wordpress {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-openid {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-institution:before {
  content: "\f19c";
}

.fas.fas-bank:before {
  content: "\f19c";
}

.fas.fas-mortar-board:before {
  content: "\f19d";
}

.fas.fas-yahoo {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-google {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-reddit {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-reddit-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-stumbleupon-circle {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-stumbleupon {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-delicious {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-digg {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-pied-piper-pp {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-pied-piper-alt {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-drupal {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-joomla {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-spoon:before {
  content: "\f2e5";
}

.fas.fas-behance {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-behance-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-steam {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-steam-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-automobile:before {
  content: "\f1b9";
}

.fas.fas-cab:before {
  content: "\f1ba";
}

.fas.fas-envelope-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-envelope-o:before {
  content: "\f0e0";
}

.fas.fas-deviantart {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-soundcloud {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-file-pdf-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-file-pdf-o:before {
  content: "\f1c1";
}

.fas.fas-file-word-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-file-word-o:before {
  content: "\f1c2";
}

.fas.fas-file-excel-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-file-excel-o:before {
  content: "\f1c3";
}

.fas.fas-file-powerpoint-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-file-powerpoint-o:before {
  content: "\f1c4";
}

.fas.fas-file-image-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-file-image-o:before {
  content: "\f1c5";
}

.fas.fas-file-photo-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-file-photo-o:before {
  content: "\f1c5";
}

.fas.fas-file-picture-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-file-picture-o:before {
  content: "\f1c5";
}

.fas.fas-file-archive-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-file-archive-o:before {
  content: "\f1c6";
}

.fas.fas-file-zip-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-file-zip-o:before {
  content: "\f1c6";
}

.fas.fas-file-audio-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-file-audio-o:before {
  content: "\f1c7";
}

.fas.fas-file-sound-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-file-sound-o:before {
  content: "\f1c7";
}

.fas.fas-file-video-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-file-video-o:before {
  content: "\f1c8";
}

.fas.fas-file-movie-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-file-movie-o:before {
  content: "\f1c8";
}

.fas.fas-file-code-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-file-code-o:before {
  content: "\f1c9";
}

.fas.fas-vine {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-codepen {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-jsfiddle {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-life-ring {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-life-bouy {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-life-bouy:before {
  content: "\f1cd";
}

.fas.fas-life-buoy {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-life-buoy:before {
  content: "\f1cd";
}

.fas.fas-life-saver {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-life-saver:before {
  content: "\f1cd";
}

.fas.fas-support {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-support:before {
  content: "\f1cd";
}

.fas.fas-circle-o-notch:before {
  content: "\f1ce";
}

.fas.fas-rebel {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-ra {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-ra:before {
  content: "\f1d0";
}

.fas.fas-resistance {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-resistance:before {
  content: "\f1d0";
}

.fas.fas-empire {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-ge {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-ge:before {
  content: "\f1d1";
}

.fas.fas-git-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-git {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-hacker-news {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-y-combinator-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-y-combinator-square:before {
  content: "\f1d4";
}

.fas.fas-yc-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-yc-square:before {
  content: "\f1d4";
}

.fas.fas-tencent-weibo {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-qq {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-weixin {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-wechat {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-wechat:before {
  content: "\f1d7";
}

.fas.fas-send:before {
  content: "\f1d8";
}

.fas.fas-paper-plane-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-paper-plane-o:before {
  content: "\f1d8";
}

.fas.fas-send-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-send-o:before {
  content: "\f1d8";
}

.fas.fas-circle-thin {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-circle-thin:before {
  content: "\f111";
}

.fas.fas-header:before {
  content: "\f1dc";
}

.fas.fas-sliders:before {
  content: "\f1de";
}

.fas.fas-futbol-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-futbol-o:before {
  content: "\f1e3";
}

.fas.fas-soccer-ball-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-soccer-ball-o:before {
  content: "\f1e3";
}

.fas.fas-slideshare {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-twitch {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-yelp {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-newspaper-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-newspaper-o:before {
  content: "\f1ea";
}

.fas.fas-paypal {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-google-wallet {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-cc-visa {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-cc-mastercard {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-cc-discover {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-cc-amex {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-cc-paypal {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-cc-stripe {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-bell-slash-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-bell-slash-o:before {
  content: "\f1f6";
}

.fas.fas-trash:before {
  content: "\f2ed";
}

.fas.fas-copyright {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-eyedropper:before {
  content: "\f1fb";
}

.fas.fas-area-chart:before {
  content: "\f1fe";
}

.fas.fas-pie-chart:before {
  content: "\f200";
}

.fas.fas-line-chart:before {
  content: "\f201";
}

.fas.fas-lastfm {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-lastfm-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-ioxhost {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-angellist {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-cc {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-cc:before {
  content: "\f20a";
}

.fas.fas-ils:before {
  content: "\f20b";
}

.fas.fas-shekel:before {
  content: "\f20b";
}

.fas.fas-sheqel:before {
  content: "\f20b";
}

.fas.fas-meanpath {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-meanpath:before {
  content: "\f2b4";
}

.fas.fas-buysellads {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-connectdevelop {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-dashcube {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-forumbee {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-leanpub {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-sellsy {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-shirtsinbulk {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-simplybuilt {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-skyatlas {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-diamond {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-diamond:before {
  content: "\f3a5";
}

.fas.fas-intersex:before {
  content: "\f224";
}

.fas.fas-facebook-official {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-facebook-official:before {
  content: "\f09a";
}

.fas.fas-pinterest-p {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-whatsapp {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-hotel:before {
  content: "\f236";
}

.fas.fas-viacoin {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-medium {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-y-combinator {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-yc {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-yc:before {
  content: "\f23b";
}

.fas.fas-optin-monster {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-opencart {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-expeditedssl {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-battery-4:before {
  content: "\f240";
}

.fas.fas-battery:before {
  content: "\f240";
}

.fas.fas-battery-3:before {
  content: "\f241";
}

.fas.fas-battery-2:before {
  content: "\f242";
}

.fas.fas-battery-1:before {
  content: "\f243";
}

.fas.fas-battery-0:before {
  content: "\f244";
}

.fas.fas-object-group {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-object-ungroup {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-sticky-note-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-sticky-note-o:before {
  content: "\f249";
}

.fas.fas-cc-jcb {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-cc-diners-club {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-clone {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-hourglass-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-hourglass-o:before {
  content: "\f254";
}

.fas.fas-hourglass-1:before {
  content: "\f251";
}

.fas.fas-hourglass-2:before {
  content: "\f252";
}

.fas.fas-hourglass-3:before {
  content: "\f253";
}

.fas.fas-hand-rock-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-hand-rock-o:before {
  content: "\f255";
}

.fas.fas-hand-grab-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-hand-grab-o:before {
  content: "\f255";
}

.fas.fas-hand-paper-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-hand-paper-o:before {
  content: "\f256";
}

.fas.fas-hand-stop-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-hand-stop-o:before {
  content: "\f256";
}

.fas.fas-hand-scissors-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-hand-scissors-o:before {
  content: "\f257";
}

.fas.fas-hand-lizard-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-hand-lizard-o:before {
  content: "\f258";
}

.fas.fas-hand-spock-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-hand-spock-o:before {
  content: "\f259";
}

.fas.fas-hand-pointer-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-hand-pointer-o:before {
  content: "\f25a";
}

.fas.fas-hand-peace-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-hand-peace-o:before {
  content: "\f25b";
}

.fas.fas-registered {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-creative-commons {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-gg {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-gg-circle {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-tripadvisor {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-odnoklassniki {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-odnoklassniki-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-get-pocket {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-wikipedia-w {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-safari {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-chrome {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-firefox {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-opera {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-internet-explorer {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-television:before {
  content: "\f26c";
}

.fas.fas-contao {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-500px {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-amazon {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-calendar-plus-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-calendar-plus-o:before {
  content: "\f271";
}

.fas.fas-calendar-minus-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-calendar-minus-o:before {
  content: "\f272";
}

.fas.fas-calendar-times-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-calendar-times-o:before {
  content: "\f273";
}

.fas.fas-calendar-check-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-calendar-check-o:before {
  content: "\f274";
}

.fas.fas-map-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-map-o:before {
  content: "\f279";
}

.fas.fas-commenting:before {
  content: "\f4ad";
}

.fas.fas-commenting-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-commenting-o:before {
  content: "\f4ad";
}

.fas.fas-houzz {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-vimeo {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-vimeo:before {
  content: "\f27d";
}

.fas.fas-black-tie {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-fonticons {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-reddit-alien {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-edge {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-credit-card-alt:before {
  content: "\f09d";
}

.fas.fas-codiepie {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-modx {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-fort-awesome {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-usb {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-product-hunt {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-mixcloud {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-scribd {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-pause-circle-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-pause-circle-o:before {
  content: "\f28b";
}

.fas.fas-stop-circle-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-stop-circle-o:before {
  content: "\f28d";
}

.fas.fas-bluetooth {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-bluetooth-b {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-gitlab {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-wpbeginner {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-wpforms {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-envira {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-wheelchair-alt {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-wheelchair-alt:before {
  content: "\f368";
}

.fas.fas-question-circle-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-question-circle-o:before {
  content: "\f059";
}

.fas.fas-volume-control-phone:before {
  content: "\f2a0";
}

.fas.fas-asl-interpreting:before {
  content: "\f2a3";
}

.fas.fas-deafness:before {
  content: "\f2a4";
}

.fas.fas-hard-of-hearing:before {
  content: "\f2a4";
}

.fas.fas-glide {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-glide-g {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-signing:before {
  content: "\f2a7";
}

.fas.fas-viadeo {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-viadeo-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-snapchat {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-snapchat-ghost {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-snapchat-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-pied-piper {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-first-order {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-yoast {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-themeisle {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-google-plus-official {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-google-plus-official:before {
  content: "\f2b3";
}

.fas.fas-google-plus-circle {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-google-plus-circle:before {
  content: "\f2b3";
}

.fas.fas-font-awesome {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-fa {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-fa:before {
  content: "\f2b4";
}

.fas.fas-handshake-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-handshake-o:before {
  content: "\f2b5";
}

.fas.fas-envelope-open-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-envelope-open-o:before {
  content: "\f2b6";
}

.fas.fas-linode {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-address-book-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-address-book-o:before {
  content: "\f2b9";
}

.fas.fas-vcard:before {
  content: "\f2bb";
}

.fas.fas-address-card-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-address-card-o:before {
  content: "\f2bb";
}

.fas.fas-vcard-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-vcard-o:before {
  content: "\f2bb";
}

.fas.fas-user-circle-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-user-circle-o:before {
  content: "\f2bd";
}

.fas.fas-user-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-user-o:before {
  content: "\f007";
}

.fas.fas-id-badge {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-drivers-license:before {
  content: "\f2c2";
}

.fas.fas-id-card-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-id-card-o:before {
  content: "\f2c2";
}

.fas.fas-drivers-license-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-drivers-license-o:before {
  content: "\f2c2";
}

.fas.fas-quora {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-free-code-camp {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-telegram {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-thermometer-4:before {
  content: "\f2c7";
}

.fas.fas-thermometer:before {
  content: "\f2c7";
}

.fas.fas-thermometer-3:before {
  content: "\f2c8";
}

.fas.fas-thermometer-2:before {
  content: "\f2c9";
}

.fas.fas-thermometer-1:before {
  content: "\f2ca";
}

.fas.fas-thermometer-0:before {
  content: "\f2cb";
}

.fas.fas-bathtub:before {
  content: "\f2cd";
}

.fas.fas-s15:before {
  content: "\f2cd";
}

.fas.fas-window-maximize {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-window-restore {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-times-rectangle:before {
  content: "\f410";
}

.fas.fas-window-close-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-window-close-o:before {
  content: "\f410";
}

.fas.fas-times-rectangle-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-times-rectangle-o:before {
  content: "\f410";
}

.fas.fas-bandcamp {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-grav {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-etsy {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-imdb {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-ravelry {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-eercast {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-eercast:before {
  content: "\f2da";
}

.fas.fas-snowflake-o {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

.fas.fas-snowflake-o:before {
  content: "\f2dc";
}

.fas.fas-superpowers {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-wpexplorer {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fas.fas-spotify {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.xdsoft_datetimepicker {
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.506);
  background: #fff;
  border-bottom: 1px solid #bbb;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  color: #333;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 8px;
  padding-left: 0;
  padding-top: 2px;
  position: absolute;
  z-index: 9999;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
}

.xdsoft_datetimepicker.xdsoft_rtl {
  padding: 8px 0 8px 8px;
}

.xdsoft_datetimepicker iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 75px;
  height: 210px;
  background: transparent;
  border: 0;
}

.xdsoft_datetimepicker button {
  border: none !important;
}

.xdsoft_noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.xdsoft_noselect::selection {
  background: transparent;
}

.xdsoft_noselect::-moz-selection {
  background: transparent;
}

.xdsoft_datetimepicker.xdsoft_inline {
  display: inline-block;
  position: static;
  box-shadow: none;
}

.xdsoft_datetimepicker * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.xdsoft_datetimepicker .xdsoft_datepicker, .xdsoft_datetimepicker .xdsoft_timepicker {
  display: none;
}

.xdsoft_datetimepicker .xdsoft_datepicker.active, .xdsoft_datetimepicker .xdsoft_timepicker.active {
  display: block;
}

.xdsoft_datetimepicker .xdsoft_datepicker {
  width: 224px;
  float: left;
  margin-left: 8px;
}

.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_datepicker {
  float: right;
  margin-right: 8px;
  margin-left: 0;
}

.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_datepicker {
  width: 256px;
}

.xdsoft_datetimepicker .xdsoft_timepicker {
  width: 58px;
  float: left;
  text-align: center;
  margin-left: 8px;
  margin-top: 0;
}

.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker {
  float: right;
  margin-right: 8px;
  margin-left: 0;
}

.xdsoft_datetimepicker .xdsoft_datepicker.active + .xdsoft_timepicker {
  margin-top: 8px;
  margin-bottom: 3px;
}

.xdsoft_datetimepicker .xdsoft_monthpicker {
  position: relative;
  text-align: center;
}

.xdsoft_datetimepicker .xdsoft_label i, .xdsoft_datetimepicker .xdsoft_prev, .xdsoft_datetimepicker .xdsoft_next, .xdsoft_datetimepicker .xdsoft_today_button {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Q0NBRjI1NjM0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0NBRjI1NjQ0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDQ0FGMjU2MTQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDQ0FGMjU2MjQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PoNEP54AAAIOSURBVHja7Jq9TsMwEMcxrZD4WpBYeKUCe+kTMCACHZh4BFfHO/AAIHZGFhYkBBsSEqxsLCAgXKhbXYOTxh9pfJVP+qutnZ5s/5Lz2Y5I03QhWji2GIcgAokWgfCxNvcOCCGKqiSqhUp0laHOne05vdEyGMfkdxJDVjgwDlEQgYQBgx+ULJaWSXXS6r/ER5FBVR8VfGftTKcITNs+a1XpcFoExREIDF14AVIFxgQUS+h520cdud6wNkC0UBw6BCO/HoCYwBhD8QCkQ/x1mwDyD4plh4D6DDV0TAGyo4HcawLIBBSLDkHeH0Mg2yVP3l4TQMZQDDsEOl/MgHQqhMNuE0D+oBh0CIr8MAKyazBH9WyBuKxDWgbXfjNf32TZ1KWm/Ap1oSk/R53UtQ5xTh3LUlMmT8gt6g51Q9p+SobxgJQ/qmsfZhWywGFSl0yBjCLJCMgXail3b7+rumdVJ2YRss4cN+r6qAHDkPWjPjdJCF4n9RmAD/V9A/Wp4NQassDjwlB6XBiCxcJQWmZZb8THFilfy/lfrTvLghq2TqTHrRMTKNJ0sIhdo15RT+RpyWwFdY96UZ/LdQKBGjcXpcc1AlSFEfLmouD+1knuxBDUVrvOBmoOC/rEcN7OQxKVeJTCiAdUzUJhA2Oez9QTkp72OTVcxDcXY8iKNkxGAJXmJCOQwOa6dhyXsOa6XwEGAKdeb5ET3rQdAAAAAElFTkSuQmCC);
}

.xdsoft_datetimepicker .xdsoft_label i {
  opacity: 0.5;
  background-position: -92px -19px;
  display: inline-block;
  width: 9px;
  height: 20px;
  vertical-align: middle;
}

.xdsoft_datetimepicker .xdsoft_prev {
  float: left;
  background-position: -20px 0;
}

.xdsoft_datetimepicker .xdsoft_today_button {
  float: left;
  background-position: -70px 0;
  margin-left: 5px;
}

.xdsoft_datetimepicker .xdsoft_next {
  float: right;
  background-position: 0 0;
}

.xdsoft_datetimepicker .xdsoft_next, .xdsoft_datetimepicker .xdsoft_prev, .xdsoft_datetimepicker .xdsoft_today_button {
  background-color: transparent;
  background-repeat: no-repeat;
  border: 0 none;
  cursor: pointer;
  display: block;
  height: 30px;
  opacity: 0.5;
  -ms-filter: "alpha(opacity=50)";
  outline: medium none;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  width: 20px;
  min-width: 0;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev, .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next {
  float: none;
  background-position: -40px -15px;
  height: 15px;
  width: 30px;
  display: block;
  margin-left: 14px;
  margin-top: 7px;
}

.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker .xdsoft_prev, .xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker .xdsoft_next {
  float: none;
  margin-left: 0;
  margin-right: 14px;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev {
  background-position: -40px 0;
  margin-bottom: 7px;
  margin-top: 0;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box {
  height: 151px;
  overflow: hidden;
  border-bottom: 1px solid #ddd;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div {
  background: #f5f5f5;
  border-top: 1px solid #ddd;
  color: #666;
  font-size: 12px;
  text-align: center;
  border-collapse: collapse;
  cursor: pointer;
  border-bottom-width: 0;
  height: 25px;
  line-height: 25px;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:first-child {
  border-top-width: 0;
}

.xdsoft_datetimepicker .xdsoft_today_button:hover, .xdsoft_datetimepicker .xdsoft_next:hover, .xdsoft_datetimepicker .xdsoft_prev:hover {
  opacity: 1;
  -ms-filter: "alpha(opacity=100)";
}

.xdsoft_datetimepicker .xdsoft_label {
  display: inline;
  position: relative;
  z-index: 9999;
  margin: 0;
  padding: 5px 3px;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  background-color: #fff;
  float: left;
  width: 182px;
  text-align: center;
  cursor: pointer;
}

.xdsoft_datetimepicker .xdsoft_label:hover > span {
  text-decoration: underline;
}

.xdsoft_datetimepicker .xdsoft_label:hover i {
  opacity: 1;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select {
  border: 1px solid #ccc;
  position: absolute;
  right: 0;
  top: 30px;
  z-index: 101;
  display: none;
  background: #fff;
  max-height: 160px;
  overflow-y: hidden;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_monthselect {
  right: -7px;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_yearselect {
  right: 2px;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover {
  color: #fff;
  background: #ff8000;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option {
  padding: 2px 10px 2px 5px;
  text-decoration: none !important;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current {
  background: #3af;
  box-shadow: #178fe5 0 1px 3px 0 inset;
  color: #fff;
  font-weight: 700;
}

.xdsoft_datetimepicker .xdsoft_month {
  width: 100px;
  text-align: right;
}

.xdsoft_datetimepicker .xdsoft_calendar {
  clear: both;
}

.xdsoft_datetimepicker .xdsoft_year {
  width: 48px;
  margin-left: 5px;
}

.xdsoft_datetimepicker .xdsoft_calendar table {
  border-collapse: collapse;
  width: 100%;
}

.xdsoft_datetimepicker .xdsoft_calendar td > div {
  padding-right: 5px;
}

.xdsoft_datetimepicker .xdsoft_calendar th {
  height: 25px;
}

.xdsoft_datetimepicker .xdsoft_calendar td, .xdsoft_datetimepicker .xdsoft_calendar th {
  width: 14.2857142%;
  background: #f5f5f5;
  border: 1px solid #ddd;
  color: #666;
  font-size: 12px;
  text-align: right;
  vertical-align: middle;
  padding: 0;
  border-collapse: collapse;
  cursor: pointer;
  height: 25px;
}

.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar td, .xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar th {
  width: 12.5%;
}

.xdsoft_datetimepicker .xdsoft_calendar th {
  background: #f1f1f1;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today {
  color: #3af;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_highlighted_default {
  background: #ffe9d2;
  box-shadow: #ffb871 0 1px 4px 0 inset;
  color: #000;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_highlighted_mint {
  background: #c1ffc9;
  box-shadow: #00dd1c 0 1px 4px 0 inset;
  color: #000;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default, .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current, .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  background: #3af;
  box-shadow: #178fe5 0 1px 3px 0 inset;
  color: #fff;
  font-weight: 700;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month, .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled, .xdsoft_datetimepicker .xdsoft_time_box > div > div.xdsoft_disabled {
  opacity: 0.5;
  -ms-filter: "alpha(opacity=50)";
  cursor: default;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month.xdsoft_disabled {
  opacity: 0.2;
  -ms-filter: "alpha(opacity=20)";
}

.xdsoft_datetimepicker .xdsoft_calendar td:hover, .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #fff !important;
  background: #ff8000 !important;
  box-shadow: none !important;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current.xdsoft_disabled:hover, .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current.xdsoft_disabled:hover {
  background: #3af !important;
  box-shadow: #178fe5 0 1px 3px 0 inset !important;
  color: #fff !important;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled:hover, .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_disabled:hover {
  color: inherit !important;
  background: inherit !important;
  box-shadow: inherit !important;
}

.xdsoft_datetimepicker .xdsoft_calendar th {
  font-weight: 700;
  text-align: center;
  color: #999;
  cursor: default;
}

.xdsoft_datetimepicker .xdsoft_copyright {
  color: #ccc !important;
  font-size: 10px;
  clear: both;
  float: none;
  margin-left: 8px;
}

.xdsoft_datetimepicker .xdsoft_copyright a {
  color: #eee !important;
}

.xdsoft_datetimepicker .xdsoft_copyright a:hover {
  color: #aaa !important;
}

.xdsoft_time_box {
  position: relative;
  border: 1px solid #ccc;
}

.xdsoft_scrollbar > .xdsoft_scroller {
  background: #ccc !important;
  height: 20px;
  border-radius: 3px;
}

.xdsoft_scrollbar {
  position: absolute;
  width: 7px;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
}

.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_scrollbar {
  left: 0;
  right: auto;
}

.xdsoft_scroller_box {
  position: relative;
}

.xdsoft_datetimepicker.xdsoft_dark {
  box-shadow: 0 5px 15px -5px rgba(255, 255, 255, 0.506);
  background: #000;
  border-bottom: 1px solid #444;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
  border-top: 1px solid #333;
  color: #ccc;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box {
  border-bottom: 1px solid #222;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box > div > div {
  background: #0a0a0a;
  border-top: 1px solid #222;
  color: #999;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label {
  background-color: #000;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select {
  border: 1px solid #333;
  background: #000;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover {
  color: #000;
  background: #007fff;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current {
  background: #c50;
  box-shadow: #b03e00 0 1px 3px 0 inset;
  color: #000;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label i, .xdsoft_datetimepicker.xdsoft_dark .xdsoft_prev, .xdsoft_datetimepicker.xdsoft_dark .xdsoft_next, .xdsoft_datetimepicker.xdsoft_dark .xdsoft_today_button {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QUExQUUzOTA0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QUExQUUzOTE0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBQTFBRTM4RTQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBQTFBRTM4RjQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pp0VxGEAAAIASURBVHja7JrNSgMxEMebtgh+3MSLr1T1Xn2CHoSKB08+QmR8Bx9A8e7RixdB9CKCoNdexIugxFlJa7rNZneTbLIpM/CnNLsdMvNjM8l0mRCiQ9Ye61IKCAgZAUnH+mU3MMZaHYChBnJUDzWOFZdVfc5+ZFLbrWDeXPwbxIqrLLfaeS0hEBVGIRQCEiZoHQwtlGSByCCdYBl8g8egTTAWoKQMRBRBcZxYlhzhKegqMOageErsCHVkk3hXIFooDgHB1KkHIHVgzKB4ADJQ/A1jAFmAYhkQqA5TOBtocrKrgXwQA8gcFIuAIO8sQSA7hidvPwaQGZSaAYHOUWJABhWWw2EMIH9QagQERU4SArJXo0ZZL18uvaxejXt/Em8xjVBXmvFr1KVm/AJ10tRe2XnraNqaJvKE3KHuUbfK1E+VHB0q40/y3sdQSxY4FHWeKJCunP8UyDdqJZenT3ntVV5jIYCAh20vT7ioP8tpf6E2lfEMwERe+whV1MHjwZB7PBiCxcGQWwKZKD62lfGNnP/1poFAA60T7rF1UgcKd2id3KDeUS+oLWV8DfWAepOfq00CgQabi9zjcgJVYVD7PVzQUAUGAQkbNJTBICDhgwYTjDYD6XeW08ZKh+A4pYkzenOxXUbvZcWz7E8ykRMnIHGX1XPl+1m2vPYpL+2qdb8CDAARlKFEz/ZVkAAAAABJRU5ErkJggg==);
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td, .xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th {
  background: #0a0a0a;
  border: 1px solid #222;
  color: #999;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th {
  background: #0e0e0e;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_today {
  color: #c50;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_highlighted_default {
  background: #ffe9d2;
  box-shadow: #ffb871 0 1px 4px 0 inset;
  color: #000;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_highlighted_mint {
  background: #c1ffc9;
  box-shadow: #00dd1c 0 1px 4px 0 inset;
  color: #000;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_default, .xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_current, .xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  background: #c50;
  box-shadow: #b03e00 0 1px 3px 0 inset;
  color: #000;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td:hover, .xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000 !important;
  background: #007fff !important;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th {
  color: #666;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright {
  color: #333 !important;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a {
  color: #111 !important;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a:hover {
  color: #555 !important;
}

.xdsoft_dark .xdsoft_time_box {
  border: 1px solid #333;
}

.xdsoft_dark .xdsoft_scrollbar > .xdsoft_scroller {
  background: #333 !important;
}

.xdsoft_datetimepicker .xdsoft_save_selected {
  display: block;
  border: 1px solid #ddd !important;
  margin-top: 5px;
  width: 100%;
  color: #454551;
  font-size: 13px;
}

.xdsoft_datetimepicker .blue-gradient-button {
  font-family: "museo-sans", "Book Antiqua", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #82878c;
  height: 28px;
  position: relative;
  padding: 4px 17px 4px 33px;
  border: 1px solid #d7d8da;
  background: -moz-linear-gradient(top, #fff 0, #f4f8fa 73%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(73%, #f4f8fa));
  background: -webkit-linear-gradient(top, #fff 0, #f4f8fa 73%);
  background: -o-linear-gradient(top, #fff 0, #f4f8fa 73%);
  background: -ms-linear-gradient(top, #fff 0, #f4f8fa 73%);
  background: linear-gradient(to bottom, #fff 0, #f4f8fa 73%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff',endColorstr='#f4f8fa',GradientType=0);
}

.xdsoft_datetimepicker .blue-gradient-button:hover, .xdsoft_datetimepicker .blue-gradient-button:focus, .xdsoft_datetimepicker .blue-gradient-button:hover span, .xdsoft_datetimepicker .blue-gradient-button:focus span {
  color: #454551;
  background: -moz-linear-gradient(top, #f4f8fa 0, #FFF 73%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f4f8fa), color-stop(73%, #FFF));
  background: -webkit-linear-gradient(top, #f4f8fa 0, #FFF 73%);
  background: -o-linear-gradient(top, #f4f8fa 0, #FFF 73%);
  background: -ms-linear-gradient(top, #f4f8fa 0, #FFF 73%);
  background: linear-gradient(to bottom, #f4f8fa 0, #FFF 73%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4f8fa',endColorstr='#FFF',GradientType=0);
}

/**
 * simplemde v1.11.2
 * Copyright Next Step Webs, Inc.
 * @link https://github.com/NextStepWebs/simplemde-markdown-editor
 * @license MIT
 */
.CodeMirror {
  color: #000;
}

.CodeMirror-lines {
  padding: 4px 0;
}

.CodeMirror pre {
  padding: 0 4px;
}

.CodeMirror-gutter-filler, .CodeMirror-scrollbar-filler {
  background-color: #fff;
}

.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}

.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}

.CodeMirror-guttermarker {
  color: #000;
}

.CodeMirror-guttermarker-subtle {
  color: #999;
}

.CodeMirror-cursor {
  border-left: 1px solid #000;
  border-right: none;
  width: 0;
}

.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}

.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}

.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}

.cm-animate-fat-cursor {
  width: auto;
  border: 0;
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
  background-color: #7e7;
}

@-moz-keyframes blink {
  50% {
    background-color: transparent;
  }
}
@-webkit-keyframes blink {
  50% {
    background-color: transparent;
  }
}
@keyframes blink {
  50% {
    background-color: transparent;
  }
}
.cm-tab {
  display: inline-block;
  text-decoration: inherit;
}

.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  position: absolute;
}

.cm-s-default .cm-header {
  color: #00f;
}

.cm-s-default .cm-quote {
  color: #090;
}

.cm-negative {
  color: #d44;
}

.cm-positive {
  color: #292;
}

.cm-header, .cm-strong {
  font-weight: 700;
}

.cm-em {
  font-style: italic;
}

.cm-link {
  text-decoration: underline;
}

.cm-strikethrough {
  text-decoration: line-through;
}

.cm-s-default .cm-keyword {
  color: #708;
}

.cm-s-default .cm-atom {
  color: #219;
}

.cm-s-default .cm-number {
  color: #164;
}

.cm-s-default .cm-def {
  color: #00f;
}

.cm-s-default .cm-variable-2 {
  color: #05a;
}

.cm-s-default .cm-variable-3 {
  color: #085;
}

.cm-s-default .cm-comment {
  color: #a50;
}

.cm-s-default .cm-string {
  color: #a11;
}

.cm-s-default .cm-string-2 {
  color: #f50;
}

.cm-s-default .cm-meta, .cm-s-default .cm-qualifier {
  color: #555;
}

.cm-s-default .cm-builtin {
  color: #30a;
}

.cm-s-default .cm-bracket {
  color: #997;
}

.cm-s-default .cm-tag {
  color: #170;
}

.cm-s-default .cm-attribute {
  color: #00c;
}

.cm-s-default .cm-hr {
  color: #999;
}

.cm-s-default .cm-link {
  color: #00c;
}

.cm-invalidchar, .cm-s-default .cm-error {
  color: red;
}

.CodeMirror-composing {
  border-bottom: 2px solid;
}

div.CodeMirror span.CodeMirror-matchingbracket {
  color: #0f0;
}

div.CodeMirror span.CodeMirror-nonmatchingbracket {
  color: #f22;
}

.CodeMirror-matchingtag {
  background: rgba(255, 150, 0, 0.3);
}

.CodeMirror-activeline-background {
  background: #e8f2ff;
}

.CodeMirror {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.CodeMirror-scroll {
  overflow: scroll !important;
  margin-bottom: -30px;
  margin-right: -30px;
  padding-bottom: 30px;
  height: 100%;
  outline: 0;
  position: relative;
}

.CodeMirror-sizer {
  position: relative;
  border-right: 30px solid transparent;
}

.CodeMirror-gutter-filler, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-vscrollbar {
  position: absolute;
  z-index: 6;
  display: none;
}

.CodeMirror-vscrollbar {
  right: 0;
  top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}

.CodeMirror-hscrollbar {
  bottom: 0;
  left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}

.CodeMirror-scrollbar-filler {
  right: 0;
  bottom: 0;
}

.CodeMirror-gutter-filler {
  left: 0;
  bottom: 0;
}

.CodeMirror-gutters {
  position: absolute;
  left: 0;
  top: 0;
  min-height: 100%;
  z-index: 3;
}

.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -30px;
}

.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: 0 0 !important;
  border: none !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.CodeMirror-gutter-background {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
}

.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}

.CodeMirror-lines {
  cursor: text;
  min-height: 1px;
}

.CodeMirror pre {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border-width: 0;
  background: 0 0;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: none;
  font-variant-ligatures: none;
}

.CodeMirror-wrap pre {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}

.CodeMirror-linebackground {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  overflow: auto;
}

.CodeMirror-code {
  outline: 0;
}

.CodeMirror-gutter, .CodeMirror-gutters, .CodeMirror-linenumber, .CodeMirror-scroll, .CodeMirror-sizer {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.CodeMirror-cursor {
  position: absolute;
}

.CodeMirror-measure pre {
  position: static;
}

div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}

.CodeMirror-focused div.CodeMirror-cursors, div.CodeMirror-dragcursors {
  visibility: visible;
}

.CodeMirror-selected {
  background: #d9d9d9;
}

.CodeMirror-focused .CodeMirror-selected, .CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection {
  background: #d7d4f0;
}

.CodeMirror-crosshair {
  cursor: crosshair;
}

.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection {
  background: #d7d4f0;
}

.cm-searching {
  background: #ffa;
  background: rgba(255, 255, 0, 0.4);
}

.cm-force-border {
  padding-right: 0.1px;
}

@media print {
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}
.cm-tab-wrap-hack:after {
  content: "";
}

span.CodeMirror-selectedtext {
  background: 0 0;
}

.CodeMirror {
  height: auto;
  min-height: 300px;
  border: 1px solid #ddd;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  padding: 10px;
  font: inherit;
  z-index: 1;
}

.CodeMirror-scroll {
  min-height: 300px;
}

.CodeMirror-fullscreen {
  background: #fff;
  position: fixed !important;
  top: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
  z-index: 9;
}

.CodeMirror-sided {
  width: 50% !important;
}

.editor-toolbar {
  position: relative;
  opacity: 0.6;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  padding: 0 10px;
  border-top: 1px solid #bbb;
  border-left: 1px solid #bbb;
  border-right: 1px solid #bbb;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.editor-toolbar:after, .editor-toolbar:before {
  display: block;
  content: " ";
  height: 1px;
}

.editor-toolbar:before {
  margin-bottom: 8px;
}

.editor-toolbar:after {
  margin-top: 8px;
}

.editor-toolbar:hover, .editor-wrapper input.title:focus, .editor-wrapper input.title:hover {
  opacity: 0.8;
}

.editor-toolbar.fullscreen {
  width: 100%;
  height: 50px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding-top: 10px;
  padding-bottom: 10px;
  box-sizing: border-box;
  background: #fff;
  border: 0;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 9;
}

.editor-toolbar.fullscreen::before {
  width: 20px;
  height: 50px;
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 1) 0, rgba(255, 255, 255, 0) 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 1)), color-stop(100%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 1) 0, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 1) 0, rgba(255, 255, 255, 0) 100%);
  background: -ms-linear-gradient(left, rgba(255, 255, 255, 1) 0, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0, rgba(255, 255, 255, 0) 100%);
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
}

.editor-toolbar.fullscreen::after {
  width: 20px;
  height: 50px;
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 1) 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 0)), color-stop(100%, rgba(255, 255, 255, 1)));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 1) 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 1) 100%);
  background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 1) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 1) 100%);
  position: fixed;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
}

.editor-toolbar a {
  display: inline-block;
  text-align: center;
  text-decoration: none !important;
  color: #2c3e50 !important;
  width: 30px;
  height: 30px;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
}

.editor-toolbar a.active, .editor-toolbar a:hover {
  background: #fcfcfc;
  border-color: #95a5a6;
}

.editor-toolbar a:before {
  line-height: 30px;
}

.editor-toolbar i.separator {
  display: inline-block;
  width: 0;
  border-left: 1px solid #d9d9d9;
  border-right: 1px solid #fff;
  color: transparent;
  text-indent: -10px;
  margin: 0 6px;
}

.editor-toolbar a.fa-header-x:after {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 65%;
  vertical-align: text-bottom;
  position: relative;
  top: 2px;
}

.editor-toolbar a.fa-header-1:after {
  content: "1";
}

.editor-toolbar a.fa-header-2:after {
  content: "2";
}

.editor-toolbar a.fa-header-3:after {
  content: "3";
}

.editor-toolbar a.fa-header-bigger:after {
  content: "▲";
}

.editor-toolbar a.fa-header-smaller:after {
  content: "▼";
}

.editor-toolbar.disabled-for-preview a:not(.no-disable) {
  pointer-events: none;
  background: #fff;
  border-color: transparent;
  text-shadow: inherit;
}

@media only screen and (max-width: 700px) {
  .editor-toolbar a.no-mobile {
    display: none;
  }
}
.editor-statusbar {
  padding: 8px 10px;
  font-size: 12px;
  color: #959694;
  text-align: right;
}

.editor-statusbar span {
  display: inline-block;
  min-width: 4em;
  margin-left: 1em;
}

.editor-preview, .editor-preview-side {
  padding: 10px;
  background: #fafafa;
  overflow: auto;
  display: none;
  box-sizing: border-box;
}

.editor-statusbar .lines:before {
  content: "lines: ";
}

.editor-statusbar .words:before {
  content: "words: ";
}

.editor-statusbar .characters:before {
  content: "characters: ";
}

.editor-preview {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 7;
}

.editor-preview-side {
  position: fixed;
  bottom: 0;
  width: 50%;
  top: 50px;
  right: 0;
  z-index: 9;
  border: 1px solid #ddd;
}

.editor-preview-active, .editor-preview-active-side {
  display: block;
}

.editor-preview-side > p, .editor-preview > p {
  margin-top: 0;
}

.editor-preview pre, .editor-preview-side pre {
  background: #eee;
  margin-bottom: 10px;
}

.editor-preview table td, .editor-preview table th, .editor-preview-side table td, .editor-preview-side table th {
  border: 1px solid #ddd;
  padding: 5px;
}

.CodeMirror .CodeMirror-code .cm-tag {
  color: #63a35c;
}

.CodeMirror .CodeMirror-code .cm-attribute {
  color: #795da3;
}

.CodeMirror .CodeMirror-code .cm-string {
  color: #183691;
}

.CodeMirror .CodeMirror-selected {
  background: #d9d9d9;
}

.CodeMirror .CodeMirror-code .cm-header-1 {
  font-size: 200%;
  line-height: 200%;
}

.CodeMirror .CodeMirror-code .cm-header-2 {
  font-size: 160%;
  line-height: 160%;
}

.CodeMirror .CodeMirror-code .cm-header-3 {
  font-size: 125%;
  line-height: 125%;
}

.CodeMirror .CodeMirror-code .cm-header-4 {
  font-size: 110%;
  line-height: 110%;
}

.CodeMirror .CodeMirror-code .cm-comment {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
}

.CodeMirror .CodeMirror-code .cm-link {
  color: #7f8c8d;
}

.CodeMirror .CodeMirror-code .cm-url {
  color: #aab2b3;
}

.CodeMirror .CodeMirror-code .cm-strikethrough {
  text-decoration: line-through;
}

.CodeMirror .CodeMirror-placeholder {
  opacity: 0.5;
}

.CodeMirror .cm-spell-error:not(.cm-url):not(.cm-comment):not(.cm-tag):not(.cm-word) {
  background: rgba(255, 0, 0, 0.15);
}

/*! jQuery UI - v1.11.1 - 2014-08-13
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, draggable.css, menu.css, progressbar.css, resizable.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
* Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-clearfix {
  min-height: 0; /* support: IE7 */
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0); /* support: IE8 */
}

.ui-front {
  z-index: 100;
}

/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
}

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

/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  padding: 0.5em 0.5em 0.5em 0.7em;
  min-height: 0; /* support: IE7 */
  font-size: 100%;
}

.ui-accordion .ui-accordion-icons {
  padding-left: 2.2em;
}

.ui-accordion .ui-accordion-icons .ui-accordion-icons {
  padding-left: 2.2em;
}

.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
  position: absolute;
  left: 0.5em;
  top: 50%;
  margin-top: -8px;
}

.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto;
}

.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}

.ui-button {
  display: inline-block;
  position: relative;
  padding: 0;
  line-height: normal;
  margin-right: 0.1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  overflow: visible; /* removes extra width in IE */
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
  text-decoration: none;
}

/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
  width: 2.2em;
}

/* button elements seem to need a little more width */
button.ui-button-icon-only {
  width: 2.4em;
}

.ui-button-icons-only {
  width: 3.4em;
}

button.ui-button-icons-only {
  width: 3.7em;
}

/* button text element */
.ui-button .ui-button-text {
  display: block;
  line-height: normal;
}

.ui-button-text-only .ui-button-text {
  padding: 0.4em 1em;
}

.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
  padding: 0.4em;
  text-indent: -9999999px;
}

.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
  padding: 0.4em 1em 0.4em 2.1em;
}

.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
  padding: 0.4em 2.1em 0.4em 1em;
}

.ui-button-text-icons .ui-button-text {
  padding-left: 2.1em;
  padding-right: 2.1em;
}

/* no icon support for input elements, provide padding by default */
input.ui-button {
  padding: 0.4em 1em;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
  position: absolute;
  top: 50%;
  margin-top: -8px;
}

.ui-button-icon-only .ui-icon {
  left: 50%;
  margin-left: -8px;
}

.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
  left: 0.5em;
}

.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
  right: 0.5em;
}

/* button sets */
.ui-buttonset {
  margin-right: 7px;
}

.ui-buttonset .ui-button {
  margin-left: 0;
  margin-right: -0.3em;
}

/* workarounds */
/* reset extra padding in Firefox, see h5bp.com/l */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0;
}

.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,
.ui-datepicker select.ui-datepicker-year {
  width: 45%;
}

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

.ui-datepicker th {
  padding: 0.7em 0.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: 0.2em;
  text-align: right;
  text-decoration: none;
}

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

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.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 0.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,
.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: 0;
}

/* 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,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

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

.ui-dialog {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.2em;
  outline: 0;
}

.ui-dialog .ui-dialog-titlebar {
  padding: 0.4em 1em;
  position: relative;
}

.ui-dialog .ui-dialog-title {
  float: left;
  margin: 0.1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: 0.3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px;
}

.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: 0.5em 1em;
  background: none;
  overflow: auto;
}

.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: 0.5em;
  padding: 0.3em 1em 0.5em 0.4em;
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}

.ui-dialog .ui-dialog-buttonpane button {
  margin: 0.5em 0.4em 0.5em 0;
  cursor: pointer;
}

.ui-dialog .ui-resizable-se {
  width: 12px;
  height: 12px;
  right: -5px;
  bottom: -5px;
  background-position: 16px 16px;
}

.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}

.ui-draggable-handle {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: none;
}

.ui-menu .ui-menu {
  position: absolute;
}

.ui-menu .ui-menu-item {
  position: relative;
  margin: 0;
  padding: 3px 1em 3px 0.4em;
  cursor: pointer;
  min-height: 0; /* support: IE7 */
  /* support: IE10, see #8844 */
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}

.ui-menu .ui-menu-divider {
  margin: 5px 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0;
}

.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
  margin: -1px;
}

/* icon support */
.ui-menu-icons {
  position: relative;
}

.ui-menu-icons .ui-menu-item {
  padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.2em;
  margin: auto 0;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
  left: auto;
  right: 0;
}

.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden;
}

.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%;
}

.ui-progressbar .ui-progressbar-overlay {
  background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
  height: 100%;
  filter: alpha(opacity=25); /* support: IE8 */
  opacity: 0.25;
}

.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none;
}

.ui-resizable {
  position: relative;
}

.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  -ms-touch-action: none;
  touch-action: none;
}

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none;
}

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}

.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}

.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}

.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}

.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}

.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}

.ui-selectable {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black;
}

.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  /* Support: IE7 */
  overflow-x: hidden;
  padding-bottom: 1px;
}

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  padding: 2px 0.4em;
  margin: 0.5em 0 0 0;
  height: auto;
  border: 0;
}

.ui-selectmenu-open {
  display: block;
}

.ui-selectmenu-button {
  display: inline-block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}

.ui-selectmenu-button span.ui-icon {
  right: 0.5em;
  left: auto;
  margin-top: -8px;
  position: absolute;
  top: 50%;
}

.ui-selectmenu-button span.ui-selectmenu-text {
  text-align: left;
  padding: 0.4em 2.1em 0.4em 1em;
  display: block;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ui-slider {
  position: relative;
  text-align: left;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none;
}

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit;
}

.ui-slider-horizontal {
  height: 0.8em;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.ui-slider-vertical {
  width: 0.8em;
  height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}

.ui-sortable-handle {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
}

.ui-spinner-input {
  border: none;
  background: none;
  color: inherit;
  padding: 0;
  margin: 0.2em 0;
  vertical-align: middle;
  margin-left: 0.4em;
  margin-right: 22px;
}

.ui-spinner-button {
  width: 16px;
  height: 50%;
  font-size: 0.5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
}

/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
  border-top: none;
  border-bottom: none;
  border-right: none;
}

/* vertically center icon */
.ui-spinner .ui-icon {
  position: absolute;
  margin-top: -8px;
  top: 50%;
  left: 0;
}

.ui-spinner-up {
  top: 0;
}

.ui-spinner-down {
  bottom: 0;
}

/* TR overrides */
.ui-spinner .ui-icon-triangle-1-s {
  /* need to fix icons sprite */
  background-position: -65px -16px;
}

.ui-tabs {
  position: relative; /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
  padding: 0.2em;
}

.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: 0.2em 0.2em 0;
}

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px 0.2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: 0.5em 1em;
  text-decoration: none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text;
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer;
}

.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none;
}

.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
  -webkit-box-shadow: 0 0 5px #aaa;
  box-shadow: 0 0 5px #aaa;
}

body .ui-tooltip {
  border-width: 2px;
}

/* Component containers
----------------------------------*/
.ui-widget {
  font-family: Verdana, Arial, sans-serif;
  font-size: 1.1em;
}

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

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

.ui-widget-content {
  border: 1px solid #aaaaaa;
  background: #ffffff url("/assets/ui-bg_flat_75_ffffff_40x100-1b8a9c35.png") 50% 50% repeat-x;
  color: #222222;
}

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

.ui-widget-header {
  border: 1px solid #aaaaaa;
  background: #cccccc url("/assets/ui-bg_highlight-soft_75_cccccc_1x100-dc2e43b0.png") 50% 50% repeat-x;
  color: #222222;
  font-weight: bold;
}

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

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  border: 1px solid #d3d3d3;
  background: #e6e6e6 url("/assets/ui-bg_glass_75_e6e6e6_1x400-9f880d11.png") 50% 50% repeat-x;
  font-weight: normal;
  color: #555555;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
  color: #555555;
  text-decoration: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
  border: 1px solid #999999;
  background: #dadada url("/assets/ui-bg_glass_75_dadada_1x400-7e5737cd.png") 50% 50% repeat-x;
  font-weight: normal;
  color: #212121;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited {
  color: #212121;
  text-decoration: none;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
  border: 1px solid #aaaaaa;
  background: #ffffff url("/assets/ui-bg_glass_65_ffffff_1x400-cd82dab2.png") 50% 50% repeat-x;
  font-weight: normal;
  color: #212121;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #212121;
  text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #fcefa1;
  background: #fbf9ee url("/assets/ui-bg_glass_55_fbf9ee_1x400-b97ade85.png") 50% 50% repeat-x;
  color: #363636;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #363636;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #cd0a0a;
  background: #fef1ec url("/assets/ui-bg_glass_95_fef1ec_1x400-7a6214ee.png") 50% 50% repeat-x;
  color: #cd0a0a;
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #cd0a0a;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #cd0a0a;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: 0.7;
  filter: Alpha(Opacity=70); /* support: IE8 */
  font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: 0.35;
  filter: Alpha(Opacity=35); /* support: IE8 */
  background-image: none;
}

.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35); /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  width: 16px;
  height: 16px;
}

.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url("/assets/ui-icons_222222_256x240-7460d664.png");
}

.ui-widget-header .ui-icon {
  background-image: url("/assets/ui-icons_222222_256x240-7460d664.png");
}

.ui-state-default .ui-icon {
  background-image: url("/assets/ui-icons_888888_256x240-ea0394e4.png");
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
  background-image: url("/assets/ui-icons_454545_256x240-d6ae73a9.png");
}

.ui-state-active .ui-icon {
  background-image: url("/assets/ui-icons_454545_256x240-d6ae73a9.png");
}

.ui-state-highlight .ui-icon {
  background-image: url("/assets/ui-icons_2e83ff_256x240-aef53922.png");
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("/assets/ui-icons_cd0a0a_256x240-93d359cc.png");
}

/* positioning */
.ui-icon-blank {
  background-position: 16px 16px;
}

.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-on {
  background-position: -96px -144px;
}

.ui-icon-radio-off {
  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;
}

/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 4px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 4px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 4px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 4px;
}

/* Overlays */
.ui-widget-overlay {
  background: #aaaaaa url("/assets/ui-bg_flat_0_aaaaaa_40x100-98795760.png") 50% 50% repeat-x;
  opacity: 0.3;
  filter: Alpha(Opacity=30); /* support: IE8 */
}

.ui-widget-shadow {
  margin: -8px 0 0 -8px;
  padding: 8px;
  background: #aaaaaa url("/assets/ui-bg_flat_0_aaaaaa_40x100-98795760.png") 50% 50% repeat-x;
  opacity: 0.3;
  filter: Alpha(Opacity=30); /* support: IE8 */
  border-radius: 8px;
}

:root {
  --fullscreen-icon-enter: url('data:image/svg+xml,<svg viewBox="0 0 26 26" xmlns="http://www.w3.org/2000/svg"><path d="M5 10.3V5.9c0-.5.4-.9.9-.9h4.4c.2 0 .4.2.4.4V7c0 .2-.2.4-.4.4h-3v3c0 .2-.2.4-.4.4H5.4a.4.4 0 0 1-.4-.4zm10.3-4.9V7c0 .2.2.4.4.4h3v3c0 .2.2.4.4.4h1.5c.2 0 .4-.2.4-.4V5.9c0-.5-.4-.9-.9-.9h-4.4c-.2 0-.4.2-.4.4zm5.3 9.9H19c-.2 0-.4.2-.4.4v3h-3c-.2 0-.4.2-.4.4v1.5c0 .2.2.4.4.4h4.4c.5 0 .9-.4.9-.9v-4.4c0-.2-.2-.4-.4-.4zm-9.9 5.3V19c0-.2-.2-.4-.4-.4h-3v-3c0-.2-.2-.4-.4-.4H5.4c-.2 0-.4.2-.4.4v4.4c0 .5.4.9.9.9h4.4c.2 0 .4-.2.4-.4z" fill="%23333"/></svg>');
  --fullscreen-icon-exit: url('data:image/svg+xml,<svg viewBox="0 0 26 26" xmlns="http://www.w3.org/2000/svg"><path d="M20.6 10.7H16a.9.9 0 0 1-.8-.8v-4.5c0-.2.2-.4.4-.4h1.4c.3 0 .5.2.5.4v3h3c.2 0 .4.2.4.5v1.4c0 .2-.2.4-.4.4zm-9.9-.8V5.4c0-.2-.2-.4-.4-.4H8.9c-.3 0-.5.2-.5.4v3h-3c-.2 0-.4.2-.4.5v1.4c0 .2.2.4.4.4H9.9c.4 0 .8-.4.8-.8zm0 10.7V16c0-.4-.4-.8-.8-.8H5.4c-.2 0-.4.2-.4.4v1.4c0 .3.2.5.4.5h3v3c0 .2.2.4.5.4h1.4c.2 0 .4-.2.4-.4zm6.9 0v-3h3c.2 0 .4-.2.4-.5v-1.4c0-.2-.2-.4-.4-.4H16c-.4 0-.8.4-.8.8v4.5c0 .2.2.4.4.4h1.5c.3 0 .5-.2.5-.4z" fill="%23333"/></svg>');
}

.leaflet-fullscreen-icon {
  background-image: var(--fullscreen-icon-enter);
  background-size: 26px 26px;
}

.leaflet-fullscreen-icon.leaflet-fullscreen-on {
  background-image: var(--fullscreen-icon-exit);
}

/* Safari still needs this vendor-prefix: https://caniuse.com/mdn-css_selectors_fullscreen */
/* stylelint-disable-next-line selector-no-vendor-prefix */
.leaflet-container:-webkit-full-screen,
.leaflet-container:fullscreen {
  width: 100% !important;
  height: 100% !important;
  z-index: 99999;
}

.leaflet-pseudo-fullscreen {
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 99999;
}

.leaflet-container {
  background: #fff;
  font: 12px/20px "Helvetica Neue", Arial, Helvetica, sans-serif;
  color: #404040;
  color: rgba(0, 0, 0, 0.75);
  outline: 0;
  overflow: hidden;
  -ms-touch-action: none;
}

.leaflet-container *, .leaflet-container :after, .leaflet-container :before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.leaflet-container h1, .leaflet-container h2, .leaflet-container h3, .leaflet-container h4, .leaflet-container h5, .leaflet-container h6, .leaflet-container p {
  font-size: 15px;
  line-height: 20px;
  margin: 0 0 10px;
}

.leaflet-container .marker-description img {
  margin-bottom: 10px;
}

.leaflet-container a {
  color: #3887be;
  font-weight: 400;
  text-decoration: none;
}

.leaflet-container a:hover {
  color: #63b6e5;
}

.leaflet-container.dark a {
  color: #63b6e5;
}

.leaflet-container.dark a:hover {
  color: #8fcaec;
}

.leaflet-container .mapbox-button, .leaflet-container.dark .mapbox-button {
  background-color: #3887be;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.leaflet-container .mapbox-button:hover, .leaflet-container.dark .mapbox-button:hover {
  color: #fff;
  background-color: #3bb2d0;
}

.leaflet-image-layer, .leaflet-layer, .leaflet-map-pane canvas, .leaflet-map-pane svg, .leaflet-marker-icon, .leaflet-marker-shadow, .leaflet-pane, .leaflet-tile, .leaflet-tile-container, .leaflet-zoom-box {
  position: absolute;
  left: 0;
  top: 0;
}

.leaflet-container {
  overflow: hidden;
}

.leaflet-marker-icon, .leaflet-marker-shadow, .leaflet-tile {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast;
}

.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0;
}

.leaflet-marker-icon, .leaflet-marker-shadow {
  display: block;
}

.leaflet-container .leaflet-marker-pane img, .leaflet-container .leaflet-overlay-pane svg, .leaflet-container .leaflet-tile-pane img, .leaflet-container img.leaflet-image-layer {
  max-width: none !important;
}

.leaflet-container.leaflet-touch-zoom {
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y;
}

.leaflet-container.leaflet-touch-drag {
  -ms-touch-action: pinch-zoom;
}

.leaflet-container.leaflet-touch-drag.leaflet-touch-drag {
  -ms-touch-action: none;
  touch-action: none;
}

.leaflet-tile {
  filter: inherit;
  visibility: hidden;
}

.leaflet-tile-loaded {
  visibility: inherit;
}

.leaflet-zoom-box {
  width: 0;
  height: 0;
  z-index: 800;
}

.leaflet-overlay-pane svg {
  -moz-user-select: none;
}

.leaflet-map-pane canvas {
  z-index: 1;
}

.leaflet-map-pane svg {
  z-index: 2;
}

.leaflet-tile-pane {
  z-index: 2;
}

.leaflet-overlay-pane {
  z-index: 4;
}

.leaflet-shadow-pane {
  z-index: 5;
}

.leaflet-marker-pane {
  z-index: 6;
}

.leaflet-tooltip-pane {
  z-index: 7;
}

.leaflet-popup-pane {
  z-index: 8;
}

.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}

.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute;
}

.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted;
  pointer-events: auto;
}

.leaflet-bottom, .leaflet-top {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

.leaflet-top {
  top: 0;
}

.leaflet-right {
  right: 0;
}

.leaflet-bottom {
  bottom: 0;
}

.leaflet-left {
  left: 0;
}

.leaflet-control {
  float: left;
  clear: both;
}

.leaflet-right .leaflet-control {
  float: right;
}

.leaflet-top .leaflet-control {
  margin-top: 10px;
}

.leaflet-bottom .leaflet-control {
  margin-bottom: 10px;
}

.leaflet-left .leaflet-control {
  margin-left: 10px;
}

.leaflet-right .leaflet-control {
  margin-right: 10px;
}

.leaflet-fade-anim .leaflet-tile {
  will-change: opacity;
}

.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}

.leaflet-zoom-animated {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}

.leaflet-pan-anim .leaflet-tile, .leaflet-zoom-anim .leaflet-tile {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}

.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}

.leaflet-interactive {
  cursor: pointer;
}

.leaflet-grab {
  cursor: -webkit-grab;
  cursor: -moz-grab;
}

.leaflet-crosshair, .leaflet-crosshair .leaflet-interactive {
  cursor: crosshair;
}

.leaflet-control, .leaflet-popup-pane {
  cursor: auto;
}

.leaflet-dragging .leaflet-grab, .leaflet-dragging .leaflet-grab .leaflet-interactive, .leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
}

.leaflet-image-layer, .leaflet-marker-icon, .leaflet-marker-shadow, .leaflet-pane > svg path, .leaflet-tile-container {
  pointer-events: none;
}

.leaflet-image-layer.leaflet-interactive, .leaflet-marker-icon.leaflet-interactive, .leaflet-pane > svg path.leaflet-interactive {
  pointer-events: visiblePainted;
  pointer-events: auto;
}

.leaflet-container {
  outline: 0;
}

.leaflet-zoom-box {
  background: #fff;
  border: 2px dotted #202020;
  opacity: 0.5;
}

.leaflet-bar, .leaflet-control-layers {
  background-color: #fff;
  border: 1px solid #999;
  border-color: rgba(0, 0, 0, 0.4);
  border-radius: 3px;
  box-shadow: none;
}

.leaflet-bar a, .leaflet-bar a:hover {
  color: #404040;
  color: rgba(0, 0, 0, 0.75);
  border-bottom: 1px solid #ddd;
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

.leaflet-bar a:last-child {
  border-bottom: none;
}

.leaflet-bar a:active, .leaflet-bar a:hover {
  background-color: #f8f8f8;
  cursor: pointer;
}

.leaflet-bar a:hover:first-child {
  border-radius: 3px 3px 0 0;
}

.leaflet-bar a:hover:last-child {
  border-radius: 0 0 3px 3px;
}

.leaflet-bar a:hover:only-of-type {
  border-radius: 3px;
}

.leaflet-bar .leaflet-disabled {
  cursor: default;
  opacity: 0.75;
}

.leaflet-control-zoom-in, .leaflet-control-zoom-out {
  display: block;
  content: "";
  text-indent: -999em;
}

.leaflet-control-layers .leaflet-control-layers-list, .leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
}

.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
}

.leaflet-control-layers-expanded {
  background: #fff;
  padding: 6px 10px 6px 6px;
  color: #404040;
  color: rgba(0, 0, 0, 0.75);
}

.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
}

.leaflet-control-layers label {
  display: block;
}

.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  border-top-color: rgba(0, 0, 0, 0.1);
  margin: 5px -10px 5px -6px;
}

.leaflet-default-icon-path {
  background-image: url("/assets/images/marker-icon-e98aefe1.png");
}

.leaflet-container .leaflet-control-attribution {
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0;
  box-shadow: none;
}

.leaflet-container .leaflet-control-attribution a, .leaflet-container .map-info-container a {
  color: #404040;
}

.leaflet-control-attribution a:hover, .map-info-container a:hover {
  color: inherit;
  text-decoration: underline;
}

.leaflet-control-attribution, .leaflet-control-scale-line {
  padding: 0 5px;
}

.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}

.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
}

.leaflet-container .mapbox-improve-map {
  font-weight: 700;
}

.leaflet-control-scale-line {
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #999;
  border-color: rgba(0, 0, 0, 0.4);
  border-top: none;
  padding: 2px 5px 1px;
  white-space: nowrap;
  overflow: hidden;
}

.leaflet-control-scale-line:last-child {
  border-top: 2px solid #ddd;
  border-top-color: rgba(0, 0, 0, 0.1);
  border-bottom: none;
  margin-top: -2px;
}

.leaflet-container .leaflet-control-attribution.leaflet-compact-attribution {
  margin: 10px;
}

.leaflet-container .leaflet-control-attribution.leaflet-compact-attribution {
  background: #fff;
  border-radius: 3px 13px 13px 3px;
  padding: 3px 31px 3px 3px;
  visibility: hidden;
}

.leaflet-control-attribution.leaflet-compact-attribution:hover {
  visibility: visible;
}

.leaflet-control-attribution.leaflet-compact-attribution:after {
  content: "";
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.5);
  background-position: 0 -78px;
  border-radius: 50%;
  position: absolute;
  display: inline-block;
  width: 26px;
  height: 26px;
  vertical-align: middle;
  bottom: 0;
  z-index: 1;
  visibility: visible;
  cursor: pointer;
}

.leaflet-control-attribution.leaflet-compact-attribution:hover:after {
  background-color: #fff;
}

.leaflet-right .leaflet-control-attribution.leaflet-compact-attribution:after {
  right: 0;
}

.leaflet-left .leaflet-control-attribution.leaflet-compact-attribution:after {
  left: 0;
}

.leaflet-touch .leaflet-bar, .leaflet-touch .leaflet-control-layers {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}

.leaflet-popup {
  position: absolute;
  text-align: center;
  pointer-events: none;
}

.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  pointer-events: all;
}

.leaflet-popup-content {
  padding: 10px 10px 15px;
  margin: 0;
  line-height: inherit;
}

.leaflet-popup-close-button + .leaflet-popup-content-wrapper .leaflet-popup-content {
  padding-top: 15px;
}

.leaflet-popup-tip-container {
  width: 20px;
  height: 20px;
  margin: 0 auto;
  position: relative;
}

.leaflet-popup-tip {
  width: 0;
  height: 0;
  margin: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  box-shadow: none;
}

.leaflet-popup-close-button {
  text-indent: -999em;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: all;
}

.leaflet-popup-close-button:hover {
  background-color: #f8f8f8;
}

.leaflet-popup-scrolled {
  overflow: auto;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

.leaflet-div-icon {
  background: #fff;
  border: 1px solid #999;
  border-color: rgba(0, 0, 0, 0.4);
}

.leaflet-editing-icon {
  border-radius: 3px;
}

.leaflet-tooltip {
  position: absolute;
  padding: 5px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.leaflet-tooltip.leaflet-clickable {
  cursor: pointer;
  pointer-events: auto;
}

.leaflet-tooltip-bottom:before, .leaflet-tooltip-left:before, .leaflet-tooltip-right:before, .leaflet-tooltip-top:before {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 5px solid transparent;
  background: 0 0;
}

.leaflet-tooltip-bottom {
  margin-top: 5px;
}

.leaflet-tooltip-top {
  margin-top: -5px;
}

.leaflet-tooltip-bottom:before, .leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -5px;
}

.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -10px;
  border-top-color: #fff;
}

.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -15px;
  margin-left: -5px;
  border-bottom-color: #fff;
}

.leaflet-tooltip-left {
  margin-left: -5px;
}

.leaflet-tooltip-right {
  margin-left: 5px;
}

.leaflet-tooltip-left:before, .leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -5px;
}

.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -10px;
  border-left-color: #fff;
}

.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -10px;
  border-right-color: #fff;
}

.leaflet-bar a, .leaflet-control-layers-toggle, .leaflet-popup-close-button, .map-tooltip.closable .close, .mapbox-button-icon:before, .mapbox-icon {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  vertical-align: middle;
  background-repeat: no-repeat;
}

.leaflet-bar a {
  display: block;
}

.leaflet-container.dark .map-tooltip .close, .leaflet-control-attribution:after, .leaflet-control-layers-toggle, .leaflet-control-zoom-in, .leaflet-control-zoom-out, .leaflet-popup-close-button, .map-tooltip .close, .mapbox-icon {
  opacity: 0.75;
  background-image: url("images/icons-000000@2x.png");
  background-image: linear-gradient(transparent, transparent), url("images/icons.svg");
  background-repeat: no-repeat;
  background-size: 26px 260px;
}

.leaflet-container.dark .leaflet-control-attribution:after, .leaflet-container.dark .leaflet-control-layers-toggle, .leaflet-container.dark .leaflet-control-zoom-in, .leaflet-container.dark .leaflet-control-zoom-out, .leaflet-container.dark .mapbox-icon, .mapbox-button-icon:before {
  opacity: 1;
  background-image: url("images/icons-ffffff@2x.png");
  background-image: linear-gradient(transparent, transparent), url("images/icons-ffffff.svg");
  background-size: 26px 260px;
}

.leaflet-bar .leaflet-control-zoom-in {
  background-position: 0 0;
}

.leaflet-bar .leaflet-control-zoom-out {
  background-position: 0 -26px;
}

.leaflet-popup-close-button, .map-tooltip.closable .close {
  background-position: -3px -55px;
  width: 20px;
  height: 20px;
  border-radius: 0 3px 0 0;
}

.mapbox-icon-info {
  background-position: 0 -78px;
}

.leaflet-control-layers-toggle {
  background-position: 0 -104px;
}

.mapbox-icon.mapbox-icon-share, .mapbox-icon.mapbox-icon-share:before {
  background-position: 0 -130px;
}

.mapbox-icon.mapbox-icon-geocoder, .mapbox-icon.mapbox-icon-geocoder:before {
  background-position: 0 -156px;
}

.mapbox-icon-facebook, .mapbox-icon-facebook:before {
  background-position: 0 -182px;
}

.mapbox-icon-twitter, .mapbox-icon-twitter:before {
  background-position: 0 -208px;
}

.mapbox-icon-pinterest, .mapbox-icon-pinterest:before {
  background-position: 0 -234px;
}

.leaflet-popup-content-wrapper, .map-legends, .map-tooltip {
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.map-legends, .map-tooltip {
  max-width: 300px;
}

.map-legends .map-legend {
  padding: 10px;
}

.map-tooltip {
  z-index: 999999;
  padding: 10px;
  min-width: 180px;
  max-height: 400px;
  overflow: auto;
  opacity: 1;
  -webkit-transition: opacity 150ms;
  -moz-transition: opacity 150ms;
  -o-transition: opacity 150ms;
  transition: opacity 150ms;
}

.map-tooltip .close {
  text-indent: -999em;
  overflow: hidden;
  display: none;
}

.map-tooltip.closable .close {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 3px;
}

.map-tooltip.closable .close:active {
  background-color: #f8f8f8;
}

.leaflet-control-interaction {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 300px;
}

.leaflet-popup-content .marker-title {
  font-weight: 700;
}

.leaflet-control .mapbox-button {
  background-color: #fff;
  border: 1px solid #ddd;
  border-color: rgba(0, 0, 0, 0.1);
  padding: 5px 10px;
  border-radius: 3px;
}

.mapbox-modal > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow-y: auto;
}

.mapbox-modal.active > div {
  z-index: 99999;
  transition: all 0.2s, z-index 0 0;
}

.mapbox-modal .mapbox-modal-mask {
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
}

.mapbox-modal.active .mapbox-modal-mask {
  opacity: 1;
}

.mapbox-modal .mapbox-modal-content {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.mapbox-modal.active .mapbox-modal-content {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.mapbox-modal-body {
  position: relative;
  background: #fff;
  padding: 20px;
  z-index: 1000;
  width: 50%;
  margin: 20px 0 20px 25%;
}

.mapbox-share-buttons {
  margin: 0 0 20px;
}

.mapbox-share-buttons a {
  width: 33.3333%;
  border-left: 1px solid #fff;
  text-align: center;
  border-radius: 0;
}

.mapbox-share-buttons a:last-child {
  border-radius: 0 3px 3px 0;
}

.mapbox-share-buttons a:first-child {
  border: none;
  border-radius: 3px 0 0 3px;
}

.mapbox-modal input {
  width: 100%;
  height: 40px;
  padding: 10px;
  border: 1px solid #ddd;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.5);
}

.mapbox-modal label {
  display: block;
  margin-top: 5px;
}

.leaflet-control-mapbox-geocoder {
  position: relative;
}

.leaflet-control-mapbox-geocoder.searching {
  opacity: 0.75;
}

.leaflet-control-mapbox-geocoder .leaflet-control-mapbox-geocoder-wrap {
  background: #fff;
  position: absolute;
  border: 1px solid #999;
  border-color: rgba(0, 0, 0, 0.4);
  overflow: hidden;
  left: 26px;
  height: 28px;
  width: 0;
  top: -1px;
  border-radius: 0 3px 3px 0;
  opacity: 0;
  -webkit-transition: opacity 0.1s;
  -moz-transition: opacity 0.1s;
  -o-transition: opacity 0.1s;
  transition: opacity 0.1s;
}

.leaflet-control-mapbox-geocoder.active .leaflet-control-mapbox-geocoder-wrap {
  width: 180px;
  opacity: 1;
}

.leaflet-bar .leaflet-control-mapbox-geocoder-toggle, .leaflet-bar .leaflet-control-mapbox-geocoder-toggle:hover {
  border-bottom: none;
}

.leaflet-control-mapbox-geocoder-toggle {
  border-radius: 3px;
}

.leaflet-control-mapbox-geocoder.active, .leaflet-control-mapbox-geocoder.active .leaflet-control-mapbox-geocoder-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.leaflet-control-mapbox-geocoder .leaflet-control-mapbox-geocoder-form input {
  background: 0 0;
  border: 0;
  width: 180px;
  padding: 0 0 0 10px;
  height: 26px;
  outline: 0;
}

.leaflet-control-mapbox-geocoder-results {
  width: 180px;
  position: absolute;
  left: 26px;
  top: 25px;
  border-radius: 0 0 3px 3px;
}

.leaflet-control-mapbox-geocoder.active .leaflet-control-mapbox-geocoder-results {
  background: #fff;
  border: 1px solid #999;
  border-color: rgba(0, 0, 0, 0.4);
}

.leaflet-control-mapbox-geocoder-results a, .leaflet-control-mapbox-geocoder-results span {
  padding: 0 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  width: 100%;
  font-size: 12px;
  line-height: 26px;
  text-align: left;
  overflow: hidden;
}

.leaflet-container.dark .leaflet-control .leaflet-control-mapbox-geocoder-results a:hover, .leaflet-control-mapbox-geocoder-results a:hover {
  background: #f8f8f8;
  opacity: 1;
}

.leaflet-right .leaflet-control-mapbox-geocoder-results, .leaflet-right .leaflet-control-mapbox-geocoder-wrap {
  left: auto;
  right: 26px;
}

.leaflet-right .leaflet-control-mapbox-geocoder-wrap {
  border-radius: 3px 0 0 3px;
}

.leaflet-right .leaflet-control-mapbox-geocoder.active, .leaflet-right .leaflet-control-mapbox-geocoder.active .leaflet-control-mapbox-geocoder-toggle {
  border-radius: 0 3px 3px 0;
}

.leaflet-bottom .leaflet-control-mapbox-geocoder-results {
  top: auto;
  bottom: 25px;
  border-radius: 3px 3px 0 0;
}

.mapbox-logo.mapbox-logo-true {
  margin: 0 0 5px 5px;
}

.mapbox-logo-true:before {
  content: "";
  display: inline-block;
  width: 85px;
  height: 21px;
  vertical-align: middle;
}

.mapbox-logo.mapbox-logo-true {
  background-repeat: no-repeat;
  background-size: 85px 21px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3C?xml%20version='1.0'%20encoding='utf-8'?%3E%3Csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%2084.49%2021'%20style='enable-background:new%200%200%2084.49%2021;'%20xml:space='preserve'%3E%3Cg%3E%20%3Cpath%20class='st0'%20style='opacity:0.9;%20fill:%20%23FFFFFF;%20enable-background:%20new;'%20d='M83.25,14.26c0,0.12-0.09,0.21-0.21,0.21h-1.61c-0.13,0-0.24-0.06-0.3-0.17l-1.44-2.39l-1.44,2.39%20c-0.06,0.11-0.18,0.17-0.3,0.17h-1.61c-0.04,0-0.08-0.01-0.12-0.03c-0.09-0.06-0.13-0.19-0.06-0.28l0,0l2.43-3.68L76.2,6.84%20c-0.02-0.03-0.03-0.07-0.03-0.12c0-0.12,0.09-0.21,0.21-0.21h1.61c0.13,0,0.24,0.06,0.3,0.17l1.41,2.36l1.4-2.35%20c0.06-0.11,0.18-0.17,0.3-0.17H83c0.04,0,0.08,0.01,0.12,0.03c0.09,0.06,0.13,0.19,0.06,0.28l0,0l-2.37,3.63l2.43,3.67%20C83.24,14.18,83.25,14.22,83.25,14.26z'/%3E%20%3Cpath%20class='st0'%20style='opacity:0.9;%20fill:%20%23FFFFFF;%20enable-background:%20new;'%20d='M66.24,9.59c-0.39-1.88-1.96-3.28-3.84-3.28c-1.03,0-2.03,0.42-2.73,1.18V3.51c0-0.13-0.1-0.23-0.23-0.23h-1.4%20c-0.13,0-0.23,0.11-0.23,0.23v10.72c0,0.13,0.1,0.23,0.23,0.23h1.4c0.13,0,0.23-0.11,0.23-0.23V13.5c0.71,0.75,1.7,1.18,2.73,1.18%20c1.88,0,3.45-1.41,3.84-3.29C66.37,10.79,66.37,10.18,66.24,9.59L66.24,9.59z%20M62.08,13c-1.32,0-2.39-1.11-2.41-2.48v-0.06%20c0.02-1.38,1.09-2.48,2.41-2.48s2.42,1.12,2.42,2.51S63.41,13,62.08,13z'/%3E%20%3Cpath%20class='st0'%20style='opacity:0.9;%20fill:%20%23FFFFFF;%20enable-background:%20new;'%20d='M71.67,6.32c-1.98-0.01-3.72,1.35-4.16,3.29c-0.13,0.59-0.13,1.19,0,1.77c0.44,1.94,2.17,3.32,4.17,3.3%20c2.35,0,4.26-1.87,4.26-4.19S74.04,6.32,71.67,6.32z%20M71.65,13.01c-1.33,0-2.42-1.12-2.42-2.51s1.08-2.52,2.42-2.52%20c1.33,0,2.42,1.12,2.42,2.51S72.99,13,71.65,13.01L71.65,13.01z'/%3E%20%3Cpath%20class='st1'%20style='opacity:0.35;%20enable-background:new;'%20d='M62.08,7.98c-1.32,0-2.39,1.11-2.41,2.48v0.06C59.68,11.9,60.75,13,62.08,13s2.42-1.12,2.42-2.51%20S63.41,7.98,62.08,7.98z%20M62.08,11.76c-0.63,0-1.14-0.56-1.17-1.25v-0.04c0.01-0.69,0.54-1.25,1.17-1.25%20c0.63,0,1.17,0.57,1.17,1.27C63.24,11.2,62.73,11.76,62.08,11.76z'/%3E%20%3Cpath%20class='st1'%20style='opacity:0.35;%20enable-background:new;'%20d='M71.65,7.98c-1.33,0-2.42,1.12-2.42,2.51S70.32,13,71.65,13s2.42-1.12,2.42-2.51S72.99,7.98,71.65,7.98z%20M71.65,11.76c-0.64,0-1.17-0.57-1.17-1.27c0-0.7,0.53-1.26,1.17-1.26s1.17,0.57,1.17,1.27C72.82,11.21,72.29,11.76,71.65,11.76z'/%3E%20%3Cpath%20class='st0'%20style='opacity:0.9;%20fill:%20%23FFFFFF;%20enable-background:%20new;'%20d='M45.74,6.53h-1.4c-0.13,0-0.23,0.11-0.23,0.23v0.73c-0.71-0.75-1.7-1.18-2.73-1.18%20c-2.17,0-3.94,1.87-3.94,4.19s1.77,4.19,3.94,4.19c1.04,0,2.03-0.43,2.73-1.19v0.73c0,0.13,0.1,0.23,0.23,0.23h1.4%20c0.13,0,0.23-0.11,0.23-0.23V6.74c0-0.12-0.09-0.22-0.22-0.22C45.75,6.53,45.75,6.53,45.74,6.53z%20M44.12,10.53%20C44.11,11.9,43.03,13,41.71,13s-2.42-1.12-2.42-2.51s1.08-2.52,2.4-2.52c1.33,0,2.39,1.11,2.41,2.48L44.12,10.53z'/%3E%20%3Cpath%20class='st1'%20style='opacity:0.35;%20enable-background:new;'%20d='M41.71,7.98c-1.33,0-2.42,1.12-2.42,2.51S40.37,13,41.71,13s2.39-1.11,2.41-2.48v-0.06%20C44.1,9.09,43.03,7.98,41.71,7.98z%20M40.55,10.49c0-0.7,0.52-1.27,1.17-1.27c0.64,0,1.14,0.56,1.17,1.25v0.04%20c-0.01,0.68-0.53,1.24-1.17,1.24C41.08,11.75,40.55,11.19,40.55,10.49z'/%3E%20%3Cpath%20class='st0'%20style='opacity:0.9;%20fill:%20%23FFFFFF;%20enable-background:%20new;'%20d='M52.41,6.32c-1.03,0-2.03,0.42-2.73,1.18V6.75c0-0.13-0.1-0.23-0.23-0.23h-1.4c-0.13,0-0.23,0.11-0.23,0.23%20v10.72c0,0.13,0.1,0.23,0.23,0.23h1.4c0.13,0,0.23-0.1,0.23-0.23V13.5c0.71,0.75,1.7,1.18,2.74,1.18c2.17,0,3.94-1.87,3.94-4.19%20S54.58,6.32,52.41,6.32z%20M52.08,13.01c-1.32,0-2.39-1.11-2.42-2.48v-0.07c0.02-1.38,1.09-2.49,2.4-2.49c1.32,0,2.41,1.12,2.41,2.51%20S53.4,13,52.08,13.01L52.08,13.01z'/%3E%20%3Cpath%20class='st1'%20style='opacity:0.35;%20enable-background:new;'%20d='M52.08,7.98c-1.32,0-2.39,1.11-2.42,2.48v0.06c0.03,1.38,1.1,2.48,2.42,2.48s2.41-1.12,2.41-2.51%20S53.4,7.98,52.08,7.98z%20M52.08,11.76c-0.63,0-1.14-0.56-1.17-1.25v-0.04c0.01-0.69,0.54-1.25,1.17-1.25c0.63,0,1.17,0.58,1.17,1.27%20S52.72,11.76,52.08,11.76z'/%3E%20%3Cpath%20class='st0'%20style='opacity:0.9;%20fill:%20%23FFFFFF;%20enable-background:%20new;'%20d='M36.08,14.24c0,0.13-0.1,0.23-0.23,0.23h-1.41c-0.13,0-0.23-0.11-0.23-0.23V9.68c0-0.98-0.74-1.71-1.62-1.71%20c-0.8,0-1.46,0.7-1.59,1.62l0.01,4.66c0,0.13-0.11,0.23-0.23,0.23h-1.41c-0.13,0-0.23-0.11-0.23-0.23V9.68%20c0-0.98-0.74-1.71-1.62-1.71c-0.85,0-1.54,0.79-1.6,1.8v4.48c0,0.13-0.1,0.23-0.23,0.23h-1.4c-0.13,0-0.23-0.11-0.23-0.23V6.74%20c0.01-0.13,0.1-0.22,0.23-0.22h1.4c0.13,0,0.22,0.11,0.23,0.22V7.4c0.5-0.68,1.3-1.09,2.16-1.1h0.03c1.09,0,2.09,0.6,2.6,1.55%20c0.45-0.95,1.4-1.55,2.44-1.56c1.62,0,2.93,1.25,2.9,2.78L36.08,14.24z'/%3E%20%3Cpath%20class='st1'%20style='opacity:0.35;%20enable-background:new;'%20d='M84.34,13.59l-0.07-0.13l-1.96-2.99l1.94-2.95c0.44-0.67,0.26-1.56-0.41-2.02c-0.02,0-0.03,0-0.04-0.01%20c-0.23-0.15-0.5-0.22-0.78-0.22h-1.61c-0.56,0-1.08,0.29-1.37,0.78L79.72,6.6l-0.34-0.56C79.09,5.56,78.57,5.27,78,5.27h-1.6%20c-0.6,0-1.13,0.37-1.35,0.92c-2.19-1.66-5.28-1.47-7.26,0.45c-0.35,0.34-0.65,0.72-0.89,1.14c-0.9-1.62-2.58-2.72-4.5-2.72%20c-0.5,0-1.01,0.07-1.48,0.23V3.51c0-0.82-0.66-1.48-1.47-1.48h-1.4c-0.81,0-1.47,0.66-1.47,1.47v3.75%20c-0.95-1.36-2.5-2.18-4.17-2.19c-0.74,0-1.46,0.16-2.12,0.47c-0.24-0.17-0.54-0.26-0.84-0.26h-1.4c-0.45,0-0.87,0.21-1.15,0.56%20c-0.02-0.03-0.04-0.05-0.07-0.08c-0.28-0.3-0.68-0.47-1.09-0.47h-1.39c-0.3,0-0.6,0.09-0.84,0.26c-0.67-0.3-1.39-0.46-2.12-0.46%20c-1.83,0-3.43,1-4.37,2.5c-0.2-0.46-0.48-0.89-0.83-1.25c-0.8-0.81-1.89-1.25-3.02-1.25h-0.01c-0.89,0.01-1.75,0.33-2.46,0.88%20c-0.74-0.57-1.64-0.88-2.57-0.88H28.1c-0.29,0-0.58,0.03-0.86,0.11c-0.28,0.06-0.56,0.16-0.82,0.28c-0.21-0.12-0.45-0.18-0.7-0.18%20h-1.4c-0.82,0-1.47,0.66-1.47,1.47v7.5c0,0.82,0.66,1.47,1.47,1.47h1.4c0.82,0,1.48-0.66,1.48-1.48l0,0V9.79%20c0.03-0.36,0.23-0.59,0.36-0.59c0.18,0,0.38,0.18,0.38,0.47v4.57c0,0.82,0.66,1.47,1.47,1.47h1.41c0.82,0,1.47-0.66,1.47-1.47%20l-0.01-4.57c0.06-0.32,0.25-0.47,0.35-0.47c0.18,0,0.38,0.18,0.38,0.47v4.57c0,0.82,0.66,1.47,1.47,1.47h1.41%20c0.82,0,1.47-0.66,1.47-1.47v-0.38c0.96,1.29,2.46,2.06,4.06,2.06c0.74,0,1.46-0.16,2.12-0.47c0.24,0.17,0.54,0.26,0.84,0.26h1.39%20c0.3,0,0.6-0.09,0.84-0.26v2.01c0,0.82,0.66,1.47,1.47,1.47h1.4c0.82,0,1.47-0.66,1.47-1.47v-1.77c0.48,0.15,0.99,0.23,1.49,0.22%20c1.7,0,3.22-0.87,4.17-2.2v0.52c0,0.82,0.66,1.47,1.47,1.47h1.4c0.3,0,0.6-0.09,0.84-0.26c0.66,0.31,1.39,0.47,2.12,0.47%20c1.92,0,3.6-1.1,4.49-2.73c1.54,2.65,4.95,3.53,7.58,1.98c0.18-0.11,0.36-0.22,0.53-0.36c0.22,0.55,0.76,0.91,1.35,0.9H78%20c0.56,0,1.08-0.29,1.37-0.78l0.37-0.61l0.37,0.61c0.29,0.48,0.81,0.78,1.38,0.78h1.6c0.81,0,1.46-0.66,1.45-1.46%20C84.49,14.02,84.44,13.8,84.34,13.59L84.34,13.59z%20M35.86,14.47h-1.41c-0.13,0-0.23-0.11-0.23-0.23V9.68%20c0-0.98-0.74-1.71-1.62-1.71c-0.8,0-1.46,0.7-1.59,1.62l0.01,4.66c0,0.13-0.1,0.23-0.23,0.23h-1.41c-0.13,0-0.23-0.11-0.23-0.23%20V9.68c0-0.98-0.74-1.71-1.62-1.71c-0.85,0-1.54,0.79-1.6,1.8v4.48c0,0.13-0.1,0.23-0.23,0.23h-1.4c-0.13,0-0.23-0.11-0.23-0.23%20V6.74c0.01-0.13,0.11-0.22,0.23-0.22h1.4c0.13,0,0.22,0.11,0.23,0.22V7.4c0.5-0.68,1.3-1.09,2.16-1.1h0.03%20c1.09,0,2.09,0.6,2.6,1.55c0.45-0.95,1.4-1.55,2.44-1.56c1.62,0,2.93,1.25,2.9,2.78l0.01,5.16C36.09,14.36,35.98,14.46,35.86,14.47%20L35.86,14.47z%20M45.97,14.24c0,0.13-0.1,0.23-0.23,0.23h-1.4c-0.13,0-0.23-0.11-0.23-0.23V13.5c-0.7,0.76-1.69,1.18-2.72,1.18%20c-2.17,0-3.94-1.87-3.94-4.19s1.77-4.19,3.94-4.19c1.03,0,2.02,0.43,2.73,1.18V6.74c0-0.13,0.1-0.23,0.23-0.23h1.4%20c0.12-0.01,0.22,0.08,0.23,0.21c0,0.01,0,0.01,0,0.02v7.51h-0.01V14.24z%20M52.41,14.67c-1.03,0-2.02-0.43-2.73-1.18v3.97%20c0,0.13-0.1,0.23-0.23,0.23h-1.4c-0.13,0-0.23-0.1-0.23-0.23V6.75c0-0.13,0.1-0.22,0.23-0.22h1.4c0.13,0,0.23,0.11,0.23,0.23v0.73%20c0.71-0.76,1.7-1.18,2.73-1.18c2.17,0,3.94,1.86,3.94,4.18S54.58,14.67,52.41,14.67z%20M66.24,11.39c-0.39,1.87-1.96,3.29-3.84,3.29%20c-1.03,0-2.02-0.43-2.73-1.18v0.73c0,0.13-0.1,0.23-0.23,0.23h-1.4c-0.13,0-0.23-0.11-0.23-0.23V3.51c0-0.13,0.1-0.23,0.23-0.23%20h1.4c0.13,0,0.23,0.11,0.23,0.23v3.97c0.71-0.75,1.7-1.18,2.73-1.17c1.88,0,3.45,1.4,3.84,3.28C66.37,10.19,66.37,10.8,66.24,11.39%20L66.24,11.39L66.24,11.39z%20M71.67,14.68c-2,0.01-3.73-1.35-4.17-3.3c-0.13-0.59-0.13-1.19,0-1.77c0.44-1.94,2.17-3.31,4.17-3.3%20c2.36,0,4.26,1.87,4.26,4.19S74.03,14.68,71.67,14.68L71.67,14.68z%20M83.04,14.47h-1.61c-0.13,0-0.24-0.06-0.3-0.17l-1.44-2.39%20l-1.44,2.39c-0.06,0.11-0.18,0.17-0.3,0.17h-1.61c-0.04,0-0.08-0.01-0.12-0.03c-0.09-0.06-0.13-0.19-0.06-0.28l0,0l2.43-3.68%20L76.2,6.84c-0.02-0.03-0.03-0.07-0.03-0.12c0-0.12,0.09-0.21,0.21-0.21h1.61c0.13,0,0.24,0.06,0.3,0.17l1.41,2.36l1.41-2.36%20c0.06-0.11,0.18-0.17,0.3-0.17h1.61c0.04,0,0.08,0.01,0.12,0.03c0.09,0.06,0.13,0.19,0.06,0.28l0,0l-2.38,3.64l2.43,3.67%20c0.02,0.03,0.03,0.07,0.03,0.12C83.25,14.38,83.16,14.47,83.04,14.47L83.04,14.47L83.04,14.47z'/%3E%20%3Cpath%20class='st0'%20style='opacity:0.9;%20fill:%20%23FFFFFF;%20enable-background:%20new;'%20d='M10.5,1.24c-5.11,0-9.25,4.15-9.25,9.25s4.15,9.25,9.25,9.25s9.25-4.15,9.25-9.25%20C19.75,5.38,15.61,1.24,10.5,1.24z%20M14.89,12.77c-1.93,1.93-4.78,2.31-6.7,2.31c-0.7,0-1.41-0.05-2.1-0.16c0,0-1.02-5.64,2.14-8.81%20c0.83-0.83,1.95-1.28,3.13-1.28c1.27,0,2.49,0.51,3.39,1.42C16.59,8.09,16.64,11,14.89,12.77z'/%3E%20%3Cpath%20class='st1'%20style='opacity:0.35;%20enable-background:new;'%20d='M10.5-0.01C4.7-0.01,0,4.7,0,10.49s4.7,10.5,10.5,10.5S21,16.29,21,10.49C20.99,4.7,16.3-0.01,10.5-0.01z%20M10.5,19.74c-5.11,0-9.25-4.15-9.25-9.25s4.14-9.26,9.25-9.26s9.25,4.15,9.25,9.25C19.75,15.61,15.61,19.74,10.5,19.74z'/%3E%20%3Cpath%20class='st1'%20style='opacity:0.35;%20enable-background:new;'%20d='M14.74,6.25C12.9,4.41,9.98,4.35,8.23,6.1c-3.16,3.17-2.14,8.81-2.14,8.81s5.64,1.02,8.81-2.14%20C16.64,11,16.59,8.09,14.74,6.25z%20M12.47,10.34l-0.91,1.87l-0.9-1.87L8.8,9.43l1.86-0.9l0.9-1.87l0.91,1.87l1.86,0.9L12.47,10.34z'/%3E%20%3Cpolygon%20class='st0'%20style='opacity:0.9;%20fill:%20%23FFFFFF;%20enable-background:%20new;'%20points='14.33,9.43%2012.47,10.34%2011.56,12.21%2010.66,10.34%208.8,9.43%2010.66,8.53%2011.56,6.66%2012.47,8.53%20'/%3E%3C/g%3E%3C/svg%3E");
}

.leaflet-container.dark .leaflet-bar {
  background-color: #404040;
  border-color: #202020;
  border-color: rgba(0, 0, 0, 0.75);
}

.leaflet-container.dark .leaflet-bar a {
  color: #404040;
  border-color: rgba(0, 0, 0, 0.5);
}

.leaflet-container.dark .leaflet-bar a:active, .leaflet-container.dark .leaflet-bar a:hover {
  background-color: #505050;
}

.leaflet-container.dark .leaflet-control-attribution, .leaflet-container.dark .leaflet-control-attribution:after, .leaflet-container.dark .map-info-container, .leaflet-container.dark .mapbox-info-toggle {
  background-color: rgba(0, 0, 0, 0.5);
  color: #f8f8f8;
}

.leaflet-container.dark .leaflet-control-attribution a, .leaflet-container.dark .leaflet-control-attribution a:hover, .leaflet-container.dark .map-info-container a, .leaflet-container.dark .map-info-container a:hover {
  color: #fff;
}

.leaflet-container.dark .leaflet-control-attribution:hover:after {
  background-color: #000;
}

.leaflet-container.dark .leaflet-control-layers-list span {
  color: #f8f8f8;
}

.leaflet-container.dark .leaflet-control-layers-separator {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.leaflet-container.dark .leaflet-bar a.leaflet-disabled, .leaflet-container.dark .leaflet-control .mapbox-button.disabled {
  background-color: #252525;
  color: #404040;
}

.leaflet-container.dark .leaflet-control-mapbox-geocoder > div {
  border-color: #202020;
  border-color: rgba(0, 0, 0, 0.75);
}

.leaflet-container.dark .leaflet-control .leaflet-control-mapbox-geocoder-results a {
  border-color: #ddd #202020;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.75);
}

.leaflet-container.dark .leaflet-control .leaflet-control-mapbox-geocoder-results span {
  border-color: #202020;
  border-color: rgba(0, 0, 0, 0.75);
}

@media only screen and (max-width: 800px) {
  .mapbox-modal-body {
    width: 83.3333%;
    margin-left: 8.3333%;
  }
}
@media only screen and (max-width: 640px) {
  .mapbox-modal-body {
    width: 100%;
    height: 100%;
    margin: 0;
  }
}
@media print {
  .mapbox-improve-map {
    display: none;
  }
}
.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}

.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute;
}

.leaflet-container img.leaflet-tile {
  max-width: none !important;
}

.leaflet-container img.leaflet-marker-icon {
  max-width: none;
}

.leaflet-container img.leaflet-image-layer {
  max-width: 15000px !important;
}

.leaflet-overlay-pane svg {
  -moz-user-select: none;
}

.leaflet-oldie .mapbox-modal .mapbox-modal-content {
  display: none;
}

.leaflet-oldie .mapbox-modal.active .mapbox-modal-content {
  display: block;
}

.leaflet-oldie .leaflet-container.dark .map-tooltip .close, .leaflet-oldie .leaflet-control-layers-toggle, .leaflet-oldie .leaflet-control-zoom-in, .leaflet-oldie .leaflet-control-zoom-out, .leaflet-oldie .leaflet-popup-close-button, .leaflet-oldie .map-tooltip .close, .leaflet-oldie .mapbox-icon {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAEECAYAAAA24SSRAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAXnSURBVHic7ZxfiFVFGMB/33pRUQsKto002DY3McJ6yBYkESQxpYTypaB66KEXYRWLYOlhr9RTRGWRUkk9RyEU+Y9ClECJVTKlPybWBilqkYuWrqBOD/NdPV7PmTPn3NPtat/AcO6ZP9/vfN/Mmfl2Zs6Kc452hK62UAxkIANdEURkVERGC9crOjKIiANwzkmRep1lOjWXa2ijaU7jaGWgKsL110a1EnV+LQMqbLqyobO6t4EMZCADGchABrqmQUlPNSWOVgaqIpi7ZSADGchABjKQga49kIjURaQem14apGE4KVR/D0fXds5FRaAOOL1e+h1dP7ZgE6wQxDnXvs7QWaZLE1wUVmRNdY1zrp6wRF0kfqHYnHwDGchABjJQIETNRyIyFVgBzAPmavIIsAt4xzn3d66QiNl1PnCYy05JczwMzG9pKlfIhQCkES/kwUKQqRma9GpM02xqGXdrBdCXZm2NzaFP66SGUGeYl5E+WqJO0HRHSG+PXtJN54AjVbhbjQcbBSjiakH4hR0p+hChOiHQrhKg7Drt6t7//Qtb9RAU5XtXMaiak28gAxnIQO0Gicg0EXlMRDaIyFGNGzRtWhQpMA/1A6uAL4BzZM9H57TMKqC/8HyUPFhZJLiMI4sh0/UDK4FtwHig3LiWWal1UkPsDDsFWAgsBZZo8hZgM7DdOXcmV0igjQ4Ba4HFwORAuclaZi1wqNU2OgNsVw22aNoS1XAhMCXx4OkubOBJZwKDwFbgLNm97qyWGQRmtuoFWRsV0ujabCPzVA1kIAMZqBNAIjIgImPNRxUzK+SsmtRJn4Pqmj8AjCXzsmTlaTSck/8zcDRX/QiNMp8S6Ab2a5nvG5plyioDaoLs1/sBYKwyUBokkTdQJeiVZgi6UR+UVQI0QWHdoXKFvKDYz7RiynXctk7LPlmeRmsKyAqWNQfSQAYykIGuS5CI1ERkSET2ishpvQ6JSLE93ByfoQbsRHeNgfe4vOO8E6iF6hdxToZU6OqGUIWv1vShqkB7VYNaU3pN0/fGgvLa6C5gk3PufJO5zwObgDuraqM8jbZWpdEnwG3AYKOX6XVQ07+sSqNQr3P4QxS9LXeGBGxIzTiGXwR8QSHRsCj7ZjxAbxFYaVAKbMe/BkrAduRpZJ6qgQxkoP8DKDRY1sk/s5W6YFhoUG3nFnZeOIJfxLgXWB7zBFmmyzPT44my9zXSC098OZCTwCQttzOZVzVoX1a5LHmdtYyWDM29yjknItKF3xSelFWvKo1mhCClQLo1sC95T8T/ebr+xrqOABVZT82tY56qgQxkIAN1CkhEulsGiUi3iCzKyJsjIpuBYyLyo4isFpHXReTuTFLAr1sOnAeeT8nbzNW+3rfAM2UcyAcSQj4FngR68Ot0F1NA24CuMqBu4PMUgYdS0hzwYqlFJ+AeNV3s30aLSoEUtjEScoHE3nkZ0Ay1fR7o3ZCcGNAEYHcO5A/g5pZACpsMPEf6UexTwCN5MvI6w2zgaeBt4HQK5BsC57ubY+jPll/wHzn1Ayc07QD+u6MR4GPn3LlA/SuCOZAGMpCBDFRhiF50EpFl+PP49wOzgIPAHmCLc+6zXAERE18P+b7DRqAnJCfvfF0P/mTgLZr0l97vB27CL3HO0rwTwBzn3PHCGiU0uQisA6bhzT0T/T4ZeAr4s6FZmal8WcI0LwETgdfwHzY1XKz3teyjibLLioLWa8UDeG/oZbxD+QHwdULwg1r+K71fXxQ0ohXfAgS/Mvyh5i1MgNZp2qt6P5ImL/QezdbrSeAG4EbVJJkH8LteJ+p1FikhBPpNr3Odc6fUNHdo2oJEucbX8Y2zDQeLgr7T62IReRb4AX9mGGC6Xo8Bu0VkOvCQpu1JlRZoo6Vc/WL2ad4C4A28CWvAR5TtdU0dwqH/ewHvHi8HbgUexh+euDRCFH6PVOh0/FKzw3um4M8zpA1DxwkMQzFjXR9+d/9N1WI8BZI71kU56Aq8HXgC+Ak/5o3gX+rUNmmO5nsbqP2gfwCyvJzPNoKXiAAAAABJRU5ErkJggg==);
}

.leaflet-oldie .leaflet-container.dark .leaflet-control-layers-toggle, .leaflet-oldie .leaflet-container.dark .leaflet-control-zoom-in, .leaflet-oldie .leaflet-container.dark .leaflet-control-zoom-out, .leaflet-oldie .leaflet-container.dark .mapbox-icon, .leaflet-oldie .mapbox-button-icon:before {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAEECAYAAAA24SSRAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAXYSURBVHic7ZxfiFVFHMc/a4uKWtDDtqJGZprYgwX5ByTdkkLbSgghCiKih14EBYtg6aEr9RRREKRUUs9hGEVtChKaYMkq2VqWmnUX2tKiNDNZY/Xbw/wue7x7zsw559626zY/GM6df7/P+c3MPfO7M3NumyTGQiaMCSWCIiiC6qVqoZC0lXgy1Cq0FanUck1XxVmSNL8WrzYT1LCMvz5qL1FnoAyoTNOVkpYb3hEUQREUQREUQRF0RYOqjHim9aHaTFDDEt2tCIqgCIqgCIqgCLoiQRULedNLgwCeq1NasbR8IilvqMhJpe5zrvpFQElYIYiksRsMLdd0aYoLwYqsqW5i9KjLLdHJj6AIiqAIiiCP5J2PpgLrgGXAYkvrA/YBrwF/BTXkmB2XSzqhbDlhZRqaypdLuuiB1ORiCOaDTM2wZLaFNMumZunzDYZ1wJy01ubyPfOazLE6qeIbDMsy0qsl6ngtWpyRfqOFInVKbWFXS9TxWtRXQl9mHR9oXwlQdp2xGt4t8YVt6iMor+/d8EM1OvkRFEERFEH/AWga8CCwFfjJwlZLm5ZHge/pPQ+4z8IKYGJGub+BT4GPLBwvCio7f6QeWfQ13TxgA7ATGPKUG7IyG6xOOj3nxDcFWAl0A/da2sdAL/AJcD6kwAc6bop6gT1kWzUZ6LKb6CbDqrx9dB535704S8BZ1o2zdEpSZ1HQ3MRddtmdp8kQzuKa9d8VBSUl9lEh0Pjro6ZKy00TERRBERRBLQZaCpxh9FHFUqBKiiJZ+n5gFfBHnrsKgUKb7t/j/PCwBNZwapKW1yGp3/KPSDrjKVsalIT0W3ypwZoGSoPU8pY2E/RCCqSiwJ55GdBVBusIlCu0Xpf3Na1guZbb1mnYJwtZtKmALm/Z6EBGUARFUASNV1A70AMcBP60aw9F93ADPkO7pD3mDwxKesOusvT2QP3czkmPKd2YUNpucVl+LlBo4jsITAduAIbrmnMAOAncnqflQn10M26JebgufdjSb8oDyQM6hlv3ru/4dkv/vFmgd4EZwPoErN3iM4BdeUGNjDpJqsrtmzc86mqwHkkH5X4t7JD0tEFyw3INzYwwuwisEVA9bPe/CarBdocsip5qBEVQBP3fQRWyX4jOCpUsZS2xhR2SQdwixq3A2lDhMkcTa7Ie2G6fwzfsmax8clrSJCu3py4vVV/ZphsALtjnFXkqtNwyWlLqR1Ub7obPA5OyKjXLolk+SFmQgEN18eD/PLXEI2j8gYqspwbrRE81giIogiKohUAdzQB1APdk5C3Ends6CXwLbAReBm7J1OZxINdKGpb0VEpeb4pT+aWkx8os0SxJKHlf0iOSOiXNkHQpBbRT0oQyoA5JH6YoPJ6SJknPeHR5+6gTWJ2SPjej/BceXV7QV8AHvsoJucTlvt5o8ZkraZa1fUheD+gJfo9+Bq4JlPkNt4Xgl9CdSJos6UlJF1IsOSvp/hw6vL8mFgCLgCXA44w+730IeIiM89314gP9ACzHHXD9xdIO49476gO2MfJjLCjRgYygCIqgCGqiFFl0WoM7j78ImA8cBQ7gzuaHp/wck1anpO2BqXy7lSu9I9YJ9APXWfycxfuBa4HbzDpwc9ZC4FQZi2qWXJK0WdI0ue3SuRp5P/lRSb8nLCvsQK5JNM2zkiZKeknSkKVdlPSmlX0gUXZNUdAWq3hY7tzj83K++FuS9icU32Hl91p8S1FQn1V8VVKb3Mrw25a3MgHabGkvWrwvTZ/ve7TArqeBq3H+3f66PIBf7VrzkuaTIj7Qj3ZdDJwF9jLy5wJdiXK1t+NrZxuOFgV9bddVwBPAN8ARS5tp15PAZxa/29IOpGrz9FG3Rsscy+uS9IqkBXLD/Z1GRl1yQEjuHANy7vFaSdMlrZa0K1Gm1PcISTMlDZiSbZa2I8VSSTolz2Mo9PQeBO7CvTE1iDtRc2dKuffwPX4CfVQfrpf0sKRjks5Zs27J6pP6EH3vCBp70D8db2VXFPfIagAAAABJRU5ErkJggg==);
}

.leaflet-oldie .mapbox-logo-true {
  background-image: none;
}

.fullscreen-icon {
  background-image: url("leaflet.fullscreen/icon-fullscreen.png");
}

.leaflet-retina .fullscreen-icon {
  background-image: url("leaflet.fullscreen/icon-fullscreen-2x.png");
  background-size: 26px 26px;
}

.leaflet-control-attribution:after,
.leaflet-control-zoom-in,
.leaflet-control-zoom-out,
.leaflet-popup-close-button,
.leaflet-control-layers-toggle,
.leaflet-container.dark .map-tooltip .close,
.map-tooltip .close,
.mapbox-icon {
  opacity: 0.75;
  background-image: url("mapbox.js/theme/images/icons-000000@2x.png");
  background-repeat: no-repeat;
  background-size: 26px 260px;
}

.leaflet-top.leaflet-right .leaflet-control-layers.leaflet-control a {
  width: 26px;
  height: 26px;
  line-height: 26px !important;
}
.leaflet-top.leaflet-right .leaflet-control-layers.leaflet-control a span, .leaflet-top.leaflet-right .leaflet-control-layers.leaflet-control a span:before {
  line-height: 26px !important;
}

.leaflet-control-locate {
  --locate-control-icon-color: black;
  --locate-control-active-color: #2074b6;
  --locate-control-following-color: #fc8428;
}

.leaflet-control-locate a .leaflet-control-locate-location-arrow {
  background-color: var(--locate-control-icon-color);
  width: 16px;
  height: 16px;
  margin: 7px;
  display: inline-block;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.leaflet-control-locate a .leaflet-control-locate-spinner {
  background-color: var(--locate-control-icon-color);
  width: 16px;
  height: 16px;
  margin: 7px;
  display: inline-block;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.leaflet-control-locate a .leaflet-locate-icon {
  color: var(--locate-control-icon-color);
}

.leaflet-control-locate a .leaflet-control-locate-location-arrow {
  -webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z"/></svg>');
  mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z"/></svg>');
}

.leaflet-control-locate a .leaflet-control-locate-spinner {
  animation: 2s linear infinite leaflet-control-locate-spin;
  -webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M304 48a48 48 0 1 1-96 0 48 48 0 0 1 96 0zm-48 368a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm208-208a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM96 256a48 48 0 1 0-96 0 48 48 0 0 0 96 0zm13 99a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm294 0a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM109 61a48 48 0 1 0 0 96 48 48 0 0 0 0-96z"/></svg>');
  mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M304 48a48 48 0 1 1-96 0 48 48 0 0 1 96 0zm-48 368a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm208-208a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM96 256a48 48 0 1 0-96 0 48 48 0 0 0 96 0zm13 99a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm294 0a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM109 61a48 48 0 1 0 0 96 48 48 0 0 0 0-96z"/></svg>');
}

.leaflet-control-locate.active a .leaflet-control-locate-location-arrow {
  background-color: var(--locate-control-active-color);
}

.leaflet-control-locate.active a .leaflet-locate-icon {
  color: var(--locate-control-active-color);
}

.leaflet-control-locate.following a .leaflet-control-locate-location-arrow {
  background-color: var(--locate-control-following-color);
}

.leaflet-control-locate.following a .leaflet-locate-icon {
  color: var(--locate-control-following-color);
}

.leaflet-control-locate.locate-timeout a .leaflet-control-locate-spinner {
  background-color: #f39c12;
}

.leaflet-bar .leaflet-locate-text-active {
  text-overflow: ellipsis;
  white-space: nowrap;
  align-items: center;
  width: auto;
  max-width: 200px;
  padding: 0 10px;
  display: flex;
  overflow: hidden;
}

.leaflet-bar .leaflet-locate-text-active .leaflet-locate-icon {
  padding: 0 5px 0 0;
}

.leaflet-touch .leaflet-bar .leaflet-locate-text-active {
  width: 100%;
}

.leaflet-control-locate-location circle {
  animation: 4s infinite leaflet-control-locate-throb;
}

@keyframes leaflet-control-locate-throb {
  0% {
    stroke-width: 1px;
  }
  50% {
    stroke-width: 3px;
    transform: scale(0.8);
  }
  100% {
    stroke-width: 1px;
  }
}
@keyframes leaflet-control-locate-spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.leaflet-control-locate {
  --locate-control-icon-color: black;
  --locate-control-active-color: #2074b6;
  --locate-control-following-color: #fc8428;
}

.leaflet-control-locate a .leaflet-control-locate-location-arrow {
  background-color: var(--locate-control-icon-color);
  width: 16px;
  height: 16px;
  margin: 7px;
  display: inline-block;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.leaflet-control-locate a .leaflet-control-locate-spinner {
  background-color: var(--locate-control-icon-color);
  width: 16px;
  height: 16px;
  margin: 7px;
  display: inline-block;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.leaflet-control-locate a .leaflet-locate-icon {
  color: var(--locate-control-icon-color);
}

.leaflet-control-locate a .leaflet-control-locate-location-arrow {
  -webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z"/></svg>');
  mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z"/></svg>');
}

.leaflet-control-locate a .leaflet-control-locate-spinner {
  animation: 2s linear infinite leaflet-control-locate-spin;
  -webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M304 48a48 48 0 1 1-96 0 48 48 0 0 1 96 0zm-48 368a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm208-208a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM96 256a48 48 0 1 0-96 0 48 48 0 0 0 96 0zm13 99a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm294 0a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM109 61a48 48 0 1 0 0 96 48 48 0 0 0 0-96z"/></svg>');
  mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M304 48a48 48 0 1 1-96 0 48 48 0 0 1 96 0zm-48 368a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm208-208a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM96 256a48 48 0 1 0-96 0 48 48 0 0 0 96 0zm13 99a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm294 0a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM109 61a48 48 0 1 0 0 96 48 48 0 0 0 0-96z"/></svg>');
}

.leaflet-control-locate.active a .leaflet-control-locate-location-arrow {
  background-color: var(--locate-control-active-color);
}

.leaflet-control-locate.active a .leaflet-locate-icon {
  color: var(--locate-control-active-color);
}

.leaflet-control-locate.following a .leaflet-control-locate-location-arrow {
  background-color: var(--locate-control-following-color);
}

.leaflet-control-locate.following a .leaflet-locate-icon {
  color: var(--locate-control-following-color);
}

.leaflet-control-locate.locate-timeout a .leaflet-control-locate-spinner {
  background-color: #f39c12;
}

.leaflet-bar .leaflet-locate-text-active {
  text-overflow: ellipsis;
  white-space: nowrap;
  align-items: center;
  width: auto;
  max-width: 200px;
  padding: 0 10px;
  display: flex;
  overflow: hidden;
}

.leaflet-bar .leaflet-locate-text-active .leaflet-locate-icon {
  padding: 0 5px 0 0;
}

.leaflet-touch .leaflet-bar .leaflet-locate-text-active {
  width: 100%;
}

.leaflet-control-locate-location circle {
  animation: 4s infinite leaflet-control-locate-throb;
}

@keyframes leaflet-control-locate-throb {
  0% {
    stroke-width: 1px;
  }
  50% {
    stroke-width: 3px;
    transform: scale(0.8);
  }
  100% {
    stroke-width: 1px;
  }
}
@keyframes leaflet-control-locate-spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.leaflet-control-locate a .leaflet-control-locate-location-arrow, .leaflet-control-locate a .leaflet-control-locate-spinner {
  margin: 5px;
}


.leaflet-gac-wrapper {
  height: 30px;
}

.leaflet-control-container .leaflet-gac-control {
  width: 300px;
  height: 30px;
  padding: 0 7px;
  border-radius: 5px;
  border: 1px #d0d0d0 solid;
}

.leaflet-control-container .leaflet-right .leaflet-gac-control {
  position: absolute;
  right: 0;
  transition: width 0.3s ease 0.15s;
}

.leaflet-control-container .leaflet-gac-control:focus {
  outline: none;
}

.leaflet-control-container .leaflet-gac-search-btn {
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 4px;
}

.leaflet-control-container .leaflet-gac-search-btn .leaflet-gac-search-icon {
  cursor: pointer;
  width: 100%;
  height: 100%;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABOUlEQVQ4T6XTLUgmQRgH8N+Ligd+FOu1ww+wKPhxlwxXxHYnqCAGQZtgMBgU4eWaXLhyCgYxiAYVk6igJotgEaNiNYgGL6kHJwOzsO+yGzw3zszzm5nnP1vyzq+UU9+JUbTiCWdYw13eXmmgCr8wlbPwERPYys6lgVA8jSvM4RQfMIQF1KIfR2kkAdpxiRv04CGzUx9OcI02/EvmE+AH5jGG9YK+bmMQ3TjPApsYQXPcJc+Ywc/Y4I0ssIpxdOCi4ATl2Ivv2M0Ck1jBImZzgOrYoxZ8xG0WqI9Hb4pX2UkhNViKMe5jIC+FMPYVezGu4xhjHb7hUyx6wXDeFRK0C79jlMnYX4SmhZfZiwok7ymHwpBGyPs5RnaPRhzicxopAop+sYAc4Av+BPStQIAbsByffPl/gIrTvQLbJDoR8K3H6QAAAABJRU5ErkJggg==") no-repeat center center;
}

.leaflet-control-container .leaflet-gac-hidden {
  opacity: 0;
  width: 0;
  height: 0;
  overflow: hidden;
  transition: width 0.3s ease 0.15s;
}

.leaflet-container .leaflet-control {
  z-index: auto;
}
.leaflet-container .leaflet-control.leaflet-control-layers-expanded {
  z-index: 1000;
}
.leaflet-container .leaflet-top, .leaflet-container .leaflet-bottom {
  z-index: auto;
}

@media only screen and (min-width: 1441px) {
  .xlarge-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .xlarge-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .xlarge-push-1 {
    position: relative;
    left: 4.1666666667%;
    right: auto;
  }
  .xlarge-pull-1 {
    position: relative;
    right: 4.1666666667%;
    left: auto;
  }
  .xlarge-push-2 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .xlarge-pull-2 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .xlarge-push-3 {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .xlarge-pull-3 {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .xlarge-push-4 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .xlarge-pull-4 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .xlarge-push-5 {
    position: relative;
    left: 20.8333333333%;
    right: auto;
  }
  .xlarge-pull-5 {
    position: relative;
    right: 20.8333333333%;
    left: auto;
  }
  .xlarge-push-6 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .xlarge-pull-6 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .xlarge-push-7 {
    position: relative;
    left: 29.1666666667%;
    right: auto;
  }
  .xlarge-pull-7 {
    position: relative;
    right: 29.1666666667%;
    left: auto;
  }
  .xlarge-push-8 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .xlarge-pull-8 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .xlarge-push-9 {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .xlarge-pull-9 {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .xlarge-push-10 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .xlarge-pull-10 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .xlarge-push-11 {
    position: relative;
    left: 45.8333333333%;
    right: auto;
  }
  .xlarge-pull-11 {
    position: relative;
    right: 45.8333333333%;
    left: auto;
  }
  .xlarge-push-12 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .xlarge-pull-12 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .xlarge-push-13 {
    position: relative;
    left: 54.1666666667%;
    right: auto;
  }
  .xlarge-pull-13 {
    position: relative;
    right: 54.1666666667%;
    left: auto;
  }
  .xlarge-push-14 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .xlarge-pull-14 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .xlarge-push-15 {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .xlarge-pull-15 {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .xlarge-push-16 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .xlarge-pull-16 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .xlarge-push-17 {
    position: relative;
    left: 70.8333333333%;
    right: auto;
  }
  .xlarge-pull-17 {
    position: relative;
    right: 70.8333333333%;
    left: auto;
  }
  .xlarge-push-18 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .xlarge-pull-18 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .xlarge-push-19 {
    position: relative;
    left: 79.1666666667%;
    right: auto;
  }
  .xlarge-pull-19 {
    position: relative;
    right: 79.1666666667%;
    left: auto;
  }
  .xlarge-push-20 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .xlarge-pull-20 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .xlarge-push-21 {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .xlarge-pull-21 {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .xlarge-push-22 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .xlarge-pull-22 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .xlarge-push-23 {
    position: relative;
    left: 95.8333333333%;
    right: auto;
  }
  .xlarge-pull-23 {
    position: relative;
    right: 95.8333333333%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .xlarge-1 {
    width: 4.1666666667%;
  }
  .xlarge-2 {
    width: 8.3333333333%;
  }
  .xlarge-3 {
    width: 12.5%;
  }
  .xlarge-4 {
    width: 16.6666666667%;
  }
  .xlarge-5 {
    width: 20.8333333333%;
  }
  .xlarge-6 {
    width: 25%;
  }
  .xlarge-7 {
    width: 29.1666666667%;
  }
  .xlarge-8 {
    width: 33.3333333333%;
  }
  .xlarge-9 {
    width: 37.5%;
  }
  .xlarge-10 {
    width: 41.6666666667%;
  }
  .xlarge-11 {
    width: 45.8333333333%;
  }
  .xlarge-12 {
    width: 50%;
  }
  .xlarge-13 {
    width: 54.1666666667%;
  }
  .xlarge-14 {
    width: 58.3333333333%;
  }
  .xlarge-15 {
    width: 62.5%;
  }
  .xlarge-16 {
    width: 66.6666666667%;
  }
  .xlarge-17 {
    width: 70.8333333333%;
  }
  .xlarge-18 {
    width: 75%;
  }
  .xlarge-19 {
    width: 79.1666666667%;
  }
  .xlarge-20 {
    width: 83.3333333333%;
  }
  .xlarge-21 {
    width: 87.5%;
  }
  .xlarge-22 {
    width: 91.6666666667%;
  }
  .xlarge-23 {
    width: 95.8333333333%;
  }
  .xlarge-24 {
    width: 100%;
  }
  .xlarge-offset-0 {
    margin-left: 0 !important;
  }
  .xlarge-offset-1 {
    margin-left: 4.1666666667% !important;
  }
  .xlarge-offset-2 {
    margin-left: 8.3333333333% !important;
  }
  .xlarge-offset-3 {
    margin-left: 12.5% !important;
  }
  .xlarge-offset-4 {
    margin-left: 16.6666666667% !important;
  }
  .xlarge-offset-5 {
    margin-left: 20.8333333333% !important;
  }
  .xlarge-offset-6 {
    margin-left: 25% !important;
  }
  .xlarge-offset-7 {
    margin-left: 29.1666666667% !important;
  }
  .xlarge-offset-8 {
    margin-left: 33.3333333333% !important;
  }
  .xlarge-offset-9 {
    margin-left: 37.5% !important;
  }
  .xlarge-offset-10 {
    margin-left: 41.6666666667% !important;
  }
  .xlarge-offset-11 {
    margin-left: 45.8333333333% !important;
  }
  .xlarge-offset-12 {
    margin-left: 50% !important;
  }
  .xlarge-offset-13 {
    margin-left: 54.1666666667% !important;
  }
  .xlarge-offset-14 {
    margin-left: 58.3333333333% !important;
  }
  .xlarge-offset-15 {
    margin-left: 62.5% !important;
  }
  .xlarge-offset-16 {
    margin-left: 66.6666666667% !important;
  }
  .xlarge-offset-17 {
    margin-left: 70.8333333333% !important;
  }
  .xlarge-offset-18 {
    margin-left: 75% !important;
  }
  .xlarge-offset-19 {
    margin-left: 79.1666666667% !important;
  }
  .xlarge-offset-20 {
    margin-left: 83.3333333333% !important;
  }
  .xlarge-offset-21 {
    margin-left: 87.5% !important;
  }
  .xlarge-offset-22 {
    margin-left: 91.6666666667% !important;
  }
  .xlarge-offset-23 {
    margin-left: 95.8333333333% !important;
  }
  .xlarge-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.xlarge-centered,
  .columns.xlarge-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.xlarge-uncentered,
  .columns.xlarge-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.xlarge-centered:last-child,
  .columns.xlarge-centered:last-child {
    float: none;
  }
  .column.xlarge-uncentered:last-child,
  .columns.xlarge-uncentered:last-child {
    float: left;
  }
  .column.xlarge-uncentered.opposite,
  .columns.xlarge-uncentered.opposite {
    float: right;
  }
  .row.xlarge-collapse > .column,
  .row.xlarge-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.xlarge-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.xlarge-uncollapse > .column,
  .row.xlarge-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
}
@media only screen and (min-width: 1921px) {
  .xxlarge-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .xxlarge-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .xxlarge-push-1 {
    position: relative;
    left: 4.1666666667%;
    right: auto;
  }
  .xxlarge-pull-1 {
    position: relative;
    right: 4.1666666667%;
    left: auto;
  }
  .xxlarge-push-2 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .xxlarge-pull-2 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .xxlarge-push-3 {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .xxlarge-pull-3 {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .xxlarge-push-4 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .xxlarge-pull-4 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .xxlarge-push-5 {
    position: relative;
    left: 20.8333333333%;
    right: auto;
  }
  .xxlarge-pull-5 {
    position: relative;
    right: 20.8333333333%;
    left: auto;
  }
  .xxlarge-push-6 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .xxlarge-pull-6 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .xxlarge-push-7 {
    position: relative;
    left: 29.1666666667%;
    right: auto;
  }
  .xxlarge-pull-7 {
    position: relative;
    right: 29.1666666667%;
    left: auto;
  }
  .xxlarge-push-8 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .xxlarge-pull-8 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .xxlarge-push-9 {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .xxlarge-pull-9 {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .xxlarge-push-10 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .xxlarge-pull-10 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .xxlarge-push-11 {
    position: relative;
    left: 45.8333333333%;
    right: auto;
  }
  .xxlarge-pull-11 {
    position: relative;
    right: 45.8333333333%;
    left: auto;
  }
  .xxlarge-push-12 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .xxlarge-pull-12 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .xxlarge-push-13 {
    position: relative;
    left: 54.1666666667%;
    right: auto;
  }
  .xxlarge-pull-13 {
    position: relative;
    right: 54.1666666667%;
    left: auto;
  }
  .xxlarge-push-14 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .xxlarge-pull-14 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .xxlarge-push-15 {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .xxlarge-pull-15 {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .xxlarge-push-16 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .xxlarge-pull-16 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .xxlarge-push-17 {
    position: relative;
    left: 70.8333333333%;
    right: auto;
  }
  .xxlarge-pull-17 {
    position: relative;
    right: 70.8333333333%;
    left: auto;
  }
  .xxlarge-push-18 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .xxlarge-pull-18 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .xxlarge-push-19 {
    position: relative;
    left: 79.1666666667%;
    right: auto;
  }
  .xxlarge-pull-19 {
    position: relative;
    right: 79.1666666667%;
    left: auto;
  }
  .xxlarge-push-20 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .xxlarge-pull-20 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .xxlarge-push-21 {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .xxlarge-pull-21 {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .xxlarge-push-22 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .xxlarge-pull-22 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .xxlarge-push-23 {
    position: relative;
    left: 95.8333333333%;
    right: auto;
  }
  .xxlarge-pull-23 {
    position: relative;
    right: 95.8333333333%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .xxlarge-1 {
    width: 4.1666666667%;
  }
  .xxlarge-2 {
    width: 8.3333333333%;
  }
  .xxlarge-3 {
    width: 12.5%;
  }
  .xxlarge-4 {
    width: 16.6666666667%;
  }
  .xxlarge-5 {
    width: 20.8333333333%;
  }
  .xxlarge-6 {
    width: 25%;
  }
  .xxlarge-7 {
    width: 29.1666666667%;
  }
  .xxlarge-8 {
    width: 33.3333333333%;
  }
  .xxlarge-9 {
    width: 37.5%;
  }
  .xxlarge-10 {
    width: 41.6666666667%;
  }
  .xxlarge-11 {
    width: 45.8333333333%;
  }
  .xxlarge-12 {
    width: 50%;
  }
  .xxlarge-13 {
    width: 54.1666666667%;
  }
  .xxlarge-14 {
    width: 58.3333333333%;
  }
  .xxlarge-15 {
    width: 62.5%;
  }
  .xxlarge-16 {
    width: 66.6666666667%;
  }
  .xxlarge-17 {
    width: 70.8333333333%;
  }
  .xxlarge-18 {
    width: 75%;
  }
  .xxlarge-19 {
    width: 79.1666666667%;
  }
  .xxlarge-20 {
    width: 83.3333333333%;
  }
  .xxlarge-21 {
    width: 87.5%;
  }
  .xxlarge-22 {
    width: 91.6666666667%;
  }
  .xxlarge-23 {
    width: 95.8333333333%;
  }
  .xxlarge-24 {
    width: 100%;
  }
  .xxlarge-offset-0 {
    margin-left: 0 !important;
  }
  .xxlarge-offset-1 {
    margin-left: 4.1666666667% !important;
  }
  .xxlarge-offset-2 {
    margin-left: 8.3333333333% !important;
  }
  .xxlarge-offset-3 {
    margin-left: 12.5% !important;
  }
  .xxlarge-offset-4 {
    margin-left: 16.6666666667% !important;
  }
  .xxlarge-offset-5 {
    margin-left: 20.8333333333% !important;
  }
  .xxlarge-offset-6 {
    margin-left: 25% !important;
  }
  .xxlarge-offset-7 {
    margin-left: 29.1666666667% !important;
  }
  .xxlarge-offset-8 {
    margin-left: 33.3333333333% !important;
  }
  .xxlarge-offset-9 {
    margin-left: 37.5% !important;
  }
  .xxlarge-offset-10 {
    margin-left: 41.6666666667% !important;
  }
  .xxlarge-offset-11 {
    margin-left: 45.8333333333% !important;
  }
  .xxlarge-offset-12 {
    margin-left: 50% !important;
  }
  .xxlarge-offset-13 {
    margin-left: 54.1666666667% !important;
  }
  .xxlarge-offset-14 {
    margin-left: 58.3333333333% !important;
  }
  .xxlarge-offset-15 {
    margin-left: 62.5% !important;
  }
  .xxlarge-offset-16 {
    margin-left: 66.6666666667% !important;
  }
  .xxlarge-offset-17 {
    margin-left: 70.8333333333% !important;
  }
  .xxlarge-offset-18 {
    margin-left: 75% !important;
  }
  .xxlarge-offset-19 {
    margin-left: 79.1666666667% !important;
  }
  .xxlarge-offset-20 {
    margin-left: 83.3333333333% !important;
  }
  .xxlarge-offset-21 {
    margin-left: 87.5% !important;
  }
  .xxlarge-offset-22 {
    margin-left: 91.6666666667% !important;
  }
  .xxlarge-offset-23 {
    margin-left: 95.8333333333% !important;
  }
  .xxlarge-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.xxlarge-centered,
  .columns.xxlarge-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.xxlarge-uncentered,
  .columns.xxlarge-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.xxlarge-centered:last-child,
  .columns.xxlarge-centered:last-child {
    float: none;
  }
  .column.xxlarge-uncentered:last-child,
  .columns.xxlarge-uncentered:last-child {
    float: left;
  }
  .column.xxlarge-uncentered.opposite,
  .columns.xxlarge-uncentered.opposite {
    float: right;
  }
  .row.xxlarge-collapse > .column,
  .row.xxlarge-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.xxlarge-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.xxlarge-uncollapse > .column,
  .row.xxlarge-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
}
html, body {
  height: 100%;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

html,
body {
  font-size: 100%;
}

body {
  background: #fff;
  color: #222;
  cursor: auto;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  position: relative;
}

a:hover {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

img {
  -ms-interpolation-mode: bicubic;
}

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

.left {
  float: left !important;
}

.right {
  float: right !important;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.hide {
  display: none;
}

.invisible {
  visibility: hidden;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: inline-block;
  vertical-align: middle;
}

textarea {
  height: auto;
  min-height: 50px;
}

select {
  width: 100%;
}

.alert-box {
  border-style: solid;
  border-width: 1px;
  display: block;
  font-size: 0.8125rem;
  font-weight: normal;
  margin-bottom: 1.25rem;
  padding: 0.875rem 1.5rem 0.875rem 0.875rem;
  position: relative;
  transition: opacity 300ms ease-out;
  background-color: #008CBA;
  border-color: rgb(0, 120.4, 159.96);
  color: #FFFFFF;
}

.alert-box .close {
  right: 0.25rem;
  background: inherit;
  color: #333333;
  font-size: 1.375rem;
  line-height: 0.9;
  margin-top: -0.6875rem;
  opacity: 0.3;
  padding: 0 6px 4px;
  position: absolute;
  top: 50%;
}

.alert-box .close:hover, .alert-box .close:focus {
  opacity: 0.5;
}

.alert-box.radius {
  border-radius: 0.24rem;
}

.alert-box.round {
  border-radius: 1000px;
}

.alert-box.success {
  background-color: #43AC6A;
  border-color: rgb(57.62, 147.92, 91.16);
  color: #FFFFFF;
}

.alert-box.alert {
  background-color: #f04124;
  border-color: rgb(222.1446153846, 44.6317948718, 15.2153846154);
  color: #FFFFFF;
}

.alert-box.secondary {
  background-color: #e7e7e7;
  border-color: rgb(198.66, 198.66, 198.66);
  color: rgb(78.54, 78.54, 78.54);
}

.alert-box.warning {
  background-color: #f08a24;
  border-color: rgb(222.1446153846, 118.68, 15.2153846154);
  color: #FFFFFF;
}

.alert-box.info {
  background-color: #a0d3e8;
  border-color: rgb(115.8169491525, 190.5362711864, 221.3030508475);
  color: rgb(78.54, 78.54, 78.54);
}

.alert-box.alert-close {
  opacity: 0;
}

[class*=block-grid-] {
  display: block;
  padding: 0;
  margin: 0 -rem-calc(20)/2;
}

[class*=block-grid-]:before, [class*=block-grid-]:after {
  content: " ";
  display: table;
}

[class*=block-grid-]:after {
  clear: both;
}

[class*=block-grid-] > li {
  display: block;
  float: left;
  height: auto;
  padding: 0 rem-calc(20)/2 rem-calc(20);
}

@media only screen {
  .small-block-grid-1 > li {
    list-style: none;
    width: 100%;
  }
  .small-block-grid-1 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both;
  }
  .small-block-grid-2 > li {
    list-style: none;
    width: 50%;
  }
  .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both;
  }
  .small-block-grid-3 > li {
    list-style: none;
    width: 33.3333333333%;
  }
  .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both;
  }
  .small-block-grid-4 > li {
    list-style: none;
    width: 25%;
  }
  .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both;
  }
  .small-block-grid-5 > li {
    list-style: none;
    width: 20%;
  }
  .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both;
  }
  .small-block-grid-6 > li {
    list-style: none;
    width: 16.6666666667%;
  }
  .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both;
  }
  .small-block-grid-7 > li {
    list-style: none;
    width: 14.2857142857%;
  }
  .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both;
  }
  .small-block-grid-8 > li {
    list-style: none;
    width: 12.5%;
  }
  .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both;
  }
  .small-block-grid-9 > li {
    list-style: none;
    width: 11.1111111111%;
  }
  .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both;
  }
  .small-block-grid-10 > li {
    list-style: none;
    width: 10%;
  }
  .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both;
  }
  .small-block-grid-11 > li {
    list-style: none;
    width: 9.0909090909%;
  }
  .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both;
  }
  .small-block-grid-12 > li {
    list-style: none;
    width: 8.3333333333%;
  }
  .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both;
  }
}
@media only screen and (min-width: 641px) {
  .medium-block-grid-1 > li {
    list-style: none;
    width: 100%;
  }
  .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both;
  }
  .medium-block-grid-2 > li {
    list-style: none;
    width: 50%;
  }
  .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both;
  }
  .medium-block-grid-3 > li {
    list-style: none;
    width: 33.3333333333%;
  }
  .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both;
  }
  .medium-block-grid-4 > li {
    list-style: none;
    width: 25%;
  }
  .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both;
  }
  .medium-block-grid-5 > li {
    list-style: none;
    width: 20%;
  }
  .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both;
  }
  .medium-block-grid-6 > li {
    list-style: none;
    width: 16.6666666667%;
  }
  .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both;
  }
  .medium-block-grid-7 > li {
    list-style: none;
    width: 14.2857142857%;
  }
  .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both;
  }
  .medium-block-grid-8 > li {
    list-style: none;
    width: 12.5%;
  }
  .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both;
  }
  .medium-block-grid-9 > li {
    list-style: none;
    width: 11.1111111111%;
  }
  .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both;
  }
  .medium-block-grid-10 > li {
    list-style: none;
    width: 10%;
  }
  .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both;
  }
  .medium-block-grid-11 > li {
    list-style: none;
    width: 9.0909090909%;
  }
  .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both;
  }
  .medium-block-grid-12 > li {
    list-style: none;
    width: 8.3333333333%;
  }
  .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both;
  }
}
@media only screen and (min-width: 1025px) {
  .large-block-grid-1 > li {
    list-style: none;
    width: 100%;
  }
  .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both;
  }
  .large-block-grid-2 > li {
    list-style: none;
    width: 50%;
  }
  .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both;
  }
  .large-block-grid-3 > li {
    list-style: none;
    width: 33.3333333333%;
  }
  .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both;
  }
  .large-block-grid-4 > li {
    list-style: none;
    width: 25%;
  }
  .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both;
  }
  .large-block-grid-5 > li {
    list-style: none;
    width: 20%;
  }
  .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both;
  }
  .large-block-grid-6 > li {
    list-style: none;
    width: 16.6666666667%;
  }
  .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both;
  }
  .large-block-grid-7 > li {
    list-style: none;
    width: 14.2857142857%;
  }
  .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both;
  }
  .large-block-grid-8 > li {
    list-style: none;
    width: 12.5%;
  }
  .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both;
  }
  .large-block-grid-9 > li {
    list-style: none;
    width: 11.1111111111%;
  }
  .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both;
  }
  .large-block-grid-10 > li {
    list-style: none;
    width: 10%;
  }
  .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both;
  }
  .large-block-grid-11 > li {
    list-style: none;
    width: 9.0909090909%;
  }
  .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both;
  }
  .large-block-grid-12 > li {
    list-style: none;
    width: 8.3333333333%;
  }
  .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both;
  }
}
/* Foundation Dropdowns */
.f-dropdown {
  display: none;
  left: -9999px;
  list-style: none;
  margin-left: 0;
  position: absolute;
}

.f-dropdown.open {
  display: block;
}

.f-dropdown > *:first-child {
  margin-top: 0;
}

.f-dropdown > *:last-child {
  margin-bottom: 0;
}

.f-dropdown {
  background: #FFFFFF;
  border: solid 1px #cccccc;
  font-size: 0.875rem;
  height: auto;
  max-height: none;
  width: 100%;
  z-index: 89;
  margin-top: 2px;
}

.f-dropdown:before {
  border: inset 6px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent transparent #FFFFFF transparent;
  border-bottom-style: solid;
  position: absolute;
  top: -12px;
  left: 10px;
  z-index: 89;
}

.f-dropdown:after {
  border: inset 7px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent transparent #cccccc transparent;
  border-bottom-style: solid;
  position: absolute;
  top: -14px;
  left: 9px;
  z-index: 88;
}

.f-dropdown.right:before {
  left: auto;
  right: 10px;
}

.f-dropdown.right:after {
  left: auto;
  right: 9px;
}

.f-dropdown {
  max-width: 200px;
}

.f-dropdown.drop-right {
  display: none;
  left: -9999px;
  list-style: none;
  margin-left: 0;
  position: absolute;
}

.f-dropdown.drop-right.open {
  display: block;
}

.f-dropdown.drop-right > *:first-child {
  margin-top: 0;
}

.f-dropdown.drop-right > *:last-child {
  margin-bottom: 0;
}

.f-dropdown.drop-right {
  background: #FFFFFF;
  border: solid 1px #cccccc;
  font-size: 0.875rem;
  height: auto;
  max-height: none;
  width: 100%;
  z-index: 89;
  margin-top: 0;
  margin-left: 2px;
}

.f-dropdown.drop-right:before {
  border: inset 6px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent #FFFFFF transparent transparent;
  border-right-style: solid;
  position: absolute;
  top: 10px;
  left: -12px;
  z-index: 89;
}

.f-dropdown.drop-right:after {
  border: inset 7px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent #cccccc transparent transparent;
  border-right-style: solid;
  position: absolute;
  top: 9px;
  left: -14px;
  z-index: 88;
}

.f-dropdown.drop-right {
  max-width: 200px;
}

.f-dropdown.drop-left {
  display: none;
  left: -9999px;
  list-style: none;
  margin-left: 0;
  position: absolute;
}

.f-dropdown.drop-left.open {
  display: block;
}

.f-dropdown.drop-left > *:first-child {
  margin-top: 0;
}

.f-dropdown.drop-left > *:last-child {
  margin-bottom: 0;
}

.f-dropdown.drop-left {
  background: #FFFFFF;
  border: solid 1px #cccccc;
  font-size: 0.875rem;
  height: auto;
  max-height: none;
  width: 100%;
  z-index: 89;
  margin-top: 0;
  margin-left: -2px;
}

.f-dropdown.drop-left:before {
  border: inset 6px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent transparent transparent #FFFFFF;
  border-left-style: solid;
  position: absolute;
  top: 10px;
  right: -12px;
  left: auto;
  z-index: 89;
}

.f-dropdown.drop-left:after {
  border: inset 7px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent transparent transparent #cccccc;
  border-left-style: solid;
  position: absolute;
  top: 9px;
  right: -14px;
  left: auto;
  z-index: 88;
}

.f-dropdown.drop-left {
  max-width: 200px;
}

.f-dropdown.drop-top {
  display: none;
  left: -9999px;
  list-style: none;
  margin-left: 0;
  position: absolute;
}

.f-dropdown.drop-top.open {
  display: block;
}

.f-dropdown.drop-top > *:first-child {
  margin-top: 0;
}

.f-dropdown.drop-top > *:last-child {
  margin-bottom: 0;
}

.f-dropdown.drop-top {
  background: #FFFFFF;
  border: solid 1px #cccccc;
  font-size: 0.875rem;
  height: auto;
  max-height: none;
  width: 100%;
  z-index: 89;
  margin-left: 0;
  margin-top: -2px;
}

.f-dropdown.drop-top:before {
  border: inset 6px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: #FFFFFF transparent transparent transparent;
  border-top-style: solid;
  bottom: -12px;
  position: absolute;
  top: auto;
  left: 10px;
  right: auto;
  z-index: 89;
}

.f-dropdown.drop-top:after {
  border: inset 7px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: #cccccc transparent transparent transparent;
  border-top-style: solid;
  bottom: -14px;
  position: absolute;
  top: auto;
  left: 9px;
  right: auto;
  z-index: 88;
}

.f-dropdown.drop-top {
  max-width: 200px;
}

.f-dropdown li {
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.125rem;
  margin: 0;
}

.f-dropdown li:hover, .f-dropdown li:focus {
  background: #EEEEEE;
}

.f-dropdown li.radius {
  border-radius: 0.24rem;
}

.f-dropdown li a {
  display: block;
  padding: 0.5rem;
  color: #555555;
}

.f-dropdown.content {
  display: none;
  left: -9999px;
  list-style: none;
  margin-left: 0;
  position: absolute;
}

.f-dropdown.content.open {
  display: block;
}

.f-dropdown.content > *:first-child {
  margin-top: 0;
}

.f-dropdown.content > *:last-child {
  margin-bottom: 0;
}

.f-dropdown.content {
  background: #FFFFFF;
  border: solid 1px #cccccc;
  font-size: 0.875rem;
  height: auto;
  max-height: none;
  padding: 1.25rem;
  width: 100%;
  z-index: 89;
  max-width: 200px;
}

.f-dropdown.tiny {
  max-width: 200px;
}

.f-dropdown.small {
  max-width: 300px;
}

.f-dropdown.medium {
  max-width: 500px;
}

.f-dropdown.large {
  max-width: 800px;
}

.f-dropdown.mega {
  width: 100% !important;
  max-width: 100% !important;
}

.f-dropdown.mega.open {
  left: 0 !important;
}

.row {
  margin: 0 auto;
  max-width: 62.5rem;
  width: 100%;
}

.row:before, .row:after {
  content: " ";
  display: table;
}

.row:after {
  clear: both;
}

.row.collapse > .column,
.row.collapse > .columns {
  padding-left: 0;
  padding-right: 0;
}

.row.collapse .row {
  margin-left: 0;
  margin-right: 0;
}

.row .row {
  margin: 0 -0.9375rem;
  max-width: none;
  width: auto;
}

.row .row:before, .row .row:after {
  content: " ";
  display: table;
}

.row .row:after {
  clear: both;
}

.row .row.collapse {
  margin: 0;
  max-width: none;
  width: auto;
}

.row .row.collapse:before, .row .row.collapse:after {
  content: " ";
  display: table;
}

.row .row.collapse:after {
  clear: both;
}

.column,
.columns {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  width: 100%;
  float: left;
}

.column + .column:last-child,
.column + .columns:last-child,
.columns + .column:last-child,
.columns + .columns:last-child {
  float: right;
}

.column + .column.end,
.column + .columns.end,
.columns + .column.end,
.columns + .columns.end {
  float: left;
}

@media only screen {
  .small-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .small-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .small-push-1 {
    position: relative;
    left: 4.1666666667%;
    right: auto;
  }
  .small-pull-1 {
    position: relative;
    right: 4.1666666667%;
    left: auto;
  }
  .small-push-2 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .small-pull-2 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .small-push-3 {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .small-pull-3 {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .small-push-4 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .small-pull-4 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .small-push-5 {
    position: relative;
    left: 20.8333333333%;
    right: auto;
  }
  .small-pull-5 {
    position: relative;
    right: 20.8333333333%;
    left: auto;
  }
  .small-push-6 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .small-pull-6 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .small-push-7 {
    position: relative;
    left: 29.1666666667%;
    right: auto;
  }
  .small-pull-7 {
    position: relative;
    right: 29.1666666667%;
    left: auto;
  }
  .small-push-8 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .small-pull-8 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .small-push-9 {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .small-pull-9 {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .small-push-10 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .small-pull-10 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .small-push-11 {
    position: relative;
    left: 45.8333333333%;
    right: auto;
  }
  .small-pull-11 {
    position: relative;
    right: 45.8333333333%;
    left: auto;
  }
  .small-push-12 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .small-pull-12 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .small-push-13 {
    position: relative;
    left: 54.1666666667%;
    right: auto;
  }
  .small-pull-13 {
    position: relative;
    right: 54.1666666667%;
    left: auto;
  }
  .small-push-14 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .small-pull-14 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .small-push-15 {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .small-pull-15 {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .small-push-16 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .small-pull-16 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .small-push-17 {
    position: relative;
    left: 70.8333333333%;
    right: auto;
  }
  .small-pull-17 {
    position: relative;
    right: 70.8333333333%;
    left: auto;
  }
  .small-push-18 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .small-pull-18 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .small-push-19 {
    position: relative;
    left: 79.1666666667%;
    right: auto;
  }
  .small-pull-19 {
    position: relative;
    right: 79.1666666667%;
    left: auto;
  }
  .small-push-20 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .small-pull-20 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .small-push-21 {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .small-pull-21 {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .small-push-22 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .small-pull-22 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .small-push-23 {
    position: relative;
    left: 95.8333333333%;
    right: auto;
  }
  .small-pull-23 {
    position: relative;
    right: 95.8333333333%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .small-1 {
    width: 4.1666666667%;
  }
  .small-2 {
    width: 8.3333333333%;
  }
  .small-3 {
    width: 12.5%;
  }
  .small-4 {
    width: 16.6666666667%;
  }
  .small-5 {
    width: 20.8333333333%;
  }
  .small-6 {
    width: 25%;
  }
  .small-7 {
    width: 29.1666666667%;
  }
  .small-8 {
    width: 33.3333333333%;
  }
  .small-9 {
    width: 37.5%;
  }
  .small-10 {
    width: 41.6666666667%;
  }
  .small-11 {
    width: 45.8333333333%;
  }
  .small-12 {
    width: 50%;
  }
  .small-13 {
    width: 54.1666666667%;
  }
  .small-14 {
    width: 58.3333333333%;
  }
  .small-15 {
    width: 62.5%;
  }
  .small-16 {
    width: 66.6666666667%;
  }
  .small-17 {
    width: 70.8333333333%;
  }
  .small-18 {
    width: 75%;
  }
  .small-19 {
    width: 79.1666666667%;
  }
  .small-20 {
    width: 83.3333333333%;
  }
  .small-21 {
    width: 87.5%;
  }
  .small-22 {
    width: 91.6666666667%;
  }
  .small-23 {
    width: 95.8333333333%;
  }
  .small-24 {
    width: 100%;
  }
  .small-offset-0 {
    margin-left: 0 !important;
  }
  .small-offset-1 {
    margin-left: 4.1666666667% !important;
  }
  .small-offset-2 {
    margin-left: 8.3333333333% !important;
  }
  .small-offset-3 {
    margin-left: 12.5% !important;
  }
  .small-offset-4 {
    margin-left: 16.6666666667% !important;
  }
  .small-offset-5 {
    margin-left: 20.8333333333% !important;
  }
  .small-offset-6 {
    margin-left: 25% !important;
  }
  .small-offset-7 {
    margin-left: 29.1666666667% !important;
  }
  .small-offset-8 {
    margin-left: 33.3333333333% !important;
  }
  .small-offset-9 {
    margin-left: 37.5% !important;
  }
  .small-offset-10 {
    margin-left: 41.6666666667% !important;
  }
  .small-offset-11 {
    margin-left: 45.8333333333% !important;
  }
  .small-offset-12 {
    margin-left: 50% !important;
  }
  .small-offset-13 {
    margin-left: 54.1666666667% !important;
  }
  .small-offset-14 {
    margin-left: 58.3333333333% !important;
  }
  .small-offset-15 {
    margin-left: 62.5% !important;
  }
  .small-offset-16 {
    margin-left: 66.6666666667% !important;
  }
  .small-offset-17 {
    margin-left: 70.8333333333% !important;
  }
  .small-offset-18 {
    margin-left: 75% !important;
  }
  .small-offset-19 {
    margin-left: 79.1666666667% !important;
  }
  .small-offset-20 {
    margin-left: 83.3333333333% !important;
  }
  .small-offset-21 {
    margin-left: 87.5% !important;
  }
  .small-offset-22 {
    margin-left: 91.6666666667% !important;
  }
  .small-offset-23 {
    margin-left: 95.8333333333% !important;
  }
  .small-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.small-centered,
  .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.small-uncentered,
  .columns.small-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.small-centered:last-child,
  .columns.small-centered:last-child {
    float: none;
  }
  .column.small-uncentered:last-child,
  .columns.small-uncentered:last-child {
    float: left;
  }
  .column.small-uncentered.opposite,
  .columns.small-uncentered.opposite {
    float: right;
  }
  .row.small-collapse > .column,
  .row.small-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.small-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.small-uncollapse > .column,
  .row.small-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
}
@media only screen and (min-width: 641px) {
  .medium-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .medium-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .medium-push-1 {
    position: relative;
    left: 4.1666666667%;
    right: auto;
  }
  .medium-pull-1 {
    position: relative;
    right: 4.1666666667%;
    left: auto;
  }
  .medium-push-2 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .medium-pull-2 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .medium-push-3 {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .medium-pull-3 {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .medium-push-4 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .medium-pull-4 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .medium-push-5 {
    position: relative;
    left: 20.8333333333%;
    right: auto;
  }
  .medium-pull-5 {
    position: relative;
    right: 20.8333333333%;
    left: auto;
  }
  .medium-push-6 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .medium-pull-6 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .medium-push-7 {
    position: relative;
    left: 29.1666666667%;
    right: auto;
  }
  .medium-pull-7 {
    position: relative;
    right: 29.1666666667%;
    left: auto;
  }
  .medium-push-8 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .medium-pull-8 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .medium-push-9 {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .medium-pull-9 {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .medium-push-10 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .medium-pull-10 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .medium-push-11 {
    position: relative;
    left: 45.8333333333%;
    right: auto;
  }
  .medium-pull-11 {
    position: relative;
    right: 45.8333333333%;
    left: auto;
  }
  .medium-push-12 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .medium-pull-12 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .medium-push-13 {
    position: relative;
    left: 54.1666666667%;
    right: auto;
  }
  .medium-pull-13 {
    position: relative;
    right: 54.1666666667%;
    left: auto;
  }
  .medium-push-14 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .medium-pull-14 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .medium-push-15 {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .medium-pull-15 {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .medium-push-16 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .medium-pull-16 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .medium-push-17 {
    position: relative;
    left: 70.8333333333%;
    right: auto;
  }
  .medium-pull-17 {
    position: relative;
    right: 70.8333333333%;
    left: auto;
  }
  .medium-push-18 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .medium-pull-18 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .medium-push-19 {
    position: relative;
    left: 79.1666666667%;
    right: auto;
  }
  .medium-pull-19 {
    position: relative;
    right: 79.1666666667%;
    left: auto;
  }
  .medium-push-20 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .medium-pull-20 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .medium-push-21 {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .medium-pull-21 {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .medium-push-22 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .medium-pull-22 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .medium-push-23 {
    position: relative;
    left: 95.8333333333%;
    right: auto;
  }
  .medium-pull-23 {
    position: relative;
    right: 95.8333333333%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .medium-1 {
    width: 4.1666666667%;
  }
  .medium-2 {
    width: 8.3333333333%;
  }
  .medium-3 {
    width: 12.5%;
  }
  .medium-4 {
    width: 16.6666666667%;
  }
  .medium-5 {
    width: 20.8333333333%;
  }
  .medium-6 {
    width: 25%;
  }
  .medium-7 {
    width: 29.1666666667%;
  }
  .medium-8 {
    width: 33.3333333333%;
  }
  .medium-9 {
    width: 37.5%;
  }
  .medium-10 {
    width: 41.6666666667%;
  }
  .medium-11 {
    width: 45.8333333333%;
  }
  .medium-12 {
    width: 50%;
  }
  .medium-13 {
    width: 54.1666666667%;
  }
  .medium-14 {
    width: 58.3333333333%;
  }
  .medium-15 {
    width: 62.5%;
  }
  .medium-16 {
    width: 66.6666666667%;
  }
  .medium-17 {
    width: 70.8333333333%;
  }
  .medium-18 {
    width: 75%;
  }
  .medium-19 {
    width: 79.1666666667%;
  }
  .medium-20 {
    width: 83.3333333333%;
  }
  .medium-21 {
    width: 87.5%;
  }
  .medium-22 {
    width: 91.6666666667%;
  }
  .medium-23 {
    width: 95.8333333333%;
  }
  .medium-24 {
    width: 100%;
  }
  .medium-offset-0 {
    margin-left: 0 !important;
  }
  .medium-offset-1 {
    margin-left: 4.1666666667% !important;
  }
  .medium-offset-2 {
    margin-left: 8.3333333333% !important;
  }
  .medium-offset-3 {
    margin-left: 12.5% !important;
  }
  .medium-offset-4 {
    margin-left: 16.6666666667% !important;
  }
  .medium-offset-5 {
    margin-left: 20.8333333333% !important;
  }
  .medium-offset-6 {
    margin-left: 25% !important;
  }
  .medium-offset-7 {
    margin-left: 29.1666666667% !important;
  }
  .medium-offset-8 {
    margin-left: 33.3333333333% !important;
  }
  .medium-offset-9 {
    margin-left: 37.5% !important;
  }
  .medium-offset-10 {
    margin-left: 41.6666666667% !important;
  }
  .medium-offset-11 {
    margin-left: 45.8333333333% !important;
  }
  .medium-offset-12 {
    margin-left: 50% !important;
  }
  .medium-offset-13 {
    margin-left: 54.1666666667% !important;
  }
  .medium-offset-14 {
    margin-left: 58.3333333333% !important;
  }
  .medium-offset-15 {
    margin-left: 62.5% !important;
  }
  .medium-offset-16 {
    margin-left: 66.6666666667% !important;
  }
  .medium-offset-17 {
    margin-left: 70.8333333333% !important;
  }
  .medium-offset-18 {
    margin-left: 75% !important;
  }
  .medium-offset-19 {
    margin-left: 79.1666666667% !important;
  }
  .medium-offset-20 {
    margin-left: 83.3333333333% !important;
  }
  .medium-offset-21 {
    margin-left: 87.5% !important;
  }
  .medium-offset-22 {
    margin-left: 91.6666666667% !important;
  }
  .medium-offset-23 {
    margin-left: 95.8333333333% !important;
  }
  .medium-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.medium-centered,
  .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.medium-uncentered,
  .columns.medium-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.medium-centered:last-child,
  .columns.medium-centered:last-child {
    float: none;
  }
  .column.medium-uncentered:last-child,
  .columns.medium-uncentered:last-child {
    float: left;
  }
  .column.medium-uncentered.opposite,
  .columns.medium-uncentered.opposite {
    float: right;
  }
  .row.medium-collapse > .column,
  .row.medium-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.medium-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.medium-uncollapse > .column,
  .row.medium-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .push-1 {
    position: relative;
    left: 4.1666666667%;
    right: auto;
  }
  .pull-1 {
    position: relative;
    right: 4.1666666667%;
    left: auto;
  }
  .push-2 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .pull-2 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .push-3 {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .pull-3 {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .push-4 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .pull-4 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .push-5 {
    position: relative;
    left: 20.8333333333%;
    right: auto;
  }
  .pull-5 {
    position: relative;
    right: 20.8333333333%;
    left: auto;
  }
  .push-6 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .pull-6 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .push-7 {
    position: relative;
    left: 29.1666666667%;
    right: auto;
  }
  .pull-7 {
    position: relative;
    right: 29.1666666667%;
    left: auto;
  }
  .push-8 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .pull-8 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .push-9 {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .pull-9 {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .push-10 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .pull-10 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .push-11 {
    position: relative;
    left: 45.8333333333%;
    right: auto;
  }
  .pull-11 {
    position: relative;
    right: 45.8333333333%;
    left: auto;
  }
  .push-12 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .pull-12 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .push-13 {
    position: relative;
    left: 54.1666666667%;
    right: auto;
  }
  .pull-13 {
    position: relative;
    right: 54.1666666667%;
    left: auto;
  }
  .push-14 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .pull-14 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .push-15 {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .pull-15 {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .push-16 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .pull-16 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .push-17 {
    position: relative;
    left: 70.8333333333%;
    right: auto;
  }
  .pull-17 {
    position: relative;
    right: 70.8333333333%;
    left: auto;
  }
  .push-18 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .pull-18 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .push-19 {
    position: relative;
    left: 79.1666666667%;
    right: auto;
  }
  .pull-19 {
    position: relative;
    right: 79.1666666667%;
    left: auto;
  }
  .push-20 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .pull-20 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .push-21 {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .pull-21 {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .push-22 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .pull-22 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .push-23 {
    position: relative;
    left: 95.8333333333%;
    right: auto;
  }
  .pull-23 {
    position: relative;
    right: 95.8333333333%;
    left: auto;
  }
}
@media only screen and (min-width: 1025px) {
  .large-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .large-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .large-push-1 {
    position: relative;
    left: 4.1666666667%;
    right: auto;
  }
  .large-pull-1 {
    position: relative;
    right: 4.1666666667%;
    left: auto;
  }
  .large-push-2 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .large-pull-2 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .large-push-3 {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .large-pull-3 {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .large-push-4 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .large-pull-4 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .large-push-5 {
    position: relative;
    left: 20.8333333333%;
    right: auto;
  }
  .large-pull-5 {
    position: relative;
    right: 20.8333333333%;
    left: auto;
  }
  .large-push-6 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .large-pull-6 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .large-push-7 {
    position: relative;
    left: 29.1666666667%;
    right: auto;
  }
  .large-pull-7 {
    position: relative;
    right: 29.1666666667%;
    left: auto;
  }
  .large-push-8 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .large-pull-8 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .large-push-9 {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .large-pull-9 {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .large-push-10 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .large-pull-10 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .large-push-11 {
    position: relative;
    left: 45.8333333333%;
    right: auto;
  }
  .large-pull-11 {
    position: relative;
    right: 45.8333333333%;
    left: auto;
  }
  .large-push-12 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .large-pull-12 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .large-push-13 {
    position: relative;
    left: 54.1666666667%;
    right: auto;
  }
  .large-pull-13 {
    position: relative;
    right: 54.1666666667%;
    left: auto;
  }
  .large-push-14 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .large-pull-14 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .large-push-15 {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .large-pull-15 {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .large-push-16 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .large-pull-16 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .large-push-17 {
    position: relative;
    left: 70.8333333333%;
    right: auto;
  }
  .large-pull-17 {
    position: relative;
    right: 70.8333333333%;
    left: auto;
  }
  .large-push-18 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .large-pull-18 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .large-push-19 {
    position: relative;
    left: 79.1666666667%;
    right: auto;
  }
  .large-pull-19 {
    position: relative;
    right: 79.1666666667%;
    left: auto;
  }
  .large-push-20 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .large-pull-20 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .large-push-21 {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .large-pull-21 {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .large-push-22 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .large-pull-22 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .large-push-23 {
    position: relative;
    left: 95.8333333333%;
    right: auto;
  }
  .large-pull-23 {
    position: relative;
    right: 95.8333333333%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .large-1 {
    width: 4.1666666667%;
  }
  .large-2 {
    width: 8.3333333333%;
  }
  .large-3 {
    width: 12.5%;
  }
  .large-4 {
    width: 16.6666666667%;
  }
  .large-5 {
    width: 20.8333333333%;
  }
  .large-6 {
    width: 25%;
  }
  .large-7 {
    width: 29.1666666667%;
  }
  .large-8 {
    width: 33.3333333333%;
  }
  .large-9 {
    width: 37.5%;
  }
  .large-10 {
    width: 41.6666666667%;
  }
  .large-11 {
    width: 45.8333333333%;
  }
  .large-12 {
    width: 50%;
  }
  .large-13 {
    width: 54.1666666667%;
  }
  .large-14 {
    width: 58.3333333333%;
  }
  .large-15 {
    width: 62.5%;
  }
  .large-16 {
    width: 66.6666666667%;
  }
  .large-17 {
    width: 70.8333333333%;
  }
  .large-18 {
    width: 75%;
  }
  .large-19 {
    width: 79.1666666667%;
  }
  .large-20 {
    width: 83.3333333333%;
  }
  .large-21 {
    width: 87.5%;
  }
  .large-22 {
    width: 91.6666666667%;
  }
  .large-23 {
    width: 95.8333333333%;
  }
  .large-24 {
    width: 100%;
  }
  .large-offset-0 {
    margin-left: 0 !important;
  }
  .large-offset-1 {
    margin-left: 4.1666666667% !important;
  }
  .large-offset-2 {
    margin-left: 8.3333333333% !important;
  }
  .large-offset-3 {
    margin-left: 12.5% !important;
  }
  .large-offset-4 {
    margin-left: 16.6666666667% !important;
  }
  .large-offset-5 {
    margin-left: 20.8333333333% !important;
  }
  .large-offset-6 {
    margin-left: 25% !important;
  }
  .large-offset-7 {
    margin-left: 29.1666666667% !important;
  }
  .large-offset-8 {
    margin-left: 33.3333333333% !important;
  }
  .large-offset-9 {
    margin-left: 37.5% !important;
  }
  .large-offset-10 {
    margin-left: 41.6666666667% !important;
  }
  .large-offset-11 {
    margin-left: 45.8333333333% !important;
  }
  .large-offset-12 {
    margin-left: 50% !important;
  }
  .large-offset-13 {
    margin-left: 54.1666666667% !important;
  }
  .large-offset-14 {
    margin-left: 58.3333333333% !important;
  }
  .large-offset-15 {
    margin-left: 62.5% !important;
  }
  .large-offset-16 {
    margin-left: 66.6666666667% !important;
  }
  .large-offset-17 {
    margin-left: 70.8333333333% !important;
  }
  .large-offset-18 {
    margin-left: 75% !important;
  }
  .large-offset-19 {
    margin-left: 79.1666666667% !important;
  }
  .large-offset-20 {
    margin-left: 83.3333333333% !important;
  }
  .large-offset-21 {
    margin-left: 87.5% !important;
  }
  .large-offset-22 {
    margin-left: 91.6666666667% !important;
  }
  .large-offset-23 {
    margin-left: 95.8333333333% !important;
  }
  .large-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.large-centered,
  .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.large-uncentered,
  .columns.large-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.large-centered:last-child,
  .columns.large-centered:last-child {
    float: none;
  }
  .column.large-uncentered:last-child,
  .columns.large-uncentered:last-child {
    float: left;
  }
  .column.large-uncentered.opposite,
  .columns.large-uncentered.opposite {
    float: right;
  }
  .row.large-collapse > .column,
  .row.large-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.large-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.large-uncollapse > .column,
  .row.large-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .push-1 {
    position: relative;
    left: 4.1666666667%;
    right: auto;
  }
  .pull-1 {
    position: relative;
    right: 4.1666666667%;
    left: auto;
  }
  .push-2 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .pull-2 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .push-3 {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .pull-3 {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .push-4 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .pull-4 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .push-5 {
    position: relative;
    left: 20.8333333333%;
    right: auto;
  }
  .pull-5 {
    position: relative;
    right: 20.8333333333%;
    left: auto;
  }
  .push-6 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .pull-6 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .push-7 {
    position: relative;
    left: 29.1666666667%;
    right: auto;
  }
  .pull-7 {
    position: relative;
    right: 29.1666666667%;
    left: auto;
  }
  .push-8 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .pull-8 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .push-9 {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .pull-9 {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .push-10 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .pull-10 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .push-11 {
    position: relative;
    left: 45.8333333333%;
    right: auto;
  }
  .pull-11 {
    position: relative;
    right: 45.8333333333%;
    left: auto;
  }
  .push-12 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .pull-12 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .push-13 {
    position: relative;
    left: 54.1666666667%;
    right: auto;
  }
  .pull-13 {
    position: relative;
    right: 54.1666666667%;
    left: auto;
  }
  .push-14 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .pull-14 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .push-15 {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .pull-15 {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .push-16 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .pull-16 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .push-17 {
    position: relative;
    left: 70.8333333333%;
    right: auto;
  }
  .pull-17 {
    position: relative;
    right: 70.8333333333%;
    left: auto;
  }
  .push-18 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .pull-18 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .push-19 {
    position: relative;
    left: 79.1666666667%;
    right: auto;
  }
  .pull-19 {
    position: relative;
    right: 79.1666666667%;
    left: auto;
  }
  .push-20 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .pull-20 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .push-21 {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .pull-21 {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .push-22 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .pull-22 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .push-23 {
    position: relative;
    left: 95.8333333333%;
    right: auto;
  }
  .pull-23 {
    position: relative;
    right: 95.8333333333%;
    left: auto;
  }
}
@media only screen and (min-width: 1441px) {
  .xlarge-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .xlarge-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .xlarge-push-1 {
    position: relative;
    left: 4.1666666667%;
    right: auto;
  }
  .xlarge-pull-1 {
    position: relative;
    right: 4.1666666667%;
    left: auto;
  }
  .xlarge-push-2 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .xlarge-pull-2 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .xlarge-push-3 {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .xlarge-pull-3 {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .xlarge-push-4 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .xlarge-pull-4 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .xlarge-push-5 {
    position: relative;
    left: 20.8333333333%;
    right: auto;
  }
  .xlarge-pull-5 {
    position: relative;
    right: 20.8333333333%;
    left: auto;
  }
  .xlarge-push-6 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .xlarge-pull-6 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .xlarge-push-7 {
    position: relative;
    left: 29.1666666667%;
    right: auto;
  }
  .xlarge-pull-7 {
    position: relative;
    right: 29.1666666667%;
    left: auto;
  }
  .xlarge-push-8 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .xlarge-pull-8 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .xlarge-push-9 {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .xlarge-pull-9 {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .xlarge-push-10 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .xlarge-pull-10 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .xlarge-push-11 {
    position: relative;
    left: 45.8333333333%;
    right: auto;
  }
  .xlarge-pull-11 {
    position: relative;
    right: 45.8333333333%;
    left: auto;
  }
  .xlarge-push-12 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .xlarge-pull-12 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .xlarge-push-13 {
    position: relative;
    left: 54.1666666667%;
    right: auto;
  }
  .xlarge-pull-13 {
    position: relative;
    right: 54.1666666667%;
    left: auto;
  }
  .xlarge-push-14 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .xlarge-pull-14 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .xlarge-push-15 {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .xlarge-pull-15 {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .xlarge-push-16 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .xlarge-pull-16 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .xlarge-push-17 {
    position: relative;
    left: 70.8333333333%;
    right: auto;
  }
  .xlarge-pull-17 {
    position: relative;
    right: 70.8333333333%;
    left: auto;
  }
  .xlarge-push-18 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .xlarge-pull-18 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .xlarge-push-19 {
    position: relative;
    left: 79.1666666667%;
    right: auto;
  }
  .xlarge-pull-19 {
    position: relative;
    right: 79.1666666667%;
    left: auto;
  }
  .xlarge-push-20 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .xlarge-pull-20 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .xlarge-push-21 {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .xlarge-pull-21 {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .xlarge-push-22 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .xlarge-pull-22 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .xlarge-push-23 {
    position: relative;
    left: 95.8333333333%;
    right: auto;
  }
  .xlarge-pull-23 {
    position: relative;
    right: 95.8333333333%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .xlarge-1 {
    width: 4.1666666667%;
  }
  .xlarge-2 {
    width: 8.3333333333%;
  }
  .xlarge-3 {
    width: 12.5%;
  }
  .xlarge-4 {
    width: 16.6666666667%;
  }
  .xlarge-5 {
    width: 20.8333333333%;
  }
  .xlarge-6 {
    width: 25%;
  }
  .xlarge-7 {
    width: 29.1666666667%;
  }
  .xlarge-8 {
    width: 33.3333333333%;
  }
  .xlarge-9 {
    width: 37.5%;
  }
  .xlarge-10 {
    width: 41.6666666667%;
  }
  .xlarge-11 {
    width: 45.8333333333%;
  }
  .xlarge-12 {
    width: 50%;
  }
  .xlarge-13 {
    width: 54.1666666667%;
  }
  .xlarge-14 {
    width: 58.3333333333%;
  }
  .xlarge-15 {
    width: 62.5%;
  }
  .xlarge-16 {
    width: 66.6666666667%;
  }
  .xlarge-17 {
    width: 70.8333333333%;
  }
  .xlarge-18 {
    width: 75%;
  }
  .xlarge-19 {
    width: 79.1666666667%;
  }
  .xlarge-20 {
    width: 83.3333333333%;
  }
  .xlarge-21 {
    width: 87.5%;
  }
  .xlarge-22 {
    width: 91.6666666667%;
  }
  .xlarge-23 {
    width: 95.8333333333%;
  }
  .xlarge-24 {
    width: 100%;
  }
  .xlarge-offset-0 {
    margin-left: 0 !important;
  }
  .xlarge-offset-1 {
    margin-left: 4.1666666667% !important;
  }
  .xlarge-offset-2 {
    margin-left: 8.3333333333% !important;
  }
  .xlarge-offset-3 {
    margin-left: 12.5% !important;
  }
  .xlarge-offset-4 {
    margin-left: 16.6666666667% !important;
  }
  .xlarge-offset-5 {
    margin-left: 20.8333333333% !important;
  }
  .xlarge-offset-6 {
    margin-left: 25% !important;
  }
  .xlarge-offset-7 {
    margin-left: 29.1666666667% !important;
  }
  .xlarge-offset-8 {
    margin-left: 33.3333333333% !important;
  }
  .xlarge-offset-9 {
    margin-left: 37.5% !important;
  }
  .xlarge-offset-10 {
    margin-left: 41.6666666667% !important;
  }
  .xlarge-offset-11 {
    margin-left: 45.8333333333% !important;
  }
  .xlarge-offset-12 {
    margin-left: 50% !important;
  }
  .xlarge-offset-13 {
    margin-left: 54.1666666667% !important;
  }
  .xlarge-offset-14 {
    margin-left: 58.3333333333% !important;
  }
  .xlarge-offset-15 {
    margin-left: 62.5% !important;
  }
  .xlarge-offset-16 {
    margin-left: 66.6666666667% !important;
  }
  .xlarge-offset-17 {
    margin-left: 70.8333333333% !important;
  }
  .xlarge-offset-18 {
    margin-left: 75% !important;
  }
  .xlarge-offset-19 {
    margin-left: 79.1666666667% !important;
  }
  .xlarge-offset-20 {
    margin-left: 83.3333333333% !important;
  }
  .xlarge-offset-21 {
    margin-left: 87.5% !important;
  }
  .xlarge-offset-22 {
    margin-left: 91.6666666667% !important;
  }
  .xlarge-offset-23 {
    margin-left: 95.8333333333% !important;
  }
  .xlarge-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.xlarge-centered,
  .columns.xlarge-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.xlarge-uncentered,
  .columns.xlarge-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.xlarge-centered:last-child,
  .columns.xlarge-centered:last-child {
    float: none;
  }
  .column.xlarge-uncentered:last-child,
  .columns.xlarge-uncentered:last-child {
    float: left;
  }
  .column.xlarge-uncentered.opposite,
  .columns.xlarge-uncentered.opposite {
    float: right;
  }
  .row.xlarge-collapse > .column,
  .row.xlarge-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.xlarge-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.xlarge-uncollapse > .column,
  .row.xlarge-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
}
@media only screen and (min-width: 1921px) {
  .xxlarge-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .xxlarge-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .xxlarge-push-1 {
    position: relative;
    left: 4.1666666667%;
    right: auto;
  }
  .xxlarge-pull-1 {
    position: relative;
    right: 4.1666666667%;
    left: auto;
  }
  .xxlarge-push-2 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .xxlarge-pull-2 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .xxlarge-push-3 {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .xxlarge-pull-3 {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .xxlarge-push-4 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .xxlarge-pull-4 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .xxlarge-push-5 {
    position: relative;
    left: 20.8333333333%;
    right: auto;
  }
  .xxlarge-pull-5 {
    position: relative;
    right: 20.8333333333%;
    left: auto;
  }
  .xxlarge-push-6 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .xxlarge-pull-6 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .xxlarge-push-7 {
    position: relative;
    left: 29.1666666667%;
    right: auto;
  }
  .xxlarge-pull-7 {
    position: relative;
    right: 29.1666666667%;
    left: auto;
  }
  .xxlarge-push-8 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .xxlarge-pull-8 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .xxlarge-push-9 {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .xxlarge-pull-9 {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .xxlarge-push-10 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .xxlarge-pull-10 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .xxlarge-push-11 {
    position: relative;
    left: 45.8333333333%;
    right: auto;
  }
  .xxlarge-pull-11 {
    position: relative;
    right: 45.8333333333%;
    left: auto;
  }
  .xxlarge-push-12 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .xxlarge-pull-12 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .xxlarge-push-13 {
    position: relative;
    left: 54.1666666667%;
    right: auto;
  }
  .xxlarge-pull-13 {
    position: relative;
    right: 54.1666666667%;
    left: auto;
  }
  .xxlarge-push-14 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .xxlarge-pull-14 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .xxlarge-push-15 {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .xxlarge-pull-15 {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .xxlarge-push-16 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .xxlarge-pull-16 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .xxlarge-push-17 {
    position: relative;
    left: 70.8333333333%;
    right: auto;
  }
  .xxlarge-pull-17 {
    position: relative;
    right: 70.8333333333%;
    left: auto;
  }
  .xxlarge-push-18 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .xxlarge-pull-18 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .xxlarge-push-19 {
    position: relative;
    left: 79.1666666667%;
    right: auto;
  }
  .xxlarge-pull-19 {
    position: relative;
    right: 79.1666666667%;
    left: auto;
  }
  .xxlarge-push-20 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .xxlarge-pull-20 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .xxlarge-push-21 {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .xxlarge-pull-21 {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .xxlarge-push-22 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .xxlarge-pull-22 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .xxlarge-push-23 {
    position: relative;
    left: 95.8333333333%;
    right: auto;
  }
  .xxlarge-pull-23 {
    position: relative;
    right: 95.8333333333%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .xxlarge-1 {
    width: 4.1666666667%;
  }
  .xxlarge-2 {
    width: 8.3333333333%;
  }
  .xxlarge-3 {
    width: 12.5%;
  }
  .xxlarge-4 {
    width: 16.6666666667%;
  }
  .xxlarge-5 {
    width: 20.8333333333%;
  }
  .xxlarge-6 {
    width: 25%;
  }
  .xxlarge-7 {
    width: 29.1666666667%;
  }
  .xxlarge-8 {
    width: 33.3333333333%;
  }
  .xxlarge-9 {
    width: 37.5%;
  }
  .xxlarge-10 {
    width: 41.6666666667%;
  }
  .xxlarge-11 {
    width: 45.8333333333%;
  }
  .xxlarge-12 {
    width: 50%;
  }
  .xxlarge-13 {
    width: 54.1666666667%;
  }
  .xxlarge-14 {
    width: 58.3333333333%;
  }
  .xxlarge-15 {
    width: 62.5%;
  }
  .xxlarge-16 {
    width: 66.6666666667%;
  }
  .xxlarge-17 {
    width: 70.8333333333%;
  }
  .xxlarge-18 {
    width: 75%;
  }
  .xxlarge-19 {
    width: 79.1666666667%;
  }
  .xxlarge-20 {
    width: 83.3333333333%;
  }
  .xxlarge-21 {
    width: 87.5%;
  }
  .xxlarge-22 {
    width: 91.6666666667%;
  }
  .xxlarge-23 {
    width: 95.8333333333%;
  }
  .xxlarge-24 {
    width: 100%;
  }
  .xxlarge-offset-0 {
    margin-left: 0 !important;
  }
  .xxlarge-offset-1 {
    margin-left: 4.1666666667% !important;
  }
  .xxlarge-offset-2 {
    margin-left: 8.3333333333% !important;
  }
  .xxlarge-offset-3 {
    margin-left: 12.5% !important;
  }
  .xxlarge-offset-4 {
    margin-left: 16.6666666667% !important;
  }
  .xxlarge-offset-5 {
    margin-left: 20.8333333333% !important;
  }
  .xxlarge-offset-6 {
    margin-left: 25% !important;
  }
  .xxlarge-offset-7 {
    margin-left: 29.1666666667% !important;
  }
  .xxlarge-offset-8 {
    margin-left: 33.3333333333% !important;
  }
  .xxlarge-offset-9 {
    margin-left: 37.5% !important;
  }
  .xxlarge-offset-10 {
    margin-left: 41.6666666667% !important;
  }
  .xxlarge-offset-11 {
    margin-left: 45.8333333333% !important;
  }
  .xxlarge-offset-12 {
    margin-left: 50% !important;
  }
  .xxlarge-offset-13 {
    margin-left: 54.1666666667% !important;
  }
  .xxlarge-offset-14 {
    margin-left: 58.3333333333% !important;
  }
  .xxlarge-offset-15 {
    margin-left: 62.5% !important;
  }
  .xxlarge-offset-16 {
    margin-left: 66.6666666667% !important;
  }
  .xxlarge-offset-17 {
    margin-left: 70.8333333333% !important;
  }
  .xxlarge-offset-18 {
    margin-left: 75% !important;
  }
  .xxlarge-offset-19 {
    margin-left: 79.1666666667% !important;
  }
  .xxlarge-offset-20 {
    margin-left: 83.3333333333% !important;
  }
  .xxlarge-offset-21 {
    margin-left: 87.5% !important;
  }
  .xxlarge-offset-22 {
    margin-left: 91.6666666667% !important;
  }
  .xxlarge-offset-23 {
    margin-left: 95.8333333333% !important;
  }
  .xxlarge-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.xxlarge-centered,
  .columns.xxlarge-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.xxlarge-uncentered,
  .columns.xxlarge-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.xxlarge-centered:last-child,
  .columns.xxlarge-centered:last-child {
    float: none;
  }
  .column.xxlarge-uncentered:last-child,
  .columns.xxlarge-uncentered:last-child {
    float: left;
  }
  .column.xxlarge-uncentered.opposite,
  .columns.xxlarge-uncentered.opposite {
    float: right;
  }
  .row.xxlarge-collapse > .column,
  .row.xxlarge-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.xxlarge-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.xxlarge-uncollapse > .column,
  .row.xxlarge-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
}
.reveal-modal-bg {
  background: #000000;
  background: rgba(0, 0, 0, 0.45);
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1004;
  left: 0;
}

.reveal-modal {
  border-radius: 0.24rem;
  display: none;
  position: absolute;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 1005;
  left: 0;
}

@media only screen and (max-width: 640px) {
  .reveal-modal {
    min-height: 100vh;
  }
}
.reveal-modal .column, .reveal-modal .columns {
  min-width: 0;
}

.reveal-modal > :first-child {
  margin-top: 0;
}

.reveal-modal > :last-child {
  margin-bottom: 0;
}

@media only screen and (min-width: 641px) {
  .reveal-modal {
    left: 0;
    margin: 0 auto;
    max-width: 62.5rem;
    right: 0;
    width: 70%;
  }
}
.reveal-modal {
  background-color: #FFFFFF;
  padding: 1.875rem;
  border: solid 1px #666666;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

@media only screen and (min-width: 641px) {
  .reveal-modal {
    top: 6.25rem;
  }
}
.reveal-modal.radius {
  border-radius: 0.24rem;
}

.reveal-modal.round {
  border-radius: 1000px;
}

.reveal-modal.collapse {
  padding: 0;
}

@media only screen and (min-width: 641px) {
  .reveal-modal.tiny {
    left: 0;
    margin: 0 auto;
    max-width: 62.5rem;
    right: 0;
    width: 30%;
  }
}
@media only screen and (min-width: 641px) {
  .reveal-modal.small {
    left: 0;
    margin: 0 auto;
    max-width: 62.5rem;
    right: 0;
    width: 40%;
  }
}
@media only screen and (min-width: 641px) {
  .reveal-modal.medium {
    left: 0;
    margin: 0 auto;
    max-width: 62.5rem;
    right: 0;
    width: 60%;
  }
}
@media only screen and (min-width: 641px) {
  .reveal-modal.large {
    left: 0;
    margin: 0 auto;
    max-width: 62.5rem;
    right: 0;
    width: 70%;
  }
}
@media only screen and (min-width: 641px) {
  .reveal-modal.xlarge {
    left: 0;
    margin: 0 auto;
    max-width: 62.5rem;
    right: 0;
    width: 95%;
  }
}
@media only screen and (min-width: 641px) {
  .reveal-modal.full {
    left: 0;
    margin: 0 auto;
    max-width: 62.5rem;
    right: 0;
    width: 100%;
  }
}
.reveal-modal.full {
  height: 100vh;
  height: 100%;
  left: 0;
  margin-left: 0 !important;
  max-width: none !important;
  min-height: 100vh;
  top: 0;
}

.reveal-modal.toback {
  z-index: 1003;
}

.reveal-modal .close-reveal-modal {
  color: #AAAAAA;
  cursor: pointer;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 0.625rem;
  right: 1.375rem;
}

.range-slider {
  border: 1px solid #DDDDDD;
  margin: 1.25rem 0;
  position: relative;
  -ms-touch-action: none;
  touch-action: none;
  display: block;
  height: 1rem;
  width: 100%;
  background: #FAFAFA;
}

.range-slider.vertical-range {
  border: 1px solid #DDDDDD;
  margin: 1.25rem 0;
  position: relative;
  -ms-touch-action: none;
  touch-action: none;
  display: inline-block;
  height: 12.5rem;
  width: 1rem;
}

.range-slider.vertical-range .range-slider-handle {
  bottom: -10.5rem;
  margin-left: -0.5rem;
  margin-top: 0;
  position: absolute;
}

.range-slider.vertical-range .range-slider-active-segment {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  border-top-left-radius: initial;
  bottom: 0;
  height: auto;
  width: 0.875rem;
}

.range-slider.radius {
  background: #FAFAFA;
  border-radius: 0.24rem;
}

.range-slider.radius .range-slider-handle {
  background: #008CBA;
  border-radius: 0.24rem;
}

.range-slider.radius .range-slider-handle:hover {
  background: rgb(0, 123.2, 163.68);
}

.range-slider.round {
  background: #FAFAFA;
  border-radius: 1000px;
}

.range-slider.round .range-slider-handle {
  background: #008CBA;
  border-radius: 1000px;
}

.range-slider.round .range-slider-handle:hover {
  background: rgb(0, 123.2, 163.68);
}

.range-slider.disabled, .range-slider[disabled] {
  background: #FAFAFA;
  cursor: not-allowed;
  opacity: 0.7;
}

.range-slider.disabled .range-slider-handle, .range-slider[disabled] .range-slider-handle {
  background: #008CBA;
  cursor: default;
  opacity: 0.7;
}

.range-slider.disabled .range-slider-handle:hover, .range-slider[disabled] .range-slider-handle:hover {
  background: rgb(0, 123.2, 163.68);
}

.range-slider-active-segment {
  background: rgb(228.69, 228.69, 228.69);
  border-bottom-left-radius: inherit;
  border-top-left-radius: inherit;
  display: inline-block;
  height: 0.875rem;
  position: absolute;
}

.range-slider-handle {
  border: 1px solid none;
  cursor: pointer;
  display: inline-block;
  height: 1.375rem;
  position: absolute;
  top: -0.3125rem;
  width: 2rem;
  z-index: 1;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #008CBA;
}

.range-slider-handle:hover {
  background: rgb(0, 123.2, 163.68);
}

.tabs:before, .tabs:after {
  content: " ";
  display: table;
}

.tabs:after {
  clear: both;
}

.tabs {
  margin-bottom: 0 !important;
  margin-left: 0;
}

.tabs dd,
.tabs .tab-title {
  float: left;
  list-style: none;
  margin-bottom: 0 !important;
  position: relative;
}

.tabs dd > a,
.tabs .tab-title > a {
  display: block;
  background-color: #EFEFEF;
  color: #222222;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  padding: 1rem 2rem;
}

.tabs dd > a:hover,
.tabs .tab-title > a:hover {
  background-color: rgb(224.66, 224.66, 224.66);
}

.tabs dd.active a,
.tabs .tab-title.active a {
  background-color: #FFFFFF;
  color: #222222;
}

.tabs.radius dd:first-child a,
.tabs.radius .tab:first-child a {
  -webkit-border-bottom-left-radius: 0.24rem;
  -webkit-border-top-left-radius: 0.24rem;
  border-bottom-left-radius: 0.24rem;
  border-top-left-radius: 0.24rem;
}

.tabs.radius dd:last-child a,
.tabs.radius .tab:last-child a {
  -webkit-border-bottom-right-radius: 0.24rem;
  -webkit-border-top-right-radius: 0.24rem;
  border-bottom-right-radius: 0.24rem;
  border-top-right-radius: 0.24rem;
}

.tabs.vertical dd,
.tabs.vertical .tab-title {
  position: inherit;
  float: none;
  display: block;
  top: auto;
}

.tabs-content:before, .tabs-content:after {
  content: " ";
  display: table;
}

.tabs-content:after {
  clear: both;
}

.tabs-content {
  margin-bottom: 1.5rem;
  width: 100%;
}

.tabs-content > .content {
  display: none;
  float: left;
  padding: 0.9375rem 0;
  width: 100%;
}

.tabs-content > .content.active {
  display: block;
  float: none;
}

.tabs-content > .content.contained {
  padding: 0.9375rem;
}

.tabs-content.vertical {
  display: block;
}

.tabs-content.vertical > .content {
  padding: 0 0.9375rem;
}

@media only screen and (min-width: 641px) {
  .tabs.vertical {
    float: left;
    margin: 0;
    margin-bottom: 1.25rem !important;
    max-width: 20%;
    width: 20%;
  }
  .tabs-content.vertical {
    float: left;
    margin-left: -1px;
    max-width: 80%;
    padding-left: 1rem;
    width: 80%;
  }
}
.no-js .tabs-content > .content {
  display: block;
  float: none;
}

/* Tooltips */
.has-tip {
  border-bottom: false;
  color: false;
  cursor: help;
  font-weight: false;
}

.has-tip:hover, .has-tip:focus {
  border-bottom: false;
  color: false;
}

.has-tip.tip-left, .has-tip.tip-right {
  float: none !important;
}

.tooltip {
  background: #464a53;
  color: #FFFFFF;
  display: none;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.3;
  max-width: 300px;
  padding: 0.75rem;
  position: absolute;
  width: 100%;
  z-index: 1006;
  left: 50%;
}

.tooltip > .nub {
  border-color: transparent transparent #464a53 transparent;
  border: solid 0px;
  display: block;
  height: 0;
  pointer-events: none;
  position: absolute;
  top: 0px;
  width: 0;
  left: 0px;
}

.tooltip > .nub.rtl {
  left: auto;
  right: 0px;
}

.tooltip.radius {
  border-radius: 0.24rem;
}

.tooltip.round {
  border-radius: 1000px;
}

.tooltip.round > .nub {
  left: 2rem;
}

.tooltip.opened {
  border-bottom: false !important;
  color: false !important;
}

.tap-to-close {
  color: #777777;
  display: block;
  font-size: 0.625rem;
  font-weight: normal;
}

@media only screen and (min-width: 641px) {
  .tooltip > .nub {
    border-color: transparent transparent #464a53 transparent;
    top: 0px;
  }
  .tooltip.tip-top > .nub {
    border-color: #464a53 transparent transparent transparent;
    bottom: 0px;
    top: auto;
  }
  .tooltip.tip-left, .tooltip.tip-right {
    float: none !important;
  }
  .tooltip.tip-left > .nub {
    border-color: transparent transparent transparent #464a53;
    left: auto;
    margin-top: 0px;
    right: 0px;
    top: 50%;
  }
  .tooltip.tip-right > .nub {
    border-color: transparent #464a53 transparent transparent;
    left: 0px;
    margin-top: 0px;
    right: auto;
    top: 50%;
  }
}
button, .button {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  border-style: solid;
  border-width: 0;
  cursor: pointer;
  font-family: "Lato", sans-serif;
  font-weight: normal;
  line-height: normal;
  margin: 0 0 1.25rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  padding: 1rem 2rem 1.0625rem 2rem;
  font-size: 1rem;
  background-color: #008CBA;
  border-color: rgb(0, 112, 148.8);
}

button:hover, button:focus, .button:hover, .button:focus {
  background-color: rgb(0, 112, 148.8);
}

button, .button {
  color: #FFFFFF;
}

button:hover, button:focus, .button:hover, .button:focus {
  color: #FFFFFF;
}

button, .button {
  transition: background-color 300ms ease-out;
}

button.secondary, .button.secondary {
  background-color: #e7e7e7;
  border-color: rgb(184.8, 184.8, 184.8);
}

button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
  background-color: rgb(184.8, 184.8, 184.8);
}

button.secondary, .button.secondary {
  color: #333333;
}

button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
  color: #333333;
}

button.success, .button.success {
  background-color: #43AC6A;
  border-color: rgb(53.6, 137.6, 84.8);
}

button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
  background-color: rgb(53.6, 137.6, 84.8);
}

button.success, .button.success {
  color: #FFFFFF;
}

button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
  color: #FFFFFF;
}

button.alert, .button.alert {
  background-color: #f04124;
  border-color: rgb(206.6461538462, 41.5179487179, 14.1538461538);
}

button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  background-color: rgb(206.6461538462, 41.5179487179, 14.1538461538);
}

button.alert, .button.alert {
  color: #FFFFFF;
}

button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  color: #FFFFFF;
}

button.warning, .button.warning {
  background-color: #f08a24;
  border-color: rgb(206.6461538462, 110.4, 14.1538461538);
}

button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
  background-color: rgb(206.6461538462, 110.4, 14.1538461538);
}

button.warning, .button.warning {
  color: #FFFFFF;
}

button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
  color: #FFFFFF;
}

button.info, .button.info {
  background-color: #a0d3e8;
  border-color: rgb(96.8813559322, 181.7661016949, 216.7186440678);
}

button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
  background-color: rgb(96.8813559322, 181.7661016949, 216.7186440678);
}

button.info, .button.info {
  color: #333333;
}

button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
  color: #FFFFFF;
}

button.large, .button.large {
  padding: 1.125rem 2.25rem 1.1875rem 2.25rem;
  font-size: 1.25rem;
}

button.small, .button.small {
  padding: 0.875rem 1.75rem 0.9375rem 1.75rem;
  font-size: 0.8125rem;
}

button.tiny, .button.tiny {
  padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  font-size: 0.6875rem;
}

button.expand, .button.expand {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

button.left-align, .button.left-align {
  text-align: left;
  text-indent: 0.75rem;
}

button.right-align, .button.right-align {
  text-align: right;
  padding-right: 0.75rem;
}

button.radius, .button.radius {
  border-radius: 0.24rem;
}

button.round, .button.round {
  border-radius: 1000px;
}

button.disabled, button[disabled], .button.disabled, .button[disabled] {
  background-color: #008CBA;
  border-color: rgb(0, 112, 148.8);
}

button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  background-color: rgb(0, 112, 148.8);
}

button.disabled, button[disabled], .button.disabled, .button[disabled] {
  color: #FFFFFF;
}

button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  color: #FFFFFF;
}

button.disabled, button[disabled], .button.disabled, .button[disabled] {
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}

button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  background-color: #008CBA;
}

button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary {
  background-color: #e7e7e7;
  border-color: rgb(184.8, 184.8, 184.8);
}

button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  background-color: rgb(184.8, 184.8, 184.8);
}

button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary {
  color: #333333;
}

button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  color: #333333;
}

button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary {
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}

button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  background-color: #e7e7e7;
}

button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success {
  background-color: #43AC6A;
  border-color: rgb(53.6, 137.6, 84.8);
}

button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  background-color: rgb(53.6, 137.6, 84.8);
}

button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success {
  color: #FFFFFF;
}

button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  color: #FFFFFF;
}

button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success {
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}

button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  background-color: #43AC6A;
}

button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert {
  background-color: #f04124;
  border-color: rgb(206.6461538462, 41.5179487179, 14.1538461538);
}

button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  background-color: rgb(206.6461538462, 41.5179487179, 14.1538461538);
}

button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert {
  color: #FFFFFF;
}

button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  color: #FFFFFF;
}

button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert {
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}

button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  background-color: #f04124;
}

button.disabled.warning, button[disabled].warning, .button.disabled.warning, .button[disabled].warning {
  background-color: #f08a24;
  border-color: rgb(206.6461538462, 110.4, 14.1538461538);
}

button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  background-color: rgb(206.6461538462, 110.4, 14.1538461538);
}

button.disabled.warning, button[disabled].warning, .button.disabled.warning, .button[disabled].warning {
  color: #FFFFFF;
}

button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  color: #FFFFFF;
}

button.disabled.warning, button[disabled].warning, .button.disabled.warning, .button[disabled].warning {
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}

button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  background-color: #f08a24;
}

button.disabled.info, button[disabled].info, .button.disabled.info, .button[disabled].info {
  background-color: #a0d3e8;
  border-color: rgb(96.8813559322, 181.7661016949, 216.7186440678);
}

button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  background-color: rgb(96.8813559322, 181.7661016949, 216.7186440678);
}

button.disabled.info, button[disabled].info, .button.disabled.info, .button[disabled].info {
  color: #333333;
}

button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  color: #FFFFFF;
}

button.disabled.info, button[disabled].info, .button.disabled.info, .button[disabled].info {
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}

button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  background-color: #a0d3e8;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

@media only screen and (min-width: 641px) {
  button, .button {
    display: inline-block;
  }
}
/* Standard Forms */
form {
  margin: 0 0 1rem;
}

/* Using forms within rows, we need to set some defaults */
form .row .row {
  margin: 0 -0.5rem;
}

form .row .row .column,
form .row .row .columns {
  padding: 0 0.5rem;
}

form .row .row.collapse {
  margin: 0;
}

form .row .row.collapse .column,
form .row .row.collapse .columns {
  padding: 0;
}

form .row .row.collapse input {
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

form .row input.column,
form .row input.columns,
form .row textarea.column,
form .row textarea.columns {
  padding-left: 0.5rem;
}

/* Label Styles */
label {
  color: rgb(76.5, 76.5, 76.5);
  cursor: pointer;
  display: block;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 0;
}

label.right {
  float: none !important;
  text-align: right;
}

label.inline {
  margin: 0 0 1rem 0;
  padding: 0.5625rem 0;
}

label {
  /* Styles for required inputs */
}

label small {
  text-transform: capitalize;
  color: rgb(103.275, 103.275, 103.275);
}

/* Attach elements to the beginning or end of an input */
.prefix,
.postfix {
  border-style: solid;
  border-width: 1px;
  display: block;
  font-size: 0.875rem;
  height: 2.3125rem;
  line-height: 2.3125rem;
  overflow: visible;
  padding-bottom: 0;
  padding-top: 0;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 2;
}

/* Adjust padding, alignment and radius if pre/post element is a button */
.postfix.button {
  border-color: true;
}

.prefix.button {
  border: none;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-top: 0;
  text-align: center;
}

.prefix.button.radius {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 0.24rem;
  -webkit-border-top-left-radius: 0.24rem;
  border-bottom-left-radius: 0.24rem;
  border-top-left-radius: 0.24rem;
}

.postfix.button.radius {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 0.24rem;
  -webkit-border-top-right-radius: 0.24rem;
  border-bottom-right-radius: 0.24rem;
  border-top-right-radius: 0.24rem;
}

.prefix.button.round {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 1000px;
  -webkit-border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border-top-left-radius: 1000px;
}

.postfix.button.round {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 1000px;
  -webkit-border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px;
}

/* Separate prefix and postfix styles when on span or label so buttons keep their own */
span.prefix, label.prefix {
  background: rgb(242.25, 242.25, 242.25);
  border-right: none;
  color: #333333;
  border-color: #cccccc;
}

span.postfix, label.postfix {
  background: rgb(242.25, 242.25, 242.25);
  color: #333333;
  border-color: #cccccc;
}

/* We use this to get basic styling on all basic form elements */
input[type=text], input[type=password], input[type=date], input[type=datetime], input[type=datetime-local], input[type=month], input[type=week], input[type=email], input[type=number], input[type=search], input[type=tel], input[type=time], input[type=url], input[type=color], textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  background-color: #FFFFFF;
  border-style: solid;
  border-width: 1px;
  border-color: #cccccc;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75);
  display: block;
  font-family: inherit;
  font-size: 0.875rem;
  height: 2.3125rem;
  margin: 0 0 1rem 0;
  padding: 0.5rem;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

input[type=text]:focus, input[type=password]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=month]:focus, input[type=week]:focus, input[type=email]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=color]:focus, textarea:focus {
  background: rgb(249.9, 249.9, 249.9);
  border-color: #999999;
  outline: none;
}

input[type=text]:disabled, input[type=password]:disabled, input[type=date]:disabled, input[type=datetime]:disabled, input[type=datetime-local]:disabled, input[type=month]:disabled, input[type=week]:disabled, input[type=email]:disabled, input[type=number]:disabled, input[type=search]:disabled, input[type=tel]:disabled, input[type=time]:disabled, input[type=url]:disabled, input[type=color]:disabled, textarea:disabled {
  background-color: #DDDDDD;
  cursor: default;
}

input[type=text][disabled], input[type=text][readonly], fieldset[disabled] input[type=text], input[type=password][disabled], input[type=password][readonly], fieldset[disabled] input[type=password], input[type=date][disabled], input[type=date][readonly], fieldset[disabled] input[type=date], input[type=datetime][disabled], input[type=datetime][readonly], fieldset[disabled] input[type=datetime], input[type=datetime-local][disabled], input[type=datetime-local][readonly], fieldset[disabled] input[type=datetime-local], input[type=month][disabled], input[type=month][readonly], fieldset[disabled] input[type=month], input[type=week][disabled], input[type=week][readonly], fieldset[disabled] input[type=week], input[type=email][disabled], input[type=email][readonly], fieldset[disabled] input[type=email], input[type=number][disabled], input[type=number][readonly], fieldset[disabled] input[type=number], input[type=search][disabled], input[type=search][readonly], fieldset[disabled] input[type=search], input[type=tel][disabled], input[type=tel][readonly], fieldset[disabled] input[type=tel], input[type=time][disabled], input[type=time][readonly], fieldset[disabled] input[type=time], input[type=url][disabled], input[type=url][readonly], fieldset[disabled] input[type=url], input[type=color][disabled], input[type=color][readonly], fieldset[disabled] input[type=color], textarea[disabled], textarea[readonly], fieldset[disabled] textarea {
  background-color: #DDDDDD;
  cursor: default;
}

input[type=text], input[type=password], input[type=date], input[type=datetime], input[type=datetime-local], input[type=month], input[type=week], input[type=email], input[type=number], input[type=search], input[type=tel], input[type=time], input[type=url], input[type=color], textarea {
  -webkit-transition: border-color 0.15s linear, background 0.15s linear;
  -moz-transition: border-color 0.15s linear, background 0.15s linear;
  -ms-transition: border-color 0.15s linear, background 0.15s linear;
  -o-transition: border-color 0.15s linear, background 0.15s linear;
  transition: border-color 0.15s linear, background 0.15s linear;
}

input[type=text].radius, input[type=password].radius, input[type=date].radius, input[type=datetime].radius, input[type=datetime-local].radius, input[type=month].radius, input[type=week].radius, input[type=email].radius, input[type=number].radius, input[type=search].radius, input[type=tel].radius, input[type=time].radius, input[type=url].radius, input[type=color].radius, textarea.radius {
  border-radius: 0.24rem;
}

form .row .prefix-radius.row.collapse input,
form .row .prefix-radius.row.collapse textarea,
form .row .prefix-radius.row.collapse select,
form .row .prefix-radius.row.collapse button {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 0.24rem;
  -webkit-border-top-right-radius: 0.24rem;
  border-bottom-right-radius: 0.24rem;
  border-top-right-radius: 0.24rem;
}

form .row .prefix-radius.row.collapse .prefix {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 0.24rem;
  -webkit-border-top-left-radius: 0.24rem;
  border-bottom-left-radius: 0.24rem;
  border-top-left-radius: 0.24rem;
}

form .row .postfix-radius.row.collapse input,
form .row .postfix-radius.row.collapse textarea,
form .row .postfix-radius.row.collapse select,
form .row .postfix-radius.row.collapse button {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 0.24rem;
  -webkit-border-top-left-radius: 0.24rem;
  border-bottom-left-radius: 0.24rem;
  border-top-left-radius: 0.24rem;
}

form .row .postfix-radius.row.collapse .postfix {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 0.24rem;
  -webkit-border-top-right-radius: 0.24rem;
  border-bottom-right-radius: 0.24rem;
  border-top-right-radius: 0.24rem;
}

form .row .prefix-round.row.collapse input,
form .row .prefix-round.row.collapse textarea,
form .row .prefix-round.row.collapse select,
form .row .prefix-round.row.collapse button {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 1000px;
  -webkit-border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px;
}

form .row .prefix-round.row.collapse .prefix {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 1000px;
  -webkit-border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border-top-left-radius: 1000px;
}

form .row .postfix-round.row.collapse input,
form .row .postfix-round.row.collapse textarea,
form .row .postfix-round.row.collapse select,
form .row .postfix-round.row.collapse button {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 1000px;
  -webkit-border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border-top-left-radius: 1000px;
}

form .row .postfix-round.row.collapse .postfix {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 1000px;
  -webkit-border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px;
}

input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
}

/* Respect enforced amount of rows for textarea */
textarea[rows] {
  height: auto;
}

/* Not allow resize out of parent */
textarea {
  max-width: 100%;
}

::-webkit-input-placeholder {
  color: #cccccc;
}

:-moz-placeholder { /* Firefox 18- */
  color: #cccccc;
}

::-moz-placeholder { /* Firefox 19+ */
  color: #cccccc;
}

:-ms-input-placeholder {
  color: #cccccc;
}

/* Add height value for select elements to match text input height */
select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-color: #FAFAFA;
  border-radius: 0;
}

select::-ms-expand {
  display: none;
}

select {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+);
  background-position: 100% center;
  background-repeat: no-repeat;
  border-style: solid;
  border-width: 1px;
  border-color: #cccccc;
  color: rgba(0, 0, 0, 0.75);
  font-family: inherit;
  font-size: 0.875rem;
  line-height: normal;
  padding: 0.5rem;
  border-radius: 0;
}

select.radius {
  border-radius: 0.24rem;
}

select:hover {
  background-color: rgb(242.5, 242.5, 242.5);
  border-color: #999999;
}

select:disabled {
  background-color: #DDDDDD;
  cursor: default;
}

select {
  height: 2.3125rem;
}

select[multiple] {
  height: auto;
}

/* Adjust margin for form elements below */
input[type=file],
input[type=checkbox],
input[type=radio],
select {
  margin: 0 0 1rem 0;
}

input[type=checkbox] + label,
input[type=radio] + label {
  display: inline-block;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
  vertical-align: baseline;
}

/* Normalize file input width */
input[type=file] {
  width: 100%;
}

/* HTML5 Number spinners settings */
/* We add basic fieldset styling */
fieldset {
  border: 1px solid #DDDDDD;
  margin: 1.125rem 0;
  padding: 1.25rem;
}

fieldset legend {
  background: #FFFFFF;
  font-weight: bold;
  margin-left: -0.1875rem;
  margin: 0;
  padding: 0 0.1875rem;
}

/* Error Handling */
[data-abide] .error small.error, [data-abide] .error span.error, [data-abide] span.error, [data-abide] small.error {
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  font-weight: normal;
  margin-bottom: 1rem;
  margin-top: -1px;
  padding: 0.375rem 0.5625rem 0.5625rem;
  background: #f04124;
  color: #FFFFFF;
}

[data-abide] span.error, [data-abide] small.error {
  display: none;
}

span.error, small.error {
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  font-weight: normal;
  margin-bottom: 1rem;
  margin-top: -1px;
  padding: 0.375rem 0.5625rem 0.5625rem;
  background: #f04124;
  color: #FFFFFF;
}

.error input,
.error textarea,
.error select {
  margin-bottom: 0;
}

.error input[type=checkbox],
.error input[type=radio] {
  margin-bottom: 1rem;
}

.error label,
.error label.error {
  color: #f04124;
}

.error small.error {
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  font-weight: normal;
  margin-bottom: 1rem;
  margin-top: -1px;
  padding: 0.375rem 0.5625rem 0.5625rem;
  background: #f04124;
  color: #FFFFFF;
}

.error > label > small {
  background: transparent;
  color: rgb(103.275, 103.275, 103.275);
  display: inline;
  font-size: 60%;
  font-style: normal;
  margin: 0;
  padding: 0;
  text-transform: capitalize;
}

.error span.error-message {
  display: block;
}

input.error,
textarea.error,
select.error {
  margin-bottom: 0;
}

label.error {
  color: #f04124;
}

meta.foundation-mq-topbar {
  font-family: "/only screen and (min-width:0)/";
  width: 0, 981px;
}

/* Wrapped around .top-bar to contain to grid width */
.contain-to-grid {
  width: 100%;
  background: #333333;
}

.contain-to-grid .top-bar {
  margin-bottom: 0;
}

.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  left: 0;
}

.fixed.expanded:not(.top-bar) {
  height: auto;
  max-height: 100%;
  overflow-y: auto;
  width: 100%;
}

.fixed.expanded:not(.top-bar) .title-area {
  position: fixed;
  width: 100%;
  z-index: 99;
}

.fixed.expanded:not(.top-bar) .top-bar-section {
  margin-top: 2.8125rem;
  z-index: 98;
}

.top-bar {
  background: #333333;
  height: 2.8125rem;
  line-height: 2.8125rem;
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
}

.top-bar ul {
  list-style: none;
  margin-bottom: 0;
}

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

.top-bar form,
.top-bar input,
.top-bar select {
  margin-bottom: 0;
}

.top-bar input,
.top-bar select {
  font-size: 0.75rem;
  height: 1.75rem;
  padding-bottom: 0.35rem;
  padding-top: 0.35rem;
}

.top-bar .button, .top-bar button {
  font-size: 0.75rem;
  margin-bottom: 0;
  padding-bottom: 0.4125rem;
  padding-top: 0.4125rem;
}

@media only screen and (max-width: 640px) {
  .top-bar .button, .top-bar button {
    position: relative;
    top: -1px;
  }
}
.top-bar .title-area {
  margin: 0;
  position: relative;
}

.top-bar .name {
  font-size: 16px;
  height: 2.8125rem;
  margin: 0;
}

.top-bar .name h1, .top-bar .name h2, .top-bar .name h3, .top-bar .name h4, .top-bar .name p, .top-bar .name span {
  font-size: 1.0625rem;
  line-height: 2.8125rem;
  margin: 0;
}

.top-bar .name h1 a, .top-bar .name h2 a, .top-bar .name h3 a, .top-bar .name h4 a, .top-bar .name p a, .top-bar .name span a {
  color: #FFFFFF;
  display: block;
  font-weight: normal;
  padding: 0 0.9375rem;
  width: 75%;
}

.top-bar .toggle-topbar {
  position: absolute;
  right: 0;
  top: 0;
}

.top-bar .toggle-topbar a {
  color: #FFFFFF;
  display: block;
  font-size: 0.8125rem;
  font-weight: bold;
  height: 2.8125rem;
  line-height: 2.8125rem;
  padding: 0 0.9375rem;
  position: relative;
  text-transform: uppercase;
}

.top-bar .toggle-topbar.menu-icon {
  margin-top: -16px;
  top: 50%;
}

.top-bar .toggle-topbar.menu-icon a span::after {
  content: "";
  display: block;
  height: 0;
  position: absolute;
  margin-top: -8px;
  top: 50%;
  right: 0.9375rem;
  box-shadow: 0 0 0 1px #FFFFFF, 0 7px 0 1px #FFFFFF, 0 14px 0 1px #FFFFFF;
  width: 16px;
}

.top-bar .toggle-topbar.menu-icon a span:hover:after {
  box-shadow: 0 0 0 1px "", 0 7px 0 1px "", 0 14px 0 1px "";
}

.top-bar .toggle-topbar.menu-icon a {
  color: #FFFFFF;
  height: 34px;
  line-height: 33px;
  padding: 0 2.5rem 0 0.9375rem;
  position: relative;
}

.top-bar.expanded {
  background: transparent;
  height: auto;
}

.top-bar.expanded .title-area {
  background: #333333;
}

.top-bar.expanded .toggle-topbar a {
  color: #888888;
}

.top-bar.expanded .toggle-topbar a span::after {
  box-shadow: 0 0 0 1px #888888, 0 7px 0 1px #888888, 0 14px 0 1px #888888;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .top-bar.expanded .top-bar-section .has-dropdown.moved > .dropdown,
  .top-bar.expanded .top-bar-section .dropdown {
    clip: initial;
  }
  .top-bar.expanded .top-bar-section .has-dropdown:not(.moved) > ul {
    padding: 0;
  }
}
.top-bar-section {
  left: 0;
  position: relative;
  width: auto;
  transition: left 300ms ease-out;
}

.top-bar-section ul {
  display: block;
  font-size: 16px;
  height: auto;
  margin: 0;
  padding: 0;
  width: 100%;
}

.top-bar-section .divider,
.top-bar-section [role=separator] {
  border-top: solid 1px rgb(25.5, 25.5, 25.5);
  clear: both;
  height: 1px;
  width: 100%;
}

.top-bar-section ul li {
  background: #333333;
}

.top-bar-section ul li > a {
  color: #FFFFFF;
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 0.8125rem;
  font-weight: normal;
  padding-left: 0.9375rem;
  padding: 12px 0 12px 0.9375rem;
  text-transform: none;
  width: 100%;
}

.top-bar-section ul li > a.button {
  font-size: 0.8125rem;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  background-color: #008CBA;
  border-color: rgb(0, 112, 148.8);
}

.top-bar-section ul li > a.button:hover, .top-bar-section ul li > a.button:focus {
  background-color: rgb(0, 112, 148.8);
}

.top-bar-section ul li > a.button {
  color: #FFFFFF;
}

.top-bar-section ul li > a.button:hover, .top-bar-section ul li > a.button:focus {
  color: #FFFFFF;
}

.top-bar-section ul li > a.button.secondary {
  background-color: #e7e7e7;
  border-color: rgb(184.8, 184.8, 184.8);
}

.top-bar-section ul li > a.button.secondary:hover, .top-bar-section ul li > a.button.secondary:focus {
  background-color: rgb(184.8, 184.8, 184.8);
}

.top-bar-section ul li > a.button.secondary {
  color: #333333;
}

.top-bar-section ul li > a.button.secondary:hover, .top-bar-section ul li > a.button.secondary:focus {
  color: #333333;
}

.top-bar-section ul li > a.button.success {
  background-color: #43AC6A;
  border-color: rgb(53.6, 137.6, 84.8);
}

.top-bar-section ul li > a.button.success:hover, .top-bar-section ul li > a.button.success:focus {
  background-color: rgb(53.6, 137.6, 84.8);
}

.top-bar-section ul li > a.button.success {
  color: #FFFFFF;
}

.top-bar-section ul li > a.button.success:hover, .top-bar-section ul li > a.button.success:focus {
  color: #FFFFFF;
}

.top-bar-section ul li > a.button.alert {
  background-color: #f04124;
  border-color: rgb(206.6461538462, 41.5179487179, 14.1538461538);
}

.top-bar-section ul li > a.button.alert:hover, .top-bar-section ul li > a.button.alert:focus {
  background-color: rgb(206.6461538462, 41.5179487179, 14.1538461538);
}

.top-bar-section ul li > a.button.alert {
  color: #FFFFFF;
}

.top-bar-section ul li > a.button.alert:hover, .top-bar-section ul li > a.button.alert:focus {
  color: #FFFFFF;
}

.top-bar-section ul li > a.button.warning {
  background-color: #f08a24;
  border-color: rgb(206.6461538462, 110.4, 14.1538461538);
}

.top-bar-section ul li > a.button.warning:hover, .top-bar-section ul li > a.button.warning:focus {
  background-color: rgb(206.6461538462, 110.4, 14.1538461538);
}

.top-bar-section ul li > a.button.warning {
  color: #FFFFFF;
}

.top-bar-section ul li > a.button.warning:hover, .top-bar-section ul li > a.button.warning:focus {
  color: #FFFFFF;
}

.top-bar-section ul li > a.button.info {
  background-color: #a0d3e8;
  border-color: rgb(96.8813559322, 181.7661016949, 216.7186440678);
}

.top-bar-section ul li > a.button.info:hover, .top-bar-section ul li > a.button.info:focus {
  background-color: rgb(96.8813559322, 181.7661016949, 216.7186440678);
}

.top-bar-section ul li > a.button.info {
  color: #333333;
}

.top-bar-section ul li > a.button.info:hover, .top-bar-section ul li > a.button.info:focus {
  color: #FFFFFF;
}

.top-bar-section ul li > button {
  font-size: 0.8125rem;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  background-color: #008CBA;
  border-color: rgb(0, 112, 148.8);
}

.top-bar-section ul li > button:hover, .top-bar-section ul li > button:focus {
  background-color: rgb(0, 112, 148.8);
}

.top-bar-section ul li > button {
  color: #FFFFFF;
}

.top-bar-section ul li > button:hover, .top-bar-section ul li > button:focus {
  color: #FFFFFF;
}

.top-bar-section ul li > button.secondary {
  background-color: #e7e7e7;
  border-color: rgb(184.8, 184.8, 184.8);
}

.top-bar-section ul li > button.secondary:hover, .top-bar-section ul li > button.secondary:focus {
  background-color: rgb(184.8, 184.8, 184.8);
}

.top-bar-section ul li > button.secondary {
  color: #333333;
}

.top-bar-section ul li > button.secondary:hover, .top-bar-section ul li > button.secondary:focus {
  color: #333333;
}

.top-bar-section ul li > button.success {
  background-color: #43AC6A;
  border-color: rgb(53.6, 137.6, 84.8);
}

.top-bar-section ul li > button.success:hover, .top-bar-section ul li > button.success:focus {
  background-color: rgb(53.6, 137.6, 84.8);
}

.top-bar-section ul li > button.success {
  color: #FFFFFF;
}

.top-bar-section ul li > button.success:hover, .top-bar-section ul li > button.success:focus {
  color: #FFFFFF;
}

.top-bar-section ul li > button.alert {
  background-color: #f04124;
  border-color: rgb(206.6461538462, 41.5179487179, 14.1538461538);
}

.top-bar-section ul li > button.alert:hover, .top-bar-section ul li > button.alert:focus {
  background-color: rgb(206.6461538462, 41.5179487179, 14.1538461538);
}

.top-bar-section ul li > button.alert {
  color: #FFFFFF;
}

.top-bar-section ul li > button.alert:hover, .top-bar-section ul li > button.alert:focus {
  color: #FFFFFF;
}

.top-bar-section ul li > button.warning {
  background-color: #f08a24;
  border-color: rgb(206.6461538462, 110.4, 14.1538461538);
}

.top-bar-section ul li > button.warning:hover, .top-bar-section ul li > button.warning:focus {
  background-color: rgb(206.6461538462, 110.4, 14.1538461538);
}

.top-bar-section ul li > button.warning {
  color: #FFFFFF;
}

.top-bar-section ul li > button.warning:hover, .top-bar-section ul li > button.warning:focus {
  color: #FFFFFF;
}

.top-bar-section ul li > button.info {
  background-color: #a0d3e8;
  border-color: rgb(96.8813559322, 181.7661016949, 216.7186440678);
}

.top-bar-section ul li > button.info:hover, .top-bar-section ul li > button.info:focus {
  background-color: rgb(96.8813559322, 181.7661016949, 216.7186440678);
}

.top-bar-section ul li > button.info {
  color: #333333;
}

.top-bar-section ul li > button.info:hover, .top-bar-section ul li > button.info:focus {
  color: #FFFFFF;
}

.top-bar-section ul li:hover:not(.has-form) > a {
  background-color: #555555;
  color: #FFFFFF;
  background: #222222;
}

.top-bar-section ul li.active > a {
  background: #008CBA;
  color: #FFFFFF;
}

.top-bar-section ul li.active > a:hover {
  background: rgb(0, 120.4, 159.96);
  color: #FFFFFF;
}

.top-bar-section .has-form {
  padding: 0.9375rem;
}

.top-bar-section .has-dropdown {
  position: relative;
}

.top-bar-section .has-dropdown > a:after {
  border: inset 5px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.4);
  border-left-style: solid;
  margin-right: 0.9375rem;
  margin-top: -4.5px;
  position: absolute;
  top: 50%;
  right: 0;
}

.top-bar-section .has-dropdown.moved {
  position: static;
}

.top-bar-section .has-dropdown.moved > .dropdown {
  position: static !important;
  height: auto;
  width: auto;
  overflow: visible;
  clip: auto;
  display: block;
  position: absolute !important;
  width: 100%;
}

.top-bar-section .has-dropdown.moved > a:after {
  display: none;
}

.top-bar-section .dropdown {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  display: block;
  padding: 0;
  position: absolute;
  top: 0;
  z-index: 99;
  left: 100%;
}

.top-bar-section .dropdown li {
  height: auto;
  width: 100%;
}

.top-bar-section .dropdown li a {
  font-weight: normal;
  padding: 8px 0.9375rem;
}

.top-bar-section .dropdown li a.parent-link {
  font-weight: normal;
}

.top-bar-section .dropdown li.title h5, .top-bar-section .dropdown li.parent-link {
  margin-bottom: 0;
  margin-top: 0;
  font-size: 1.125rem;
}

.top-bar-section .dropdown li.title h5 a, .top-bar-section .dropdown li.parent-link a {
  color: #FFFFFF;
  display: block;
}

.top-bar-section .dropdown li.title h5 a:hover, .top-bar-section .dropdown li.parent-link a:hover {
  background: none;
}

.top-bar-section .dropdown li.has-form {
  padding: 8px 0.9375rem;
}

.top-bar-section .dropdown li .button,
.top-bar-section .dropdown li button {
  top: auto;
}

.top-bar-section .dropdown label {
  color: #777777;
  font-size: 0.625rem;
  font-weight: bold;
  margin-bottom: 0;
  padding: 8px 0.9375rem 2px;
  text-transform: uppercase;
}

.js-generated {
  display: block;
}

@media only screen and (min-width: 0) {
  .top-bar:before, .top-bar:after {
    content: " ";
    display: table;
  }
  .top-bar:after {
    clear: both;
  }
  .top-bar {
    background: #333333;
    overflow: visible;
  }
  .top-bar .toggle-topbar {
    display: none;
  }
  .top-bar .title-area {
    float: left;
  }
  .top-bar .name h1 a,
  .top-bar .name h2 a,
  .top-bar .name h3 a,
  .top-bar .name h4 a,
  .top-bar .name h5 a,
  .top-bar .name h6 a {
    width: auto;
  }
  .top-bar input,
  .top-bar select,
  .top-bar .button,
  .top-bar button {
    font-size: 0.875rem;
    height: 1.75rem;
    position: relative;
    top: 0.53125rem;
  }
  .top-bar.expanded {
    background: #333333;
  }
  .contain-to-grid .top-bar {
    margin-bottom: 0;
    margin: 0 auto;
    max-width: 62.5rem;
  }
  .top-bar-section {
    transition: none 0 0;
    left: 0 !important;
  }
  .top-bar-section ul {
    display: inline;
    height: auto !important;
    width: auto;
  }
  .top-bar-section ul li {
    float: left;
  }
  .top-bar-section ul li .js-generated {
    display: none;
  }
  .top-bar-section li.hover > a:not(.button) {
    background-color: #555555;
    background: #222222;
    color: #FFFFFF;
  }
  .top-bar-section li:not(.has-form) a:not(.button) {
    background: #333333;
    line-height: 2.8125rem;
    padding: 0 0.9375rem;
  }
  .top-bar-section li:not(.has-form) a:not(.button):hover {
    background-color: #555555;
    background: #222222;
  }
  .top-bar-section li.active:not(.has-form) a:not(.button) {
    background: #008CBA;
    color: #FFFFFF;
    line-height: 2.8125rem;
    padding: 0 0.9375rem;
  }
  .top-bar-section li.active:not(.has-form) a:not(.button):hover {
    background: rgb(0, 120.4, 159.96);
    color: #FFFFFF;
  }
  .top-bar-section .has-dropdown > a {
    padding-right: 2.1875rem !important;
  }
  .top-bar-section .has-dropdown > a:after {
    border: inset 5px;
    content: "";
    display: block;
    height: 0;
    width: 0;
    border-color: rgba(255, 255, 255, 0.4) transparent transparent transparent;
    border-top-style: solid;
    margin-top: -2.5px;
    top: 1.40625rem;
  }
  .top-bar-section .has-dropdown.moved {
    position: relative;
  }
  .top-bar-section .has-dropdown.moved > .dropdown {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    display: block;
  }
  .top-bar-section .has-dropdown.hover > .dropdown, .top-bar-section .has-dropdown.not-click:hover > .dropdown {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
    display: block;
    position: absolute !important;
  }
  .top-bar-section .has-dropdown > a:focus + .dropdown {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
    display: block;
    position: absolute !important;
  }
  .top-bar-section .has-dropdown .dropdown li.has-dropdown > a:after {
    border: none;
    content: "»";
    top: 0.1875rem;
    right: 5px;
  }
  .top-bar-section .dropdown {
    left: 0;
    background: transparent;
    min-width: 100%;
    top: auto;
  }
  .top-bar-section .dropdown li a {
    background: #333333;
    color: #FFFFFF;
    line-height: 2.8125rem;
    padding: 12px 0.9375rem;
    white-space: nowrap;
  }
  .top-bar-section .dropdown li:not(.has-form):not(.active) > a:not(.button) {
    background: #333333;
    color: #FFFFFF;
  }
  .top-bar-section .dropdown li:not(.has-form):not(.active):hover > a:not(.button) {
    background-color: #555555;
    color: #FFFFFF;
    background: #222222;
  }
  .top-bar-section .dropdown li label {
    background: #333333;
    white-space: nowrap;
  }
  .top-bar-section .dropdown li .dropdown {
    left: 100%;
    top: 0;
  }
  .top-bar-section > ul > .divider,
  .top-bar-section > ul > [role=separator] {
    border-right: solid 1px rgb(77.52, 77.52, 77.52);
    border-bottom: none;
    border-top: none;
    clear: none;
    height: 2.8125rem;
    width: 0;
  }
  .top-bar-section .has-form {
    background: #333333;
    height: 2.8125rem;
    padding: 0 0.9375rem;
  }
  .top-bar-section .right li .dropdown {
    left: auto;
    right: 0;
  }
  .top-bar-section .right li .dropdown li .dropdown {
    right: 100%;
  }
  .top-bar-section .left li .dropdown {
    right: auto;
    left: 0;
  }
  .top-bar-section .left li .dropdown li .dropdown {
    left: 100%;
  }
  .no-js .top-bar-section ul li:hover > a {
    background-color: #555555;
    background: #222222;
    color: #FFFFFF;
  }
  .no-js .top-bar-section ul li:active > a {
    background: #008CBA;
    color: #FFFFFF;
  }
  .no-js .top-bar-section .has-dropdown:hover > .dropdown {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
    display: block;
    position: absolute !important;
  }
  .no-js .top-bar-section .has-dropdown > a:focus + .dropdown {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
    display: block;
    position: absolute !important;
  }
}
/* small displays */
@media only screen {
  .show-for-small-only, .show-for-small-up, .show-for-small, .show-for-small-down, .hide-for-medium-only, .hide-for-medium-up, .hide-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important;
  }
  .hide-for-small-only, .hide-for-small-up, .hide-for-small, .hide-for-small-down, .show-for-medium-only, .show-for-medium-up, .show-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important;
  }
  .visible-for-small-only, .visible-for-small-up, .visible-for-small, .visible-for-small-down, .hidden-for-medium-only, .hidden-for-medium-up, .hidden-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .hidden-for-small-only, .hidden-for-small-up, .hidden-for-small, .hidden-for-small-down, .visible-for-medium-only, .visible-for-medium-up, .visible-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
  table.show-for-small-only, table.show-for-small-up, table.show-for-small, table.show-for-small-down, table.hide-for-medium-only, table.hide-for-medium-up, table.hide-for-medium, table.show-for-medium-down, table.hide-for-large-only, table.hide-for-large-up, table.hide-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important;
  }
  thead.show-for-small-only, thead.show-for-small-up, thead.show-for-small, thead.show-for-small-down, thead.hide-for-medium-only, thead.hide-for-medium-up, thead.hide-for-medium, thead.show-for-medium-down, thead.hide-for-large-only, thead.hide-for-large-up, thead.hide-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }
  tbody.show-for-small-only, tbody.show-for-small-up, tbody.show-for-small, tbody.show-for-small-down, tbody.hide-for-medium-only, tbody.hide-for-medium-up, tbody.hide-for-medium, tbody.show-for-medium-down, tbody.hide-for-large-only, tbody.hide-for-large-up, tbody.hide-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }
  tr.show-for-small-only, tr.show-for-small-up, tr.show-for-small, tr.show-for-small-down, tr.hide-for-medium-only, tr.hide-for-medium-up, tr.hide-for-medium, tr.show-for-medium-down, tr.hide-for-large-only, tr.hide-for-large-up, tr.hide-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row;
  }
  th.show-for-small-only, td.show-for-small-only, th.show-for-small-up, td.show-for-small-up, th.show-for-small, td.show-for-small, th.show-for-small-down, td.show-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.hide-for-medium-up, td.hide-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.show-for-medium-down, td.show-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.hide-for-large-up, td.hide-for-large-up, th.hide-for-large, td.hide-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important;
  }
}
/* medium displays */
@media only screen and (min-width: 641px) {
  .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .show-for-medium-only, .show-for-medium-up, .show-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important;
  }
  .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .hide-for-medium-only, .hide-for-medium-up, .hide-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important;
  }
  .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .visible-for-medium-only, .visible-for-medium-up, .visible-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .hidden-for-medium-only, .hidden-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
  table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.show-for-medium-only, table.show-for-medium-up, table.show-for-medium, table.show-for-medium-down, table.hide-for-large-only, table.hide-for-large-up, table.hide-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important;
  }
  thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.show-for-medium-only, thead.show-for-medium-up, thead.show-for-medium, thead.show-for-medium-down, thead.hide-for-large-only, thead.hide-for-large-up, thead.hide-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }
  tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.show-for-medium-only, tbody.show-for-medium-up, tbody.show-for-medium, tbody.show-for-medium-down, tbody.hide-for-large-only, tbody.hide-for-large-up, tbody.hide-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }
  tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.show-for-medium-only, tr.show-for-medium-up, tr.show-for-medium, tr.show-for-medium-down, tr.hide-for-large-only, tr.hide-for-large-up, tr.hide-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row;
  }
  th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.show-for-medium-only, td.show-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.show-for-medium, td.show-for-medium, th.show-for-medium-down, td.show-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.hide-for-large-up, td.hide-for-large-up, th.hide-for-large, td.hide-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important;
  }
}
/* large displays */
@media only screen and (min-width: 1025px) {
  .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important;
  }
  .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important;
  }
  .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
  table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.show-for-large-only, table.show-for-large-up, table.show-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important;
  }
  thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.show-for-large-only, thead.show-for-large-up, thead.show-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }
  tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.show-for-large-only, tbody.show-for-large-up, tbody.show-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }
  tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.show-for-large-only, tr.show-for-large-up, tr.show-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row;
  }
  th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.show-for-large-only, td.show-for-large-only, th.show-for-large-up, td.show-for-large-up, th.show-for-large, td.show-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important;
  }
}
/* xlarge displays */
@media only screen and (min-width: 1441px) {
  .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .hide-for-large-only, .show-for-large-up, .hide-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important;
  }
  .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .show-for-large-only, .hide-for-large-up, .show-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important;
  }
  .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .hidden-for-large-only, .visible-for-large-up, .hidden-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .visible-for-large-only, .hidden-for-large-up, .visible-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
  table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.hide-for-large-only, table.show-for-large-up, table.hide-for-large, table.hide-for-large-down, table.show-for-xlarge-only, table.show-for-xlarge-up, table.show-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important;
  }
  thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.hide-for-large-only, thead.show-for-large-up, thead.hide-for-large, thead.hide-for-large-down, thead.show-for-xlarge-only, thead.show-for-xlarge-up, thead.show-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }
  tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.hide-for-large-only, tbody.show-for-large-up, tbody.hide-for-large, tbody.hide-for-large-down, tbody.show-for-xlarge-only, tbody.show-for-xlarge-up, tbody.show-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }
  tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.hide-for-large-only, tr.show-for-large-up, tr.hide-for-large, tr.hide-for-large-down, tr.show-for-xlarge-only, tr.show-for-xlarge-up, tr.show-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row;
  }
  th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.show-for-large-up, td.show-for-large-up, th.hide-for-large, td.hide-for-large, th.hide-for-large-down, td.hide-for-large-down, th.show-for-xlarge-only, td.show-for-xlarge-only, th.show-for-xlarge-up, td.show-for-xlarge-up, th.show-for-xlarge, td.show-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important;
  }
}
/* xxlarge displays */
@media only screen and (min-width: 1921px) {
  .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .hide-for-large-only, .show-for-large-up, .hide-for-large, .hide-for-large-down, .hide-for-xlarge-only, .show-for-xlarge-up, .hide-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important;
  }
  .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .show-for-large-only, .hide-for-large-up, .show-for-large, .show-for-large-down, .show-for-xlarge-only, .hide-for-xlarge-up, .show-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important;
  }
  .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .hidden-for-large-only, .visible-for-large-up, .hidden-for-large, .hidden-for-large-down, .hidden-for-xlarge-only, .visible-for-xlarge-up, .hidden-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .visible-for-large-only, .hidden-for-large-up, .visible-for-large, .visible-for-large-down, .visible-for-xlarge-only, .hidden-for-xlarge-up, .visible-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
  table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.hide-for-large-only, table.show-for-large-up, table.hide-for-large, table.hide-for-large-down, table.hide-for-xlarge-only, table.show-for-xlarge-up, table.hide-for-xlarge, table.hide-for-xlarge-down, table.show-for-xxlarge-only, table.show-for-xxlarge-up, table.show-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important;
  }
  thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.hide-for-large-only, thead.show-for-large-up, thead.hide-for-large, thead.hide-for-large-down, thead.hide-for-xlarge-only, thead.show-for-xlarge-up, thead.hide-for-xlarge, thead.hide-for-xlarge-down, thead.show-for-xxlarge-only, thead.show-for-xxlarge-up, thead.show-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }
  tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.hide-for-large-only, tbody.show-for-large-up, tbody.hide-for-large, tbody.hide-for-large-down, tbody.hide-for-xlarge-only, tbody.show-for-xlarge-up, tbody.hide-for-xlarge, tbody.hide-for-xlarge-down, tbody.show-for-xxlarge-only, tbody.show-for-xxlarge-up, tbody.show-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }
  tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.hide-for-large-only, tr.show-for-large-up, tr.hide-for-large, tr.hide-for-large-down, tr.hide-for-xlarge-only, tr.show-for-xlarge-up, tr.hide-for-xlarge, tr.hide-for-xlarge-down, tr.show-for-xxlarge-only, tr.show-for-xxlarge-up, tr.show-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row;
  }
  th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.show-for-large-up, td.show-for-large-up, th.hide-for-large, td.hide-for-large, th.hide-for-large-down, td.hide-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.show-for-xlarge-up, td.show-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.hide-for-xlarge-down, td.hide-for-xlarge-down, th.show-for-xxlarge-only, td.show-for-xxlarge-only, th.show-for-xxlarge-up, td.show-for-xxlarge-up, th.show-for-xxlarge, td.show-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important;
  }
}
/* Orientation targeting */
.show-for-landscape,
.hide-for-portrait {
  display: inherit !important;
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}

/* Specific visibility for tables */
table.hide-for-landscape, table.show-for-portrait {
  display: table !important;
}

thead.hide-for-landscape, thead.show-for-portrait {
  display: table-header-group !important;
}

tbody.hide-for-landscape, tbody.show-for-portrait {
  display: table-row-group !important;
}

tr.hide-for-landscape, tr.show-for-portrait {
  display: table-row !important;
}

td.hide-for-landscape, td.show-for-portrait,
th.hide-for-landscape,
th.show-for-portrait {
  display: table-cell !important;
}

@media only screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: inherit !important;
  }
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
  /* Specific visibility for tables */
  table.show-for-landscape, table.hide-for-portrait {
    display: table !important;
  }
  thead.show-for-landscape, thead.hide-for-portrait {
    display: table-header-group !important;
  }
  tbody.show-for-landscape, tbody.hide-for-portrait {
    display: table-row-group !important;
  }
  tr.show-for-landscape, tr.hide-for-portrait {
    display: table-row !important;
  }
  td.show-for-landscape, td.hide-for-portrait,
  th.show-for-landscape,
  th.hide-for-portrait {
    display: table-cell !important;
  }
}
@media only screen and (orientation: portrait) {
  .show-for-portrait,
  .hide-for-landscape {
    display: inherit !important;
  }
  .hide-for-portrait,
  .show-for-landscape {
    display: none !important;
  }
  /* Specific visibility for tables */
  table.show-for-portrait, table.hide-for-landscape {
    display: table !important;
  }
  thead.show-for-portrait, thead.hide-for-landscape {
    display: table-header-group !important;
  }
  tbody.show-for-portrait, tbody.hide-for-landscape {
    display: table-row-group !important;
  }
  tr.show-for-portrait, tr.hide-for-landscape {
    display: table-row !important;
  }
  td.show-for-portrait, td.hide-for-landscape,
  th.show-for-portrait,
  th.hide-for-landscape {
    display: table-cell !important;
  }
}
/* Touch-enabled device targeting */
.show-for-touch {
  display: none !important;
}

.hide-for-touch {
  display: inherit !important;
}

.touch .show-for-touch {
  display: inherit !important;
}

.touch .hide-for-touch {
  display: none !important;
}

/* Specific visibility for tables */
table.hide-for-touch {
  display: table !important;
}

.touch table.show-for-touch {
  display: table !important;
}

thead.hide-for-touch {
  display: table-header-group !important;
}

.touch thead.show-for-touch {
  display: table-header-group !important;
}

tbody.hide-for-touch {
  display: table-row-group !important;
}

.touch tbody.show-for-touch {
  display: table-row-group !important;
}

tr.hide-for-touch {
  display: table-row !important;
}

.touch tr.show-for-touch {
  display: table-row !important;
}

td.hide-for-touch {
  display: table-cell !important;
}

.touch td.show-for-touch {
  display: table-cell !important;
}

th.hide-for-touch {
  display: table-cell !important;
}

.touch th.show-for-touch {
  display: table-cell !important;
}

/* Screen reader-specific classes */
.show-for-sr {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

.show-on-focus {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

.show-on-focus:focus, .show-on-focus:active {
  position: static !important;
  height: auto;
  width: auto;
  overflow: visible;
  clip: auto;
}

/*
 * Print styles.
 *
 * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
 * Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
*/
.print-only {
  display: none !important;
}

@media print {
  * {
    background: transparent !important;
    box-shadow: none !important;
    color: #000000 !important; /* Black prints faster: h5bp.com/s */
    text-shadow: none !important;
  }
  .show-for-print {
    display: block;
  }
  .hide-for-print {
    display: none;
  }
  table.show-for-print {
    display: table !important;
  }
  thead.show-for-print {
    display: table-header-group !important;
  }
  tbody.show-for-print {
    display: table-row-group !important;
  }
  tr.show-for-print {
    display: table-row !important;
  }
  td.show-for-print {
    display: table-cell !important;
  }
  th.show-for-print {
    display: table-cell !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group; /* h5bp.com/t */
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .hide-on-print {
    display: none !important;
  }
  .print-only {
    display: block !important;
  }
  .hide-for-print {
    display: none !important;
  }
  .show-for-print {
    display: inherit !important;
  }
}
/* Print visibility */
@media print {
  .show-for-print {
    display: block;
  }
  .hide-for-print {
    display: none;
  }
  table.show-for-print {
    display: table !important;
  }
  thead.show-for-print {
    display: table-header-group !important;
  }
  tbody.show-for-print {
    display: table-row-group !important;
  }
  tr.show-for-print {
    display: table-row !important;
  }
  td.show-for-print {
    display: table-cell !important;
  }
  th.show-for-print {
    display: table-cell !important;
  }
}
@media not print {
  .show-for-print {
    display: none !important;
  }
}
/* Clearing Styles */
.clearing-thumbs:before, .clearing-thumbs:after, [data-clearing]:before, [data-clearing]:after {
  content: " ";
  display: table;
}

.clearing-thumbs:after, [data-clearing]:after {
  clear: both;
}

.clearing-thumbs, [data-clearing] {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
}

.clearing-thumbs li, [data-clearing] li {
  float: left;
  margin-right: 10px;
}

.clearing-thumbs[class*=block-grid-] li, [data-clearing][class*=block-grid-] li {
  margin-right: 0;
}

.clearing-blackout {
  background: #333333;
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 998;
  left: 0;
}

.clearing-blackout .clearing-close {
  display: block;
}

.clearing-container {
  height: 100%;
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 998;
}

.clearing-touch-label {
  color: #AAAAAA;
  font-size: 0.6em;
  left: 50%;
  position: absolute;
  top: 50%;
}

.visible-img {
  height: 95%;
  position: relative;
}

.visible-img img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -o-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  max-height: 100%;
  max-width: 100%;
}

.clearing-caption {
  background: #333333;
  bottom: 0;
  color: #CCCCCC;
  font-size: 0.875em;
  line-height: 1.3;
  margin-bottom: 0;
  padding: 10px 30px 20px;
  position: absolute;
  text-align: center;
  width: 100%;
  left: 0;
}

.clearing-close {
  color: #CCCCCC;
  display: none;
  font-size: 30px;
  line-height: 1;
  padding-left: 20px;
  padding-top: 10px;
  z-index: 999;
}

.clearing-close:hover, .clearing-close:focus {
  color: #CCCCCC;
}

.clearing-assembled .clearing-container {
  height: 100%;
}

.clearing-assembled .clearing-container .carousel > ul {
  display: none;
}

.clearing-feature li {
  display: none;
}

.clearing-feature li.clearing-featured-img {
  display: block;
}

@media only screen and (min-width: 641px) {
  .clearing-main-prev,
  .clearing-main-next {
    height: 100%;
    position: absolute;
    top: 0;
    width: 40px;
  }
  .clearing-main-prev > span,
  .clearing-main-next > span {
    border: solid 12px;
    display: block;
    height: 0;
    position: absolute;
    top: 50%;
    width: 0;
  }
  .clearing-main-prev > span:hover,
  .clearing-main-next > span:hover {
    opacity: 0.8;
  }
  .clearing-main-prev {
    left: 0;
  }
  .clearing-main-prev > span {
    left: 5px;
    border-color: transparent;
    border-right-color: #CCCCCC;
  }
  .clearing-main-next {
    right: 0;
  }
  .clearing-main-next > span {
    border-color: transparent;
    border-left-color: #CCCCCC;
  }
  .clearing-main-prev.disabled,
  .clearing-main-next.disabled {
    opacity: 0.3;
  }
  .clearing-assembled .clearing-container .carousel {
    background: rgba(51, 51, 51, 0.8);
    height: 120px;
    margin-top: 10px;
    text-align: center;
  }
  .clearing-assembled .clearing-container .carousel > ul {
    display: inline-block;
    z-index: 999;
    height: 100%;
    position: relative;
    float: none;
  }
  .clearing-assembled .clearing-container .carousel > ul li {
    clear: none;
    cursor: pointer;
    display: block;
    float: left;
    margin-right: 0;
    min-height: inherit;
    opacity: 0.4;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 120px;
  }
  .clearing-assembled .clearing-container .carousel > ul li.fix-height img {
    height: 100%;
    max-width: none;
  }
  .clearing-assembled .clearing-container .carousel > ul li a.th {
    border: none;
    box-shadow: none;
    display: block;
  }
  .clearing-assembled .clearing-container .carousel > ul li img {
    cursor: pointer !important;
    width: 100% !important;
  }
  .clearing-assembled .clearing-container .carousel > ul li.visible {
    opacity: 1;
  }
  .clearing-assembled .clearing-container .carousel > ul li:hover {
    opacity: 0.8;
  }
  .clearing-assembled .clearing-container .visible-img {
    background: #333333;
    height: 85%;
    overflow: hidden;
  }
  .clearing-close {
    padding-left: 0;
    padding-top: 0;
    position: absolute;
    top: 10px;
    right: 20px;
  }
}
/* Foundation 5 namespace fix — MUST appear after global font rules.
 * Foundation reads the font-family of this meta element to build its data-attr
 * namespace (e.g. [data-reveal-id]). Without this rule our body font-family
 * ("Lato, sans-serif") is inherited, producing invalid selectors like
 * [data-Lato, sans-serif-reveal-id] that crash Foundation's reveal/alert init.
 * The value "false" is handled by Foundation (set_namespace() regex) as empty. */
meta.foundation-data-attribute-namespace {
  font-family: "false" !important;
}

/*
 * Foundation Icons v 3.0
 * Made by ZURB 2013 http://zurb.com/playground/foundation-icon-fonts-3
 * MIT License
 */
@font-face {
  font-family: "foundation-icons";
  src: url("/assets/foundation-icons-286548cf.eot");
  src: url("/assets/foundation-icons-286548cf.eot?#iefix") format("embedded-opentype"), url("/assets/foundation-icons-95d2d483.woff") format("woff"), url("/assets/foundation-icons-46ac6bbe.ttf") format("truetype"), url("/assets/foundation-icons-33fcf55c.svg#fontcustom") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fi-address-book:before,
.fi-alert:before,
.fi-align-center:before,
.fi-align-justify:before,
.fi-align-left:before,
.fi-align-right:before,
.fi-anchor:before,
.fi-annotate:before,
.fi-archive:before,
.fi-arrow-down:before,
.fi-arrow-left:before,
.fi-arrow-right:before,
.fi-arrow-up:before,
.fi-arrows-compress:before,
.fi-arrows-expand:before,
.fi-arrows-in:before,
.fi-arrows-out:before,
.fi-asl:before,
.fi-asterisk:before,
.fi-at-sign:before,
.fi-background-color:before,
.fi-battery-empty:before,
.fi-battery-full:before,
.fi-battery-half:before,
.fi-bitcoin-circle:before,
.fi-bitcoin:before,
.fi-blind:before,
.fi-bluetooth:before,
.fi-bold:before,
.fi-book-bookmark:before,
.fi-book:before,
.fi-bookmark:before,
.fi-braille:before,
.fi-burst-new:before,
.fi-burst-sale:before,
.fi-burst:before,
.fi-calendar:before,
.fi-camera:before,
.fi-check:before,
.fi-checkbox:before,
.fi-clipboard-notes:before,
.fi-clipboard-pencil:before,
.fi-clipboard:before,
.fi-clock:before,
.fi-closed-caption:before,
.fi-cloud:before,
.fi-comment-minus:before,
.fi-comment-quotes:before,
.fi-comment-video:before,
.fi-comment:before,
.fi-comments:before,
.fi-compass:before,
.fi-contrast:before,
.fi-credit-card:before,
.fi-crop:before,
.fi-crown:before,
.fi-css3:before,
.fi-database:before,
.fi-die-five:before,
.fi-die-four:before,
.fi-die-one:before,
.fi-die-six:before,
.fi-die-three:before,
.fi-die-two:before,
.fi-dislike:before,
.fi-dollar-bill:before,
.fi-dollar:before,
.fi-download:before,
.fi-eject:before,
.fi-elevator:before,
.fi-euro:before,
.fi-eye:before,
.fi-fast-forward:before,
.fi-female-symbol:before,
.fi-female:before,
.fi-filter:before,
.fi-first-aid:before,
.fi-flag:before,
.fi-folder-add:before,
.fi-folder-lock:before,
.fi-folder:before,
.fi-foot:before,
.fi-foundation:before,
.fi-graph-bar:before,
.fi-graph-horizontal:before,
.fi-graph-pie:before,
.fi-graph-trend:before,
.fi-guide-dog:before,
.fi-hearing-aid:before,
.fi-heart:before,
.fi-home:before,
.fi-html5:before,
.fi-indent-less:before,
.fi-indent-more:before,
.fi-info:before,
.fi-italic:before,
.fi-key:before,
.fi-laptop:before,
.fi-layout:before,
.fi-lightbulb:before,
.fi-like:before,
.fi-link:before,
.fi-list-bullet:before,
.fi-list-number:before,
.fi-list-thumbnails:before,
.fi-list:before,
.fi-lock:before,
.fi-loop:before,
.fi-magnifying-glass:before,
.fi-mail:before,
.fi-male-female:before,
.fi-male-symbol:before,
.fi-male:before,
.fi-map:before,
.fi-marker:before,
.fi-megaphone:before,
.fi-microphone:before,
.fi-minus-circle:before,
.fi-minus:before,
.fi-mobile-signal:before,
.fi-mobile:before,
.fi-monitor:before,
.fi-mountains:before,
.fi-music:before,
.fi-next:before,
.fi-no-dogs:before,
.fi-no-smoking:before,
.fi-page-add:before,
.fi-page-copy:before,
.fi-page-csv:before,
.fi-page-delete:before,
.fi-page-doc:before,
.fi-page-edit:before,
.fi-page-export-csv:before,
.fi-page-export-doc:before,
.fi-page-export-pdf:before,
.fi-page-export:before,
.fi-page-filled:before,
.fi-page-multiple:before,
.fi-page-pdf:before,
.fi-page-remove:before,
.fi-page-search:before,
.fi-page:before,
.fi-paint-bucket:before,
.fi-paperclip:before,
.fi-pause:before,
.fi-paw:before,
.fi-paypal:before,
.fi-pencil:before,
.fi-photo:before,
.fi-play-circle:before,
.fi-play-video:before,
.fi-play:before,
.fi-plus:before,
.fi-pound:before,
.fi-power:before,
.fi-previous:before,
.fi-price-tag:before,
.fi-pricetag-multiple:before,
.fi-print:before,
.fi-prohibited:before,
.fi-projection-screen:before,
.fi-puzzle:before,
.fi-quote:before,
.fi-record:before,
.fi-refresh:before,
.fi-results-demographics:before,
.fi-results:before,
.fi-rewind-ten:before,
.fi-rewind:before,
.fi-rss:before,
.fi-safety-cone:before,
.fi-save:before,
.fi-share:before,
.fi-sheriff-badge:before,
.fi-shield:before,
.fi-shopping-bag:before,
.fi-shopping-cart:before,
.fi-shuffle:before,
.fi-skull:before,
.fi-social-500px:before,
.fi-social-adobe:before,
.fi-social-amazon:before,
.fi-social-android:before,
.fi-social-apple:before,
.fi-social-behance:before,
.fi-social-bing:before,
.fi-social-blogger:before,
.fi-social-delicious:before,
.fi-social-designer-news:before,
.fi-social-deviant-art:before,
.fi-social-digg:before,
.fi-social-dribbble:before,
.fi-social-drive:before,
.fi-social-dropbox:before,
.fi-social-evernote:before,
.fi-social-facebook:before,
.fi-social-flickr:before,
.fi-social-forrst:before,
.fi-social-foursquare:before,
.fi-social-game-center:before,
.fi-social-github:before,
.fi-social-google-plus:before,
.fi-social-hacker-news:before,
.fi-social-hi5:before,
.fi-social-instagram:before,
.fi-social-joomla:before,
.fi-social-lastfm:before,
.fi-social-linkedin:before,
.fi-social-medium:before,
.fi-social-myspace:before,
.fi-social-orkut:before,
.fi-social-path:before,
.fi-social-picasa:before,
.fi-social-pinterest:before,
.fi-social-rdio:before,
.fi-social-reddit:before,
.fi-social-skillshare:before,
.fi-social-skype:before,
.fi-social-smashing-mag:before,
.fi-social-snapchat:before,
.fi-social-spotify:before,
.fi-social-squidoo:before,
.fi-social-stack-overflow:before,
.fi-social-steam:before,
.fi-social-stumbleupon:before,
.fi-social-treehouse:before,
.fi-social-tumblr:before,
.fi-social-twitter:before,
.fi-social-vimeo:before,
.fi-social-windows:before,
.fi-social-xbox:before,
.fi-social-yahoo:before,
.fi-social-yelp:before,
.fi-social-youtube:before,
.fi-social-zerply:before,
.fi-social-zurb:before,
.fi-sound:before,
.fi-star:before,
.fi-stop:before,
.fi-strikethrough:before,
.fi-subscript:before,
.fi-superscript:before,
.fi-tablet-landscape:before,
.fi-tablet-portrait:before,
.fi-target-two:before,
.fi-target:before,
.fi-telephone-accessible:before,
.fi-telephone:before,
.fi-text-color:before,
.fi-thumbnails:before,
.fi-ticket:before,
.fi-torso-business:before,
.fi-torso-female:before,
.fi-torso:before,
.fi-torsos-all-female:before,
.fi-torsos-all:before,
.fi-torsos-female-male:before,
.fi-torsos-male-female:before,
.fi-torsos:before,
.fi-trash:before,
.fi-trees:before,
.fi-trophy:before,
.fi-underline:before,
.fi-universal-access:before,
.fi-unlink:before,
.fi-unlock:before,
.fi-upload-cloud:before,
.fi-upload:before,
.fi-usb:before,
.fi-video:before,
.fi-volume-none:before,
.fi-volume-strike:before,
.fi-volume:before,
.fi-web:before,
.fi-wheelchair:before,
.fi-widget:before,
.fi-wrench:before,
.fi-x-circle:before,
.fi-x:before,
.fi-yen:before,
.fi-zoom-in:before,
.fi-zoom-out:before {
  font-family: "foundation-icons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  text-decoration: inherit;
}

i[class^=fi-] {
  font-size: 140%;
  margin: 0 0.3em;
}

.fi-address-book:before {
  content: "\f100";
}

.fi-alert:before {
  content: "\f101";
}

.fi-align-center:before {
  content: "\f102";
}

.fi-align-justify:before {
  content: "\f103";
}

.fi-align-left:before {
  content: "\f104";
}

.fi-align-right:before {
  content: "\f105";
}

.fi-anchor:before {
  content: "\f106";
}

.fi-annotate:before {
  content: "\f107";
}

.fi-archive:before {
  content: "\f108";
}

.fi-arrow-down:before {
  content: "\f109";
}

.fi-arrow-left:before {
  content: "\f10a";
}

.fi-arrow-right:before {
  content: "\f10b";
}

.fi-arrow-up:before {
  content: "\f10c";
}

.fi-arrows-compress:before {
  content: "\f10d";
}

.fi-arrows-expand:before {
  content: "\f10e";
}

.fi-arrows-in:before {
  content: "\f10f";
}

.fi-arrows-out:before {
  content: "\f110";
}

.fi-asl:before {
  content: "\f111";
}

.fi-asterisk:before {
  content: "\f112";
}

.fi-at-sign:before {
  content: "\f113";
}

.fi-background-color:before {
  content: "\f114";
}

.fi-battery-empty:before {
  content: "\f115";
}

.fi-battery-full:before {
  content: "\f116";
}

.fi-battery-half:before {
  content: "\f117";
}

.fi-bitcoin-circle:before {
  content: "\f118";
}

.fi-bitcoin:before {
  content: "\f119";
}

.fi-blind:before {
  content: "\f11a";
}

.fi-bluetooth:before {
  content: "\f11b";
}

.fi-bold:before {
  content: "\f11c";
}

.fi-book-bookmark:before {
  content: "\f11d";
}

.fi-book:before {
  content: "\f11e";
}

.fi-bookmark:before {
  content: "\f11f";
}

.fi-braille:before {
  content: "\f120";
}

.fi-burst-new:before {
  content: "\f121";
}

.fi-burst-sale:before {
  content: "\f122";
}

.fi-burst:before {
  content: "\f123";
}

.fi-calendar:before {
  content: "\f124";
}

.fi-camera:before {
  content: "\f125";
}

.fi-check:before {
  content: "\f126";
}

.fi-checkbox:before {
  content: "\f127";
}

.fi-clipboard-notes:before {
  content: "\f128";
}

.fi-clipboard-pencil:before {
  content: "\f129";
}

.fi-clipboard:before {
  content: "\f12a";
}

.fi-clock:before {
  content: "\f12b";
}

.fi-closed-caption:before {
  content: "\f12c";
}

.fi-cloud:before {
  content: "\f12d";
}

.fi-comment-minus:before {
  content: "\f12e";
}

.fi-comment-quotes:before {
  content: "\f12f";
}

.fi-comment-video:before {
  content: "\f130";
}

.fi-comment:before {
  content: "\f131";
}

.fi-comments:before {
  content: "\f132";
}

.fi-compass:before {
  content: "\f133";
}

.fi-contrast:before {
  content: "\f134";
}

.fi-credit-card:before {
  content: "\f135";
}

.fi-crop:before {
  content: "\f136";
}

.fi-crown:before {
  content: "\f137";
}

.fi-css3:before {
  content: "\f138";
}

.fi-database:before {
  content: "\f139";
}

.fi-die-five:before {
  content: "\f13a";
}

.fi-die-four:before {
  content: "\f13b";
}

.fi-die-one:before {
  content: "\f13c";
}

.fi-die-six:before {
  content: "\f13d";
}

.fi-die-three:before {
  content: "\f13e";
}

.fi-die-two:before {
  content: "\f13f";
}

.fi-dislike:before {
  content: "\f140";
}

.fi-dollar-bill:before {
  content: "\f141";
}

.fi-dollar:before {
  content: "\f142";
}

.fi-download:before {
  content: "\f143";
}

.fi-eject:before {
  content: "\f144";
}

.fi-elevator:before {
  content: "\f145";
}

.fi-euro:before {
  content: "\f146";
}

.fi-eye:before {
  content: "\f147";
}

.fi-fast-forward:before {
  content: "\f148";
}

.fi-female-symbol:before {
  content: "\f149";
}

.fi-female:before {
  content: "\f14a";
}

.fi-filter:before {
  content: "\f14b";
}

.fi-first-aid:before {
  content: "\f14c";
}

.fi-flag:before {
  content: "\f14d";
}

.fi-folder-add:before {
  content: "\f14e";
}

.fi-folder-lock:before {
  content: "\f14f";
}

.fi-folder:before {
  content: "\f150";
}

.fi-foot:before {
  content: "\f151";
}

.fi-foundation:before {
  content: "\f152";
}

.fi-graph-bar:before {
  content: "\f153";
}

.fi-graph-horizontal:before {
  content: "\f154";
}

.fi-graph-pie:before {
  content: "\f155";
}

.fi-graph-trend:before {
  content: "\f156";
}

.fi-guide-dog:before {
  content: "\f157";
}

.fi-hearing-aid:before {
  content: "\f158";
}

.fi-heart:before {
  content: "\f159";
}

.fi-home:before {
  content: "\f15a";
}

.fi-html5:before {
  content: "\f15b";
}

.fi-indent-less:before {
  content: "\f15c";
}

.fi-indent-more:before {
  content: "\f15d";
}

.fi-info:before {
  content: "\f15e";
}

.fi-italic:before {
  content: "\f15f";
}

.fi-key:before {
  content: "\f160";
}

.fi-laptop:before {
  content: "\f161";
}

.fi-layout:before {
  content: "\f162";
}

.fi-lightbulb:before {
  content: "\f163";
}

.fi-like:before {
  content: "\f164";
}

.fi-link:before {
  content: "\f165";
}

.fi-list-bullet:before {
  content: "\f166";
}

.fi-list-number:before {
  content: "\f167";
}

.fi-list-thumbnails:before {
  content: "\f168";
}

.fi-list:before {
  content: "\f169";
}

.fi-lock:before {
  content: "\f16a";
}

.fi-loop:before {
  content: "\f16b";
}

.fi-magnifying-glass:before {
  content: "\f16c";
}

.fi-mail:before {
  content: "\f16d";
}

.fi-male-female:before {
  content: "\f16e";
}

.fi-male-symbol:before {
  content: "\f16f";
}

.fi-male:before {
  content: "\f170";
}

.fi-map:before {
  content: "\f171";
}

.fi-marker:before {
  content: "\f172";
}

.fi-megaphone:before {
  content: "\f173";
}

.fi-microphone:before {
  content: "\f174";
}

.fi-minus-circle:before {
  content: "\f175";
}

.fi-minus:before {
  content: "\f176";
}

.fi-mobile-signal:before {
  content: "\f177";
}

.fi-mobile:before {
  content: "\f178";
}

.fi-monitor:before {
  content: "\f179";
}

.fi-mountains:before {
  content: "\f17a";
}

.fi-music:before {
  content: "\f17b";
}

.fi-next:before {
  content: "\f17c";
}

.fi-no-dogs:before {
  content: "\f17d";
}

.fi-no-smoking:before {
  content: "\f17e";
}

.fi-page-add:before {
  content: "\f17f";
}

.fi-page-copy:before {
  content: "\f180";
}

.fi-page-csv:before {
  content: "\f181";
  color: #2E7D32;
}

.fi-page-delete:before {
  content: "\f182";
}

.fi-page-doc:before {
  content: "\f183";
}

.fi-page-edit:before {
  content: "\f184";
}

.fi-page-export-csv:before {
  content: "\f185";
  color: #2E7D32;
}

.fi-page-export-doc:before {
  content: "\f186";
}

.fi-page-export-pdf:before {
  content: "\f187";
  color: #C01E07;
}

.fi-page-export:before {
  content: "\f188";
}

.fi-page-filled:before {
  content: "\f189";
}

.fi-page-multiple:before {
  content: "\f18a";
}

.fi-page-pdf:before {
  content: "\f18b";
  color: #C01E07;
}

.fi-page-remove:before {
  content: "\f18c";
}

.fi-page-search:before {
  content: "\f18d";
}

.fi-page:before {
  content: "\f18e";
}

.fi-paint-bucket:before {
  content: "\f18f";
}

.fi-paperclip:before {
  content: "\f190";
}

.fi-pause:before {
  content: "\f191";
}

.fi-paw:before {
  content: "\f192";
}

.fi-paypal:before {
  content: "\f193";
}

.fi-pencil:before {
  content: "\f194";
}

.fi-photo:before {
  content: "\f195";
}

.fi-play-circle:before {
  content: "\f196";
}

.fi-play-video:before {
  content: "\f197";
}

.fi-play:before {
  content: "\f198";
}

.fi-plus:before {
  content: "\f199";
}

.fi-pound:before {
  content: "\f19a";
}

.fi-power:before {
  content: "\f19b";
}

.fi-previous:before {
  content: "\f19c";
}

.fi-price-tag:before {
  content: "\f19d";
}

.fi-pricetag-multiple:before {
  content: "\f19e";
}

.fi-print:before {
  content: "\f19f";
}

.fi-prohibited:before {
  content: "\f1a0";
}

.fi-projection-screen:before {
  content: "\f1a1";
}

.fi-puzzle:before {
  content: "\f1a2";
}

.fi-quote:before {
  content: "\f1a3";
}

.fi-record:before {
  content: "\f1a4";
}

.fi-refresh:before {
  content: "\f1a5";
}

.fi-results-demographics:before {
  content: "\f1a6";
}

.fi-results:before {
  content: "\f1a7";
}

.fi-rewind-ten:before {
  content: "\f1a8";
}

.fi-rewind:before {
  content: "\f1a9";
}

.fi-rss:before {
  content: "\f1aa";
}

.fi-safety-cone:before {
  content: "\f1ab";
}

.fi-save:before {
  content: "\f1ac";
}

.fi-share:before {
  content: "\f1ad";
}

.fi-sheriff-badge:before {
  content: "\f1ae";
}

.fi-shield:before {
  content: "\f1af";
}

.fi-shopping-bag:before {
  content: "\f1b0";
}

.fi-shopping-cart:before {
  content: "\f1b1";
}

.fi-shuffle:before {
  content: "\f1b2";
}

.fi-skull:before {
  content: "\f1b3";
}

.fi-social-500px:before {
  content: "\f1b4";
}

.fi-social-adobe:before {
  content: "\f1b5";
}

.fi-social-amazon:before {
  content: "\f1b6";
}

.fi-social-android:before {
  content: "\f1b7";
}

.fi-social-apple:before {
  content: "\f1b8";
}

.fi-social-behance:before {
  content: "\f1b9";
}

.fi-social-bing:before {
  content: "\f1ba";
}

.fi-social-blogger:before {
  content: "\f1bb";
}

.fi-social-delicious:before {
  content: "\f1bc";
}

.fi-social-designer-news:before {
  content: "\f1bd";
}

.fi-social-deviant-art:before {
  content: "\f1be";
}

.fi-social-digg:before {
  content: "\f1bf";
}

.fi-social-dribbble:before {
  content: "\f1c0";
}

.fi-social-drive:before {
  content: "\f1c1";
}

.fi-social-dropbox:before {
  content: "\f1c2";
}

.fi-social-evernote:before {
  content: "\f1c3";
}

.fi-social-facebook:before {
  content: "\f1c4";
}

.fi-social-flickr:before {
  content: "\f1c5";
}

.fi-social-forrst:before {
  content: "\f1c6";
}

.fi-social-foursquare:before {
  content: "\f1c7";
}

.fi-social-game-center:before {
  content: "\f1c8";
}

.fi-social-github:before {
  content: "\f1c9";
}

.fi-social-google-plus:before {
  content: "\f1ca";
}

.fi-social-hacker-news:before {
  content: "\f1cb";
}

.fi-social-hi5:before {
  content: "\f1cc";
}

.fi-social-instagram:before {
  content: "\f1cd";
}

.fi-social-joomla:before {
  content: "\f1ce";
}

.fi-social-lastfm:before {
  content: "\f1cf";
}

.fi-social-linkedin:before {
  content: "\f1d0";
}

.fi-social-medium:before {
  content: "\f1d1";
}

.fi-social-myspace:before {
  content: "\f1d2";
}

.fi-social-orkut:before {
  content: "\f1d3";
}

.fi-social-path:before {
  content: "\f1d4";
}

.fi-social-picasa:before {
  content: "\f1d5";
}

.fi-social-pinterest:before {
  content: "\f1d6";
}

.fi-social-rdio:before {
  content: "\f1d7";
}

.fi-social-reddit:before {
  content: "\f1d8";
}

.fi-social-skillshare:before {
  content: "\f1d9";
}

.fi-social-skype:before {
  content: "\f1da";
}

.fi-social-smashing-mag:before {
  content: "\f1db";
}

.fi-social-snapchat:before {
  content: "\f1dc";
}

.fi-social-spotify:before {
  content: "\f1dd";
}

.fi-social-squidoo:before {
  content: "\f1de";
}

.fi-social-stack-overflow:before {
  content: "\f1df";
}

.fi-social-steam:before {
  content: "\f1e0";
}

.fi-social-stumbleupon:before {
  content: "\f1e1";
}

.fi-social-treehouse:before {
  content: "\f1e2";
}

.fi-social-tumblr:before {
  content: "\f1e3";
}

.fi-social-twitter:before {
  content: "\f1e4";
}

.fi-social-vimeo:before {
  content: "\f1e5";
}

.fi-social-windows:before {
  content: "\f1e6";
}

.fi-social-xbox:before {
  content: "\f1e7";
}

.fi-social-yahoo:before {
  content: "\f1e8";
}

.fi-social-yelp:before {
  content: "\f1e9";
}

.fi-social-youtube:before {
  content: "\f1ea";
}

.fi-social-zerply:before {
  content: "\f1eb";
}

.fi-social-zurb:before {
  content: "\f1ec";
}

.fi-sound:before {
  content: "\f1ed";
}

.fi-star:before {
  content: "\f1ee";
}

.fi-stop:before {
  content: "\f1ef";
}

.fi-strikethrough:before {
  content: "\f1f0";
}

.fi-subscript:before {
  content: "\f1f1";
}

.fi-superscript:before {
  content: "\f1f2";
}

.fi-tablet-landscape:before {
  content: "\f1f3";
}

.fi-tablet-portrait:before {
  content: "\f1f4";
}

.fi-target-two:before {
  content: "\f1f5";
}

.fi-target:before {
  content: "\f1f6";
}

.fi-telephone-accessible:before {
  content: "\f1f7";
}

.fi-telephone:before {
  content: "\f1f8";
}

.fi-text-color:before {
  content: "\f1f9";
}

.fi-thumbnails:before {
  content: "\f1fa";
}

.fi-ticket:before {
  content: "\f1fb";
}

.fi-torso-business:before {
  content: "\f1fc";
}

.fi-torso-female:before {
  content: "\f1fd";
}

.fi-torso:before {
  content: "\f1fe";
}

.fi-torsos-all-female:before {
  content: "\f1ff";
}

.fi-torsos-all:before {
  content: "\f200";
}

.fi-torsos-female-male:before {
  content: "\f201";
}

.fi-torsos-male-female:before {
  content: "\f202";
}

.fi-torsos:before {
  content: "\f203";
}

.fi-trash:before {
  content: "\f204";
}

.fi-trees:before {
  content: "\f205";
}

.fi-trophy:before {
  content: "\f206";
}

.fi-underline:before {
  content: "\f207";
}

.fi-universal-access:before {
  content: "\f208";
}

.fi-unlink:before {
  content: "\f209";
}

.fi-unlock:before {
  content: "\f20a";
}

.fi-upload-cloud:before {
  content: "\f20b";
}

.fi-upload:before {
  content: "\f20c";
}

.fi-usb:before {
  content: "\f20d";
}

.fi-video:before {
  content: "\f20e";
}

.fi-volume-none:before {
  content: "\f20f";
}

.fi-volume-strike:before {
  content: "\f210";
}

.fi-volume:before {
  content: "\f211";
}

.fi-web:before {
  content: "\f212";
}

.fi-wheelchair:before {
  content: "\f213";
}

.fi-widget:before {
  content: "\f214";
}

.fi-wrench:before {
  content: "\f215";
}

.fi-x-circle:before {
  content: "\f216";
}

.fi-x:before {
  content: "\f217";
}

.fi-yen:before {
  content: "\f218";
}

.fi-zoom-in:before {
  content: "\f219";
}

.fi-zoom-out:before {
  content: "\f21a";
}

.ag-theme-fresh-class .ag-body {
  background-color: #f6f6f6;
}
.ag-theme-fresh-class .ag-cell {
  box-sizing: border-box;
}
.ag-theme-fresh-class .ag-select-agg-func-popup, .ag-theme-fresh-class .ag-popup-editor, .ag-theme-fresh-class .ag-cell-inline-editing, .ag-theme-fresh-class .ag-theme-fresh-class.ag-dnd-ghost, .ag-theme-fresh-class .ag-menu {
  border: 1px solid transparent;
  background-color: #f6f6f6;
}
.ag-theme-fresh-class .ag-tab-header .ag-tab {
  display: inline-block;
  margin: 0.4rem;
  margin-bottom: 0;
  padding: 0.4rem 0.8rem;
  border: 1px solid transparent;
  border-bottom-width: 0;
}
.ag-theme-fresh-class .ag-tab-header .ag-tab.ag-tab-selected {
  background-color: #f6f6f6;
  border-color: transparent;
  border-bottom: 2px solid #f6f6f6 !important;
}
.ag-theme-fresh-class {
  background-color: white;
  color: black;
  font: 400 12px "Lato", sans-serif;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-1 {
  padding-left: 1.6rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-1 {
  padding-right: 1.6rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-1 {
  padding-left: 2.4rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-1 {
  padding-right: 2.4rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-2 {
  padding-left: 3.2rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-2 {
  padding-right: 3.2rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-2 {
  padding-left: 4.8rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-2 {
  padding-right: 4.8rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-3 {
  padding-left: 4.8rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-3 {
  padding-right: 4.8rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-3 {
  padding-left: 7.2rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-3 {
  padding-right: 7.2rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-4 {
  padding-left: 6.4rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-4 {
  padding-right: 6.4rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-4 {
  padding-left: 9.6rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-4 {
  padding-right: 9.6rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-5 {
  padding-left: 8rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-5 {
  padding-right: 8rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-5 {
  padding-left: 12rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-5 {
  padding-right: 12rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-6 {
  padding-left: 9.6rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-6 {
  padding-right: 9.6rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-6 {
  padding-left: 14.4rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-6 {
  padding-right: 14.4rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-7 {
  padding-left: 11.2rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-7 {
  padding-right: 11.2rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-7 {
  padding-left: 16.8rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-7 {
  padding-right: 16.8rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-8 {
  padding-left: 12.8rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-8 {
  padding-right: 12.8rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-8 {
  padding-left: 19.2rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-8 {
  padding-right: 19.2rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-9 {
  padding-left: 14.4rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-9 {
  padding-right: 14.4rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-9 {
  padding-left: 21.6rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-9 {
  padding-right: 21.6rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-10 {
  padding-left: 16rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-10 {
  padding-right: 16rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-10 {
  padding-left: 24rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-10 {
  padding-right: 24rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-11 {
  padding-left: 17.6rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-11 {
  padding-right: 17.6rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-11 {
  padding-left: 26.4rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-11 {
  padding-right: 26.4rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-12 {
  padding-left: 19.2rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-12 {
  padding-right: 19.2rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-12 {
  padding-left: 28.8rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-12 {
  padding-right: 28.8rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-13 {
  padding-left: 20.8rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-13 {
  padding-right: 20.8rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-13 {
  padding-left: 31.2rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-13 {
  padding-right: 31.2rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-14 {
  padding-left: 22.4rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-14 {
  padding-right: 22.4rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-14 {
  padding-left: 33.6rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-14 {
  padding-right: 33.6rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-15 {
  padding-left: 24rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-15 {
  padding-right: 24rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-15 {
  padding-left: 36rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-15 {
  padding-right: 36rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-16 {
  padding-left: 25.6rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-16 {
  padding-right: 25.6rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-16 {
  padding-left: 38.4rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-16 {
  padding-right: 38.4rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-17 {
  padding-left: 27.2rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-17 {
  padding-right: 27.2rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-17 {
  padding-left: 40.8rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-17 {
  padding-right: 40.8rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-18 {
  padding-left: 28.8rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-18 {
  padding-right: 28.8rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-18 {
  padding-left: 43.2rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-18 {
  padding-right: 43.2rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-19 {
  padding-left: 30.4rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-19 {
  padding-right: 30.4rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-19 {
  padding-left: 45.6rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-19 {
  padding-right: 45.6rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-20 {
  padding-left: 32rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-20 {
  padding-right: 32rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-20 {
  padding-left: 48rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-20 {
  padding-right: 48rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-21 {
  padding-left: 33.6rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-21 {
  padding-right: 33.6rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-21 {
  padding-left: 50.4rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-21 {
  padding-right: 50.4rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-22 {
  padding-left: 35.2rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-22 {
  padding-right: 35.2rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-22 {
  padding-left: 52.8rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-22 {
  padding-right: 52.8rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-23 {
  padding-left: 36.8rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-23 {
  padding-right: 36.8rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-23 {
  padding-left: 55.2rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-23 {
  padding-right: 55.2rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-24 {
  padding-left: 38.4rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-24 {
  padding-right: 38.4rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-24 {
  padding-left: 57.6rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-24 {
  padding-right: 57.6rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-25 {
  padding-left: 40rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-25 {
  padding-right: 40rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-25 {
  padding-left: 60rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-25 {
  padding-right: 60rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-26 {
  padding-left: 41.6rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-26 {
  padding-right: 41.6rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-26 {
  padding-left: 62.4rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-26 {
  padding-right: 62.4rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-27 {
  padding-left: 43.2rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-27 {
  padding-right: 43.2rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-27 {
  padding-left: 64.8rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-27 {
  padding-right: 64.8rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-28 {
  padding-left: 44.8rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-28 {
  padding-right: 44.8rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-28 {
  padding-left: 67.2rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-28 {
  padding-right: 67.2rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-29 {
  padding-left: 46.4rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-29 {
  padding-right: 46.4rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-29 {
  padding-left: 69.6rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-29 {
  padding-right: 69.6rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-30 {
  padding-left: 48rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-30 {
  padding-right: 48rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-30 {
  padding-left: 72rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-30 {
  padding-right: 72rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-31 {
  padding-left: 49.6rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-31 {
  padding-right: 49.6rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-31 {
  padding-left: 74.4rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-31 {
  padding-right: 74.4rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-32 {
  padding-left: 51.2rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-32 {
  padding-right: 51.2rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-32 {
  padding-left: 76.8rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-32 {
  padding-right: 76.8rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-33 {
  padding-left: 52.8rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-33 {
  padding-right: 52.8rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-33 {
  padding-left: 79.2rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-33 {
  padding-right: 79.2rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-34 {
  padding-left: 54.4rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-34 {
  padding-right: 54.4rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-34 {
  padding-left: 81.6rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-34 {
  padding-right: 81.6rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-35 {
  padding-left: 56rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-35 {
  padding-right: 56rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-35 {
  padding-left: 84rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-35 {
  padding-right: 84rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-36 {
  padding-left: 57.6rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-36 {
  padding-right: 57.6rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-36 {
  padding-left: 86.4rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-36 {
  padding-right: 86.4rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-37 {
  padding-left: 59.2rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-37 {
  padding-right: 59.2rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-37 {
  padding-left: 88.8rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-37 {
  padding-right: 88.8rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-38 {
  padding-left: 60.8rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-38 {
  padding-right: 60.8rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-38 {
  padding-left: 91.2rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-38 {
  padding-right: 91.2rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-39 {
  padding-left: 62.4rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-39 {
  padding-right: 62.4rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-39 {
  padding-left: 93.6rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-39 {
  padding-right: 93.6rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-40 {
  padding-left: 64rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-40 {
  padding-right: 64rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-40 {
  padding-left: 96rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-40 {
  padding-right: 96rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-41 {
  padding-left: 65.6rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-41 {
  padding-right: 65.6rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-41 {
  padding-left: 98.4rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-41 {
  padding-right: 98.4rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-42 {
  padding-left: 67.2rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-42 {
  padding-right: 67.2rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-42 {
  padding-left: 100.8rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-42 {
  padding-right: 100.8rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-43 {
  padding-left: 68.8rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-43 {
  padding-right: 68.8rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-43 {
  padding-left: 103.2rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-43 {
  padding-right: 103.2rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-44 {
  padding-left: 70.4rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-44 {
  padding-right: 70.4rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-44 {
  padding-left: 105.6rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-44 {
  padding-right: 105.6rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-45 {
  padding-left: 72rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-45 {
  padding-right: 72rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-45 {
  padding-left: 108rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-45 {
  padding-right: 108rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-46 {
  padding-left: 73.6rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-46 {
  padding-right: 73.6rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-46 {
  padding-left: 110.4rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-46 {
  padding-right: 110.4rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-47 {
  padding-left: 75.2rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-47 {
  padding-right: 75.2rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-47 {
  padding-left: 112.8rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-47 {
  padding-right: 112.8rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-48 {
  padding-left: 76.8rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-48 {
  padding-right: 76.8rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-48 {
  padding-left: 115.2rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-48 {
  padding-right: 115.2rem;
}
.ag-theme-fresh-class .ag-ltr .ag-toolpanel-indent-49 {
  padding-left: 78.4rem;
}
.ag-theme-fresh-class .ag-rtl .ag-toolpanel-indent-49 {
  padding-right: 78.4rem;
}
.ag-theme-fresh-class .ag-ltr .ag-row-group-indent-49 {
  padding-left: 117.6rem;
}
.ag-theme-fresh-class .ag-rtl .ag-row-group-indent-49 {
  padding-right: 117.6rem;
}
.ag-theme-fresh-class .ag-rtl .ag-cell-first-right-pinned {
  border-left: 1px solid transparent;
}
.ag-theme-fresh-class .ag-ltr .ag-cell-first-right-pinned {
  border-left: 1px solid transparent;
}
.ag-theme-fresh-class .ag-rtl .ag-cell-last-left-pinned {
  border-right: 1px solid transparent;
}
.ag-theme-fresh-class .ag-ltr .ag-cell-last-left-pinned {
  border-right: 1px solid transparent;
}
.ag-theme-fresh-class .ag-value-change-delta {
  padding-right: 2px;
}
.ag-theme-fresh-class .ag-value-change-delta-up {
  color: darkgreen;
}
.ag-theme-fresh-class .ag-value-change-delta-down {
  color: darkred;
}
.ag-theme-fresh-class .ag-value-change-value {
  background-color: transparent;
  border-radius: 1px;
  padding-left: 1px;
  padding-right: 1px;
  transition: background-color 1s;
}
.ag-theme-fresh-class .ag-value-change-value-highlight {
  background-color: #cec;
  transition: background-color 0.1s;
}
.ag-theme-fresh-class .ag-header {
  background-color: #edeff1;
  color: #333333;
  font: 400 12px "Lato", sans-serif;
}
.ag-theme-fresh-class .ag-header-row {
  border-bottom: 1px solid transparent;
  box-sizing: border-box;
}
.ag-theme-fresh-class .ag-row {
  border-bottom: 1px solid transparent;
  box-sizing: border-box;
}
.ag-theme-fresh-class .ag-row-hover .ag-cell {
  background-color: #e9f5fc;
}
.ag-theme-fresh-class .ag-row-odd {
  background-color: white;
}
.ag-theme-fresh-class .ag-row-even {
  background-color: white;
}
.ag-theme-fresh-class .ag-numeric-cell {
  text-align: right;
}
.ag-theme-fresh-class .ag-header-cell-label {
  display: flex;
  float: left;
  height: 100%;
  width: calc(100% - 1.2rem);
  line-height: 44px;
}
.ag-theme-fresh-class .ag-header-cell-label span {
  height: 100%;
}
.ag-theme-fresh-class .ag-header-cell-label > span {
  float: left;
}
.ag-theme-fresh-class .ag-header-cell-label .ag-header-icon {
  background-position-y: 1rem;
  background-size: 1.2rem 1.2rem;
  height: 100%;
  margin: 0;
  margin-left: 0.4rem;
  opacity: 1;
}
.ag-theme-fresh-class .ag-header-cell-label .ag-header-cell-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ag-theme-fresh-class .ag-header-cell-label .ag-header-cell-text i.pti {
  color: #647079;
}
.ag-theme-fresh-class .ag-header-cell-label .ag-header-cell-text i.pti:hover {
  color: #47545e;
}
.ag-theme-fresh-class .ag-header-cell-label .ag-header-cell-text i.pti:first-child {
  margin-left: 0;
  margin-right: 0.8rem;
}
.ag-theme-fresh-class .ag-numeric-header .ag-header-cell-label {
  flex-direction: row-reverse;
  float: right;
}
.ag-theme-fresh-class .ag-numeric-header .ag-header-cell-label > span {
  float: right;
}
.ag-theme-fresh-class .ag-numeric-header .ag-header-cell-menu-button {
  float: left;
  left: 0.8rem;
}
.ag-theme-fresh-class .ag-header-cell,
.ag-theme-fresh-class .ag-header-group-cell {
  line-height: 3.2rem;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}
.ag-theme-fresh-class .ag-cell {
  line-height: 1.6rem;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  border: 1px solid transparent;
  padding-left: calc(0.8rem - 1px);
  padding-right: calc(0.8rem - 1px);
}
.ag-theme-fresh-class .ag-cell-focus {
  background-color: #e5f8f3 !important;
  border-right: 1px solid #d1d2d3;
  border-top: 1px solid #e9eaeb;
}
.ag-theme-fresh-class .ag-header-cell-resize {
  position: absolute;
  right: -0.4rem;
  width: 0.8rem;
  z-index: 4;
}
.ag-theme-fresh-class .ag-header-cell-resize::after {
  border-right: 1px solid transparent;
  content: "resize";
  display: block;
  height: 1.6rem;
  margin-top: 0.8rem;
  overflow: hidden;
  text-indent: 0.4rem;
  width: 0.4rem;
  box-sizing: initial;
}
.ag-theme-fresh-class .ag-icon-aggregation {
  background-color: transparent;
  background-image: url("aggregation.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-arrows {
  background-color: transparent;
  background-image: url("arrows.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-asc {
  background-color: transparent;
  background-image: url("asc.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-checkbox-checked-readonly {
  background-color: transparent;
  background-image: url("checkbox-checked-readonly.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-checkbox-checked {
  background-color: transparent;
  background-image: url("checkbox-checked.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-checkbox-indeterminate-readonly {
  background-color: transparent;
  background-image: url("checkbox-indeterminate-readonly.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-checkbox-indeterminate {
  background-color: transparent;
  background-image: url("checkbox-indeterminate.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-checkbox-unchecked-readonly {
  background-color: transparent;
  background-image: url("checkbox-unchecked-readonly.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-checkbox-unchecked {
  background-color: transparent;
  background-image: url("checkbox-unchecked.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-column {
  background-color: transparent;
  background-image: url("column.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-columns {
  background-color: transparent;
  background-image: url("columns.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-contracted {
  background-color: transparent;
  background-image: url("contracted.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-copy {
  background-color: transparent;
  background-image: url("copy.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-cut {
  background-color: transparent;
  background-image: url("cut.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-desc {
  background-color: transparent;
  background-image: url("desc.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-expanded {
  background-color: transparent;
  background-image: url("expanded.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-eye-slash {
  background-color: transparent;
  background-image: url("eye-slash.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-eye {
  background-color: transparent;
  background-image: url("eye.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-filter {
  background-color: transparent;
  background-image: url("filter.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-group {
  background-color: transparent;
  background-image: url("group.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-indeterminate {
  background-color: transparent;
  background-image: url("indeterminate.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-left {
  background-color: transparent;
  background-image: url("left.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-loading {
  background-color: transparent;
  background-image: url("loading.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-menu {
  background-color: transparent;
  background-image: url("menu.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-minus {
  background-color: transparent;
  background-image: url("minus.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-none {
  background-color: transparent;
  background-image: url("none.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-not-allowed {
  background-color: transparent;
  background-image: url("not-allowed.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-paste {
  background-color: transparent;
  background-image: url("paste.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-pin {
  background-color: transparent;
  background-image: url("pin.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-pivot {
  background-color: transparent;
  background-image: url("pivot.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-plus {
  background-color: transparent;
  background-image: url("plus.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-right {
  background-color: transparent;
  background-image: url("right.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-small-left {
  background-color: transparent;
  background-image: url("small-left.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-small-right {
  background-color: transparent;
  background-image: url("small-right.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-small-up {
  background-color: transparent;
  background-image: url("small-up.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-small-down {
  background-color: transparent;
  background-image: url("small-down.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-tick {
  background-color: transparent;
  background-image: url("tick.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-cross {
  background-color: transparent;
  background-image: url("cross.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-tree-open {
  background-color: transparent;
  background-image: url("tree-open.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-icon-tree-closed {
  background-color: transparent;
  background-image: url("tree-closed.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  display: inline-block;
}
.ag-theme-fresh-class .ag-header-cell-menu-button .ag-icon-menu {
  display: block;
}
.ag-theme-fresh-class .ag-icon-checkbox-checked:empty {
  background-image: url("checkbox-checked.svg");
}
.ag-theme-fresh-class .ag-menu {
  background: #f6f6f6;
  border-radius: 0;
  box-shadow: none;
  padding: 0.4rem;
  padding: 0;
  z-index: 5;
}
.ag-theme-fresh-class .ag-menu .ag-menu-list {
  cursor: default;
  margin-bottom: 0.4rem;
  margin-top: 0.4rem;
  width: 100%;
}
.ag-theme-fresh-class .ag-menu .ag-menu-option {
  line-height: 1.6rem;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}
.ag-theme-fresh-class .ag-menu .ag-menu-option > span {
  display: table-cell;
  vertical-align: middle;
}
.ag-theme-fresh-class .ag-menu .ag-menu-option-active {
  background: #e9f5fc;
}
.ag-theme-fresh-class .ag-menu .ag-menu-option-disabled {
  opacity: 0.5;
}
.ag-theme-fresh-class .ag-menu .ag-menu-option-icon {
  padding-left: 0.4rem;
  padding-right: 0.4rem;
}
.ag-theme-fresh-class .ag-menu .ag-menu-option-icon span {
  height: 1.2rem;
  line-height: 0;
  margin-top: 0.4rem;
}
.ag-theme-fresh-class .ag-menu .ag-menu-option-shortcut {
  padding-left: 0.8rem;
}
.ag-theme-fresh-class .ag-menu .ag-menu-separator {
  margin-left: -0.4rem;
}
.ag-theme-fresh-class .ag-menu .ag-menu-separator > span {
  background-image: url("data:image/svg+xml;utf8,<svg width='1' height='0.8rem' viewBox='0 0 1 0.8rem' xmlns='http://www.w3.org/2000/svg'> <line x1='0' y1='0.4rem' x2='1' y2='0.4rem' stroke-width='1' stroke='transparent'/> </svg>");
  height: 0.8rem;
}
.ag-theme-fresh-class .ag-menu .ag-menu-option-popup-pointer {
  width: 2rem;
}
.ag-theme-fresh-class.ag-dnd-ghost {
  background: #f6f6f6;
  border-radius: 0;
  box-shadow: none;
  padding: 0.4rem;
  border: 0;
  color: #333333;
  font: 400 12px "Lato", sans-serif;
  height: 3.2rem !important;
  line-height: 3.2rem;
  margin: 0;
  padding: 0 0.8rem;
  transform: translatey(0.8rem);
  z-index: 5;
}
.ag-theme-fresh-class.ag-dnd-ghost span,
.ag-theme-fresh-class.ag-dnd-ghost div {
  float: left;
  height: 100%;
  margin: 0;
  padding: 0;
}
.ag-theme-fresh-class.ag-dnd-ghost .ag-dnd-ghost-icon {
  margin-right: 0.4rem;
  opacity: 1;
}
.ag-theme-fresh-class .ag-tab-header {
  background: #f6f6f6;
  min-width: 220px;
  width: 100%;
}
.ag-theme-fresh-class .ag-tab-header .ag-tab {
  border-bottom: 2px solid transparent;
  height: 1.6rem;
  text-align: center;
  vertical-align: middle;
}
.ag-theme-fresh-class .ag-tab-header .ag-tab.ag-tab-selected .ag-icon-filter {
  background-image: url("filter.svg");
  display: inline-block;
}
.ag-theme-fresh-class .ag-tab-header .ag-tab.ag-tab-selected .ag-icon-columns {
  background-image: url("columns.svg");
  display: inline-block;
}
.ag-theme-fresh-class .ag-tab-header .ag-tab.ag-tab-selected .ag-icon-menu {
  background-image: url("menu.svg");
  display: inline-block;
}
.ag-theme-fresh-class .ag-tab-body {
  padding: 0.4rem 0;
}
.ag-theme-fresh-class .ag-tab-body .ag-filter-select {
  margin: 0.4rem;
  width: calc(100% - 0.8rem);
}
.ag-theme-fresh-class .ag-tab-body .ag-menu-list {
  margin-bottom: 0;
  margin-top: 0;
}
.ag-theme-fresh-class .ag-tab-body .ag-menu-list > div:first-child > span {
  padding-top: 0;
}
.ag-theme-fresh-class .ag-tab-body .ag-menu-list > div:last-child > span {
  padding-bottom: 0;
}
.ag-theme-fresh-class .ag-tab-body .ag-menu-list > div:last-child > .ag-menu-option-popup-pointer {
  background-position-y: 0;
}
.ag-theme-fresh-class .ag-filter-select {
  margin: 0.4rem;
  width: calc(100% - 0.8rem);
}
.ag-theme-fresh-class .ag-filter input[type=text],
.ag-theme-fresh-class .ag-filter input[type=date] {
  padding-left: 0.4rem;
}
.ag-theme-fresh-class .ag-filter label {
  display: block;
  padding-left: 0.4rem;
}
.ag-theme-fresh-class .ag-filter .ag-set-filter-list {
  padding-top: 0.4rem;
}
.ag-theme-fresh-class .ag-filter .ag-filter-header-container {
  box-sizing: border-box;
  height: 3.6rem;
}
.ag-theme-fresh-class .ag-filter .ag-filter-header-container:nth-child(2) {
  border-bottom: 1px solid transparent;
}
.ag-theme-fresh-class .ag-filter .ag-filter-checkbox {
  float: left;
  height: 3.6rem;
  margin-right: 0.4rem;
  padding-top: 0.2rem;
}
.ag-theme-fresh-class .ag-filter .ag-filter-value {
  height: 3.6rem;
  line-height: 1.4rem;
}
.ag-theme-fresh-class .ag-filter .ag-filter-apply-panel {
  display: flex;
  justify-content: flex-end;
  padding: 0.4rem;
  padding-top: 0.8rem;
}
.ag-theme-fresh-class .ag-filter .ag-filter-apply-panel button + button {
  margin-left: 0.8rem;
}
.ag-theme-fresh-class .ag-column-select-panel .ag-column-select-column-group,
.ag-theme-fresh-class .ag-column-select-panel .ag-column-select-column {
  height: 1.6rem;
  line-height: 1.6rem;
  margin-left: 0.4rem;
}
.ag-theme-fresh-class .ag-column-select-panel .ag-column-select-column-group span,
.ag-theme-fresh-class .ag-column-select-panel .ag-column-select-column span {
  float: left;
  height: 100%;
}
.ag-theme-fresh-class .ag-column-select-panel .ag-column-select-column-group .ag-column-select-indent,
.ag-theme-fresh-class .ag-column-select-panel .ag-column-select-column .ag-column-select-indent {
  width: 0.8rem;
}
.ag-theme-fresh-class .ag-column-select-panel .ag-column-select-column-group .ag-column-select-checkbox,
.ag-theme-fresh-class .ag-column-select-panel .ag-column-select-column-group .ag-column-group-icons,
.ag-theme-fresh-class .ag-column-select-panel .ag-column-select-column .ag-column-select-checkbox,
.ag-theme-fresh-class .ag-column-select-panel .ag-column-select-column .ag-column-group-icons {
  margin-right: 0.4rem;
}
.ag-theme-fresh-class .ag-column-select-panel .ag-column-select-column {
  margin-left: 2rem;
}
.ag-theme-fresh-class .ag-group-child-count:before {
  content: " ";
}
.ag-theme-fresh-class .ag-tool-panel {
  background-color: #f6f6f6;
  border-right: 0;
}
.ag-theme-fresh-class .ag-tool-panel .ag-pivot-mode {
  border-bottom: 1px solid transparent;
  box-sizing: border-box;
  height: 3.2rem;
  line-height: 3.2rem;
}
.ag-theme-fresh-class .ag-tool-panel .ag-pivot-mode span {
  float: left;
  height: 100%;
}
.ag-theme-fresh-class .ag-tool-panel .ag-pivot-mode .ag-pivot-mode-select {
  margin-left: 0.4rem;
}
.ag-theme-fresh-class .ag-tool-panel .ag-pivot-mode .ag-pivot-mode-select .ag-checkbox-label {
  margin-left: 0.4rem;
}
.ag-theme-fresh-class .ag-tool-panel .ag-column-select-panel {
  border-bottom: 1px solid transparent;
  padding: 0.4rem 0;
  padding-bottom: -0.6rem;
}
.ag-theme-fresh-class .ag-tool-panel .ag-column-drop {
  border-bottom: 1px solid transparent;
  clear: both;
  overflow: auto;
  padding: 0.4rem 0;
  padding-bottom: 0.8rem;
}
.ag-theme-fresh-class .ag-tool-panel .ag-column-drop .ag-icon {
  float: left;
  height: 2rem;
  margin: 0 0.4rem;
}
.ag-theme-fresh-class .ag-tool-panel .ag-column-drop .ag-column-drop-title {
  clear: right;
  float: left;
  height: 2rem;
  line-height: 2rem;
  width: calc(100% - 2rem);
}
.ag-theme-fresh-class .ag-tool-panel .ag-column-drop .ag-column-drop-empty-message {
  clear: both;
  color: rgba(0, 0, 0, 0.5);
  font: 400 12px "Lato", sans-serif;
  line-height: 0.8rem;
  padding-left: 1.6rem;
  padding-right: 0.4rem;
}
.ag-theme-fresh-class .ag-filter-icon:empty {
  background-color: transparent;
  background-image: url("filter.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
}
.ag-theme-fresh-class .ag-sort-ascending-icon:empty {
  background-color: transparent;
  background-image: url("asc.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
}
.ag-theme-fresh-class .ag-sort-descending-icon:empty {
  background-color: transparent;
  background-image: url("desc.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
}
.ag-theme-fresh-class .ag-sort-none-icon:empty {
  background-color: transparent;
  background-image: url("none.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
}
.ag-theme-fresh-class .ag-numeric-header .ag-header-cell-label .ag-header-icon {
  margin-left: 0;
  margin-right: 0.4rem;
}
.ag-theme-fresh-class .ag-paging-panel {
  align-items: center;
  border-top: 1px solid transparent;
  color: #333333;
  display: flex;
  height: 3.2rem;
  justify-content: flex-end;
  padding: 0 0.8rem;
}
.ag-theme-fresh-class .ag-paging-panel > span {
  margin-left: 1.6rem;
}
.ag-theme-fresh-class .ag-row-selected .ag-cell {
  background-color: #e5f8f3 !important;
}
.ag-theme-fresh-class .ag-cell-range-selected:not(.ag-cell-focus) .ag-cell {
  background-color: rgba(120, 120, 120, 0.4);
}
.ag-theme-fresh-class .ag-cell-inline-editing {
  background: #f6f6f6;
  border-radius: 0;
  box-shadow: none;
  padding: 0.4rem;
  height: 4.8rem;
  min-height: 100%;
  line-height: normal;
  padding: 0.8rem;
  z-index: 2;
}
.ag-theme-fresh-class .ag-cell-inline-editing select {
  height: auto;
}
.ag-theme-fresh-class .ag-popup-editor {
  background: #f6f6f6;
  border-radius: 0;
  box-shadow: none;
  padding: 0.4rem;
  padding: 0;
}
.ag-theme-fresh-class .ag-popup-editor .ag-large-textarea textarea {
  height: auto;
  padding: 0.8rem;
}
.ag-theme-fresh-class .ag-rich-select {
  background-image: url("/assets/ag-grid/tree-open-73cd1d37.svg?color1=");
  background-position-x: calc(100% - 0.4rem);
  background-position-y: 0.8rem;
  background-repeat: no-repeat;
}
.ag-theme-fresh-class .ag-rich-select .ag-rich-select-list {
  height: 200px;
}
.ag-theme-fresh-class .ag-rich-select .ag-rich-select-value {
  height: 3.6rem;
  line-height: 3.6rem;
  padding-left: 0.8rem;
}
.ag-theme-fresh-class .ag-rich-select .ag-virtual-list-item {
  cursor: default;
  height: 3.6rem;
  line-height: 3.6rem;
}
.ag-theme-fresh-class .ag-rich-select .ag-virtual-list-item:hover {
  background-color: #e9f5fc;
}
.ag-theme-fresh-class .ag-rich-select .ag-rich-select-row {
  padding-left: 0.8rem;
}
.ag-theme-fresh-class .ag-rich-select .ag-rich-select-row-selected {
  background-color: #e5f8f3;
}
.ag-theme-fresh-class .ag-floating-filter-body {
  float: left;
  height: 100%;
  margin-right: 0;
  width: calc(100% - 2rem);
}
.ag-theme-fresh-class .ag-floating-filter-body input {
  box-sizing: border-box;
}
.ag-theme-fresh-class .ag-floating-filter-full-body input {
  box-sizing: border-box;
}
.ag-theme-fresh-class .ag-floating-filter-button {
  float: right;
  line-height: 1.2rem;
  margin-top: 1rem;
}
.ag-theme-fresh-class .ag-floating-filter-button button {
  appearance: none;
  border: 0;
  background: transparent;
  width: 1.2rem;
  height: 1.2rem;
  padding: 0;
}
.ag-theme-fresh-class .ag-cell-label-container {
  height: 100%;
}
.ag-theme-fresh-class .ag-header-group-cell-label {
  height: 100%;
}
.ag-theme-fresh-class .ag-header-group-cell-label span {
  float: left;
  height: 100%;
}
.ag-theme-fresh-class .ag-header-select-all {
  height: 100%;
  margin-right: 0.8rem;
}
.ag-theme-fresh-class .ag-header-select-all span {
  height: 100%;
}
.ag-theme-fresh-class .ag-header-select-all:not(.ag-hidden) + .ag-cell-label-container {
  float: left;
  width: calc(100% - 1.2rem - 0.8rem);
}
.ag-theme-fresh-class .ag-selection-checkbox span,
.ag-theme-fresh-class .ag-group-expanded span,
.ag-theme-fresh-class .ag-group-contracted span {
  margin-right: 0.8rem;
}
.ag-theme-fresh-class .ag-selection-checkbox span {
  position: relative;
  top: 0.2rem;
}
.ag-theme-fresh-class .ag-selection-checkbox {
  vertical-align: middle;
}
.ag-theme-fresh-class .ag-selection-checkbox + .ag-cell-value {
  vertical-align: middle;
}
.ag-theme-fresh-class .ag-selection-checkbox + .ag-cell-value span {
  vertical-align: middle;
}
.ag-theme-fresh-class .ag-selection-checkbox + .ag-cell-value .ag-group-value > span {
  top: -3px;
  position: relative;
}
.ag-theme-fresh-class .ag-group-expanded .ag-icon-contracted:empty {
  background-color: transparent;
  background-image: url("tree-open.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
}
.ag-theme-fresh-class .ag-column-drop-horizontal {
  background-color: #f6f6f6;
  height: 3.6rem;
  line-height: 1.6rem;
  padding-left: 0.8rem;
}
.ag-theme-fresh-class .ag-column-drop-horizontal.ag-width-half {
  margin-bottom: -3px;
}
.ag-theme-fresh-class .ag-column-drop-horizontal span {
  float: left;
  height: 100%;
}
.ag-theme-fresh-class .ag-column-drop-horizontal .ag-icon-group,
.ag-theme-fresh-class .ag-column-drop-horizontal .ag-icon-pivot {
  margin-right: 0.8rem;
}
.ag-theme-fresh-class .ag-column-drop-horizontal .ag-right-arrow {
  background-color: transparent;
  background-image: url("right.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
}
.ag-theme-fresh-class .ag-column-drop-horizontal .ag-left-arrow {
  background-color: transparent;
  background-image: url("left.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
}
.ag-theme-fresh-class .ag-column-drop-horizontal .ag-left-arrow,
.ag-theme-fresh-class .ag-column-drop-horizontal .ag-right-arrow {
  overflow: hidden;
  text-indent: 100%;
  height: 100%;
  margin: 0 0.4rem;
  opacity: 1;
}
.ag-theme-fresh-class .ag-column-drop-horizontal .ag-column-drop-empty-message {
  height: 100%;
  line-height: 3.6rem;
  opacity: 0.5;
}
.ag-theme-fresh-class .ag-column-drop-cell {
  background: #ecf0f1;
  border-radius: 1.6rem;
  box-sizing: border-box;
  height: 1.6rem !important;
  margin-top: 0.4rem;
  padding: 0 0.2rem;
}
.ag-theme-fresh-class .ag-column-drop-cell .ag-column-drop-cell-text {
  height: 100%;
  line-height: 1.6rem;
  margin: 0 0.4rem;
}
.ag-theme-fresh-class .ag-column-drop-cell .ag-column-drop-cell-button {
  background-color: transparent;
  background-image: url("cancel.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  overflow: hidden;
  text-indent: 100%;
  height: 100%;
  margin: 0 0.2rem;
  opacity: 1;
}
.ag-theme-fresh-class .ag-column-drop-cell .ag-column-drop-cell-button:hover {
  opacity: 1;
}
.ag-theme-fresh-class .ag-select-agg-func-popup {
  background: #f6f6f6;
  border-radius: 0;
  box-shadow: none;
  padding: 0.4rem;
  background: white;
  padding: 0;
  height: 7rem;
}
.ag-theme-fresh-class .ag-select-agg-func-popup .ag-virtual-list-item {
  cursor: default;
  line-height: 2rem;
  padding-left: 0.8rem;
}
.ag-theme-fresh-class .ag-select-agg-func-popup .ag-virtual-list-item:hover {
  background-color: #e5f8f3;
}
.ag-theme-fresh-class .ag-set-filter-list,
.ag-theme-fresh-class .ag-menu-column-select-wrapper {
  width: auto;
}
.ag-theme-fresh-class .ag-column-drop-vertical > .ag-column-drop-cell {
  float: left;
  margin-bottom: 0.4rem;
  margin-left: 0.4rem;
  margin-top: 0;
}
.ag-theme-fresh-class .ag-cell-data-changed {
  background-color: #cec !important;
}
.ag-theme-fresh-class .ag-cell-data-changed-animation {
  background-color: transparent;
  transition: background-color 1s;
}
.ag-theme-fresh-class .ag-row-stub {
  background-color: #f0f0f0;
}
.ag-theme-fresh-class .ag-stub-cell {
  padding-left: 0.8rem;
  padding-top: 0.4rem;
}
.ag-theme-fresh-class .ag-stub-cell .ag-loading-icon {
  float: left;
  height: 100%;
}
.ag-theme-fresh-class .ag-stub-cell .ag-loading-text {
  margin-top: 0.4rem;
  margin-left: 0.4rem;
  float: left;
  height: 100%;
}
.ag-theme-fresh-class .ag-floating-top {
  background-color: #f0f0f0;
}
.ag-theme-fresh-class .ag-floating-top .ag-row {
  background-color: #f0f0f0;
}
.ag-theme-fresh-class .ag-floating-bottom {
  background-color: #f0f0f0;
}
.ag-theme-fresh-class .ag-rtl .ag-numeric-cell {
  text-align: left;
}
.ag-theme-fresh-class .ag-rtl .ag-header-cell-menu-button {
  float: left;
}
.ag-theme-fresh-class .ag-rtl .ag-header-cell-label {
  float: right;
  width: calc(100% - 1.2rem);
}
.ag-theme-fresh-class .ag-rtl .ag-header-cell-label > span {
  float: right;
}
.ag-theme-fresh-class .ag-rtl .ag-header-cell-label .ag-header-icon {
  margin-top: 2px;
}
.ag-theme-fresh-class .ag-rtl .ag-numeric-header .ag-header-cell-menu-button {
  float: right;
  right: 0.8rem;
}
.ag-theme-fresh-class .ag-rtl .ag-numeric-header .ag-header-cell-label {
  float: left;
}
.ag-theme-fresh-class .ag-rtl .ag-numeric-header .ag-header-cell-label > span {
  float: left;
}
.ag-theme-fresh-class .ag-rtl .ag-tool-panel .ag-pivot-mode span {
  float: right;
}
.ag-theme-fresh-class .ag-rtl .ag-tool-panel .ag-pivot-mode .ag-pivot-mode-select {
  margin-right: 0.4rem;
}
.ag-theme-fresh-class .ag-rtl .ag-tool-panel .ag-pivot-mode .ag-pivot-mode-select .ag-checkbox-label {
  margin-right: 0.4rem;
}
.ag-theme-fresh-class .ag-rtl .ag-tool-panel .ag-column-drop .ag-icon {
  float: right;
}
.ag-theme-fresh-class .ag-rtl .ag-tool-panel .ag-column-drop .ag-column-drop-title {
  clear: left;
  float: right;
}
.ag-theme-fresh-class .ag-rtl .ag-tool-panel .ag-column-drop .ag-column-drop-empty-message {
  padding-left: 0.4rem;
  padding-right: 1.6rem;
}
.ag-theme-fresh-class .ag-rtl .ag-filter-checkbox {
  float: right;
  margin-left: 0.4rem;
}
.ag-theme-fresh-class .ag-rtl .ag-column-select-panel .ag-column-select-column-group,
.ag-theme-fresh-class .ag-rtl .ag-column-select-panel .ag-column-select-column {
  margin-right: 0.4rem;
}
.ag-theme-fresh-class .ag-rtl .ag-column-select-panel .ag-column-select-column-group span,
.ag-theme-fresh-class .ag-rtl .ag-column-select-panel .ag-column-select-column span {
  float: right;
}
.ag-theme-fresh-class .ag-rtl .ag-column-select-panel .ag-column-select-column-group .ag-column-select-checkbox,
.ag-theme-fresh-class .ag-rtl .ag-column-select-panel .ag-column-select-column-group .ag-column-group-icons,
.ag-theme-fresh-class .ag-rtl .ag-column-select-panel .ag-column-select-column .ag-column-select-checkbox,
.ag-theme-fresh-class .ag-rtl .ag-column-select-panel .ag-column-select-column .ag-column-group-icons {
  margin-left: 0.4rem;
}
.ag-theme-fresh-class .ag-rtl .ag-column-select-panel .ag-column-select-column {
  margin-left: 0;
  margin-right: calc(1.2rem + 0.8rem);
}
.ag-theme-fresh-class .ag-rtl .ag-icon-tree-closed {
  background-color: transparent;
  background-image: url("contracted.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
}
.ag-theme-fresh-class .ag-rtl .ag-header-group-cell-label {
  height: 100%;
}
.ag-theme-fresh-class .ag-rtl .ag-header-group-cell-label span {
  float: right;
  height: 100%;
}
.ag-theme-fresh-class .ag-rtl .ag-header-select-all:not(.ag-hidden) + .ag-cell-label-container {
  float: right;
}
.ag-theme-fresh-class .ag-rtl .ag-header-select-all {
  margin-left: 0.8rem;
  margin-right: 0;
}
.ag-theme-fresh-class .ag-rtl .ag-selection-checkbox span,
.ag-theme-fresh-class .ag-rtl .ag-group-expanded span,
.ag-theme-fresh-class .ag-rtl .ag-group-contracted span {
  margin-right: 0;
  margin-left: 0.8rem;
}
.ag-theme-fresh-class .ag-rtl .ag-column-drop-horizontal {
  padding-right: 0.8rem;
}
.ag-theme-fresh-class .ag-rtl .ag-column-drop-horizontal span {
  float: right;
}
.ag-theme-fresh-class .ag-rtl .ag-column-drop-horizontal .ag-icon-group,
.ag-theme-fresh-class .ag-rtl .ag-column-drop-horizontal .ag-icon-pivot {
  margin-left: 0.8rem;
  margin-right: 0;
}
.ag-theme-fresh-class .ag-rtl .ag-column-drop-horizontal .ag-right-arrow {
  background-color: transparent;
  background-image: url("right.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  height: 100%;
}
.ag-theme-fresh-class .ag-rtl .ag-column-drop-horizontal .ag-left-arrow {
  background-color: transparent;
  background-image: url("left.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
  height: 100%;
}
.ag-theme-fresh-class .ag-rtl .ag-floating-filter-body {
  float: right;
  margin-left: 0;
}
.ag-theme-fresh-class .ag-rtl .ag-floating-filter-button {
  float: left;
}
.ag-theme-fresh-class .ag-rtl .ag-header .ag-header-cell-resize {
  left: -0.4rem;
  right: auto;
}
.ag-theme-fresh-class .ag-rtl .ag-header .ag-header-cell-resize::after {
  border-right: 0;
  border-left: 1px solid transparent;
}
.ag-theme-fresh-class .ag-status-bar {
  background: white;
  border-top: 1px solid transparent;
  color: rgba(0, 0, 0, 0.5);
  display: flex;
  font: 400 12px "Lato", sans-serif;
  justify-content: flex-end;
  padding: 0.8rem 1.6rem;
}
.ag-theme-fresh-class .ag-status-bar .ag-status-bar-item {
  margin-right: 0.8rem;
}
.ag-theme-fresh-class .ag-status-bar .ag-status-bar-item span:nth-child(1)::after {
  content: ":";
}
.ag-theme-fresh-class .ag-status-bar .ag-status-bar-item span:nth-child(2) {
  color: black;
}
.ag-theme-fresh-class.ag-dnd-ghost {
  border: 1px solid transparent;
}
.ag-theme-fresh-class .sass-variables::after {
  content: '{ "autoSizePadding": "1.2rem", "headerHeight": "3.2rem", "groupPaddingSize": "2.4rem", "footerPaddingAddition": "1.6rem", "virtualItemHeight": "3.6rem", "aggFuncPopupHeight": "12.6rem", "checkboxIndentWidth": "1.6rem", "leafNodePadding": "1.2rem", "rowHeight": "3.6rem", "gridSize": "0.4rem", "iconSize": "1.2rem" }';
  display: none;
}
.ag-theme-fresh-class .ag-tab-header {
  background-color: #e6e6e6;
}
.ag-theme-fresh-class .ag-faded {
  opacity: 0.3;
}
.ag-theme-fresh-class [ref=north] .ag-column-drop {
  border: 1px solid transparent;
  border-bottom: 0;
}
.ag-theme-fresh-class [ref=north] .ag-column-drop:last-child {
  border-left: 0;
}
.ag-theme-fresh-class .ag-header {
  background-image: #edeff1;
  color: #3b434c;
}
.ag-theme-fresh-class .ag-header-cell-resize::after {
  margin-top: 0;
  height: 3.2rem;
}
.ag-theme-fresh-class .ag-header-cell {
  box-sizing: border-box;
  border-right: 1px solid #d1d2d3;
}
.ag-theme-fresh-class .ag-header-group-cell {
  border-right: 1px solid transparent;
}
.ag-theme-fresh-class .ag-header-group-cell-with-group {
  border-bottom: 1px solid transparent;
}
.ag-theme-fresh-class .ag-header-row {
  border-bottom: 0;
}
.ag-theme-fresh-class .ag-root {
  border: 1px solid transparent;
}
.ag-theme-fresh-class .ag-tool-panel {
  border: 1px solid transparent;
  border-left: 0;
}
.ag-theme-fresh-class .ag-cell-no-focus {
  border-right: 1px solid #e9eaeb;
  border-top: 1px solid #e9eaeb;
}
.ag-theme-fresh-class .ag-row {
  border-bottom-width: 0;
}
.ag-theme-fresh-class .ag-tool-panel .ag-column-drop .ag-column-drop-empty-message {
  line-height: 3.2rem;
}
.ag-theme-fresh-class .ag-floating-filter-button {
  margin-top: 0.8rem;
}
.ag-theme-fresh-class .ag-menu .ag-menu-option {
  line-height: 2rem;
}
.ag-theme-fresh-class .ag-filter .ag-filter-apply-panel {
  border-top: 1px solid transparent;
  justify-content: flex-start;
}
.ag-theme-fresh-class .ag-menu .ag-menu-option-active {
  background: #e5f8f3;
}
.ag-theme-fresh-class .ag-menu .ag-menu-option {
  line-height: 2.4rem;
}
.ag-theme-fresh-class .ag-column-drop-cell {
  background: #ecf0f1;
  border-radius: 0;
  background-image: #edeff1;
  height: 1.8rem !important;
  border: 1px solid transparent;
}
.ag-theme-fresh-class .ag-cell-range-selected-1:not(.ag-cell-focus) {
  background-color: rgba(120, 120, 120, 0.4);
}
.ag-theme-fresh-class .ag-cell-range-selected-2:not(.ag-cell-focus) {
  background-color: rgba(80, 80, 80, 0.4);
}
.ag-theme-fresh-class .ag-cell-range-selected-3:not(.ag-cell-focus) {
  background-color: rgba(40, 40, 40, 0.4);
}
.ag-theme-fresh-class .ag-cell-range-selected-4:not(.ag-cell-focus) {
  background-color: rgba(0, 0, 0, 0.4);
}
.ag-theme-fresh-class .ag-cell-highlight {
  background-color: rgba(120, 120, 120, 0.4);
  border-bottom: 1px solid darkgreen;
}
.ag-theme-fresh-class .ag-cell-highlight-animation {
  transition: all 1s;
}
.ag-theme-fresh-class .ag-group-expanded .ag-icon-contracted:empty {
  background-color: transparent;
  background-image: url("contracted.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
}
.ag-theme-fresh-class .ag-rtl .ag-icon-tree-closed {
  background-color: transparent;
  background-image: url("small-left.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem 1.2rem;
  height: 1.2rem;
  opacity: 1;
  width: 1.2rem;
}
.ag-theme-fresh-class .ag-cell-inline-editing {
  padding: 0;
  height: 3.6rem;
}
.ag-theme-fresh-class .ag-cell-inline-editing input {
  box-sizing: border-box;
}
.ag-theme-fresh-class .ag-column-drop-cell .ag-column-drop-cell-button {
  box-sizing: border-box;
  height: calc(100% - 0.4rem);
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}
.ag-theme-fresh-class .ag-column-drop-cell .ag-column-drop-cell-button:hover {
  border: 1px solid transparent;
}
.ag-theme-fresh-class .ag-column-drop-vertical .ag-column-drop-cell {
  display: block;
  float: none;
}
.ag-theme-fresh-class .ag-tool-panel .ag-column-drop .ag-column-drop-title {
  float: none;
}
.ag-theme-fresh-class .ag-column-select-panel .ag-column-select-column-group,
.ag-theme-fresh-class .ag-column-select-panel .ag-column-select-column {
  height: 2rem;
  line-height: 2rem;
}
.ag-theme-fresh-class .ag-filter .ag-filter-header-container {
  height: 2.4rem;
}
.ag-theme-fresh-class .ag-tab {
  box-sizing: initial;
}
.ag-theme-fresh-class .ag-filter .ag-filter-value {
  line-height: 1.6rem;
}
.ag-theme-fresh-class .ag-selection-checkbox span {
  position: relative;
  top: 0;
}
.ag-theme-fresh-class .ag-rich-select-value {
  border-bottom: 1px solid transparent;
}
.ag-theme-fresh-class .ag-header-cell-moving .ag-header-cell-label {
  opacity: 0.5;
}
.ag-theme-fresh-class .ag-header-cell-moving {
  background-color: rgb(190, 190, 190);
}
.ag-theme-fresh-class .ag-ltr .ag-pinned-right-header {
  border-left: 1px solid transparent;
}
.ag-theme-fresh-class .ag-rtl .ag-pinned-left-header {
  border-right: 1px solid transparent;
}
.ag-theme-fresh-class .ag-overlay-loading-wrapper {
  background-color: rgba(255, 255, 255, 0.5);
}
.ag-theme-fresh-class .ag-overlay-loading-center {
  background-color: #ffffff;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px;
  color: black;
}
.ag-theme-fresh-class .level-down[style*="display: inline"] {
  display: inline-block !important;
}
.ag-theme-fresh-class .ag-header-cell-label {
  padding: 0 !important;
}
.ag-theme-fresh-class .ag-row.ag-row-hover .actions .icon.remove i {
  color: #ee5b4e;
}
.ag-theme-fresh-class .with-lock {
  display: inline;
  padding-right: 1.6rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.ag-theme-fresh-class .wrap-cell {
  overflow: visible;
  white-space: normal;
  height: inherit;
}
.ag-theme-fresh-class .wrap-cell.ag-cell-value.ag-cell > .category {
  height: inherit;
  overflow: auto;
}
.ag-theme-fresh-class .wrap-cell .category, .ag-theme-fresh-class .wrap-cell .num, .ag-theme-fresh-class .wrap-cell .with-level-down {
  white-space: normal;
  word-wrap: break-word;
  overflow: visible;
  line-height: normal;
  padding: 1.36rem 0;
}
.ag-theme-fresh-class .wrap-cell .ag-cell-wrapper {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  width: 100%;
  height: inherit;
}
.ag-theme-fresh-class .wrap-cell .ag-cell-wrapper > .ag-selection-checkbox {
  width: 18px;
  max-width: 18px;
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.ag-theme-fresh-class .wrap-cell .ag-cell-wrapper > .ag-selection-checkbox > span {
  margin-top: -1.04rem;
}
.ag-theme-fresh-class .wrap-cell .ag-cell-wrapper > .ag-cell-value {
  height: inherit;
}
.ag-theme-fresh-class .wrap-cell .ag-cell-wrapper > .ag-cell-value > div {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  width: auto;
  line-height: normal;
  height: inherit;
}
.ag-theme-fresh-class .wrap-cell .ag-cell-wrapper > .ag-cell-value > div > * {
  height: inherit;
}
.ag-theme-fresh-class .wrap-cell .ag-cell-wrapper > .ag-cell-value > div > *.with-level-down {
  width: 21px;
  max-width: 21px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-box-flex: 0;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.ag-theme-fresh-class .wrap-cell .ag-cell-wrapper > .ag-cell-value > div > *.num {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-box-flex: 0;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.ag-theme-fresh-class .wrap-cell .ag-cell-wrapper > .ag-cell-value > div > *.category {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: auto;
  word-wrap: anywhere;
  word-break: break-word;
  height: inherit;
  overflow: auto;
}
.ag-theme-fresh-class .wrap-cell .ag-cell-wrapper > .ag-cell-value > div > *.ag-group-expanded, .ag-theme-fresh-class .wrap-cell .ag-cell-wrapper > .ag-cell-value > div > *.ag-group-contracted {
  width: 15px;
  max-width: 15px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-box-flex: 0;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-top: 1.44rem;
}
.ag-theme-fresh-class .lock-tiny {
  position: absolute;
  right: 0;
  padding-right: 0.48rem;
  height: 44px;
  line-height: 44px;
  top: 0.32rem;
}
.ag-theme-fresh-class .lock-tiny.no .pt-lock {
  display: none;
}
.ag-theme-fresh-class .lock-tiny.no .pt-unlock {
  display: inline-block;
}
.ag-theme-fresh-class .lock-tiny:not(.on) .pt-lock {
  color: #ee5b4e;
}
.ag-theme-fresh-class .lock-tiny .pt-unlock {
  display: none;
}
.ag-theme-fresh-class .unit-price, .ag-theme-fresh-class .total, .ag-theme-fresh-class .options {
  text-align: right;
}
.ag-theme-fresh-class .unit-price input, .ag-theme-fresh-class .total input, .ag-theme-fresh-class .options input {
  text-align: right;
}
.ag-theme-fresh-class .note {
  background-color: #fff7e9;
  height: inherit !important;
}
.ag-theme-fresh-class .note textarea {
  height: inherit !important;
  background-color: #fff7e9;
  min-height: 0 !important;
  border: 0;
  border-radius: 0;
  margin: 0;
  resize: none;
  line-height: normal;
  padding: 0.8rem;
}
.ag-theme-fresh-class .note {
  position: relative;
  min-height: 3.2rem;
  font-size: 1.12rem;
  color: inherit;
  font-weight: normal;
  line-height: 32px;
  text-indent: 0.8rem;
}
.ag-theme-fresh-class .note:before {
  font-family: "FontAwesome";
  color: #3b434c;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  text-decoration: inherit;
  font-size: 1.52rem;
  content: "\f15c";
  position: absolute;
  left: 0.8rem;
  top: 0.8rem;
}
.ag-theme-fresh-class .note {
  padding: 0 0 0 2.8rem;
  border-top: 1px solid #d1d2d3;
}
.ag-theme-fresh-class .ag-selection-checkbox .ag-icon-checkbox-unchecked, .ag-theme-fresh-class .ag-selection-checkbox .ag-icon-checkbox-checked {
  display: inline-block;
  width: 14px;
  height: 14px;
  position: relative;
  vertical-align: middle;
  border: 1px solid #505d68;
  background: #fff;
  border-radius: 0.12rem;
  padding: 0;
  margin: 0;
  text-align: center;
}
.ag-theme-fresh-class .ag-selection-checkbox .ag-icon-checkbox-checked:before {
  content: "";
  display: block;
  color: #fff;
}
.ag-theme-fresh-class .ag-selection-checkbox .ag-icon-checkbox-checked {
  border: 1px solid #3196d1;
  background: #3196d1;
}
.ag-theme-fresh-class .ag-selection-checkbox .ag-icon-checkbox-checked:before {
  content: "\f00c";
  font-family: "FontAwesome";
  font-size: 9px;
  line-height: 13px;
}

:root {
  --iti-hover-color: rgba(0, 0, 0, 0.05);
  --iti-border-color: #ccc;
  --iti-dialcode-color: #999;
  --iti-dropdown-bg: white;
  --iti-search-icon-color: #999;
  --iti-spacer-horizontal: 8px;
  --iti-flag-height: 12px;
  --iti-flag-width: 16px;
  --iti-border-width: 1px;
  --iti-arrow-height: 4px;
  --iti-arrow-width: 6px;
  --iti-triangle-border: calc(var(--iti-arrow-width) / 2);
  --iti-arrow-padding: 6px;
  --iti-arrow-color: #555;
  --iti-path-flags-1x: url("../img/flags.webp");
  --iti-path-flags-2x: url("../img/flags@2x.webp");
  --iti-path-globe-1x: url("../img/globe.webp");
  --iti-path-globe-2x: url("../img/globe@2x.webp");
  --iti-flag-sprite-width: 3904px;
  --iti-flag-sprite-height: 12px;
  --iti-mobile-popup-margin: 30px;
}

.iti {
  position: relative;
  display: inline-block;
}

.iti * {
  box-sizing: border-box;
}

.iti__a11y-text {
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  position: absolute;
}

.iti input.iti__tel-input,
.iti input.iti__tel-input[type=text],
.iti input.iti__tel-input[type=tel] {
  position: relative;
  z-index: 0;
  margin: 0 !important;
}

.iti__country-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  padding: var(--iti-border-width);
}

.iti__selected-country {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: none;
}

.iti__selected-country-primary {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 var(--iti-arrow-padding) 0 var(--iti-spacer-horizontal);
}

.iti__arrow {
  margin-left: var(--iti-arrow-padding);
  width: 0;
  height: 0;
  border-left: var(--iti-triangle-border) solid transparent;
  border-right: var(--iti-triangle-border) solid transparent;
  border-top: var(--iti-arrow-height) solid var(--iti-arrow-color);
}

.iti__arrow--up {
  border-top: none;
  border-bottom: var(--iti-arrow-height) solid var(--iti-arrow-color);
}

.iti__dropdown-content {
  border-radius: 3px;
  background-color: var(--iti-dropdown-bg);
}

.iti--inline-dropdown .iti__dropdown-content {
  position: absolute;
  z-index: 2;
  margin-top: 3px;
  margin-left: calc(var(--iti-border-width) * -1);
  border: var(--iti-border-width) solid var(--iti-border-color);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.iti__search-input {
  width: 100%;
  border-width: 0;
  border-radius: 3px;
  padding-left: 30px;
  padding-right: 28px;
}

[dir=rtl] .iti__search-input {
  padding-left: inherit;
  padding-right: 30px;
  background-position: right 8px center;
}

.iti__search-input + .iti__country-list {
  border-top: 1px solid var(--iti-border-color);
}

.iti__search-input::-webkit-search-cancel-button {
  appearance: none;
}

.iti__search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.iti__search-icon {
  position: absolute;
  left: 8px;
  display: flex;
  pointer-events: none;
}

[dir=rtl] .iti__search-icon {
  left: auto;
  right: 8px;
}

.iti__search-icon-svg {
  stroke: var(--iti-search-icon-color);
  fill: none;
  stroke-width: 3;
}

.iti__search-clear {
  position: absolute;
  right: 4px;
  background: transparent;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease;
  width: 24px;
  height: 24px;
}

.iti__search-clear .iti__search-clear-x {
  stroke-width: 2;
}

.iti__search-clear .iti__search-clear-bg {
  fill: var(--iti-search-icon-color);
}

[dir=rtl] .iti__search-clear {
  right: auto;
  left: 4px;
}

.iti__search-clear:hover, .iti__search-clear:focus-visible {
  background: var(--iti-hover-color);
  outline: none;
}

.iti__no-results {
  text-align: center;
  padding: 30px 0;
}

.iti__country-list {
  list-style: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.iti--inline-dropdown .iti__country-list {
  max-height: 185px;
}

.iti--flexible-dropdown-width .iti__country-list {
  white-space: nowrap;
}

@media (max-width: 500px) {
  .iti--flexible-dropdown-width .iti__country-list {
    white-space: normal;
  }
}
.iti__country {
  display: flex;
  align-items: center;
  padding: 8px var(--iti-spacer-horizontal);
  outline: none;
}

.iti__dial-code {
  color: var(--iti-dialcode-color);
}

.iti__country.iti__highlight {
  background-color: var(--iti-hover-color);
}

.iti__country-list .iti__flag, .iti__country-name {
  margin-right: var(--iti-spacer-horizontal);
}

[dir=rtl] .iti__country-list .iti__flag, [dir=rtl] .iti__country-name {
  margin-right: 0;
  margin-left: var(--iti-spacer-horizontal);
}

.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) button.iti__selected-country {
  cursor: pointer;
}

.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country-primary:hover,
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country:has(+ .iti__dropdown-content:hover) .iti__selected-country-primary {
  background-color: var(--iti-hover-color);
}

.iti .iti__selected-dial-code {
  margin-left: 4px;
}

.iti--container {
  position: fixed;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: var(--iti-border-width);
}

.iti--container:hover {
  cursor: pointer;
}

.iti__hide {
  display: none;
}

.iti__v-hide {
  visibility: hidden;
}

.iti--fullscreen-popup.iti--container {
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  padding: var(--iti-mobile-popup-margin);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.iti--fullscreen-popup .iti__dropdown-content {
  display: flex;
  flex-direction: column;
  max-height: 100%;
  position: relative;
}

.iti--fullscreen-popup .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}

.iti__flag {
  --iti-flag-offset: 100px;
  height: var(--iti-flag-height);
  width: var(--iti-flag-width);
  border-radius: 1px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: var(--iti-path-flags-1x);
  background-repeat: no-repeat;
  background-position: var(--iti-flag-offset) 0;
  background-size: var(--iti-flag-sprite-width) var(--iti-flag-sprite-height);
}

.iti__ac {
  --iti-flag-offset: 0px;
}

.iti__ad {
  --iti-flag-offset: -16px;
}

.iti__ae {
  --iti-flag-offset: -32px;
}

.iti__af {
  --iti-flag-offset: -48px;
}

.iti__ag {
  --iti-flag-offset: -64px;
}

.iti__ai {
  --iti-flag-offset: -80px;
}

.iti__al {
  --iti-flag-offset: -96px;
}

.iti__am {
  --iti-flag-offset: -112px;
}

.iti__ao {
  --iti-flag-offset: -128px;
}

.iti__ar {
  --iti-flag-offset: -144px;
}

.iti__as {
  --iti-flag-offset: -160px;
}

.iti__at {
  --iti-flag-offset: -176px;
}

.iti__au {
  --iti-flag-offset: -192px;
}

.iti__aw {
  --iti-flag-offset: -208px;
}

.iti__ax {
  --iti-flag-offset: -224px;
}

.iti__az {
  --iti-flag-offset: -240px;
}

.iti__ba {
  --iti-flag-offset: -256px;
}

.iti__bb {
  --iti-flag-offset: -272px;
}

.iti__bd {
  --iti-flag-offset: -288px;
}

.iti__be {
  --iti-flag-offset: -304px;
}

.iti__bf {
  --iti-flag-offset: -320px;
}

.iti__bg {
  --iti-flag-offset: -336px;
}

.iti__bh {
  --iti-flag-offset: -352px;
}

.iti__bi {
  --iti-flag-offset: -368px;
}

.iti__bj {
  --iti-flag-offset: -384px;
}

.iti__bl {
  --iti-flag-offset: -400px;
}

.iti__bm {
  --iti-flag-offset: -416px;
}

.iti__bn {
  --iti-flag-offset: -432px;
}

.iti__bo {
  --iti-flag-offset: -448px;
}

.iti__bq {
  --iti-flag-offset: -464px;
}

.iti__br {
  --iti-flag-offset: -480px;
}

.iti__bs {
  --iti-flag-offset: -496px;
}

.iti__bt {
  --iti-flag-offset: -512px;
}

.iti__bw {
  --iti-flag-offset: -528px;
}

.iti__by {
  --iti-flag-offset: -544px;
}

.iti__bz {
  --iti-flag-offset: -560px;
}

.iti__ca {
  --iti-flag-offset: -576px;
}

.iti__cc {
  --iti-flag-offset: -592px;
}

.iti__cd {
  --iti-flag-offset: -608px;
}

.iti__cf {
  --iti-flag-offset: -624px;
}

.iti__cg {
  --iti-flag-offset: -640px;
}

.iti__ch {
  --iti-flag-offset: -656px;
}

.iti__ci {
  --iti-flag-offset: -672px;
}

.iti__ck {
  --iti-flag-offset: -688px;
}

.iti__cl {
  --iti-flag-offset: -704px;
}

.iti__cm {
  --iti-flag-offset: -720px;
}

.iti__cn {
  --iti-flag-offset: -736px;
}

.iti__co {
  --iti-flag-offset: -752px;
}

.iti__cr {
  --iti-flag-offset: -768px;
}

.iti__cu {
  --iti-flag-offset: -784px;
}

.iti__cv {
  --iti-flag-offset: -800px;
}

.iti__cw {
  --iti-flag-offset: -816px;
}

.iti__cx {
  --iti-flag-offset: -832px;
}

.iti__cy {
  --iti-flag-offset: -848px;
}

.iti__cz {
  --iti-flag-offset: -864px;
}

.iti__de {
  --iti-flag-offset: -880px;
}

.iti__dj {
  --iti-flag-offset: -896px;
}

.iti__dk {
  --iti-flag-offset: -912px;
}

.iti__dm {
  --iti-flag-offset: -928px;
}

.iti__do {
  --iti-flag-offset: -944px;
}

.iti__dz {
  --iti-flag-offset: -960px;
}

.iti__ec {
  --iti-flag-offset: -976px;
}

.iti__ee {
  --iti-flag-offset: -992px;
}

.iti__eg {
  --iti-flag-offset: -1008px;
}

.iti__eh {
  --iti-flag-offset: -1024px;
}

.iti__er {
  --iti-flag-offset: -1040px;
}

.iti__es {
  --iti-flag-offset: -1056px;
}

.iti__et {
  --iti-flag-offset: -1072px;
}

.iti__fi {
  --iti-flag-offset: -1088px;
}

.iti__fj {
  --iti-flag-offset: -1104px;
}

.iti__fk {
  --iti-flag-offset: -1120px;
}

.iti__fm {
  --iti-flag-offset: -1136px;
}

.iti__fo {
  --iti-flag-offset: -1152px;
}

.iti__fr {
  --iti-flag-offset: -1168px;
}

.iti__ga {
  --iti-flag-offset: -1184px;
}

.iti__gb {
  --iti-flag-offset: -1200px;
}

.iti__gd {
  --iti-flag-offset: -1216px;
}

.iti__ge {
  --iti-flag-offset: -1232px;
}

.iti__gf {
  --iti-flag-offset: -1248px;
}

.iti__gg {
  --iti-flag-offset: -1264px;
}

.iti__gh {
  --iti-flag-offset: -1280px;
}

.iti__gi {
  --iti-flag-offset: -1296px;
}

.iti__gl {
  --iti-flag-offset: -1312px;
}

.iti__gm {
  --iti-flag-offset: -1328px;
}

.iti__gn {
  --iti-flag-offset: -1344px;
}

.iti__gp {
  --iti-flag-offset: -1360px;
}

.iti__gq {
  --iti-flag-offset: -1376px;
}

.iti__gr {
  --iti-flag-offset: -1392px;
}

.iti__gt {
  --iti-flag-offset: -1408px;
}

.iti__gu {
  --iti-flag-offset: -1424px;
}

.iti__gw {
  --iti-flag-offset: -1440px;
}

.iti__gy {
  --iti-flag-offset: -1456px;
}

.iti__hk {
  --iti-flag-offset: -1472px;
}

.iti__hn {
  --iti-flag-offset: -1488px;
}

.iti__hr {
  --iti-flag-offset: -1504px;
}

.iti__ht {
  --iti-flag-offset: -1520px;
}

.iti__hu {
  --iti-flag-offset: -1536px;
}

.iti__id {
  --iti-flag-offset: -1552px;
}

.iti__ie {
  --iti-flag-offset: -1568px;
}

.iti__il {
  --iti-flag-offset: -1584px;
}

.iti__im {
  --iti-flag-offset: -1600px;
}

.iti__in {
  --iti-flag-offset: -1616px;
}

.iti__io {
  --iti-flag-offset: -1632px;
}

.iti__iq {
  --iti-flag-offset: -1648px;
}

.iti__ir {
  --iti-flag-offset: -1664px;
}

.iti__is {
  --iti-flag-offset: -1680px;
}

.iti__it {
  --iti-flag-offset: -1696px;
}

.iti__je {
  --iti-flag-offset: -1712px;
}

.iti__jm {
  --iti-flag-offset: -1728px;
}

.iti__jo {
  --iti-flag-offset: -1744px;
}

.iti__jp {
  --iti-flag-offset: -1760px;
}

.iti__ke {
  --iti-flag-offset: -1776px;
}

.iti__kg {
  --iti-flag-offset: -1792px;
}

.iti__kh {
  --iti-flag-offset: -1808px;
}

.iti__ki {
  --iti-flag-offset: -1824px;
}

.iti__km {
  --iti-flag-offset: -1840px;
}

.iti__kn {
  --iti-flag-offset: -1856px;
}

.iti__kp {
  --iti-flag-offset: -1872px;
}

.iti__kr {
  --iti-flag-offset: -1888px;
}

.iti__kw {
  --iti-flag-offset: -1904px;
}

.iti__ky {
  --iti-flag-offset: -1920px;
}

.iti__kz {
  --iti-flag-offset: -1936px;
}

.iti__la {
  --iti-flag-offset: -1952px;
}

.iti__lb {
  --iti-flag-offset: -1968px;
}

.iti__lc {
  --iti-flag-offset: -1984px;
}

.iti__li {
  --iti-flag-offset: -2000px;
}

.iti__lk {
  --iti-flag-offset: -2016px;
}

.iti__lr {
  --iti-flag-offset: -2032px;
}

.iti__ls {
  --iti-flag-offset: -2048px;
}

.iti__lt {
  --iti-flag-offset: -2064px;
}

.iti__lu {
  --iti-flag-offset: -2080px;
}

.iti__lv {
  --iti-flag-offset: -2096px;
}

.iti__ly {
  --iti-flag-offset: -2112px;
}

.iti__ma {
  --iti-flag-offset: -2128px;
}

.iti__mc {
  --iti-flag-offset: -2144px;
}

.iti__md {
  --iti-flag-offset: -2160px;
}

.iti__me {
  --iti-flag-offset: -2176px;
}

.iti__mf {
  --iti-flag-offset: -2192px;
}

.iti__mg {
  --iti-flag-offset: -2208px;
}

.iti__mh {
  --iti-flag-offset: -2224px;
}

.iti__mk {
  --iti-flag-offset: -2240px;
}

.iti__ml {
  --iti-flag-offset: -2256px;
}

.iti__mm {
  --iti-flag-offset: -2272px;
}

.iti__mn {
  --iti-flag-offset: -2288px;
}

.iti__mo {
  --iti-flag-offset: -2304px;
}

.iti__mp {
  --iti-flag-offset: -2320px;
}

.iti__mq {
  --iti-flag-offset: -2336px;
}

.iti__mr {
  --iti-flag-offset: -2352px;
}

.iti__ms {
  --iti-flag-offset: -2368px;
}

.iti__mt {
  --iti-flag-offset: -2384px;
}

.iti__mu {
  --iti-flag-offset: -2400px;
}

.iti__mv {
  --iti-flag-offset: -2416px;
}

.iti__mw {
  --iti-flag-offset: -2432px;
}

.iti__mx {
  --iti-flag-offset: -2448px;
}

.iti__my {
  --iti-flag-offset: -2464px;
}

.iti__mz {
  --iti-flag-offset: -2480px;
}

.iti__na {
  --iti-flag-offset: -2496px;
}

.iti__nc {
  --iti-flag-offset: -2512px;
}

.iti__ne {
  --iti-flag-offset: -2528px;
}

.iti__nf {
  --iti-flag-offset: -2544px;
}

.iti__ng {
  --iti-flag-offset: -2560px;
}

.iti__ni {
  --iti-flag-offset: -2576px;
}

.iti__nl {
  --iti-flag-offset: -2592px;
}

.iti__no {
  --iti-flag-offset: -2608px;
}

.iti__np {
  --iti-flag-offset: -2624px;
}

.iti__nr {
  --iti-flag-offset: -2640px;
}

.iti__nu {
  --iti-flag-offset: -2656px;
}

.iti__nz {
  --iti-flag-offset: -2672px;
}

.iti__om {
  --iti-flag-offset: -2688px;
}

.iti__pa {
  --iti-flag-offset: -2704px;
}

.iti__pe {
  --iti-flag-offset: -2720px;
}

.iti__pf {
  --iti-flag-offset: -2736px;
}

.iti__pg {
  --iti-flag-offset: -2752px;
}

.iti__ph {
  --iti-flag-offset: -2768px;
}

.iti__pk {
  --iti-flag-offset: -2784px;
}

.iti__pl {
  --iti-flag-offset: -2800px;
}

.iti__pm {
  --iti-flag-offset: -2816px;
}

.iti__pr {
  --iti-flag-offset: -2832px;
}

.iti__ps {
  --iti-flag-offset: -2848px;
}

.iti__pt {
  --iti-flag-offset: -2864px;
}

.iti__pw {
  --iti-flag-offset: -2880px;
}

.iti__py {
  --iti-flag-offset: -2896px;
}

.iti__qa {
  --iti-flag-offset: -2912px;
}

.iti__re {
  --iti-flag-offset: -2928px;
}

.iti__ro {
  --iti-flag-offset: -2944px;
}

.iti__rs {
  --iti-flag-offset: -2960px;
}

.iti__ru {
  --iti-flag-offset: -2976px;
}

.iti__rw {
  --iti-flag-offset: -2992px;
}

.iti__sa {
  --iti-flag-offset: -3008px;
}

.iti__sb {
  --iti-flag-offset: -3024px;
}

.iti__sc {
  --iti-flag-offset: -3040px;
}

.iti__sd {
  --iti-flag-offset: -3056px;
}

.iti__se {
  --iti-flag-offset: -3072px;
}

.iti__sg {
  --iti-flag-offset: -3088px;
}

.iti__sh {
  --iti-flag-offset: -3104px;
}

.iti__si {
  --iti-flag-offset: -3120px;
}

.iti__sj {
  --iti-flag-offset: -3136px;
}

.iti__sk {
  --iti-flag-offset: -3152px;
}

.iti__sl {
  --iti-flag-offset: -3168px;
}

.iti__sm {
  --iti-flag-offset: -3184px;
}

.iti__sn {
  --iti-flag-offset: -3200px;
}

.iti__so {
  --iti-flag-offset: -3216px;
}

.iti__sr {
  --iti-flag-offset: -3232px;
}

.iti__ss {
  --iti-flag-offset: -3248px;
}

.iti__st {
  --iti-flag-offset: -3264px;
}

.iti__sv {
  --iti-flag-offset: -3280px;
}

.iti__sx {
  --iti-flag-offset: -3296px;
}

.iti__sy {
  --iti-flag-offset: -3312px;
}

.iti__sz {
  --iti-flag-offset: -3328px;
}

.iti__tc {
  --iti-flag-offset: -3344px;
}

.iti__td {
  --iti-flag-offset: -3360px;
}

.iti__tg {
  --iti-flag-offset: -3376px;
}

.iti__th {
  --iti-flag-offset: -3392px;
}

.iti__tj {
  --iti-flag-offset: -3408px;
}

.iti__tk {
  --iti-flag-offset: -3424px;
}

.iti__tl {
  --iti-flag-offset: -3440px;
}

.iti__tm {
  --iti-flag-offset: -3456px;
}

.iti__tn {
  --iti-flag-offset: -3472px;
}

.iti__to {
  --iti-flag-offset: -3488px;
}

.iti__tr {
  --iti-flag-offset: -3504px;
}

.iti__tt {
  --iti-flag-offset: -3520px;
}

.iti__tv {
  --iti-flag-offset: -3536px;
}

.iti__tw {
  --iti-flag-offset: -3552px;
}

.iti__tz {
  --iti-flag-offset: -3568px;
}

.iti__ua {
  --iti-flag-offset: -3584px;
}

.iti__ug {
  --iti-flag-offset: -3600px;
}

.iti__us {
  --iti-flag-offset: -3616px;
}

.iti__uy {
  --iti-flag-offset: -3632px;
}

.iti__uz {
  --iti-flag-offset: -3648px;
}

.iti__va {
  --iti-flag-offset: -3664px;
}

.iti__vc {
  --iti-flag-offset: -3680px;
}

.iti__ve {
  --iti-flag-offset: -3696px;
}

.iti__vg {
  --iti-flag-offset: -3712px;
}

.iti__vi {
  --iti-flag-offset: -3728px;
}

.iti__vn {
  --iti-flag-offset: -3744px;
}

.iti__vu {
  --iti-flag-offset: -3760px;
}

.iti__wf {
  --iti-flag-offset: -3776px;
}

.iti__ws {
  --iti-flag-offset: -3792px;
}

.iti__xk {
  --iti-flag-offset: -3808px;
}

.iti__ye {
  --iti-flag-offset: -3824px;
}

.iti__yt {
  --iti-flag-offset: -3840px;
}

.iti__za {
  --iti-flag-offset: -3856px;
}

.iti__zm {
  --iti-flag-offset: -3872px;
}

.iti__zw {
  --iti-flag-offset: -3888px;
}

.iti__globe {
  background-image: var(--iti-path-globe-1x);
  background-size: contain;
  background-position: right;
  box-shadow: none;
  height: 19px;
}

@media (min-resolution: 2x) {
  .iti__flag {
    background-image: var(--iti-path-flags-2x);
  }
  .iti__globe {
    background-image: var(--iti-path-globe-2x);
  }
}
/* Sprite file placeholder - intl-tel-input v25+ no longer uses sprites */
.selected-flag {
  border-right: 1px solid;
  border-right-color: #dddedf;
}

.iti__flag {
  background-image: url("intl-tel-input/build/img/flags.png");
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .iti__flag {
    background-image: url("intl-tel-input/build/img/flags@2x.png");
  }
}
html, body {
  height: 100%;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

html,
body {
  font-size: 100%;
}

body {
  background: #fff;
  color: #222;
  cursor: auto;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  position: relative;
}

a:hover {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

img {
  -ms-interpolation-mode: bicubic;
}

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

.left {
  float: left !important;
}

.right {
  float: right !important;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.hide {
  display: none;
}

.invisible {
  visibility: hidden;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: inline-block;
  vertical-align: middle;
}

textarea {
  height: auto;
  min-height: 50px;
}

select {
  width: 100%;
}

.alert-box {
  border-style: solid;
  border-width: 1px;
  display: block;
  font-size: 0.8125rem;
  font-weight: normal;
  margin-bottom: 1.25rem;
  padding: 0.875rem 1.5rem 0.875rem 0.875rem;
  position: relative;
  transition: opacity 300ms ease-out;
  background-color: #008CBA;
  border-color: rgb(0, 120.4, 159.96);
  color: #FFFFFF;
}

.alert-box .close {
  right: 0.25rem;
  background: inherit;
  color: #333333;
  font-size: 1.375rem;
  line-height: 0.9;
  margin-top: -0.6875rem;
  opacity: 0.3;
  padding: 0 6px 4px;
  position: absolute;
  top: 50%;
}

.alert-box .close:hover, .alert-box .close:focus {
  opacity: 0.5;
}

.alert-box.radius {
  border-radius: 0.24rem;
}

.alert-box.round {
  border-radius: 1000px;
}

.alert-box.success {
  background-color: #43AC6A;
  border-color: rgb(57.62, 147.92, 91.16);
  color: #FFFFFF;
}

.alert-box.alert {
  background-color: #f04124;
  border-color: rgb(222.1446153846, 44.6317948718, 15.2153846154);
  color: #FFFFFF;
}

.alert-box.secondary {
  background-color: #e7e7e7;
  border-color: rgb(198.66, 198.66, 198.66);
  color: rgb(78.54, 78.54, 78.54);
}

.alert-box.warning {
  background-color: #f08a24;
  border-color: rgb(222.1446153846, 118.68, 15.2153846154);
  color: #FFFFFF;
}

.alert-box.info {
  background-color: #a0d3e8;
  border-color: rgb(115.8169491525, 190.5362711864, 221.3030508475);
  color: rgb(78.54, 78.54, 78.54);
}

.alert-box.alert-close {
  opacity: 0;
}

[class*=block-grid-] {
  display: block;
  padding: 0;
  margin: 0 -rem-calc(20)/2;
}

[class*=block-grid-]:before, [class*=block-grid-]:after {
  content: " ";
  display: table;
}

[class*=block-grid-]:after {
  clear: both;
}

[class*=block-grid-] > li {
  display: block;
  float: left;
  height: auto;
  padding: 0 rem-calc(20)/2 rem-calc(20);
}

@media only screen {
  .small-block-grid-1 > li {
    list-style: none;
    width: 100%;
  }
  .small-block-grid-1 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both;
  }
  .small-block-grid-2 > li {
    list-style: none;
    width: 50%;
  }
  .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both;
  }
  .small-block-grid-3 > li {
    list-style: none;
    width: 33.3333333333%;
  }
  .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both;
  }
  .small-block-grid-4 > li {
    list-style: none;
    width: 25%;
  }
  .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both;
  }
  .small-block-grid-5 > li {
    list-style: none;
    width: 20%;
  }
  .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both;
  }
  .small-block-grid-6 > li {
    list-style: none;
    width: 16.6666666667%;
  }
  .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both;
  }
  .small-block-grid-7 > li {
    list-style: none;
    width: 14.2857142857%;
  }
  .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both;
  }
  .small-block-grid-8 > li {
    list-style: none;
    width: 12.5%;
  }
  .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both;
  }
  .small-block-grid-9 > li {
    list-style: none;
    width: 11.1111111111%;
  }
  .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both;
  }
  .small-block-grid-10 > li {
    list-style: none;
    width: 10%;
  }
  .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both;
  }
  .small-block-grid-11 > li {
    list-style: none;
    width: 9.0909090909%;
  }
  .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both;
  }
  .small-block-grid-12 > li {
    list-style: none;
    width: 8.3333333333%;
  }
  .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none;
  }
  .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both;
  }
}
@media only screen and (min-width: 641px) {
  .medium-block-grid-1 > li {
    list-style: none;
    width: 100%;
  }
  .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both;
  }
  .medium-block-grid-2 > li {
    list-style: none;
    width: 50%;
  }
  .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both;
  }
  .medium-block-grid-3 > li {
    list-style: none;
    width: 33.3333333333%;
  }
  .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both;
  }
  .medium-block-grid-4 > li {
    list-style: none;
    width: 25%;
  }
  .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both;
  }
  .medium-block-grid-5 > li {
    list-style: none;
    width: 20%;
  }
  .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both;
  }
  .medium-block-grid-6 > li {
    list-style: none;
    width: 16.6666666667%;
  }
  .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both;
  }
  .medium-block-grid-7 > li {
    list-style: none;
    width: 14.2857142857%;
  }
  .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both;
  }
  .medium-block-grid-8 > li {
    list-style: none;
    width: 12.5%;
  }
  .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both;
  }
  .medium-block-grid-9 > li {
    list-style: none;
    width: 11.1111111111%;
  }
  .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both;
  }
  .medium-block-grid-10 > li {
    list-style: none;
    width: 10%;
  }
  .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both;
  }
  .medium-block-grid-11 > li {
    list-style: none;
    width: 9.0909090909%;
  }
  .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both;
  }
  .medium-block-grid-12 > li {
    list-style: none;
    width: 8.3333333333%;
  }
  .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none;
  }
  .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both;
  }
}
@media only screen and (min-width: 1025px) {
  .large-block-grid-1 > li {
    list-style: none;
    width: 100%;
  }
  .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both;
  }
  .large-block-grid-2 > li {
    list-style: none;
    width: 50%;
  }
  .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both;
  }
  .large-block-grid-3 > li {
    list-style: none;
    width: 33.3333333333%;
  }
  .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both;
  }
  .large-block-grid-4 > li {
    list-style: none;
    width: 25%;
  }
  .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both;
  }
  .large-block-grid-5 > li {
    list-style: none;
    width: 20%;
  }
  .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both;
  }
  .large-block-grid-6 > li {
    list-style: none;
    width: 16.6666666667%;
  }
  .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both;
  }
  .large-block-grid-7 > li {
    list-style: none;
    width: 14.2857142857%;
  }
  .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both;
  }
  .large-block-grid-8 > li {
    list-style: none;
    width: 12.5%;
  }
  .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both;
  }
  .large-block-grid-9 > li {
    list-style: none;
    width: 11.1111111111%;
  }
  .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both;
  }
  .large-block-grid-10 > li {
    list-style: none;
    width: 10%;
  }
  .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both;
  }
  .large-block-grid-11 > li {
    list-style: none;
    width: 9.0909090909%;
  }
  .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both;
  }
  .large-block-grid-12 > li {
    list-style: none;
    width: 8.3333333333%;
  }
  .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none;
  }
  .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both;
  }
}
/* Foundation Dropdowns */
.f-dropdown {
  display: none;
  left: -9999px;
  list-style: none;
  margin-left: 0;
  position: absolute;
}

.f-dropdown.open {
  display: block;
}

.f-dropdown > *:first-child {
  margin-top: 0;
}

.f-dropdown > *:last-child {
  margin-bottom: 0;
}

.f-dropdown {
  background: #FFFFFF;
  border: solid 1px #cccccc;
  font-size: 0.875rem;
  height: auto;
  max-height: none;
  width: 100%;
  z-index: 89;
  margin-top: 2px;
}

.f-dropdown:before {
  border: inset 6px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent transparent #FFFFFF transparent;
  border-bottom-style: solid;
  position: absolute;
  top: -12px;
  left: 10px;
  z-index: 89;
}

.f-dropdown:after {
  border: inset 7px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent transparent #cccccc transparent;
  border-bottom-style: solid;
  position: absolute;
  top: -14px;
  left: 9px;
  z-index: 88;
}

.f-dropdown.right:before {
  left: auto;
  right: 10px;
}

.f-dropdown.right:after {
  left: auto;
  right: 9px;
}

.f-dropdown {
  max-width: 200px;
}

.f-dropdown.drop-right {
  display: none;
  left: -9999px;
  list-style: none;
  margin-left: 0;
  position: absolute;
}

.f-dropdown.drop-right.open {
  display: block;
}

.f-dropdown.drop-right > *:first-child {
  margin-top: 0;
}

.f-dropdown.drop-right > *:last-child {
  margin-bottom: 0;
}

.f-dropdown.drop-right {
  background: #FFFFFF;
  border: solid 1px #cccccc;
  font-size: 0.875rem;
  height: auto;
  max-height: none;
  width: 100%;
  z-index: 89;
  margin-top: 0;
  margin-left: 2px;
}

.f-dropdown.drop-right:before {
  border: inset 6px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent #FFFFFF transparent transparent;
  border-right-style: solid;
  position: absolute;
  top: 10px;
  left: -12px;
  z-index: 89;
}

.f-dropdown.drop-right:after {
  border: inset 7px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent #cccccc transparent transparent;
  border-right-style: solid;
  position: absolute;
  top: 9px;
  left: -14px;
  z-index: 88;
}

.f-dropdown.drop-right {
  max-width: 200px;
}

.f-dropdown.drop-left {
  display: none;
  left: -9999px;
  list-style: none;
  margin-left: 0;
  position: absolute;
}

.f-dropdown.drop-left.open {
  display: block;
}

.f-dropdown.drop-left > *:first-child {
  margin-top: 0;
}

.f-dropdown.drop-left > *:last-child {
  margin-bottom: 0;
}

.f-dropdown.drop-left {
  background: #FFFFFF;
  border: solid 1px #cccccc;
  font-size: 0.875rem;
  height: auto;
  max-height: none;
  width: 100%;
  z-index: 89;
  margin-top: 0;
  margin-left: -2px;
}

.f-dropdown.drop-left:before {
  border: inset 6px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent transparent transparent #FFFFFF;
  border-left-style: solid;
  position: absolute;
  top: 10px;
  right: -12px;
  left: auto;
  z-index: 89;
}

.f-dropdown.drop-left:after {
  border: inset 7px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent transparent transparent #cccccc;
  border-left-style: solid;
  position: absolute;
  top: 9px;
  right: -14px;
  left: auto;
  z-index: 88;
}

.f-dropdown.drop-left {
  max-width: 200px;
}

.f-dropdown.drop-top {
  display: none;
  left: -9999px;
  list-style: none;
  margin-left: 0;
  position: absolute;
}

.f-dropdown.drop-top.open {
  display: block;
}

.f-dropdown.drop-top > *:first-child {
  margin-top: 0;
}

.f-dropdown.drop-top > *:last-child {
  margin-bottom: 0;
}

.f-dropdown.drop-top {
  background: #FFFFFF;
  border: solid 1px #cccccc;
  font-size: 0.875rem;
  height: auto;
  max-height: none;
  width: 100%;
  z-index: 89;
  margin-left: 0;
  margin-top: -2px;
}

.f-dropdown.drop-top:before {
  border: inset 6px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: #FFFFFF transparent transparent transparent;
  border-top-style: solid;
  bottom: -12px;
  position: absolute;
  top: auto;
  left: 10px;
  right: auto;
  z-index: 89;
}

.f-dropdown.drop-top:after {
  border: inset 7px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: #cccccc transparent transparent transparent;
  border-top-style: solid;
  bottom: -14px;
  position: absolute;
  top: auto;
  left: 9px;
  right: auto;
  z-index: 88;
}

.f-dropdown.drop-top {
  max-width: 200px;
}

.f-dropdown li {
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.125rem;
  margin: 0;
}

.f-dropdown li:hover, .f-dropdown li:focus {
  background: #EEEEEE;
}

.f-dropdown li.radius {
  border-radius: 0.24rem;
}

.f-dropdown li a {
  display: block;
  padding: 0.5rem;
  color: #555555;
}

.f-dropdown.content {
  display: none;
  left: -9999px;
  list-style: none;
  margin-left: 0;
  position: absolute;
}

.f-dropdown.content.open {
  display: block;
}

.f-dropdown.content > *:first-child {
  margin-top: 0;
}

.f-dropdown.content > *:last-child {
  margin-bottom: 0;
}

.f-dropdown.content {
  background: #FFFFFF;
  border: solid 1px #cccccc;
  font-size: 0.875rem;
  height: auto;
  max-height: none;
  padding: 1.25rem;
  width: 100%;
  z-index: 89;
  max-width: 200px;
}

.f-dropdown.tiny {
  max-width: 200px;
}

.f-dropdown.small {
  max-width: 300px;
}

.f-dropdown.medium {
  max-width: 500px;
}

.f-dropdown.large {
  max-width: 800px;
}

.f-dropdown.mega {
  width: 100% !important;
  max-width: 100% !important;
}

.f-dropdown.mega.open {
  left: 0 !important;
}

.row {
  margin: 0 auto;
  max-width: 62.5rem;
  width: 100%;
}

.row:before, .row:after {
  content: " ";
  display: table;
}

.row:after {
  clear: both;
}

.row.collapse > .column,
.row.collapse > .columns {
  padding-left: 0;
  padding-right: 0;
}

.row.collapse .row {
  margin-left: 0;
  margin-right: 0;
}

.row .row {
  margin: 0 -0.9375rem;
  max-width: none;
  width: auto;
}

.row .row:before, .row .row:after {
  content: " ";
  display: table;
}

.row .row:after {
  clear: both;
}

.row .row.collapse {
  margin: 0;
  max-width: none;
  width: auto;
}

.row .row.collapse:before, .row .row.collapse:after {
  content: " ";
  display: table;
}

.row .row.collapse:after {
  clear: both;
}

.column,
.columns {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  width: 100%;
  float: left;
}

.column + .column:last-child,
.column + .columns:last-child,
.columns + .column:last-child,
.columns + .columns:last-child {
  float: right;
}

.column + .column.end,
.column + .columns.end,
.columns + .column.end,
.columns + .columns.end {
  float: left;
}

@media only screen {
  .small-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .small-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .small-push-1 {
    position: relative;
    left: 4.1666666667%;
    right: auto;
  }
  .small-pull-1 {
    position: relative;
    right: 4.1666666667%;
    left: auto;
  }
  .small-push-2 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .small-pull-2 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .small-push-3 {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .small-pull-3 {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .small-push-4 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .small-pull-4 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .small-push-5 {
    position: relative;
    left: 20.8333333333%;
    right: auto;
  }
  .small-pull-5 {
    position: relative;
    right: 20.8333333333%;
    left: auto;
  }
  .small-push-6 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .small-pull-6 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .small-push-7 {
    position: relative;
    left: 29.1666666667%;
    right: auto;
  }
  .small-pull-7 {
    position: relative;
    right: 29.1666666667%;
    left: auto;
  }
  .small-push-8 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .small-pull-8 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .small-push-9 {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .small-pull-9 {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .small-push-10 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .small-pull-10 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .small-push-11 {
    position: relative;
    left: 45.8333333333%;
    right: auto;
  }
  .small-pull-11 {
    position: relative;
    right: 45.8333333333%;
    left: auto;
  }
  .small-push-12 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .small-pull-12 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .small-push-13 {
    position: relative;
    left: 54.1666666667%;
    right: auto;
  }
  .small-pull-13 {
    position: relative;
    right: 54.1666666667%;
    left: auto;
  }
  .small-push-14 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .small-pull-14 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .small-push-15 {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .small-pull-15 {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .small-push-16 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .small-pull-16 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .small-push-17 {
    position: relative;
    left: 70.8333333333%;
    right: auto;
  }
  .small-pull-17 {
    position: relative;
    right: 70.8333333333%;
    left: auto;
  }
  .small-push-18 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .small-pull-18 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .small-push-19 {
    position: relative;
    left: 79.1666666667%;
    right: auto;
  }
  .small-pull-19 {
    position: relative;
    right: 79.1666666667%;
    left: auto;
  }
  .small-push-20 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .small-pull-20 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .small-push-21 {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .small-pull-21 {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .small-push-22 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .small-pull-22 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .small-push-23 {
    position: relative;
    left: 95.8333333333%;
    right: auto;
  }
  .small-pull-23 {
    position: relative;
    right: 95.8333333333%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .small-1 {
    width: 4.1666666667%;
  }
  .small-2 {
    width: 8.3333333333%;
  }
  .small-3 {
    width: 12.5%;
  }
  .small-4 {
    width: 16.6666666667%;
  }
  .small-5 {
    width: 20.8333333333%;
  }
  .small-6 {
    width: 25%;
  }
  .small-7 {
    width: 29.1666666667%;
  }
  .small-8 {
    width: 33.3333333333%;
  }
  .small-9 {
    width: 37.5%;
  }
  .small-10 {
    width: 41.6666666667%;
  }
  .small-11 {
    width: 45.8333333333%;
  }
  .small-12 {
    width: 50%;
  }
  .small-13 {
    width: 54.1666666667%;
  }
  .small-14 {
    width: 58.3333333333%;
  }
  .small-15 {
    width: 62.5%;
  }
  .small-16 {
    width: 66.6666666667%;
  }
  .small-17 {
    width: 70.8333333333%;
  }
  .small-18 {
    width: 75%;
  }
  .small-19 {
    width: 79.1666666667%;
  }
  .small-20 {
    width: 83.3333333333%;
  }
  .small-21 {
    width: 87.5%;
  }
  .small-22 {
    width: 91.6666666667%;
  }
  .small-23 {
    width: 95.8333333333%;
  }
  .small-24 {
    width: 100%;
  }
  .small-offset-0 {
    margin-left: 0 !important;
  }
  .small-offset-1 {
    margin-left: 4.1666666667% !important;
  }
  .small-offset-2 {
    margin-left: 8.3333333333% !important;
  }
  .small-offset-3 {
    margin-left: 12.5% !important;
  }
  .small-offset-4 {
    margin-left: 16.6666666667% !important;
  }
  .small-offset-5 {
    margin-left: 20.8333333333% !important;
  }
  .small-offset-6 {
    margin-left: 25% !important;
  }
  .small-offset-7 {
    margin-left: 29.1666666667% !important;
  }
  .small-offset-8 {
    margin-left: 33.3333333333% !important;
  }
  .small-offset-9 {
    margin-left: 37.5% !important;
  }
  .small-offset-10 {
    margin-left: 41.6666666667% !important;
  }
  .small-offset-11 {
    margin-left: 45.8333333333% !important;
  }
  .small-offset-12 {
    margin-left: 50% !important;
  }
  .small-offset-13 {
    margin-left: 54.1666666667% !important;
  }
  .small-offset-14 {
    margin-left: 58.3333333333% !important;
  }
  .small-offset-15 {
    margin-left: 62.5% !important;
  }
  .small-offset-16 {
    margin-left: 66.6666666667% !important;
  }
  .small-offset-17 {
    margin-left: 70.8333333333% !important;
  }
  .small-offset-18 {
    margin-left: 75% !important;
  }
  .small-offset-19 {
    margin-left: 79.1666666667% !important;
  }
  .small-offset-20 {
    margin-left: 83.3333333333% !important;
  }
  .small-offset-21 {
    margin-left: 87.5% !important;
  }
  .small-offset-22 {
    margin-left: 91.6666666667% !important;
  }
  .small-offset-23 {
    margin-left: 95.8333333333% !important;
  }
  .small-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.small-centered,
  .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.small-uncentered,
  .columns.small-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.small-centered:last-child,
  .columns.small-centered:last-child {
    float: none;
  }
  .column.small-uncentered:last-child,
  .columns.small-uncentered:last-child {
    float: left;
  }
  .column.small-uncentered.opposite,
  .columns.small-uncentered.opposite {
    float: right;
  }
  .row.small-collapse > .column,
  .row.small-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.small-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.small-uncollapse > .column,
  .row.small-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
}
@media only screen and (min-width: 641px) {
  .medium-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .medium-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .medium-push-1 {
    position: relative;
    left: 4.1666666667%;
    right: auto;
  }
  .medium-pull-1 {
    position: relative;
    right: 4.1666666667%;
    left: auto;
  }
  .medium-push-2 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .medium-pull-2 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .medium-push-3 {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .medium-pull-3 {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .medium-push-4 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .medium-pull-4 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .medium-push-5 {
    position: relative;
    left: 20.8333333333%;
    right: auto;
  }
  .medium-pull-5 {
    position: relative;
    right: 20.8333333333%;
    left: auto;
  }
  .medium-push-6 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .medium-pull-6 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .medium-push-7 {
    position: relative;
    left: 29.1666666667%;
    right: auto;
  }
  .medium-pull-7 {
    position: relative;
    right: 29.1666666667%;
    left: auto;
  }
  .medium-push-8 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .medium-pull-8 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .medium-push-9 {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .medium-pull-9 {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .medium-push-10 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .medium-pull-10 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .medium-push-11 {
    position: relative;
    left: 45.8333333333%;
    right: auto;
  }
  .medium-pull-11 {
    position: relative;
    right: 45.8333333333%;
    left: auto;
  }
  .medium-push-12 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .medium-pull-12 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .medium-push-13 {
    position: relative;
    left: 54.1666666667%;
    right: auto;
  }
  .medium-pull-13 {
    position: relative;
    right: 54.1666666667%;
    left: auto;
  }
  .medium-push-14 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .medium-pull-14 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .medium-push-15 {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .medium-pull-15 {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .medium-push-16 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .medium-pull-16 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .medium-push-17 {
    position: relative;
    left: 70.8333333333%;
    right: auto;
  }
  .medium-pull-17 {
    position: relative;
    right: 70.8333333333%;
    left: auto;
  }
  .medium-push-18 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .medium-pull-18 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .medium-push-19 {
    position: relative;
    left: 79.1666666667%;
    right: auto;
  }
  .medium-pull-19 {
    position: relative;
    right: 79.1666666667%;
    left: auto;
  }
  .medium-push-20 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .medium-pull-20 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .medium-push-21 {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .medium-pull-21 {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .medium-push-22 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .medium-pull-22 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .medium-push-23 {
    position: relative;
    left: 95.8333333333%;
    right: auto;
  }
  .medium-pull-23 {
    position: relative;
    right: 95.8333333333%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .medium-1 {
    width: 4.1666666667%;
  }
  .medium-2 {
    width: 8.3333333333%;
  }
  .medium-3 {
    width: 12.5%;
  }
  .medium-4 {
    width: 16.6666666667%;
  }
  .medium-5 {
    width: 20.8333333333%;
  }
  .medium-6 {
    width: 25%;
  }
  .medium-7 {
    width: 29.1666666667%;
  }
  .medium-8 {
    width: 33.3333333333%;
  }
  .medium-9 {
    width: 37.5%;
  }
  .medium-10 {
    width: 41.6666666667%;
  }
  .medium-11 {
    width: 45.8333333333%;
  }
  .medium-12 {
    width: 50%;
  }
  .medium-13 {
    width: 54.1666666667%;
  }
  .medium-14 {
    width: 58.3333333333%;
  }
  .medium-15 {
    width: 62.5%;
  }
  .medium-16 {
    width: 66.6666666667%;
  }
  .medium-17 {
    width: 70.8333333333%;
  }
  .medium-18 {
    width: 75%;
  }
  .medium-19 {
    width: 79.1666666667%;
  }
  .medium-20 {
    width: 83.3333333333%;
  }
  .medium-21 {
    width: 87.5%;
  }
  .medium-22 {
    width: 91.6666666667%;
  }
  .medium-23 {
    width: 95.8333333333%;
  }
  .medium-24 {
    width: 100%;
  }
  .medium-offset-0 {
    margin-left: 0 !important;
  }
  .medium-offset-1 {
    margin-left: 4.1666666667% !important;
  }
  .medium-offset-2 {
    margin-left: 8.3333333333% !important;
  }
  .medium-offset-3 {
    margin-left: 12.5% !important;
  }
  .medium-offset-4 {
    margin-left: 16.6666666667% !important;
  }
  .medium-offset-5 {
    margin-left: 20.8333333333% !important;
  }
  .medium-offset-6 {
    margin-left: 25% !important;
  }
  .medium-offset-7 {
    margin-left: 29.1666666667% !important;
  }
  .medium-offset-8 {
    margin-left: 33.3333333333% !important;
  }
  .medium-offset-9 {
    margin-left: 37.5% !important;
  }
  .medium-offset-10 {
    margin-left: 41.6666666667% !important;
  }
  .medium-offset-11 {
    margin-left: 45.8333333333% !important;
  }
  .medium-offset-12 {
    margin-left: 50% !important;
  }
  .medium-offset-13 {
    margin-left: 54.1666666667% !important;
  }
  .medium-offset-14 {
    margin-left: 58.3333333333% !important;
  }
  .medium-offset-15 {
    margin-left: 62.5% !important;
  }
  .medium-offset-16 {
    margin-left: 66.6666666667% !important;
  }
  .medium-offset-17 {
    margin-left: 70.8333333333% !important;
  }
  .medium-offset-18 {
    margin-left: 75% !important;
  }
  .medium-offset-19 {
    margin-left: 79.1666666667% !important;
  }
  .medium-offset-20 {
    margin-left: 83.3333333333% !important;
  }
  .medium-offset-21 {
    margin-left: 87.5% !important;
  }
  .medium-offset-22 {
    margin-left: 91.6666666667% !important;
  }
  .medium-offset-23 {
    margin-left: 95.8333333333% !important;
  }
  .medium-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.medium-centered,
  .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.medium-uncentered,
  .columns.medium-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.medium-centered:last-child,
  .columns.medium-centered:last-child {
    float: none;
  }
  .column.medium-uncentered:last-child,
  .columns.medium-uncentered:last-child {
    float: left;
  }
  .column.medium-uncentered.opposite,
  .columns.medium-uncentered.opposite {
    float: right;
  }
  .row.medium-collapse > .column,
  .row.medium-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.medium-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.medium-uncollapse > .column,
  .row.medium-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .push-1 {
    position: relative;
    left: 4.1666666667%;
    right: auto;
  }
  .pull-1 {
    position: relative;
    right: 4.1666666667%;
    left: auto;
  }
  .push-2 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .pull-2 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .push-3 {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .pull-3 {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .push-4 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .pull-4 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .push-5 {
    position: relative;
    left: 20.8333333333%;
    right: auto;
  }
  .pull-5 {
    position: relative;
    right: 20.8333333333%;
    left: auto;
  }
  .push-6 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .pull-6 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .push-7 {
    position: relative;
    left: 29.1666666667%;
    right: auto;
  }
  .pull-7 {
    position: relative;
    right: 29.1666666667%;
    left: auto;
  }
  .push-8 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .pull-8 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .push-9 {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .pull-9 {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .push-10 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .pull-10 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .push-11 {
    position: relative;
    left: 45.8333333333%;
    right: auto;
  }
  .pull-11 {
    position: relative;
    right: 45.8333333333%;
    left: auto;
  }
  .push-12 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .pull-12 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .push-13 {
    position: relative;
    left: 54.1666666667%;
    right: auto;
  }
  .pull-13 {
    position: relative;
    right: 54.1666666667%;
    left: auto;
  }
  .push-14 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .pull-14 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .push-15 {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .pull-15 {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .push-16 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .pull-16 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .push-17 {
    position: relative;
    left: 70.8333333333%;
    right: auto;
  }
  .pull-17 {
    position: relative;
    right: 70.8333333333%;
    left: auto;
  }
  .push-18 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .pull-18 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .push-19 {
    position: relative;
    left: 79.1666666667%;
    right: auto;
  }
  .pull-19 {
    position: relative;
    right: 79.1666666667%;
    left: auto;
  }
  .push-20 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .pull-20 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .push-21 {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .pull-21 {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .push-22 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .pull-22 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .push-23 {
    position: relative;
    left: 95.8333333333%;
    right: auto;
  }
  .pull-23 {
    position: relative;
    right: 95.8333333333%;
    left: auto;
  }
}
@media only screen and (min-width: 1025px) {
  .large-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .large-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .large-push-1 {
    position: relative;
    left: 4.1666666667%;
    right: auto;
  }
  .large-pull-1 {
    position: relative;
    right: 4.1666666667%;
    left: auto;
  }
  .large-push-2 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .large-pull-2 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .large-push-3 {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .large-pull-3 {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .large-push-4 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .large-pull-4 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .large-push-5 {
    position: relative;
    left: 20.8333333333%;
    right: auto;
  }
  .large-pull-5 {
    position: relative;
    right: 20.8333333333%;
    left: auto;
  }
  .large-push-6 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .large-pull-6 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .large-push-7 {
    position: relative;
    left: 29.1666666667%;
    right: auto;
  }
  .large-pull-7 {
    position: relative;
    right: 29.1666666667%;
    left: auto;
  }
  .large-push-8 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .large-pull-8 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .large-push-9 {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .large-pull-9 {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .large-push-10 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .large-pull-10 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .large-push-11 {
    position: relative;
    left: 45.8333333333%;
    right: auto;
  }
  .large-pull-11 {
    position: relative;
    right: 45.8333333333%;
    left: auto;
  }
  .large-push-12 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .large-pull-12 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .large-push-13 {
    position: relative;
    left: 54.1666666667%;
    right: auto;
  }
  .large-pull-13 {
    position: relative;
    right: 54.1666666667%;
    left: auto;
  }
  .large-push-14 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .large-pull-14 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .large-push-15 {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .large-pull-15 {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .large-push-16 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .large-pull-16 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .large-push-17 {
    position: relative;
    left: 70.8333333333%;
    right: auto;
  }
  .large-pull-17 {
    position: relative;
    right: 70.8333333333%;
    left: auto;
  }
  .large-push-18 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .large-pull-18 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .large-push-19 {
    position: relative;
    left: 79.1666666667%;
    right: auto;
  }
  .large-pull-19 {
    position: relative;
    right: 79.1666666667%;
    left: auto;
  }
  .large-push-20 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .large-pull-20 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .large-push-21 {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .large-pull-21 {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .large-push-22 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .large-pull-22 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .large-push-23 {
    position: relative;
    left: 95.8333333333%;
    right: auto;
  }
  .large-pull-23 {
    position: relative;
    right: 95.8333333333%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .large-1 {
    width: 4.1666666667%;
  }
  .large-2 {
    width: 8.3333333333%;
  }
  .large-3 {
    width: 12.5%;
  }
  .large-4 {
    width: 16.6666666667%;
  }
  .large-5 {
    width: 20.8333333333%;
  }
  .large-6 {
    width: 25%;
  }
  .large-7 {
    width: 29.1666666667%;
  }
  .large-8 {
    width: 33.3333333333%;
  }
  .large-9 {
    width: 37.5%;
  }
  .large-10 {
    width: 41.6666666667%;
  }
  .large-11 {
    width: 45.8333333333%;
  }
  .large-12 {
    width: 50%;
  }
  .large-13 {
    width: 54.1666666667%;
  }
  .large-14 {
    width: 58.3333333333%;
  }
  .large-15 {
    width: 62.5%;
  }
  .large-16 {
    width: 66.6666666667%;
  }
  .large-17 {
    width: 70.8333333333%;
  }
  .large-18 {
    width: 75%;
  }
  .large-19 {
    width: 79.1666666667%;
  }
  .large-20 {
    width: 83.3333333333%;
  }
  .large-21 {
    width: 87.5%;
  }
  .large-22 {
    width: 91.6666666667%;
  }
  .large-23 {
    width: 95.8333333333%;
  }
  .large-24 {
    width: 100%;
  }
  .large-offset-0 {
    margin-left: 0 !important;
  }
  .large-offset-1 {
    margin-left: 4.1666666667% !important;
  }
  .large-offset-2 {
    margin-left: 8.3333333333% !important;
  }
  .large-offset-3 {
    margin-left: 12.5% !important;
  }
  .large-offset-4 {
    margin-left: 16.6666666667% !important;
  }
  .large-offset-5 {
    margin-left: 20.8333333333% !important;
  }
  .large-offset-6 {
    margin-left: 25% !important;
  }
  .large-offset-7 {
    margin-left: 29.1666666667% !important;
  }
  .large-offset-8 {
    margin-left: 33.3333333333% !important;
  }
  .large-offset-9 {
    margin-left: 37.5% !important;
  }
  .large-offset-10 {
    margin-left: 41.6666666667% !important;
  }
  .large-offset-11 {
    margin-left: 45.8333333333% !important;
  }
  .large-offset-12 {
    margin-left: 50% !important;
  }
  .large-offset-13 {
    margin-left: 54.1666666667% !important;
  }
  .large-offset-14 {
    margin-left: 58.3333333333% !important;
  }
  .large-offset-15 {
    margin-left: 62.5% !important;
  }
  .large-offset-16 {
    margin-left: 66.6666666667% !important;
  }
  .large-offset-17 {
    margin-left: 70.8333333333% !important;
  }
  .large-offset-18 {
    margin-left: 75% !important;
  }
  .large-offset-19 {
    margin-left: 79.1666666667% !important;
  }
  .large-offset-20 {
    margin-left: 83.3333333333% !important;
  }
  .large-offset-21 {
    margin-left: 87.5% !important;
  }
  .large-offset-22 {
    margin-left: 91.6666666667% !important;
  }
  .large-offset-23 {
    margin-left: 95.8333333333% !important;
  }
  .large-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.large-centered,
  .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.large-uncentered,
  .columns.large-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.large-centered:last-child,
  .columns.large-centered:last-child {
    float: none;
  }
  .column.large-uncentered:last-child,
  .columns.large-uncentered:last-child {
    float: left;
  }
  .column.large-uncentered.opposite,
  .columns.large-uncentered.opposite {
    float: right;
  }
  .row.large-collapse > .column,
  .row.large-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.large-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.large-uncollapse > .column,
  .row.large-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .push-1 {
    position: relative;
    left: 4.1666666667%;
    right: auto;
  }
  .pull-1 {
    position: relative;
    right: 4.1666666667%;
    left: auto;
  }
  .push-2 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .pull-2 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .push-3 {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .pull-3 {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .push-4 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .pull-4 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .push-5 {
    position: relative;
    left: 20.8333333333%;
    right: auto;
  }
  .pull-5 {
    position: relative;
    right: 20.8333333333%;
    left: auto;
  }
  .push-6 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .pull-6 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .push-7 {
    position: relative;
    left: 29.1666666667%;
    right: auto;
  }
  .pull-7 {
    position: relative;
    right: 29.1666666667%;
    left: auto;
  }
  .push-8 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .pull-8 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .push-9 {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .pull-9 {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .push-10 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .pull-10 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .push-11 {
    position: relative;
    left: 45.8333333333%;
    right: auto;
  }
  .pull-11 {
    position: relative;
    right: 45.8333333333%;
    left: auto;
  }
  .push-12 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .pull-12 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .push-13 {
    position: relative;
    left: 54.1666666667%;
    right: auto;
  }
  .pull-13 {
    position: relative;
    right: 54.1666666667%;
    left: auto;
  }
  .push-14 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .pull-14 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .push-15 {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .pull-15 {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .push-16 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .pull-16 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .push-17 {
    position: relative;
    left: 70.8333333333%;
    right: auto;
  }
  .pull-17 {
    position: relative;
    right: 70.8333333333%;
    left: auto;
  }
  .push-18 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .pull-18 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .push-19 {
    position: relative;
    left: 79.1666666667%;
    right: auto;
  }
  .pull-19 {
    position: relative;
    right: 79.1666666667%;
    left: auto;
  }
  .push-20 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .pull-20 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .push-21 {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .pull-21 {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .push-22 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .pull-22 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .push-23 {
    position: relative;
    left: 95.8333333333%;
    right: auto;
  }
  .pull-23 {
    position: relative;
    right: 95.8333333333%;
    left: auto;
  }
}
@media only screen and (min-width: 1441px) {
  .xlarge-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .xlarge-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .xlarge-push-1 {
    position: relative;
    left: 4.1666666667%;
    right: auto;
  }
  .xlarge-pull-1 {
    position: relative;
    right: 4.1666666667%;
    left: auto;
  }
  .xlarge-push-2 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .xlarge-pull-2 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .xlarge-push-3 {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .xlarge-pull-3 {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .xlarge-push-4 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .xlarge-pull-4 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .xlarge-push-5 {
    position: relative;
    left: 20.8333333333%;
    right: auto;
  }
  .xlarge-pull-5 {
    position: relative;
    right: 20.8333333333%;
    left: auto;
  }
  .xlarge-push-6 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .xlarge-pull-6 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .xlarge-push-7 {
    position: relative;
    left: 29.1666666667%;
    right: auto;
  }
  .xlarge-pull-7 {
    position: relative;
    right: 29.1666666667%;
    left: auto;
  }
  .xlarge-push-8 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .xlarge-pull-8 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .xlarge-push-9 {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .xlarge-pull-9 {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .xlarge-push-10 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .xlarge-pull-10 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .xlarge-push-11 {
    position: relative;
    left: 45.8333333333%;
    right: auto;
  }
  .xlarge-pull-11 {
    position: relative;
    right: 45.8333333333%;
    left: auto;
  }
  .xlarge-push-12 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .xlarge-pull-12 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .xlarge-push-13 {
    position: relative;
    left: 54.1666666667%;
    right: auto;
  }
  .xlarge-pull-13 {
    position: relative;
    right: 54.1666666667%;
    left: auto;
  }
  .xlarge-push-14 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .xlarge-pull-14 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .xlarge-push-15 {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .xlarge-pull-15 {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .xlarge-push-16 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .xlarge-pull-16 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .xlarge-push-17 {
    position: relative;
    left: 70.8333333333%;
    right: auto;
  }
  .xlarge-pull-17 {
    position: relative;
    right: 70.8333333333%;
    left: auto;
  }
  .xlarge-push-18 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .xlarge-pull-18 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .xlarge-push-19 {
    position: relative;
    left: 79.1666666667%;
    right: auto;
  }
  .xlarge-pull-19 {
    position: relative;
    right: 79.1666666667%;
    left: auto;
  }
  .xlarge-push-20 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .xlarge-pull-20 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .xlarge-push-21 {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .xlarge-pull-21 {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .xlarge-push-22 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .xlarge-pull-22 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .xlarge-push-23 {
    position: relative;
    left: 95.8333333333%;
    right: auto;
  }
  .xlarge-pull-23 {
    position: relative;
    right: 95.8333333333%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .xlarge-1 {
    width: 4.1666666667%;
  }
  .xlarge-2 {
    width: 8.3333333333%;
  }
  .xlarge-3 {
    width: 12.5%;
  }
  .xlarge-4 {
    width: 16.6666666667%;
  }
  .xlarge-5 {
    width: 20.8333333333%;
  }
  .xlarge-6 {
    width: 25%;
  }
  .xlarge-7 {
    width: 29.1666666667%;
  }
  .xlarge-8 {
    width: 33.3333333333%;
  }
  .xlarge-9 {
    width: 37.5%;
  }
  .xlarge-10 {
    width: 41.6666666667%;
  }
  .xlarge-11 {
    width: 45.8333333333%;
  }
  .xlarge-12 {
    width: 50%;
  }
  .xlarge-13 {
    width: 54.1666666667%;
  }
  .xlarge-14 {
    width: 58.3333333333%;
  }
  .xlarge-15 {
    width: 62.5%;
  }
  .xlarge-16 {
    width: 66.6666666667%;
  }
  .xlarge-17 {
    width: 70.8333333333%;
  }
  .xlarge-18 {
    width: 75%;
  }
  .xlarge-19 {
    width: 79.1666666667%;
  }
  .xlarge-20 {
    width: 83.3333333333%;
  }
  .xlarge-21 {
    width: 87.5%;
  }
  .xlarge-22 {
    width: 91.6666666667%;
  }
  .xlarge-23 {
    width: 95.8333333333%;
  }
  .xlarge-24 {
    width: 100%;
  }
  .xlarge-offset-0 {
    margin-left: 0 !important;
  }
  .xlarge-offset-1 {
    margin-left: 4.1666666667% !important;
  }
  .xlarge-offset-2 {
    margin-left: 8.3333333333% !important;
  }
  .xlarge-offset-3 {
    margin-left: 12.5% !important;
  }
  .xlarge-offset-4 {
    margin-left: 16.6666666667% !important;
  }
  .xlarge-offset-5 {
    margin-left: 20.8333333333% !important;
  }
  .xlarge-offset-6 {
    margin-left: 25% !important;
  }
  .xlarge-offset-7 {
    margin-left: 29.1666666667% !important;
  }
  .xlarge-offset-8 {
    margin-left: 33.3333333333% !important;
  }
  .xlarge-offset-9 {
    margin-left: 37.5% !important;
  }
  .xlarge-offset-10 {
    margin-left: 41.6666666667% !important;
  }
  .xlarge-offset-11 {
    margin-left: 45.8333333333% !important;
  }
  .xlarge-offset-12 {
    margin-left: 50% !important;
  }
  .xlarge-offset-13 {
    margin-left: 54.1666666667% !important;
  }
  .xlarge-offset-14 {
    margin-left: 58.3333333333% !important;
  }
  .xlarge-offset-15 {
    margin-left: 62.5% !important;
  }
  .xlarge-offset-16 {
    margin-left: 66.6666666667% !important;
  }
  .xlarge-offset-17 {
    margin-left: 70.8333333333% !important;
  }
  .xlarge-offset-18 {
    margin-left: 75% !important;
  }
  .xlarge-offset-19 {
    margin-left: 79.1666666667% !important;
  }
  .xlarge-offset-20 {
    margin-left: 83.3333333333% !important;
  }
  .xlarge-offset-21 {
    margin-left: 87.5% !important;
  }
  .xlarge-offset-22 {
    margin-left: 91.6666666667% !important;
  }
  .xlarge-offset-23 {
    margin-left: 95.8333333333% !important;
  }
  .xlarge-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.xlarge-centered,
  .columns.xlarge-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.xlarge-uncentered,
  .columns.xlarge-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.xlarge-centered:last-child,
  .columns.xlarge-centered:last-child {
    float: none;
  }
  .column.xlarge-uncentered:last-child,
  .columns.xlarge-uncentered:last-child {
    float: left;
  }
  .column.xlarge-uncentered.opposite,
  .columns.xlarge-uncentered.opposite {
    float: right;
  }
  .row.xlarge-collapse > .column,
  .row.xlarge-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.xlarge-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.xlarge-uncollapse > .column,
  .row.xlarge-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
}
@media only screen and (min-width: 1921px) {
  .xxlarge-push-0 {
    position: relative;
    left: 0;
    right: auto;
  }
  .xxlarge-pull-0 {
    position: relative;
    right: 0;
    left: auto;
  }
  .xxlarge-push-1 {
    position: relative;
    left: 4.1666666667%;
    right: auto;
  }
  .xxlarge-pull-1 {
    position: relative;
    right: 4.1666666667%;
    left: auto;
  }
  .xxlarge-push-2 {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .xxlarge-pull-2 {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .xxlarge-push-3 {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .xxlarge-pull-3 {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .xxlarge-push-4 {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .xxlarge-pull-4 {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .xxlarge-push-5 {
    position: relative;
    left: 20.8333333333%;
    right: auto;
  }
  .xxlarge-pull-5 {
    position: relative;
    right: 20.8333333333%;
    left: auto;
  }
  .xxlarge-push-6 {
    position: relative;
    left: 25%;
    right: auto;
  }
  .xxlarge-pull-6 {
    position: relative;
    right: 25%;
    left: auto;
  }
  .xxlarge-push-7 {
    position: relative;
    left: 29.1666666667%;
    right: auto;
  }
  .xxlarge-pull-7 {
    position: relative;
    right: 29.1666666667%;
    left: auto;
  }
  .xxlarge-push-8 {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .xxlarge-pull-8 {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .xxlarge-push-9 {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .xxlarge-pull-9 {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .xxlarge-push-10 {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .xxlarge-pull-10 {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .xxlarge-push-11 {
    position: relative;
    left: 45.8333333333%;
    right: auto;
  }
  .xxlarge-pull-11 {
    position: relative;
    right: 45.8333333333%;
    left: auto;
  }
  .xxlarge-push-12 {
    position: relative;
    left: 50%;
    right: auto;
  }
  .xxlarge-pull-12 {
    position: relative;
    right: 50%;
    left: auto;
  }
  .xxlarge-push-13 {
    position: relative;
    left: 54.1666666667%;
    right: auto;
  }
  .xxlarge-pull-13 {
    position: relative;
    right: 54.1666666667%;
    left: auto;
  }
  .xxlarge-push-14 {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .xxlarge-pull-14 {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .xxlarge-push-15 {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .xxlarge-pull-15 {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .xxlarge-push-16 {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .xxlarge-pull-16 {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .xxlarge-push-17 {
    position: relative;
    left: 70.8333333333%;
    right: auto;
  }
  .xxlarge-pull-17 {
    position: relative;
    right: 70.8333333333%;
    left: auto;
  }
  .xxlarge-push-18 {
    position: relative;
    left: 75%;
    right: auto;
  }
  .xxlarge-pull-18 {
    position: relative;
    right: 75%;
    left: auto;
  }
  .xxlarge-push-19 {
    position: relative;
    left: 79.1666666667%;
    right: auto;
  }
  .xxlarge-pull-19 {
    position: relative;
    right: 79.1666666667%;
    left: auto;
  }
  .xxlarge-push-20 {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .xxlarge-pull-20 {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .xxlarge-push-21 {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .xxlarge-pull-21 {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .xxlarge-push-22 {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .xxlarge-pull-22 {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .xxlarge-push-23 {
    position: relative;
    left: 95.8333333333%;
    right: auto;
  }
  .xxlarge-pull-23 {
    position: relative;
    right: 95.8333333333%;
    left: auto;
  }
  .column,
  .columns {
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
  .xxlarge-1 {
    width: 4.1666666667%;
  }
  .xxlarge-2 {
    width: 8.3333333333%;
  }
  .xxlarge-3 {
    width: 12.5%;
  }
  .xxlarge-4 {
    width: 16.6666666667%;
  }
  .xxlarge-5 {
    width: 20.8333333333%;
  }
  .xxlarge-6 {
    width: 25%;
  }
  .xxlarge-7 {
    width: 29.1666666667%;
  }
  .xxlarge-8 {
    width: 33.3333333333%;
  }
  .xxlarge-9 {
    width: 37.5%;
  }
  .xxlarge-10 {
    width: 41.6666666667%;
  }
  .xxlarge-11 {
    width: 45.8333333333%;
  }
  .xxlarge-12 {
    width: 50%;
  }
  .xxlarge-13 {
    width: 54.1666666667%;
  }
  .xxlarge-14 {
    width: 58.3333333333%;
  }
  .xxlarge-15 {
    width: 62.5%;
  }
  .xxlarge-16 {
    width: 66.6666666667%;
  }
  .xxlarge-17 {
    width: 70.8333333333%;
  }
  .xxlarge-18 {
    width: 75%;
  }
  .xxlarge-19 {
    width: 79.1666666667%;
  }
  .xxlarge-20 {
    width: 83.3333333333%;
  }
  .xxlarge-21 {
    width: 87.5%;
  }
  .xxlarge-22 {
    width: 91.6666666667%;
  }
  .xxlarge-23 {
    width: 95.8333333333%;
  }
  .xxlarge-24 {
    width: 100%;
  }
  .xxlarge-offset-0 {
    margin-left: 0 !important;
  }
  .xxlarge-offset-1 {
    margin-left: 4.1666666667% !important;
  }
  .xxlarge-offset-2 {
    margin-left: 8.3333333333% !important;
  }
  .xxlarge-offset-3 {
    margin-left: 12.5% !important;
  }
  .xxlarge-offset-4 {
    margin-left: 16.6666666667% !important;
  }
  .xxlarge-offset-5 {
    margin-left: 20.8333333333% !important;
  }
  .xxlarge-offset-6 {
    margin-left: 25% !important;
  }
  .xxlarge-offset-7 {
    margin-left: 29.1666666667% !important;
  }
  .xxlarge-offset-8 {
    margin-left: 33.3333333333% !important;
  }
  .xxlarge-offset-9 {
    margin-left: 37.5% !important;
  }
  .xxlarge-offset-10 {
    margin-left: 41.6666666667% !important;
  }
  .xxlarge-offset-11 {
    margin-left: 45.8333333333% !important;
  }
  .xxlarge-offset-12 {
    margin-left: 50% !important;
  }
  .xxlarge-offset-13 {
    margin-left: 54.1666666667% !important;
  }
  .xxlarge-offset-14 {
    margin-left: 58.3333333333% !important;
  }
  .xxlarge-offset-15 {
    margin-left: 62.5% !important;
  }
  .xxlarge-offset-16 {
    margin-left: 66.6666666667% !important;
  }
  .xxlarge-offset-17 {
    margin-left: 70.8333333333% !important;
  }
  .xxlarge-offset-18 {
    margin-left: 75% !important;
  }
  .xxlarge-offset-19 {
    margin-left: 79.1666666667% !important;
  }
  .xxlarge-offset-20 {
    margin-left: 83.3333333333% !important;
  }
  .xxlarge-offset-21 {
    margin-left: 87.5% !important;
  }
  .xxlarge-offset-22 {
    margin-left: 91.6666666667% !important;
  }
  .xxlarge-offset-23 {
    margin-left: 95.8333333333% !important;
  }
  .xxlarge-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto;
  }
  .column.xxlarge-centered,
  .columns.xxlarge-centered {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .column.xxlarge-uncentered,
  .columns.xxlarge-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  .column.xxlarge-centered:last-child,
  .columns.xxlarge-centered:last-child {
    float: none;
  }
  .column.xxlarge-uncentered:last-child,
  .columns.xxlarge-uncentered:last-child {
    float: left;
  }
  .column.xxlarge-uncentered.opposite,
  .columns.xxlarge-uncentered.opposite {
    float: right;
  }
  .row.xxlarge-collapse > .column,
  .row.xxlarge-collapse > .columns {
    padding-left: 0;
    padding-right: 0;
  }
  .row.xxlarge-collapse .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.xxlarge-uncollapse > .column,
  .row.xxlarge-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left;
  }
}
.reveal-modal-bg {
  background: #000000;
  background: rgba(0, 0, 0, 0.45);
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1004;
  left: 0;
}

.reveal-modal {
  border-radius: 0.24rem;
  display: none;
  position: absolute;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 1005;
  left: 0;
}

@media only screen and (max-width: 640px) {
  .reveal-modal {
    min-height: 100vh;
  }
}
.reveal-modal .column, .reveal-modal .columns {
  min-width: 0;
}

.reveal-modal > :first-child {
  margin-top: 0;
}

.reveal-modal > :last-child {
  margin-bottom: 0;
}

@media only screen and (min-width: 641px) {
  .reveal-modal {
    left: 0;
    margin: 0 auto;
    max-width: 62.5rem;
    right: 0;
    width: 70%;
  }
}
.reveal-modal {
  background-color: #FFFFFF;
  padding: 1.875rem;
  border: solid 1px #666666;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

@media only screen and (min-width: 641px) {
  .reveal-modal {
    top: 6.25rem;
  }
}
.reveal-modal.radius {
  border-radius: 0.24rem;
}

.reveal-modal.round {
  border-radius: 1000px;
}

.reveal-modal.collapse {
  padding: 0;
}

@media only screen and (min-width: 641px) {
  .reveal-modal.tiny {
    left: 0;
    margin: 0 auto;
    max-width: 62.5rem;
    right: 0;
    width: 30%;
  }
}
@media only screen and (min-width: 641px) {
  .reveal-modal.small {
    left: 0;
    margin: 0 auto;
    max-width: 62.5rem;
    right: 0;
    width: 40%;
  }
}
@media only screen and (min-width: 641px) {
  .reveal-modal.medium {
    left: 0;
    margin: 0 auto;
    max-width: 62.5rem;
    right: 0;
    width: 60%;
  }
}
@media only screen and (min-width: 641px) {
  .reveal-modal.large {
    left: 0;
    margin: 0 auto;
    max-width: 62.5rem;
    right: 0;
    width: 70%;
  }
}
@media only screen and (min-width: 641px) {
  .reveal-modal.xlarge {
    left: 0;
    margin: 0 auto;
    max-width: 62.5rem;
    right: 0;
    width: 95%;
  }
}
@media only screen and (min-width: 641px) {
  .reveal-modal.full {
    left: 0;
    margin: 0 auto;
    max-width: 62.5rem;
    right: 0;
    width: 100%;
  }
}
.reveal-modal.full {
  height: 100vh;
  height: 100%;
  left: 0;
  margin-left: 0 !important;
  max-width: none !important;
  min-height: 100vh;
  top: 0;
}

.reveal-modal.toback {
  z-index: 1003;
}

.reveal-modal .close-reveal-modal {
  color: #AAAAAA;
  cursor: pointer;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 0.625rem;
  right: 1.375rem;
}

.range-slider {
  border: 1px solid #DDDDDD;
  margin: 1.25rem 0;
  position: relative;
  -ms-touch-action: none;
  touch-action: none;
  display: block;
  height: 1rem;
  width: 100%;
  background: #FAFAFA;
}

.range-slider.vertical-range {
  border: 1px solid #DDDDDD;
  margin: 1.25rem 0;
  position: relative;
  -ms-touch-action: none;
  touch-action: none;
  display: inline-block;
  height: 12.5rem;
  width: 1rem;
}

.range-slider.vertical-range .range-slider-handle {
  bottom: -10.5rem;
  margin-left: -0.5rem;
  margin-top: 0;
  position: absolute;
}

.range-slider.vertical-range .range-slider-active-segment {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  border-top-left-radius: initial;
  bottom: 0;
  height: auto;
  width: 0.875rem;
}

.range-slider.radius {
  background: #FAFAFA;
  border-radius: 0.24rem;
}

.range-slider.radius .range-slider-handle {
  background: #008CBA;
  border-radius: 0.24rem;
}

.range-slider.radius .range-slider-handle:hover {
  background: rgb(0, 123.2, 163.68);
}

.range-slider.round {
  background: #FAFAFA;
  border-radius: 1000px;
}

.range-slider.round .range-slider-handle {
  background: #008CBA;
  border-radius: 1000px;
}

.range-slider.round .range-slider-handle:hover {
  background: rgb(0, 123.2, 163.68);
}

.range-slider.disabled, .range-slider[disabled] {
  background: #FAFAFA;
  cursor: not-allowed;
  opacity: 0.7;
}

.range-slider.disabled .range-slider-handle, .range-slider[disabled] .range-slider-handle {
  background: #008CBA;
  cursor: default;
  opacity: 0.7;
}

.range-slider.disabled .range-slider-handle:hover, .range-slider[disabled] .range-slider-handle:hover {
  background: rgb(0, 123.2, 163.68);
}

.range-slider-active-segment {
  background: rgb(228.69, 228.69, 228.69);
  border-bottom-left-radius: inherit;
  border-top-left-radius: inherit;
  display: inline-block;
  height: 0.875rem;
  position: absolute;
}

.range-slider-handle {
  border: 1px solid none;
  cursor: pointer;
  display: inline-block;
  height: 1.375rem;
  position: absolute;
  top: -0.3125rem;
  width: 2rem;
  z-index: 1;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #008CBA;
}

.range-slider-handle:hover {
  background: rgb(0, 123.2, 163.68);
}

.tabs:before, .tabs:after {
  content: " ";
  display: table;
}

.tabs:after {
  clear: both;
}

.tabs {
  margin-bottom: 0 !important;
  margin-left: 0;
}

.tabs dd,
.tabs .tab-title {
  float: left;
  list-style: none;
  margin-bottom: 0 !important;
  position: relative;
}

.tabs dd > a,
.tabs .tab-title > a {
  display: block;
  background-color: #EFEFEF;
  color: #222222;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  padding: 1rem 2rem;
}

.tabs dd > a:hover,
.tabs .tab-title > a:hover {
  background-color: rgb(224.66, 224.66, 224.66);
}

.tabs dd.active a,
.tabs .tab-title.active a {
  background-color: #FFFFFF;
  color: #222222;
}

.tabs.radius dd:first-child a,
.tabs.radius .tab:first-child a {
  -webkit-border-bottom-left-radius: 0.24rem;
  -webkit-border-top-left-radius: 0.24rem;
  border-bottom-left-radius: 0.24rem;
  border-top-left-radius: 0.24rem;
}

.tabs.radius dd:last-child a,
.tabs.radius .tab:last-child a {
  -webkit-border-bottom-right-radius: 0.24rem;
  -webkit-border-top-right-radius: 0.24rem;
  border-bottom-right-radius: 0.24rem;
  border-top-right-radius: 0.24rem;
}

.tabs.vertical dd,
.tabs.vertical .tab-title {
  position: inherit;
  float: none;
  display: block;
  top: auto;
}

.tabs-content:before, .tabs-content:after {
  content: " ";
  display: table;
}

.tabs-content:after {
  clear: both;
}

.tabs-content {
  margin-bottom: 1.5rem;
  width: 100%;
}

.tabs-content > .content {
  display: none;
  float: left;
  padding: 0.9375rem 0;
  width: 100%;
}

.tabs-content > .content.active {
  display: block;
  float: none;
}

.tabs-content > .content.contained {
  padding: 0.9375rem;
}

.tabs-content.vertical {
  display: block;
}

.tabs-content.vertical > .content {
  padding: 0 0.9375rem;
}

@media only screen and (min-width: 641px) {
  .tabs.vertical {
    float: left;
    margin: 0;
    margin-bottom: 1.25rem !important;
    max-width: 20%;
    width: 20%;
  }
  .tabs-content.vertical {
    float: left;
    margin-left: -1px;
    max-width: 80%;
    padding-left: 1rem;
    width: 80%;
  }
}
.no-js .tabs-content > .content {
  display: block;
  float: none;
}

/* Tooltips */
.has-tip {
  border-bottom: false;
  color: false;
  cursor: help;
  font-weight: false;
}

.has-tip:hover, .has-tip:focus {
  border-bottom: false;
  color: false;
}

.has-tip.tip-left, .has-tip.tip-right {
  float: none !important;
}

.tooltip {
  background: #464a53;
  color: #FFFFFF;
  display: none;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.3;
  max-width: 300px;
  padding: 0.75rem;
  position: absolute;
  width: 100%;
  z-index: 1006;
  left: 50%;
}

.tooltip > .nub {
  border-color: transparent transparent #464a53 transparent;
  border: solid 0px;
  display: block;
  height: 0;
  pointer-events: none;
  position: absolute;
  top: 0px;
  width: 0;
  left: 0px;
}

.tooltip > .nub.rtl {
  left: auto;
  right: 0px;
}

.tooltip.radius {
  border-radius: 0.24rem;
}

.tooltip.round {
  border-radius: 1000px;
}

.tooltip.round > .nub {
  left: 2rem;
}

.tooltip.opened {
  border-bottom: false !important;
  color: false !important;
}

.tap-to-close {
  color: #777777;
  display: block;
  font-size: 0.625rem;
  font-weight: normal;
}

@media only screen and (min-width: 641px) {
  .tooltip > .nub {
    border-color: transparent transparent #464a53 transparent;
    top: 0px;
  }
  .tooltip.tip-top > .nub {
    border-color: #464a53 transparent transparent transparent;
    bottom: 0px;
    top: auto;
  }
  .tooltip.tip-left, .tooltip.tip-right {
    float: none !important;
  }
  .tooltip.tip-left > .nub {
    border-color: transparent transparent transparent #464a53;
    left: auto;
    margin-top: 0px;
    right: 0px;
    top: 50%;
  }
  .tooltip.tip-right > .nub {
    border-color: transparent #464a53 transparent transparent;
    left: 0px;
    margin-top: 0px;
    right: auto;
    top: 50%;
  }
}
button, .button {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  border-style: solid;
  border-width: 0;
  cursor: pointer;
  font-family: "Lato", sans-serif;
  font-weight: normal;
  line-height: normal;
  margin: 0 0 1.25rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  padding: 1rem 2rem 1.0625rem 2rem;
  font-size: 1rem;
  background-color: #008CBA;
  border-color: rgb(0, 112, 148.8);
}

button:hover, button:focus, .button:hover, .button:focus {
  background-color: rgb(0, 112, 148.8);
}

button, .button {
  color: #FFFFFF;
}

button:hover, button:focus, .button:hover, .button:focus {
  color: #FFFFFF;
}

button, .button {
  transition: background-color 300ms ease-out;
}

button.secondary, .button.secondary {
  background-color: #e7e7e7;
  border-color: rgb(184.8, 184.8, 184.8);
}

button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
  background-color: rgb(184.8, 184.8, 184.8);
}

button.secondary, .button.secondary {
  color: #333333;
}

button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
  color: #333333;
}

button.success, .button.success {
  background-color: #43AC6A;
  border-color: rgb(53.6, 137.6, 84.8);
}

button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
  background-color: rgb(53.6, 137.6, 84.8);
}

button.success, .button.success {
  color: #FFFFFF;
}

button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
  color: #FFFFFF;
}

button.alert, .button.alert {
  background-color: #f04124;
  border-color: rgb(206.6461538462, 41.5179487179, 14.1538461538);
}

button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  background-color: rgb(206.6461538462, 41.5179487179, 14.1538461538);
}

button.alert, .button.alert {
  color: #FFFFFF;
}

button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  color: #FFFFFF;
}

button.warning, .button.warning {
  background-color: #f08a24;
  border-color: rgb(206.6461538462, 110.4, 14.1538461538);
}

button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
  background-color: rgb(206.6461538462, 110.4, 14.1538461538);
}

button.warning, .button.warning {
  color: #FFFFFF;
}

button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
  color: #FFFFFF;
}

button.info, .button.info {
  background-color: #a0d3e8;
  border-color: rgb(96.8813559322, 181.7661016949, 216.7186440678);
}

button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
  background-color: rgb(96.8813559322, 181.7661016949, 216.7186440678);
}

button.info, .button.info {
  color: #333333;
}

button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
  color: #FFFFFF;
}

button.large, .button.large {
  padding: 1.125rem 2.25rem 1.1875rem 2.25rem;
  font-size: 1.25rem;
}

button.small, .button.small {
  padding: 0.875rem 1.75rem 0.9375rem 1.75rem;
  font-size: 0.8125rem;
}

button.tiny, .button.tiny {
  padding: 0.625rem 1.25rem 0.6875rem 1.25rem;
  font-size: 0.6875rem;
}

button.expand, .button.expand {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

button.left-align, .button.left-align {
  text-align: left;
  text-indent: 0.75rem;
}

button.right-align, .button.right-align {
  text-align: right;
  padding-right: 0.75rem;
}

button.radius, .button.radius {
  border-radius: 0.24rem;
}

button.round, .button.round {
  border-radius: 1000px;
}

button.disabled, button[disabled], .button.disabled, .button[disabled] {
  background-color: #008CBA;
  border-color: rgb(0, 112, 148.8);
}

button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  background-color: rgb(0, 112, 148.8);
}

button.disabled, button[disabled], .button.disabled, .button[disabled] {
  color: #FFFFFF;
}

button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  color: #FFFFFF;
}

button.disabled, button[disabled], .button.disabled, .button[disabled] {
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}

button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  background-color: #008CBA;
}

button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary {
  background-color: #e7e7e7;
  border-color: rgb(184.8, 184.8, 184.8);
}

button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  background-color: rgb(184.8, 184.8, 184.8);
}

button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary {
  color: #333333;
}

button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  color: #333333;
}

button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary {
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}

button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  background-color: #e7e7e7;
}

button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success {
  background-color: #43AC6A;
  border-color: rgb(53.6, 137.6, 84.8);
}

button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  background-color: rgb(53.6, 137.6, 84.8);
}

button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success {
  color: #FFFFFF;
}

button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  color: #FFFFFF;
}

button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success {
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}

button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  background-color: #43AC6A;
}

button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert {
  background-color: #f04124;
  border-color: rgb(206.6461538462, 41.5179487179, 14.1538461538);
}

button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  background-color: rgb(206.6461538462, 41.5179487179, 14.1538461538);
}

button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert {
  color: #FFFFFF;
}

button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  color: #FFFFFF;
}

button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert {
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}

button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  background-color: #f04124;
}

button.disabled.warning, button[disabled].warning, .button.disabled.warning, .button[disabled].warning {
  background-color: #f08a24;
  border-color: rgb(206.6461538462, 110.4, 14.1538461538);
}

button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  background-color: rgb(206.6461538462, 110.4, 14.1538461538);
}

button.disabled.warning, button[disabled].warning, .button.disabled.warning, .button[disabled].warning {
  color: #FFFFFF;
}

button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  color: #FFFFFF;
}

button.disabled.warning, button[disabled].warning, .button.disabled.warning, .button[disabled].warning {
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}

button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  background-color: #f08a24;
}

button.disabled.info, button[disabled].info, .button.disabled.info, .button[disabled].info {
  background-color: #a0d3e8;
  border-color: rgb(96.8813559322, 181.7661016949, 216.7186440678);
}

button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  background-color: rgb(96.8813559322, 181.7661016949, 216.7186440678);
}

button.disabled.info, button[disabled].info, .button.disabled.info, .button[disabled].info {
  color: #333333;
}

button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  color: #FFFFFF;
}

button.disabled.info, button[disabled].info, .button.disabled.info, .button[disabled].info {
  box-shadow: none;
  cursor: default;
  opacity: 0.7;
}

button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  background-color: #a0d3e8;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

@media only screen and (min-width: 641px) {
  button, .button {
    display: inline-block;
  }
}
/* Standard Forms */
form {
  margin: 0 0 1rem;
}

/* Using forms within rows, we need to set some defaults */
form .row .row {
  margin: 0 -0.5rem;
}

form .row .row .column,
form .row .row .columns {
  padding: 0 0.5rem;
}

form .row .row.collapse {
  margin: 0;
}

form .row .row.collapse .column,
form .row .row.collapse .columns {
  padding: 0;
}

form .row .row.collapse input {
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

form .row input.column,
form .row input.columns,
form .row textarea.column,
form .row textarea.columns {
  padding-left: 0.5rem;
}

/* Label Styles */
label {
  color: rgb(76.5, 76.5, 76.5);
  cursor: pointer;
  display: block;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 0;
}

label.right {
  float: none !important;
  text-align: right;
}

label.inline {
  margin: 0 0 1rem 0;
  padding: 0.5625rem 0;
}

label {
  /* Styles for required inputs */
}

label small {
  text-transform: capitalize;
  color: rgb(103.275, 103.275, 103.275);
}

/* Attach elements to the beginning or end of an input */
.prefix,
.postfix {
  border-style: solid;
  border-width: 1px;
  display: block;
  font-size: 0.875rem;
  height: 2.3125rem;
  line-height: 2.3125rem;
  overflow: visible;
  padding-bottom: 0;
  padding-top: 0;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 2;
}

/* Adjust padding, alignment and radius if pre/post element is a button */
.postfix.button {
  border-color: true;
}

.prefix.button {
  border: none;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-top: 0;
  text-align: center;
}

.prefix.button.radius {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 0.24rem;
  -webkit-border-top-left-radius: 0.24rem;
  border-bottom-left-radius: 0.24rem;
  border-top-left-radius: 0.24rem;
}

.postfix.button.radius {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 0.24rem;
  -webkit-border-top-right-radius: 0.24rem;
  border-bottom-right-radius: 0.24rem;
  border-top-right-radius: 0.24rem;
}

.prefix.button.round {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 1000px;
  -webkit-border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border-top-left-radius: 1000px;
}

.postfix.button.round {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 1000px;
  -webkit-border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px;
}

/* Separate prefix and postfix styles when on span or label so buttons keep their own */
span.prefix, label.prefix {
  background: rgb(242.25, 242.25, 242.25);
  border-right: none;
  color: #333333;
  border-color: #cccccc;
}

span.postfix, label.postfix {
  background: rgb(242.25, 242.25, 242.25);
  color: #333333;
  border-color: #cccccc;
}

/* We use this to get basic styling on all basic form elements */
input[type=text], input[type=password], input[type=date], input[type=datetime], input[type=datetime-local], input[type=month], input[type=week], input[type=email], input[type=number], input[type=search], input[type=tel], input[type=time], input[type=url], input[type=color], textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  background-color: #FFFFFF;
  border-style: solid;
  border-width: 1px;
  border-color: #cccccc;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75);
  display: block;
  font-family: inherit;
  font-size: 0.875rem;
  height: 2.3125rem;
  margin: 0 0 1rem 0;
  padding: 0.5rem;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

input[type=text]:focus, input[type=password]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=month]:focus, input[type=week]:focus, input[type=email]:focus, input[type=number]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=time]:focus, input[type=url]:focus, input[type=color]:focus, textarea:focus {
  background: rgb(249.9, 249.9, 249.9);
  border-color: #999999;
  outline: none;
}

input[type=text]:disabled, input[type=password]:disabled, input[type=date]:disabled, input[type=datetime]:disabled, input[type=datetime-local]:disabled, input[type=month]:disabled, input[type=week]:disabled, input[type=email]:disabled, input[type=number]:disabled, input[type=search]:disabled, input[type=tel]:disabled, input[type=time]:disabled, input[type=url]:disabled, input[type=color]:disabled, textarea:disabled {
  background-color: #DDDDDD;
  cursor: default;
}

input[type=text][disabled], input[type=text][readonly], fieldset[disabled] input[type=text], input[type=password][disabled], input[type=password][readonly], fieldset[disabled] input[type=password], input[type=date][disabled], input[type=date][readonly], fieldset[disabled] input[type=date], input[type=datetime][disabled], input[type=datetime][readonly], fieldset[disabled] input[type=datetime], input[type=datetime-local][disabled], input[type=datetime-local][readonly], fieldset[disabled] input[type=datetime-local], input[type=month][disabled], input[type=month][readonly], fieldset[disabled] input[type=month], input[type=week][disabled], input[type=week][readonly], fieldset[disabled] input[type=week], input[type=email][disabled], input[type=email][readonly], fieldset[disabled] input[type=email], input[type=number][disabled], input[type=number][readonly], fieldset[disabled] input[type=number], input[type=search][disabled], input[type=search][readonly], fieldset[disabled] input[type=search], input[type=tel][disabled], input[type=tel][readonly], fieldset[disabled] input[type=tel], input[type=time][disabled], input[type=time][readonly], fieldset[disabled] input[type=time], input[type=url][disabled], input[type=url][readonly], fieldset[disabled] input[type=url], input[type=color][disabled], input[type=color][readonly], fieldset[disabled] input[type=color], textarea[disabled], textarea[readonly], fieldset[disabled] textarea {
  background-color: #DDDDDD;
  cursor: default;
}

input[type=text], input[type=password], input[type=date], input[type=datetime], input[type=datetime-local], input[type=month], input[type=week], input[type=email], input[type=number], input[type=search], input[type=tel], input[type=time], input[type=url], input[type=color], textarea {
  -webkit-transition: border-color 0.15s linear, background 0.15s linear;
  -moz-transition: border-color 0.15s linear, background 0.15s linear;
  -ms-transition: border-color 0.15s linear, background 0.15s linear;
  -o-transition: border-color 0.15s linear, background 0.15s linear;
  transition: border-color 0.15s linear, background 0.15s linear;
}

input[type=text].radius, input[type=password].radius, input[type=date].radius, input[type=datetime].radius, input[type=datetime-local].radius, input[type=month].radius, input[type=week].radius, input[type=email].radius, input[type=number].radius, input[type=search].radius, input[type=tel].radius, input[type=time].radius, input[type=url].radius, input[type=color].radius, textarea.radius {
  border-radius: 0.24rem;
}

form .row .prefix-radius.row.collapse input,
form .row .prefix-radius.row.collapse textarea,
form .row .prefix-radius.row.collapse select,
form .row .prefix-radius.row.collapse button {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 0.24rem;
  -webkit-border-top-right-radius: 0.24rem;
  border-bottom-right-radius: 0.24rem;
  border-top-right-radius: 0.24rem;
}

form .row .prefix-radius.row.collapse .prefix {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 0.24rem;
  -webkit-border-top-left-radius: 0.24rem;
  border-bottom-left-radius: 0.24rem;
  border-top-left-radius: 0.24rem;
}

form .row .postfix-radius.row.collapse input,
form .row .postfix-radius.row.collapse textarea,
form .row .postfix-radius.row.collapse select,
form .row .postfix-radius.row.collapse button {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 0.24rem;
  -webkit-border-top-left-radius: 0.24rem;
  border-bottom-left-radius: 0.24rem;
  border-top-left-radius: 0.24rem;
}

form .row .postfix-radius.row.collapse .postfix {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 0.24rem;
  -webkit-border-top-right-radius: 0.24rem;
  border-bottom-right-radius: 0.24rem;
  border-top-right-radius: 0.24rem;
}

form .row .prefix-round.row.collapse input,
form .row .prefix-round.row.collapse textarea,
form .row .prefix-round.row.collapse select,
form .row .prefix-round.row.collapse button {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 1000px;
  -webkit-border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px;
}

form .row .prefix-round.row.collapse .prefix {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 1000px;
  -webkit-border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border-top-left-radius: 1000px;
}

form .row .postfix-round.row.collapse input,
form .row .postfix-round.row.collapse textarea,
form .row .postfix-round.row.collapse select,
form .row .postfix-round.row.collapse button {
  border-radius: 0;
  -webkit-border-bottom-left-radius: 1000px;
  -webkit-border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  border-top-left-radius: 1000px;
}

form .row .postfix-round.row.collapse .postfix {
  border-radius: 0;
  -webkit-border-bottom-right-radius: 1000px;
  -webkit-border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
  border-top-right-radius: 1000px;
}

input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
}

/* Respect enforced amount of rows for textarea */
textarea[rows] {
  height: auto;
}

/* Not allow resize out of parent */
textarea {
  max-width: 100%;
}

::-webkit-input-placeholder {
  color: #cccccc;
}

:-moz-placeholder { /* Firefox 18- */
  color: #cccccc;
}

::-moz-placeholder { /* Firefox 19+ */
  color: #cccccc;
}

:-ms-input-placeholder {
  color: #cccccc;
}

/* Add height value for select elements to match text input height */
select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-color: #FAFAFA;
  border-radius: 0;
}

select::-ms-expand {
  display: none;
}

select {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+);
  background-position: 100% center;
  background-repeat: no-repeat;
  border-style: solid;
  border-width: 1px;
  border-color: #cccccc;
  color: rgba(0, 0, 0, 0.75);
  font-family: inherit;
  font-size: 0.875rem;
  line-height: normal;
  padding: 0.5rem;
  border-radius: 0;
}

select.radius {
  border-radius: 0.24rem;
}

select:hover {
  background-color: rgb(242.5, 242.5, 242.5);
  border-color: #999999;
}

select:disabled {
  background-color: #DDDDDD;
  cursor: default;
}

select {
  height: 2.3125rem;
}

select[multiple] {
  height: auto;
}

/* Adjust margin for form elements below */
input[type=file],
input[type=checkbox],
input[type=radio],
select {
  margin: 0 0 1rem 0;
}

input[type=checkbox] + label,
input[type=radio] + label {
  display: inline-block;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
  vertical-align: baseline;
}

/* Normalize file input width */
input[type=file] {
  width: 100%;
}

/* HTML5 Number spinners settings */
/* We add basic fieldset styling */
fieldset {
  border: 1px solid #DDDDDD;
  margin: 1.125rem 0;
  padding: 1.25rem;
}

fieldset legend {
  background: #FFFFFF;
  font-weight: bold;
  margin-left: -0.1875rem;
  margin: 0;
  padding: 0 0.1875rem;
}

/* Error Handling */
[data-abide] .error small.error, [data-abide] .error span.error, [data-abide] span.error, [data-abide] small.error {
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  font-weight: normal;
  margin-bottom: 1rem;
  margin-top: -1px;
  padding: 0.375rem 0.5625rem 0.5625rem;
  background: #f04124;
  color: #FFFFFF;
}

[data-abide] span.error, [data-abide] small.error {
  display: none;
}

span.error, small.error {
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  font-weight: normal;
  margin-bottom: 1rem;
  margin-top: -1px;
  padding: 0.375rem 0.5625rem 0.5625rem;
  background: #f04124;
  color: #FFFFFF;
}

.error input,
.error textarea,
.error select {
  margin-bottom: 0;
}

.error input[type=checkbox],
.error input[type=radio] {
  margin-bottom: 1rem;
}

.error label,
.error label.error {
  color: #f04124;
}

.error small.error {
  display: block;
  font-size: 0.75rem;
  font-style: italic;
  font-weight: normal;
  margin-bottom: 1rem;
  margin-top: -1px;
  padding: 0.375rem 0.5625rem 0.5625rem;
  background: #f04124;
  color: #FFFFFF;
}

.error > label > small {
  background: transparent;
  color: rgb(103.275, 103.275, 103.275);
  display: inline;
  font-size: 60%;
  font-style: normal;
  margin: 0;
  padding: 0;
  text-transform: capitalize;
}

.error span.error-message {
  display: block;
}

input.error,
textarea.error,
select.error {
  margin-bottom: 0;
}

label.error {
  color: #f04124;
}

meta.foundation-mq-topbar {
  font-family: "/only screen and (min-width:0)/";
  width: 0, 981px;
}

/* Wrapped around .top-bar to contain to grid width */
.contain-to-grid {
  width: 100%;
  background: #333333;
}

.contain-to-grid .top-bar {
  margin-bottom: 0;
}

.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  left: 0;
}

.fixed.expanded:not(.top-bar) {
  height: auto;
  max-height: 100%;
  overflow-y: auto;
  width: 100%;
}

.fixed.expanded:not(.top-bar) .title-area {
  position: fixed;
  width: 100%;
  z-index: 99;
}

.fixed.expanded:not(.top-bar) .top-bar-section {
  margin-top: 2.8125rem;
  z-index: 98;
}

.top-bar {
  background: #333333;
  height: 2.8125rem;
  line-height: 2.8125rem;
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
}

.top-bar ul {
  list-style: none;
  margin-bottom: 0;
}

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

.top-bar form,
.top-bar input,
.top-bar select {
  margin-bottom: 0;
}

.top-bar input,
.top-bar select {
  font-size: 0.75rem;
  height: 1.75rem;
  padding-bottom: 0.35rem;
  padding-top: 0.35rem;
}

.top-bar .button, .top-bar button {
  font-size: 0.75rem;
  margin-bottom: 0;
  padding-bottom: 0.4125rem;
  padding-top: 0.4125rem;
}

@media only screen and (max-width: 640px) {
  .top-bar .button, .top-bar button {
    position: relative;
    top: -1px;
  }
}
.top-bar .title-area {
  margin: 0;
  position: relative;
}

.top-bar .name {
  font-size: 16px;
  height: 2.8125rem;
  margin: 0;
}

.top-bar .name h1, .top-bar .name h2, .top-bar .name h3, .top-bar .name h4, .top-bar .name p, .top-bar .name span {
  font-size: 1.0625rem;
  line-height: 2.8125rem;
  margin: 0;
}

.top-bar .name h1 a, .top-bar .name h2 a, .top-bar .name h3 a, .top-bar .name h4 a, .top-bar .name p a, .top-bar .name span a {
  color: #FFFFFF;
  display: block;
  font-weight: normal;
  padding: 0 0.9375rem;
  width: 75%;
}

.top-bar .toggle-topbar {
  position: absolute;
  right: 0;
  top: 0;
}

.top-bar .toggle-topbar a {
  color: #FFFFFF;
  display: block;
  font-size: 0.8125rem;
  font-weight: bold;
  height: 2.8125rem;
  line-height: 2.8125rem;
  padding: 0 0.9375rem;
  position: relative;
  text-transform: uppercase;
}

.top-bar .toggle-topbar.menu-icon {
  margin-top: -16px;
  top: 50%;
}

.top-bar .toggle-topbar.menu-icon a span::after {
  content: "";
  display: block;
  height: 0;
  position: absolute;
  margin-top: -8px;
  top: 50%;
  right: 0.9375rem;
  box-shadow: 0 0 0 1px #FFFFFF, 0 7px 0 1px #FFFFFF, 0 14px 0 1px #FFFFFF;
  width: 16px;
}

.top-bar .toggle-topbar.menu-icon a span:hover:after {
  box-shadow: 0 0 0 1px "", 0 7px 0 1px "", 0 14px 0 1px "";
}

.top-bar .toggle-topbar.menu-icon a {
  color: #FFFFFF;
  height: 34px;
  line-height: 33px;
  padding: 0 2.5rem 0 0.9375rem;
  position: relative;
}

.top-bar.expanded {
  background: transparent;
  height: auto;
}

.top-bar.expanded .title-area {
  background: #333333;
}

.top-bar.expanded .toggle-topbar a {
  color: #888888;
}

.top-bar.expanded .toggle-topbar a span::after {
  box-shadow: 0 0 0 1px #888888, 0 7px 0 1px #888888, 0 14px 0 1px #888888;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .top-bar.expanded .top-bar-section .has-dropdown.moved > .dropdown,
  .top-bar.expanded .top-bar-section .dropdown {
    clip: initial;
  }
  .top-bar.expanded .top-bar-section .has-dropdown:not(.moved) > ul {
    padding: 0;
  }
}
.top-bar-section {
  left: 0;
  position: relative;
  width: auto;
  transition: left 300ms ease-out;
}

.top-bar-section ul {
  display: block;
  font-size: 16px;
  height: auto;
  margin: 0;
  padding: 0;
  width: 100%;
}

.top-bar-section .divider,
.top-bar-section [role=separator] {
  border-top: solid 1px rgb(25.5, 25.5, 25.5);
  clear: both;
  height: 1px;
  width: 100%;
}

.top-bar-section ul li {
  background: #333333;
}

.top-bar-section ul li > a {
  color: #FFFFFF;
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 0.8125rem;
  font-weight: normal;
  padding-left: 0.9375rem;
  padding: 12px 0 12px 0.9375rem;
  text-transform: none;
  width: 100%;
}

.top-bar-section ul li > a.button {
  font-size: 0.8125rem;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  background-color: #008CBA;
  border-color: rgb(0, 112, 148.8);
}

.top-bar-section ul li > a.button:hover, .top-bar-section ul li > a.button:focus {
  background-color: rgb(0, 112, 148.8);
}

.top-bar-section ul li > a.button {
  color: #FFFFFF;
}

.top-bar-section ul li > a.button:hover, .top-bar-section ul li > a.button:focus {
  color: #FFFFFF;
}

.top-bar-section ul li > a.button.secondary {
  background-color: #e7e7e7;
  border-color: rgb(184.8, 184.8, 184.8);
}

.top-bar-section ul li > a.button.secondary:hover, .top-bar-section ul li > a.button.secondary:focus {
  background-color: rgb(184.8, 184.8, 184.8);
}

.top-bar-section ul li > a.button.secondary {
  color: #333333;
}

.top-bar-section ul li > a.button.secondary:hover, .top-bar-section ul li > a.button.secondary:focus {
  color: #333333;
}

.top-bar-section ul li > a.button.success {
  background-color: #43AC6A;
  border-color: rgb(53.6, 137.6, 84.8);
}

.top-bar-section ul li > a.button.success:hover, .top-bar-section ul li > a.button.success:focus {
  background-color: rgb(53.6, 137.6, 84.8);
}

.top-bar-section ul li > a.button.success {
  color: #FFFFFF;
}

.top-bar-section ul li > a.button.success:hover, .top-bar-section ul li > a.button.success:focus {
  color: #FFFFFF;
}

.top-bar-section ul li > a.button.alert {
  background-color: #f04124;
  border-color: rgb(206.6461538462, 41.5179487179, 14.1538461538);
}

.top-bar-section ul li > a.button.alert:hover, .top-bar-section ul li > a.button.alert:focus {
  background-color: rgb(206.6461538462, 41.5179487179, 14.1538461538);
}

.top-bar-section ul li > a.button.alert {
  color: #FFFFFF;
}

.top-bar-section ul li > a.button.alert:hover, .top-bar-section ul li > a.button.alert:focus {
  color: #FFFFFF;
}

.top-bar-section ul li > a.button.warning {
  background-color: #f08a24;
  border-color: rgb(206.6461538462, 110.4, 14.1538461538);
}

.top-bar-section ul li > a.button.warning:hover, .top-bar-section ul li > a.button.warning:focus {
  background-color: rgb(206.6461538462, 110.4, 14.1538461538);
}

.top-bar-section ul li > a.button.warning {
  color: #FFFFFF;
}

.top-bar-section ul li > a.button.warning:hover, .top-bar-section ul li > a.button.warning:focus {
  color: #FFFFFF;
}

.top-bar-section ul li > a.button.info {
  background-color: #a0d3e8;
  border-color: rgb(96.8813559322, 181.7661016949, 216.7186440678);
}

.top-bar-section ul li > a.button.info:hover, .top-bar-section ul li > a.button.info:focus {
  background-color: rgb(96.8813559322, 181.7661016949, 216.7186440678);
}

.top-bar-section ul li > a.button.info {
  color: #333333;
}

.top-bar-section ul li > a.button.info:hover, .top-bar-section ul li > a.button.info:focus {
  color: #FFFFFF;
}

.top-bar-section ul li > button {
  font-size: 0.8125rem;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  background-color: #008CBA;
  border-color: rgb(0, 112, 148.8);
}

.top-bar-section ul li > button:hover, .top-bar-section ul li > button:focus {
  background-color: rgb(0, 112, 148.8);
}

.top-bar-section ul li > button {
  color: #FFFFFF;
}

.top-bar-section ul li > button:hover, .top-bar-section ul li > button:focus {
  color: #FFFFFF;
}

.top-bar-section ul li > button.secondary {
  background-color: #e7e7e7;
  border-color: rgb(184.8, 184.8, 184.8);
}

.top-bar-section ul li > button.secondary:hover, .top-bar-section ul li > button.secondary:focus {
  background-color: rgb(184.8, 184.8, 184.8);
}

.top-bar-section ul li > button.secondary {
  color: #333333;
}

.top-bar-section ul li > button.secondary:hover, .top-bar-section ul li > button.secondary:focus {
  color: #333333;
}

.top-bar-section ul li > button.success {
  background-color: #43AC6A;
  border-color: rgb(53.6, 137.6, 84.8);
}

.top-bar-section ul li > button.success:hover, .top-bar-section ul li > button.success:focus {
  background-color: rgb(53.6, 137.6, 84.8);
}

.top-bar-section ul li > button.success {
  color: #FFFFFF;
}

.top-bar-section ul li > button.success:hover, .top-bar-section ul li > button.success:focus {
  color: #FFFFFF;
}

.top-bar-section ul li > button.alert {
  background-color: #f04124;
  border-color: rgb(206.6461538462, 41.5179487179, 14.1538461538);
}

.top-bar-section ul li > button.alert:hover, .top-bar-section ul li > button.alert:focus {
  background-color: rgb(206.6461538462, 41.5179487179, 14.1538461538);
}

.top-bar-section ul li > button.alert {
  color: #FFFFFF;
}

.top-bar-section ul li > button.alert:hover, .top-bar-section ul li > button.alert:focus {
  color: #FFFFFF;
}

.top-bar-section ul li > button.warning {
  background-color: #f08a24;
  border-color: rgb(206.6461538462, 110.4, 14.1538461538);
}

.top-bar-section ul li > button.warning:hover, .top-bar-section ul li > button.warning:focus {
  background-color: rgb(206.6461538462, 110.4, 14.1538461538);
}

.top-bar-section ul li > button.warning {
  color: #FFFFFF;
}

.top-bar-section ul li > button.warning:hover, .top-bar-section ul li > button.warning:focus {
  color: #FFFFFF;
}

.top-bar-section ul li > button.info {
  background-color: #a0d3e8;
  border-color: rgb(96.8813559322, 181.7661016949, 216.7186440678);
}

.top-bar-section ul li > button.info:hover, .top-bar-section ul li > button.info:focus {
  background-color: rgb(96.8813559322, 181.7661016949, 216.7186440678);
}

.top-bar-section ul li > button.info {
  color: #333333;
}

.top-bar-section ul li > button.info:hover, .top-bar-section ul li > button.info:focus {
  color: #FFFFFF;
}

.top-bar-section ul li:hover:not(.has-form) > a {
  background-color: #555555;
  color: #FFFFFF;
  background: #222222;
}

.top-bar-section ul li.active > a {
  background: #008CBA;
  color: #FFFFFF;
}

.top-bar-section ul li.active > a:hover {
  background: rgb(0, 120.4, 159.96);
  color: #FFFFFF;
}

.top-bar-section .has-form {
  padding: 0.9375rem;
}

.top-bar-section .has-dropdown {
  position: relative;
}

.top-bar-section .has-dropdown > a:after {
  border: inset 5px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.4);
  border-left-style: solid;
  margin-right: 0.9375rem;
  margin-top: -4.5px;
  position: absolute;
  top: 50%;
  right: 0;
}

.top-bar-section .has-dropdown.moved {
  position: static;
}

.top-bar-section .has-dropdown.moved > .dropdown {
  position: static !important;
  height: auto;
  width: auto;
  overflow: visible;
  clip: auto;
  display: block;
  position: absolute !important;
  width: 100%;
}

.top-bar-section .has-dropdown.moved > a:after {
  display: none;
}

.top-bar-section .dropdown {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  display: block;
  padding: 0;
  position: absolute;
  top: 0;
  z-index: 99;
  left: 100%;
}

.top-bar-section .dropdown li {
  height: auto;
  width: 100%;
}

.top-bar-section .dropdown li a {
  font-weight: normal;
  padding: 8px 0.9375rem;
}

.top-bar-section .dropdown li a.parent-link {
  font-weight: normal;
}

.top-bar-section .dropdown li.title h5, .top-bar-section .dropdown li.parent-link {
  margin-bottom: 0;
  margin-top: 0;
  font-size: 1.125rem;
}

.top-bar-section .dropdown li.title h5 a, .top-bar-section .dropdown li.parent-link a {
  color: #FFFFFF;
  display: block;
}

.top-bar-section .dropdown li.title h5 a:hover, .top-bar-section .dropdown li.parent-link a:hover {
  background: none;
}

.top-bar-section .dropdown li.has-form {
  padding: 8px 0.9375rem;
}

.top-bar-section .dropdown li .button,
.top-bar-section .dropdown li button {
  top: auto;
}

.top-bar-section .dropdown label {
  color: #777777;
  font-size: 0.625rem;
  font-weight: bold;
  margin-bottom: 0;
  padding: 8px 0.9375rem 2px;
  text-transform: uppercase;
}

.js-generated {
  display: block;
}

@media only screen and (min-width: 0) {
  .top-bar:before, .top-bar:after {
    content: " ";
    display: table;
  }
  .top-bar:after {
    clear: both;
  }
  .top-bar {
    background: #333333;
    overflow: visible;
  }
  .top-bar .toggle-topbar {
    display: none;
  }
  .top-bar .title-area {
    float: left;
  }
  .top-bar .name h1 a,
  .top-bar .name h2 a,
  .top-bar .name h3 a,
  .top-bar .name h4 a,
  .top-bar .name h5 a,
  .top-bar .name h6 a {
    width: auto;
  }
  .top-bar input,
  .top-bar select,
  .top-bar .button,
  .top-bar button {
    font-size: 0.875rem;
    height: 1.75rem;
    position: relative;
    top: 0.53125rem;
  }
  .top-bar.expanded {
    background: #333333;
  }
  .contain-to-grid .top-bar {
    margin-bottom: 0;
    margin: 0 auto;
    max-width: 62.5rem;
  }
  .top-bar-section {
    transition: none 0 0;
    left: 0 !important;
  }
  .top-bar-section ul {
    display: inline;
    height: auto !important;
    width: auto;
  }
  .top-bar-section ul li {
    float: left;
  }
  .top-bar-section ul li .js-generated {
    display: none;
  }
  .top-bar-section li.hover > a:not(.button) {
    background-color: #555555;
    background: #222222;
    color: #FFFFFF;
  }
  .top-bar-section li:not(.has-form) a:not(.button) {
    background: #333333;
    line-height: 2.8125rem;
    padding: 0 0.9375rem;
  }
  .top-bar-section li:not(.has-form) a:not(.button):hover {
    background-color: #555555;
    background: #222222;
  }
  .top-bar-section li.active:not(.has-form) a:not(.button) {
    background: #008CBA;
    color: #FFFFFF;
    line-height: 2.8125rem;
    padding: 0 0.9375rem;
  }
  .top-bar-section li.active:not(.has-form) a:not(.button):hover {
    background: rgb(0, 120.4, 159.96);
    color: #FFFFFF;
  }
  .top-bar-section .has-dropdown > a {
    padding-right: 2.1875rem !important;
  }
  .top-bar-section .has-dropdown > a:after {
    border: inset 5px;
    content: "";
    display: block;
    height: 0;
    width: 0;
    border-color: rgba(255, 255, 255, 0.4) transparent transparent transparent;
    border-top-style: solid;
    margin-top: -2.5px;
    top: 1.40625rem;
  }
  .top-bar-section .has-dropdown.moved {
    position: relative;
  }
  .top-bar-section .has-dropdown.moved > .dropdown {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    display: block;
  }
  .top-bar-section .has-dropdown.hover > .dropdown, .top-bar-section .has-dropdown.not-click:hover > .dropdown {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
    display: block;
    position: absolute !important;
  }
  .top-bar-section .has-dropdown > a:focus + .dropdown {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
    display: block;
    position: absolute !important;
  }
  .top-bar-section .has-dropdown .dropdown li.has-dropdown > a:after {
    border: none;
    content: "»";
    top: 0.1875rem;
    right: 5px;
  }
  .top-bar-section .dropdown {
    left: 0;
    background: transparent;
    min-width: 100%;
    top: auto;
  }
  .top-bar-section .dropdown li a {
    background: #333333;
    color: #FFFFFF;
    line-height: 2.8125rem;
    padding: 12px 0.9375rem;
    white-space: nowrap;
  }
  .top-bar-section .dropdown li:not(.has-form):not(.active) > a:not(.button) {
    background: #333333;
    color: #FFFFFF;
  }
  .top-bar-section .dropdown li:not(.has-form):not(.active):hover > a:not(.button) {
    background-color: #555555;
    color: #FFFFFF;
    background: #222222;
  }
  .top-bar-section .dropdown li label {
    background: #333333;
    white-space: nowrap;
  }
  .top-bar-section .dropdown li .dropdown {
    left: 100%;
    top: 0;
  }
  .top-bar-section > ul > .divider,
  .top-bar-section > ul > [role=separator] {
    border-right: solid 1px rgb(77.52, 77.52, 77.52);
    border-bottom: none;
    border-top: none;
    clear: none;
    height: 2.8125rem;
    width: 0;
  }
  .top-bar-section .has-form {
    background: #333333;
    height: 2.8125rem;
    padding: 0 0.9375rem;
  }
  .top-bar-section .right li .dropdown {
    left: auto;
    right: 0;
  }
  .top-bar-section .right li .dropdown li .dropdown {
    right: 100%;
  }
  .top-bar-section .left li .dropdown {
    right: auto;
    left: 0;
  }
  .top-bar-section .left li .dropdown li .dropdown {
    left: 100%;
  }
  .no-js .top-bar-section ul li:hover > a {
    background-color: #555555;
    background: #222222;
    color: #FFFFFF;
  }
  .no-js .top-bar-section ul li:active > a {
    background: #008CBA;
    color: #FFFFFF;
  }
  .no-js .top-bar-section .has-dropdown:hover > .dropdown {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
    display: block;
    position: absolute !important;
  }
  .no-js .top-bar-section .has-dropdown > a:focus + .dropdown {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
    display: block;
    position: absolute !important;
  }
}
/* small displays */
@media only screen {
  .show-for-small-only, .show-for-small-up, .show-for-small, .show-for-small-down, .hide-for-medium-only, .hide-for-medium-up, .hide-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important;
  }
  .hide-for-small-only, .hide-for-small-up, .hide-for-small, .hide-for-small-down, .show-for-medium-only, .show-for-medium-up, .show-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important;
  }
  .visible-for-small-only, .visible-for-small-up, .visible-for-small, .visible-for-small-down, .hidden-for-medium-only, .hidden-for-medium-up, .hidden-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .hidden-for-small-only, .hidden-for-small-up, .hidden-for-small, .hidden-for-small-down, .visible-for-medium-only, .visible-for-medium-up, .visible-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
  table.show-for-small-only, table.show-for-small-up, table.show-for-small, table.show-for-small-down, table.hide-for-medium-only, table.hide-for-medium-up, table.hide-for-medium, table.show-for-medium-down, table.hide-for-large-only, table.hide-for-large-up, table.hide-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important;
  }
  thead.show-for-small-only, thead.show-for-small-up, thead.show-for-small, thead.show-for-small-down, thead.hide-for-medium-only, thead.hide-for-medium-up, thead.hide-for-medium, thead.show-for-medium-down, thead.hide-for-large-only, thead.hide-for-large-up, thead.hide-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }
  tbody.show-for-small-only, tbody.show-for-small-up, tbody.show-for-small, tbody.show-for-small-down, tbody.hide-for-medium-only, tbody.hide-for-medium-up, tbody.hide-for-medium, tbody.show-for-medium-down, tbody.hide-for-large-only, tbody.hide-for-large-up, tbody.hide-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }
  tr.show-for-small-only, tr.show-for-small-up, tr.show-for-small, tr.show-for-small-down, tr.hide-for-medium-only, tr.hide-for-medium-up, tr.hide-for-medium, tr.show-for-medium-down, tr.hide-for-large-only, tr.hide-for-large-up, tr.hide-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row;
  }
  th.show-for-small-only, td.show-for-small-only, th.show-for-small-up, td.show-for-small-up, th.show-for-small, td.show-for-small, th.show-for-small-down, td.show-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.hide-for-medium-up, td.hide-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.show-for-medium-down, td.show-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.hide-for-large-up, td.hide-for-large-up, th.hide-for-large, td.hide-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important;
  }
}
/* medium displays */
@media only screen and (min-width: 641px) {
  .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .show-for-medium-only, .show-for-medium-up, .show-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important;
  }
  .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .hide-for-medium-only, .hide-for-medium-up, .hide-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important;
  }
  .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .visible-for-medium-only, .visible-for-medium-up, .visible-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .hidden-for-medium-only, .hidden-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
  table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.show-for-medium-only, table.show-for-medium-up, table.show-for-medium, table.show-for-medium-down, table.hide-for-large-only, table.hide-for-large-up, table.hide-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important;
  }
  thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.show-for-medium-only, thead.show-for-medium-up, thead.show-for-medium, thead.show-for-medium-down, thead.hide-for-large-only, thead.hide-for-large-up, thead.hide-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }
  tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.show-for-medium-only, tbody.show-for-medium-up, tbody.show-for-medium, tbody.show-for-medium-down, tbody.hide-for-large-only, tbody.hide-for-large-up, tbody.hide-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }
  tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.show-for-medium-only, tr.show-for-medium-up, tr.show-for-medium, tr.show-for-medium-down, tr.hide-for-large-only, tr.hide-for-large-up, tr.hide-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row;
  }
  th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.show-for-medium-only, td.show-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.show-for-medium, td.show-for-medium, th.show-for-medium-down, td.show-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.hide-for-large-up, td.hide-for-large-up, th.hide-for-large, td.hide-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important;
  }
}
/* large displays */
@media only screen and (min-width: 1025px) {
  .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important;
  }
  .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important;
  }
  .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
  table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.show-for-large-only, table.show-for-large-up, table.show-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important;
  }
  thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.show-for-large-only, thead.show-for-large-up, thead.show-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }
  tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.show-for-large-only, tbody.show-for-large-up, tbody.show-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }
  tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.show-for-large-only, tr.show-for-large-up, tr.show-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row;
  }
  th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.show-for-large-only, td.show-for-large-only, th.show-for-large-up, td.show-for-large-up, th.show-for-large, td.show-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important;
  }
}
/* xlarge displays */
@media only screen and (min-width: 1441px) {
  .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .hide-for-large-only, .show-for-large-up, .hide-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important;
  }
  .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .show-for-large-only, .hide-for-large-up, .show-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important;
  }
  .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .hidden-for-large-only, .visible-for-large-up, .hidden-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .visible-for-large-only, .hidden-for-large-up, .visible-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
  table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.hide-for-large-only, table.show-for-large-up, table.hide-for-large, table.hide-for-large-down, table.show-for-xlarge-only, table.show-for-xlarge-up, table.show-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important;
  }
  thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.hide-for-large-only, thead.show-for-large-up, thead.hide-for-large, thead.hide-for-large-down, thead.show-for-xlarge-only, thead.show-for-xlarge-up, thead.show-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }
  tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.hide-for-large-only, tbody.show-for-large-up, tbody.hide-for-large, tbody.hide-for-large-down, tbody.show-for-xlarge-only, tbody.show-for-xlarge-up, tbody.show-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }
  tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.hide-for-large-only, tr.show-for-large-up, tr.hide-for-large, tr.hide-for-large-down, tr.show-for-xlarge-only, tr.show-for-xlarge-up, tr.show-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row;
  }
  th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.show-for-large-up, td.show-for-large-up, th.hide-for-large, td.hide-for-large, th.hide-for-large-down, td.hide-for-large-down, th.show-for-xlarge-only, td.show-for-xlarge-only, th.show-for-xlarge-up, td.show-for-xlarge-up, th.show-for-xlarge, td.show-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important;
  }
}
/* xxlarge displays */
@media only screen and (min-width: 1921px) {
  .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .hide-for-large-only, .show-for-large-up, .hide-for-large, .hide-for-large-down, .hide-for-xlarge-only, .show-for-xlarge-up, .hide-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important;
  }
  .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .show-for-large-only, .hide-for-large-up, .show-for-large, .show-for-large-down, .show-for-xlarge-only, .hide-for-xlarge-up, .show-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important;
  }
  .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .hidden-for-large-only, .visible-for-large-up, .hidden-for-large, .hidden-for-large-down, .hidden-for-xlarge-only, .visible-for-xlarge-up, .hidden-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto;
  }
  .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .visible-for-large-only, .hidden-for-large-up, .visible-for-large, .visible-for-large-down, .visible-for-xlarge-only, .hidden-for-xlarge-up, .visible-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
  }
  table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.hide-for-large-only, table.show-for-large-up, table.hide-for-large, table.hide-for-large-down, table.hide-for-xlarge-only, table.show-for-xlarge-up, table.hide-for-xlarge, table.hide-for-xlarge-down, table.show-for-xxlarge-only, table.show-for-xxlarge-up, table.show-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important;
  }
  thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.hide-for-large-only, thead.show-for-large-up, thead.hide-for-large, thead.hide-for-large-down, thead.hide-for-xlarge-only, thead.show-for-xlarge-up, thead.hide-for-xlarge, thead.hide-for-xlarge-down, thead.show-for-xxlarge-only, thead.show-for-xxlarge-up, thead.show-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important;
  }
  tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.hide-for-large-only, tbody.show-for-large-up, tbody.hide-for-large, tbody.hide-for-large-down, tbody.hide-for-xlarge-only, tbody.show-for-xlarge-up, tbody.hide-for-xlarge, tbody.hide-for-xlarge-down, tbody.show-for-xxlarge-only, tbody.show-for-xxlarge-up, tbody.show-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important;
  }
  tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.hide-for-large-only, tr.show-for-large-up, tr.hide-for-large, tr.hide-for-large-down, tr.hide-for-xlarge-only, tr.show-for-xlarge-up, tr.hide-for-xlarge, tr.hide-for-xlarge-down, tr.show-for-xxlarge-only, tr.show-for-xxlarge-up, tr.show-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row;
  }
  th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.show-for-large-up, td.show-for-large-up, th.hide-for-large, td.hide-for-large, th.hide-for-large-down, td.hide-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.show-for-xlarge-up, td.show-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.hide-for-xlarge-down, td.hide-for-xlarge-down, th.show-for-xxlarge-only, td.show-for-xxlarge-only, th.show-for-xxlarge-up, td.show-for-xxlarge-up, th.show-for-xxlarge, td.show-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important;
  }
}
/* Orientation targeting */
.show-for-landscape,
.hide-for-portrait {
  display: inherit !important;
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}

/* Specific visibility for tables */
table.hide-for-landscape, table.show-for-portrait {
  display: table !important;
}

thead.hide-for-landscape, thead.show-for-portrait {
  display: table-header-group !important;
}

tbody.hide-for-landscape, tbody.show-for-portrait {
  display: table-row-group !important;
}

tr.hide-for-landscape, tr.show-for-portrait {
  display: table-row !important;
}

td.hide-for-landscape, td.show-for-portrait,
th.hide-for-landscape,
th.show-for-portrait {
  display: table-cell !important;
}

@media only screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: inherit !important;
  }
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
  /* Specific visibility for tables */
  table.show-for-landscape, table.hide-for-portrait {
    display: table !important;
  }
  thead.show-for-landscape, thead.hide-for-portrait {
    display: table-header-group !important;
  }
  tbody.show-for-landscape, tbody.hide-for-portrait {
    display: table-row-group !important;
  }
  tr.show-for-landscape, tr.hide-for-portrait {
    display: table-row !important;
  }
  td.show-for-landscape, td.hide-for-portrait,
  th.show-for-landscape,
  th.hide-for-portrait {
    display: table-cell !important;
  }
}
@media only screen and (orientation: portrait) {
  .show-for-portrait,
  .hide-for-landscape {
    display: inherit !important;
  }
  .hide-for-portrait,
  .show-for-landscape {
    display: none !important;
  }
  /* Specific visibility for tables */
  table.show-for-portrait, table.hide-for-landscape {
    display: table !important;
  }
  thead.show-for-portrait, thead.hide-for-landscape {
    display: table-header-group !important;
  }
  tbody.show-for-portrait, tbody.hide-for-landscape {
    display: table-row-group !important;
  }
  tr.show-for-portrait, tr.hide-for-landscape {
    display: table-row !important;
  }
  td.show-for-portrait, td.hide-for-landscape,
  th.show-for-portrait,
  th.hide-for-landscape {
    display: table-cell !important;
  }
}
/* Touch-enabled device targeting */
.show-for-touch {
  display: none !important;
}

.hide-for-touch {
  display: inherit !important;
}

.touch .show-for-touch {
  display: inherit !important;
}

.touch .hide-for-touch {
  display: none !important;
}

/* Specific visibility for tables */
table.hide-for-touch {
  display: table !important;
}

.touch table.show-for-touch {
  display: table !important;
}

thead.hide-for-touch {
  display: table-header-group !important;
}

.touch thead.show-for-touch {
  display: table-header-group !important;
}

tbody.hide-for-touch {
  display: table-row-group !important;
}

.touch tbody.show-for-touch {
  display: table-row-group !important;
}

tr.hide-for-touch {
  display: table-row !important;
}

.touch tr.show-for-touch {
  display: table-row !important;
}

td.hide-for-touch {
  display: table-cell !important;
}

.touch td.show-for-touch {
  display: table-cell !important;
}

th.hide-for-touch {
  display: table-cell !important;
}

.touch th.show-for-touch {
  display: table-cell !important;
}

/* Screen reader-specific classes */
.show-for-sr {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

.show-on-focus {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

.show-on-focus:focus, .show-on-focus:active {
  position: static !important;
  height: auto;
  width: auto;
  overflow: visible;
  clip: auto;
}

/*
 * Print styles.
 *
 * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
 * Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
*/
.print-only {
  display: none !important;
}

@media print {
  * {
    background: transparent !important;
    box-shadow: none !important;
    color: #000000 !important; /* Black prints faster: h5bp.com/s */
    text-shadow: none !important;
  }
  .show-for-print {
    display: block;
  }
  .hide-for-print {
    display: none;
  }
  table.show-for-print {
    display: table !important;
  }
  thead.show-for-print {
    display: table-header-group !important;
  }
  tbody.show-for-print {
    display: table-row-group !important;
  }
  tr.show-for-print {
    display: table-row !important;
  }
  td.show-for-print {
    display: table-cell !important;
  }
  th.show-for-print {
    display: table-cell !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group; /* h5bp.com/t */
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .hide-on-print {
    display: none !important;
  }
  .print-only {
    display: block !important;
  }
  .hide-for-print {
    display: none !important;
  }
  .show-for-print {
    display: inherit !important;
  }
}
/* Print visibility */
@media print {
  .show-for-print {
    display: block;
  }
  .hide-for-print {
    display: none;
  }
  table.show-for-print {
    display: table !important;
  }
  thead.show-for-print {
    display: table-header-group !important;
  }
  tbody.show-for-print {
    display: table-row-group !important;
  }
  tr.show-for-print {
    display: table-row !important;
  }
  td.show-for-print {
    display: table-cell !important;
  }
  th.show-for-print {
    display: table-cell !important;
  }
}
@media not print {
  .show-for-print {
    display: none !important;
  }
}
/* Clearing Styles */
.clearing-thumbs:before, .clearing-thumbs:after, [data-clearing]:before, [data-clearing]:after {
  content: " ";
  display: table;
}

.clearing-thumbs:after, [data-clearing]:after {
  clear: both;
}

.clearing-thumbs, [data-clearing] {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
}

.clearing-thumbs li, [data-clearing] li {
  float: left;
  margin-right: 10px;
}

.clearing-thumbs[class*=block-grid-] li, [data-clearing][class*=block-grid-] li {
  margin-right: 0;
}

.clearing-blackout {
  background: #333333;
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 998;
  left: 0;
}

.clearing-blackout .clearing-close {
  display: block;
}

.clearing-container {
  height: 100%;
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 998;
}

.clearing-touch-label {
  color: #AAAAAA;
  font-size: 0.6em;
  left: 50%;
  position: absolute;
  top: 50%;
}

.visible-img {
  height: 95%;
  position: relative;
}

.visible-img img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -o-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  max-height: 100%;
  max-width: 100%;
}

.clearing-caption {
  background: #333333;
  bottom: 0;
  color: #CCCCCC;
  font-size: 0.875em;
  line-height: 1.3;
  margin-bottom: 0;
  padding: 10px 30px 20px;
  position: absolute;
  text-align: center;
  width: 100%;
  left: 0;
}

.clearing-close {
  color: #CCCCCC;
  display: none;
  font-size: 30px;
  line-height: 1;
  padding-left: 20px;
  padding-top: 10px;
  z-index: 999;
}

.clearing-close:hover, .clearing-close:focus {
  color: #CCCCCC;
}

.clearing-assembled .clearing-container {
  height: 100%;
}

.clearing-assembled .clearing-container .carousel > ul {
  display: none;
}

.clearing-feature li {
  display: none;
}

.clearing-feature li.clearing-featured-img {
  display: block;
}

@media only screen and (min-width: 641px) {
  .clearing-main-prev,
  .clearing-main-next {
    height: 100%;
    position: absolute;
    top: 0;
    width: 40px;
  }
  .clearing-main-prev > span,
  .clearing-main-next > span {
    border: solid 12px;
    display: block;
    height: 0;
    position: absolute;
    top: 50%;
    width: 0;
  }
  .clearing-main-prev > span:hover,
  .clearing-main-next > span:hover {
    opacity: 0.8;
  }
  .clearing-main-prev {
    left: 0;
  }
  .clearing-main-prev > span {
    left: 5px;
    border-color: transparent;
    border-right-color: #CCCCCC;
  }
  .clearing-main-next {
    right: 0;
  }
  .clearing-main-next > span {
    border-color: transparent;
    border-left-color: #CCCCCC;
  }
  .clearing-main-prev.disabled,
  .clearing-main-next.disabled {
    opacity: 0.3;
  }
  .clearing-assembled .clearing-container .carousel {
    background: rgba(51, 51, 51, 0.8);
    height: 120px;
    margin-top: 10px;
    text-align: center;
  }
  .clearing-assembled .clearing-container .carousel > ul {
    display: inline-block;
    z-index: 999;
    height: 100%;
    position: relative;
    float: none;
  }
  .clearing-assembled .clearing-container .carousel > ul li {
    clear: none;
    cursor: pointer;
    display: block;
    float: left;
    margin-right: 0;
    min-height: inherit;
    opacity: 0.4;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 120px;
  }
  .clearing-assembled .clearing-container .carousel > ul li.fix-height img {
    height: 100%;
    max-width: none;
  }
  .clearing-assembled .clearing-container .carousel > ul li a.th {
    border: none;
    box-shadow: none;
    display: block;
  }
  .clearing-assembled .clearing-container .carousel > ul li img {
    cursor: pointer !important;
    width: 100% !important;
  }
  .clearing-assembled .clearing-container .carousel > ul li.visible {
    opacity: 1;
  }
  .clearing-assembled .clearing-container .carousel > ul li:hover {
    opacity: 0.8;
  }
  .clearing-assembled .clearing-container .visible-img {
    background: #333333;
    height: 85%;
    overflow: hidden;
  }
  .clearing-close {
    padding-left: 0;
    padding-top: 0;
    position: absolute;
    top: 10px;
    right: 20px;
  }
}
/* Foundation 5 namespace fix — MUST appear after global font rules.
 * Foundation reads the font-family of this meta element to build its data-attr
 * namespace (e.g. [data-reveal-id]). Without this rule our body font-family
 * ("Lato, sans-serif") is inherited, producing invalid selectors like
 * [data-Lato, sans-serif-reveal-id] that crash Foundation's reveal/alert init.
 * The value "false" is handled by Foundation (set_namespace() regex) as empty. */
meta.foundation-data-attribute-namespace {
  font-family: "false" !important;
}

/*
 * Foundation Icons v 3.0
 * Made by ZURB 2013 http://zurb.com/playground/foundation-icon-fonts-3
 * MIT License
 */
@font-face {
  font-family: "foundation-icons";
  src: url("/assets/foundation-icons-286548cf.eot");
  src: url("/assets/foundation-icons-286548cf.eot?#iefix") format("embedded-opentype"), url("/assets/foundation-icons-95d2d483.woff") format("woff"), url("/assets/foundation-icons-46ac6bbe.ttf") format("truetype"), url("/assets/foundation-icons-33fcf55c.svg#fontcustom") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fi-address-book:before,
.fi-alert:before,
.fi-align-center:before,
.fi-align-justify:before,
.fi-align-left:before,
.fi-align-right:before,
.fi-anchor:before,
.fi-annotate:before,
.fi-archive:before,
.fi-arrow-down:before,
.fi-arrow-left:before,
.fi-arrow-right:before,
.fi-arrow-up:before,
.fi-arrows-compress:before,
.fi-arrows-expand:before,
.fi-arrows-in:before,
.fi-arrows-out:before,
.fi-asl:before,
.fi-asterisk:before,
.fi-at-sign:before,
.fi-background-color:before,
.fi-battery-empty:before,
.fi-battery-full:before,
.fi-battery-half:before,
.fi-bitcoin-circle:before,
.fi-bitcoin:before,
.fi-blind:before,
.fi-bluetooth:before,
.fi-bold:before,
.fi-book-bookmark:before,
.fi-book:before,
.fi-bookmark:before,
.fi-braille:before,
.fi-burst-new:before,
.fi-burst-sale:before,
.fi-burst:before,
.fi-calendar:before,
.fi-camera:before,
.fi-check:before,
.fi-checkbox:before,
.fi-clipboard-notes:before,
.fi-clipboard-pencil:before,
.fi-clipboard:before,
.fi-clock:before,
.fi-closed-caption:before,
.fi-cloud:before,
.fi-comment-minus:before,
.fi-comment-quotes:before,
.fi-comment-video:before,
.fi-comment:before,
.fi-comments:before,
.fi-compass:before,
.fi-contrast:before,
.fi-credit-card:before,
.fi-crop:before,
.fi-crown:before,
.fi-css3:before,
.fi-database:before,
.fi-die-five:before,
.fi-die-four:before,
.fi-die-one:before,
.fi-die-six:before,
.fi-die-three:before,
.fi-die-two:before,
.fi-dislike:before,
.fi-dollar-bill:before,
.fi-dollar:before,
.fi-download:before,
.fi-eject:before,
.fi-elevator:before,
.fi-euro:before,
.fi-eye:before,
.fi-fast-forward:before,
.fi-female-symbol:before,
.fi-female:before,
.fi-filter:before,
.fi-first-aid:before,
.fi-flag:before,
.fi-folder-add:before,
.fi-folder-lock:before,
.fi-folder:before,
.fi-foot:before,
.fi-foundation:before,
.fi-graph-bar:before,
.fi-graph-horizontal:before,
.fi-graph-pie:before,
.fi-graph-trend:before,
.fi-guide-dog:before,
.fi-hearing-aid:before,
.fi-heart:before,
.fi-home:before,
.fi-html5:before,
.fi-indent-less:before,
.fi-indent-more:before,
.fi-info:before,
.fi-italic:before,
.fi-key:before,
.fi-laptop:before,
.fi-layout:before,
.fi-lightbulb:before,
.fi-like:before,
.fi-link:before,
.fi-list-bullet:before,
.fi-list-number:before,
.fi-list-thumbnails:before,
.fi-list:before,
.fi-lock:before,
.fi-loop:before,
.fi-magnifying-glass:before,
.fi-mail:before,
.fi-male-female:before,
.fi-male-symbol:before,
.fi-male:before,
.fi-map:before,
.fi-marker:before,
.fi-megaphone:before,
.fi-microphone:before,
.fi-minus-circle:before,
.fi-minus:before,
.fi-mobile-signal:before,
.fi-mobile:before,
.fi-monitor:before,
.fi-mountains:before,
.fi-music:before,
.fi-next:before,
.fi-no-dogs:before,
.fi-no-smoking:before,
.fi-page-add:before,
.fi-page-copy:before,
.fi-page-csv:before,
.fi-page-delete:before,
.fi-page-doc:before,
.fi-page-edit:before,
.fi-page-export-csv:before,
.fi-page-export-doc:before,
.fi-page-export-pdf:before,
.fi-page-export:before,
.fi-page-filled:before,
.fi-page-multiple:before,
.fi-page-pdf:before,
.fi-page-remove:before,
.fi-page-search:before,
.fi-page:before,
.fi-paint-bucket:before,
.fi-paperclip:before,
.fi-pause:before,
.fi-paw:before,
.fi-paypal:before,
.fi-pencil:before,
.fi-photo:before,
.fi-play-circle:before,
.fi-play-video:before,
.fi-play:before,
.fi-plus:before,
.fi-pound:before,
.fi-power:before,
.fi-previous:before,
.fi-price-tag:before,
.fi-pricetag-multiple:before,
.fi-print:before,
.fi-prohibited:before,
.fi-projection-screen:before,
.fi-puzzle:before,
.fi-quote:before,
.fi-record:before,
.fi-refresh:before,
.fi-results-demographics:before,
.fi-results:before,
.fi-rewind-ten:before,
.fi-rewind:before,
.fi-rss:before,
.fi-safety-cone:before,
.fi-save:before,
.fi-share:before,
.fi-sheriff-badge:before,
.fi-shield:before,
.fi-shopping-bag:before,
.fi-shopping-cart:before,
.fi-shuffle:before,
.fi-skull:before,
.fi-social-500px:before,
.fi-social-adobe:before,
.fi-social-amazon:before,
.fi-social-android:before,
.fi-social-apple:before,
.fi-social-behance:before,
.fi-social-bing:before,
.fi-social-blogger:before,
.fi-social-delicious:before,
.fi-social-designer-news:before,
.fi-social-deviant-art:before,
.fi-social-digg:before,
.fi-social-dribbble:before,
.fi-social-drive:before,
.fi-social-dropbox:before,
.fi-social-evernote:before,
.fi-social-facebook:before,
.fi-social-flickr:before,
.fi-social-forrst:before,
.fi-social-foursquare:before,
.fi-social-game-center:before,
.fi-social-github:before,
.fi-social-google-plus:before,
.fi-social-hacker-news:before,
.fi-social-hi5:before,
.fi-social-instagram:before,
.fi-social-joomla:before,
.fi-social-lastfm:before,
.fi-social-linkedin:before,
.fi-social-medium:before,
.fi-social-myspace:before,
.fi-social-orkut:before,
.fi-social-path:before,
.fi-social-picasa:before,
.fi-social-pinterest:before,
.fi-social-rdio:before,
.fi-social-reddit:before,
.fi-social-skillshare:before,
.fi-social-skype:before,
.fi-social-smashing-mag:before,
.fi-social-snapchat:before,
.fi-social-spotify:before,
.fi-social-squidoo:before,
.fi-social-stack-overflow:before,
.fi-social-steam:before,
.fi-social-stumbleupon:before,
.fi-social-treehouse:before,
.fi-social-tumblr:before,
.fi-social-twitter:before,
.fi-social-vimeo:before,
.fi-social-windows:before,
.fi-social-xbox:before,
.fi-social-yahoo:before,
.fi-social-yelp:before,
.fi-social-youtube:before,
.fi-social-zerply:before,
.fi-social-zurb:before,
.fi-sound:before,
.fi-star:before,
.fi-stop:before,
.fi-strikethrough:before,
.fi-subscript:before,
.fi-superscript:before,
.fi-tablet-landscape:before,
.fi-tablet-portrait:before,
.fi-target-two:before,
.fi-target:before,
.fi-telephone-accessible:before,
.fi-telephone:before,
.fi-text-color:before,
.fi-thumbnails:before,
.fi-ticket:before,
.fi-torso-business:before,
.fi-torso-female:before,
.fi-torso:before,
.fi-torsos-all-female:before,
.fi-torsos-all:before,
.fi-torsos-female-male:before,
.fi-torsos-male-female:before,
.fi-torsos:before,
.fi-trash:before,
.fi-trees:before,
.fi-trophy:before,
.fi-underline:before,
.fi-universal-access:before,
.fi-unlink:before,
.fi-unlock:before,
.fi-upload-cloud:before,
.fi-upload:before,
.fi-usb:before,
.fi-video:before,
.fi-volume-none:before,
.fi-volume-strike:before,
.fi-volume:before,
.fi-web:before,
.fi-wheelchair:before,
.fi-widget:before,
.fi-wrench:before,
.fi-x-circle:before,
.fi-x:before,
.fi-yen:before,
.fi-zoom-in:before,
.fi-zoom-out:before {
  font-family: "foundation-icons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  text-decoration: inherit;
}

i[class^=fi-] {
  font-size: 140%;
  margin: 0 0.3em;
}

.fi-address-book:before {
  content: "\f100";
}

.fi-alert:before {
  content: "\f101";
}

.fi-align-center:before {
  content: "\f102";
}

.fi-align-justify:before {
  content: "\f103";
}

.fi-align-left:before {
  content: "\f104";
}

.fi-align-right:before {
  content: "\f105";
}

.fi-anchor:before {
  content: "\f106";
}

.fi-annotate:before {
  content: "\f107";
}

.fi-archive:before {
  content: "\f108";
}

.fi-arrow-down:before {
  content: "\f109";
}

.fi-arrow-left:before {
  content: "\f10a";
}

.fi-arrow-right:before {
  content: "\f10b";
}

.fi-arrow-up:before {
  content: "\f10c";
}

.fi-arrows-compress:before {
  content: "\f10d";
}

.fi-arrows-expand:before {
  content: "\f10e";
}

.fi-arrows-in:before {
  content: "\f10f";
}

.fi-arrows-out:before {
  content: "\f110";
}

.fi-asl:before {
  content: "\f111";
}

.fi-asterisk:before {
  content: "\f112";
}

.fi-at-sign:before {
  content: "\f113";
}

.fi-background-color:before {
  content: "\f114";
}

.fi-battery-empty:before {
  content: "\f115";
}

.fi-battery-full:before {
  content: "\f116";
}

.fi-battery-half:before {
  content: "\f117";
}

.fi-bitcoin-circle:before {
  content: "\f118";
}

.fi-bitcoin:before {
  content: "\f119";
}

.fi-blind:before {
  content: "\f11a";
}

.fi-bluetooth:before {
  content: "\f11b";
}

.fi-bold:before {
  content: "\f11c";
}

.fi-book-bookmark:before {
  content: "\f11d";
}

.fi-book:before {
  content: "\f11e";
}

.fi-bookmark:before {
  content: "\f11f";
}

.fi-braille:before {
  content: "\f120";
}

.fi-burst-new:before {
  content: "\f121";
}

.fi-burst-sale:before {
  content: "\f122";
}

.fi-burst:before {
  content: "\f123";
}

.fi-calendar:before {
  content: "\f124";
}

.fi-camera:before {
  content: "\f125";
}

.fi-check:before {
  content: "\f126";
}

.fi-checkbox:before {
  content: "\f127";
}

.fi-clipboard-notes:before {
  content: "\f128";
}

.fi-clipboard-pencil:before {
  content: "\f129";
}

.fi-clipboard:before {
  content: "\f12a";
}

.fi-clock:before {
  content: "\f12b";
}

.fi-closed-caption:before {
  content: "\f12c";
}

.fi-cloud:before {
  content: "\f12d";
}

.fi-comment-minus:before {
  content: "\f12e";
}

.fi-comment-quotes:before {
  content: "\f12f";
}

.fi-comment-video:before {
  content: "\f130";
}

.fi-comment:before {
  content: "\f131";
}

.fi-comments:before {
  content: "\f132";
}

.fi-compass:before {
  content: "\f133";
}

.fi-contrast:before {
  content: "\f134";
}

.fi-credit-card:before {
  content: "\f135";
}

.fi-crop:before {
  content: "\f136";
}

.fi-crown:before {
  content: "\f137";
}

.fi-css3:before {
  content: "\f138";
}

.fi-database:before {
  content: "\f139";
}

.fi-die-five:before {
  content: "\f13a";
}

.fi-die-four:before {
  content: "\f13b";
}

.fi-die-one:before {
  content: "\f13c";
}

.fi-die-six:before {
  content: "\f13d";
}

.fi-die-three:before {
  content: "\f13e";
}

.fi-die-two:before {
  content: "\f13f";
}

.fi-dislike:before {
  content: "\f140";
}

.fi-dollar-bill:before {
  content: "\f141";
}

.fi-dollar:before {
  content: "\f142";
}

.fi-download:before {
  content: "\f143";
}

.fi-eject:before {
  content: "\f144";
}

.fi-elevator:before {
  content: "\f145";
}

.fi-euro:before {
  content: "\f146";
}

.fi-eye:before {
  content: "\f147";
}

.fi-fast-forward:before {
  content: "\f148";
}

.fi-female-symbol:before {
  content: "\f149";
}

.fi-female:before {
  content: "\f14a";
}

.fi-filter:before {
  content: "\f14b";
}

.fi-first-aid:before {
  content: "\f14c";
}

.fi-flag:before {
  content: "\f14d";
}

.fi-folder-add:before {
  content: "\f14e";
}

.fi-folder-lock:before {
  content: "\f14f";
}

.fi-folder:before {
  content: "\f150";
}

.fi-foot:before {
  content: "\f151";
}

.fi-foundation:before {
  content: "\f152";
}

.fi-graph-bar:before {
  content: "\f153";
}

.fi-graph-horizontal:before {
  content: "\f154";
}

.fi-graph-pie:before {
  content: "\f155";
}

.fi-graph-trend:before {
  content: "\f156";
}

.fi-guide-dog:before {
  content: "\f157";
}

.fi-hearing-aid:before {
  content: "\f158";
}

.fi-heart:before {
  content: "\f159";
}

.fi-home:before {
  content: "\f15a";
}

.fi-html5:before {
  content: "\f15b";
}

.fi-indent-less:before {
  content: "\f15c";
}

.fi-indent-more:before {
  content: "\f15d";
}

.fi-info:before {
  content: "\f15e";
}

.fi-italic:before {
  content: "\f15f";
}

.fi-key:before {
  content: "\f160";
}

.fi-laptop:before {
  content: "\f161";
}

.fi-layout:before {
  content: "\f162";
}

.fi-lightbulb:before {
  content: "\f163";
}

.fi-like:before {
  content: "\f164";
}

.fi-link:before {
  content: "\f165";
}

.fi-list-bullet:before {
  content: "\f166";
}

.fi-list-number:before {
  content: "\f167";
}

.fi-list-thumbnails:before {
  content: "\f168";
}

.fi-list:before {
  content: "\f169";
}

.fi-lock:before {
  content: "\f16a";
}

.fi-loop:before {
  content: "\f16b";
}

.fi-magnifying-glass:before {
  content: "\f16c";
}

.fi-mail:before {
  content: "\f16d";
}

.fi-male-female:before {
  content: "\f16e";
}

.fi-male-symbol:before {
  content: "\f16f";
}

.fi-male:before {
  content: "\f170";
}

.fi-map:before {
  content: "\f171";
}

.fi-marker:before {
  content: "\f172";
}

.fi-megaphone:before {
  content: "\f173";
}

.fi-microphone:before {
  content: "\f174";
}

.fi-minus-circle:before {
  content: "\f175";
}

.fi-minus:before {
  content: "\f176";
}

.fi-mobile-signal:before {
  content: "\f177";
}

.fi-mobile:before {
  content: "\f178";
}

.fi-monitor:before {
  content: "\f179";
}

.fi-mountains:before {
  content: "\f17a";
}

.fi-music:before {
  content: "\f17b";
}

.fi-next:before {
  content: "\f17c";
}

.fi-no-dogs:before {
  content: "\f17d";
}

.fi-no-smoking:before {
  content: "\f17e";
}

.fi-page-add:before {
  content: "\f17f";
}

.fi-page-copy:before {
  content: "\f180";
}

.fi-page-csv:before {
  content: "\f181";
  color: #2E7D32;
}

.fi-page-delete:before {
  content: "\f182";
}

.fi-page-doc:before {
  content: "\f183";
}

.fi-page-edit:before {
  content: "\f184";
}

.fi-page-export-csv:before {
  content: "\f185";
  color: #2E7D32;
}

.fi-page-export-doc:before {
  content: "\f186";
}

.fi-page-export-pdf:before {
  content: "\f187";
  color: #C01E07;
}

.fi-page-export:before {
  content: "\f188";
}

.fi-page-filled:before {
  content: "\f189";
}

.fi-page-multiple:before {
  content: "\f18a";
}

.fi-page-pdf:before {
  content: "\f18b";
  color: #C01E07;
}

.fi-page-remove:before {
  content: "\f18c";
}

.fi-page-search:before {
  content: "\f18d";
}

.fi-page:before {
  content: "\f18e";
}

.fi-paint-bucket:before {
  content: "\f18f";
}

.fi-paperclip:before {
  content: "\f190";
}

.fi-pause:before {
  content: "\f191";
}

.fi-paw:before {
  content: "\f192";
}

.fi-paypal:before {
  content: "\f193";
}

.fi-pencil:before {
  content: "\f194";
}

.fi-photo:before {
  content: "\f195";
}

.fi-play-circle:before {
  content: "\f196";
}

.fi-play-video:before {
  content: "\f197";
}

.fi-play:before {
  content: "\f198";
}

.fi-plus:before {
  content: "\f199";
}

.fi-pound:before {
  content: "\f19a";
}

.fi-power:before {
  content: "\f19b";
}

.fi-previous:before {
  content: "\f19c";
}

.fi-price-tag:before {
  content: "\f19d";
}

.fi-pricetag-multiple:before {
  content: "\f19e";
}

.fi-print:before {
  content: "\f19f";
}

.fi-prohibited:before {
  content: "\f1a0";
}

.fi-projection-screen:before {
  content: "\f1a1";
}

.fi-puzzle:before {
  content: "\f1a2";
}

.fi-quote:before {
  content: "\f1a3";
}

.fi-record:before {
  content: "\f1a4";
}

.fi-refresh:before {
  content: "\f1a5";
}

.fi-results-demographics:before {
  content: "\f1a6";
}

.fi-results:before {
  content: "\f1a7";
}

.fi-rewind-ten:before {
  content: "\f1a8";
}

.fi-rewind:before {
  content: "\f1a9";
}

.fi-rss:before {
  content: "\f1aa";
}

.fi-safety-cone:before {
  content: "\f1ab";
}

.fi-save:before {
  content: "\f1ac";
}

.fi-share:before {
  content: "\f1ad";
}

.fi-sheriff-badge:before {
  content: "\f1ae";
}

.fi-shield:before {
  content: "\f1af";
}

.fi-shopping-bag:before {
  content: "\f1b0";
}

.fi-shopping-cart:before {
  content: "\f1b1";
}

.fi-shuffle:before {
  content: "\f1b2";
}

.fi-skull:before {
  content: "\f1b3";
}

.fi-social-500px:before {
  content: "\f1b4";
}

.fi-social-adobe:before {
  content: "\f1b5";
}

.fi-social-amazon:before {
  content: "\f1b6";
}

.fi-social-android:before {
  content: "\f1b7";
}

.fi-social-apple:before {
  content: "\f1b8";
}

.fi-social-behance:before {
  content: "\f1b9";
}

.fi-social-bing:before {
  content: "\f1ba";
}

.fi-social-blogger:before {
  content: "\f1bb";
}

.fi-social-delicious:before {
  content: "\f1bc";
}

.fi-social-designer-news:before {
  content: "\f1bd";
}

.fi-social-deviant-art:before {
  content: "\f1be";
}

.fi-social-digg:before {
  content: "\f1bf";
}

.fi-social-dribbble:before {
  content: "\f1c0";
}

.fi-social-drive:before {
  content: "\f1c1";
}

.fi-social-dropbox:before {
  content: "\f1c2";
}

.fi-social-evernote:before {
  content: "\f1c3";
}

.fi-social-facebook:before {
  content: "\f1c4";
}

.fi-social-flickr:before {
  content: "\f1c5";
}

.fi-social-forrst:before {
  content: "\f1c6";
}

.fi-social-foursquare:before {
  content: "\f1c7";
}

.fi-social-game-center:before {
  content: "\f1c8";
}

.fi-social-github:before {
  content: "\f1c9";
}

.fi-social-google-plus:before {
  content: "\f1ca";
}

.fi-social-hacker-news:before {
  content: "\f1cb";
}

.fi-social-hi5:before {
  content: "\f1cc";
}

.fi-social-instagram:before {
  content: "\f1cd";
}

.fi-social-joomla:before {
  content: "\f1ce";
}

.fi-social-lastfm:before {
  content: "\f1cf";
}

.fi-social-linkedin:before {
  content: "\f1d0";
}

.fi-social-medium:before {
  content: "\f1d1";
}

.fi-social-myspace:before {
  content: "\f1d2";
}

.fi-social-orkut:before {
  content: "\f1d3";
}

.fi-social-path:before {
  content: "\f1d4";
}

.fi-social-picasa:before {
  content: "\f1d5";
}

.fi-social-pinterest:before {
  content: "\f1d6";
}

.fi-social-rdio:before {
  content: "\f1d7";
}

.fi-social-reddit:before {
  content: "\f1d8";
}

.fi-social-skillshare:before {
  content: "\f1d9";
}

.fi-social-skype:before {
  content: "\f1da";
}

.fi-social-smashing-mag:before {
  content: "\f1db";
}

.fi-social-snapchat:before {
  content: "\f1dc";
}

.fi-social-spotify:before {
  content: "\f1dd";
}

.fi-social-squidoo:before {
  content: "\f1de";
}

.fi-social-stack-overflow:before {
  content: "\f1df";
}

.fi-social-steam:before {
  content: "\f1e0";
}

.fi-social-stumbleupon:before {
  content: "\f1e1";
}

.fi-social-treehouse:before {
  content: "\f1e2";
}

.fi-social-tumblr:before {
  content: "\f1e3";
}

.fi-social-twitter:before {
  content: "\f1e4";
}

.fi-social-vimeo:before {
  content: "\f1e5";
}

.fi-social-windows:before {
  content: "\f1e6";
}

.fi-social-xbox:before {
  content: "\f1e7";
}

.fi-social-yahoo:before {
  content: "\f1e8";
}

.fi-social-yelp:before {
  content: "\f1e9";
}

.fi-social-youtube:before {
  content: "\f1ea";
}

.fi-social-zerply:before {
  content: "\f1eb";
}

.fi-social-zurb:before {
  content: "\f1ec";
}

.fi-sound:before {
  content: "\f1ed";
}

.fi-star:before {
  content: "\f1ee";
}

.fi-stop:before {
  content: "\f1ef";
}

.fi-strikethrough:before {
  content: "\f1f0";
}

.fi-subscript:before {
  content: "\f1f1";
}

.fi-superscript:before {
  content: "\f1f2";
}

.fi-tablet-landscape:before {
  content: "\f1f3";
}

.fi-tablet-portrait:before {
  content: "\f1f4";
}

.fi-target-two:before {
  content: "\f1f5";
}

.fi-target:before {
  content: "\f1f6";
}

.fi-telephone-accessible:before {
  content: "\f1f7";
}

.fi-telephone:before {
  content: "\f1f8";
}

.fi-text-color:before {
  content: "\f1f9";
}

.fi-thumbnails:before {
  content: "\f1fa";
}

.fi-ticket:before {
  content: "\f1fb";
}

.fi-torso-business:before {
  content: "\f1fc";
}

.fi-torso-female:before {
  content: "\f1fd";
}

.fi-torso:before {
  content: "\f1fe";
}

.fi-torsos-all-female:before {
  content: "\f1ff";
}

.fi-torsos-all:before {
  content: "\f200";
}

.fi-torsos-female-male:before {
  content: "\f201";
}

.fi-torsos-male-female:before {
  content: "\f202";
}

.fi-torsos:before {
  content: "\f203";
}

.fi-trash:before {
  content: "\f204";
}

.fi-trees:before {
  content: "\f205";
}

.fi-trophy:before {
  content: "\f206";
}

.fi-underline:before {
  content: "\f207";
}

.fi-universal-access:before {
  content: "\f208";
}

.fi-unlink:before {
  content: "\f209";
}

.fi-unlock:before {
  content: "\f20a";
}

.fi-upload-cloud:before {
  content: "\f20b";
}

.fi-upload:before {
  content: "\f20c";
}

.fi-usb:before {
  content: "\f20d";
}

.fi-video:before {
  content: "\f20e";
}

.fi-volume-none:before {
  content: "\f20f";
}

.fi-volume-strike:before {
  content: "\f210";
}

.fi-volume:before {
  content: "\f211";
}

.fi-web:before {
  content: "\f212";
}

.fi-wheelchair:before {
  content: "\f213";
}

.fi-widget:before {
  content: "\f214";
}

.fi-wrench:before {
  content: "\f215";
}

.fi-x-circle:before {
  content: "\f216";
}

.fi-x:before {
  content: "\f217";
}

.fi-yen:before {
  content: "\f218";
}

.fi-zoom-in:before {
  content: "\f219";
}

.fi-zoom-out:before {
  content: "\f21a";
}

.ui-grid,
.ui-grid-viewport,
.ui-grid-canvas {
  height: auto !important;
}

.ag-theme-fresh .selectize-control.multi .selectize-input [data-value] {
  padding-right: 1.25rem !important;
  cursor: default !important;
}
.ag-theme-fresh .selectize-control.multi .selectize-input [data-value].active {
  color: inherit !important;
}

.ag-popup-editor .selectize-control,
.ag-cell-edit-input,
.ag-large-textarea {
  margin-top: 10px !important;
}

.ag-popup-editor:focus {
  outline: none !important;
}

.ag-header-cell-resize,
.ag-ltr .ag-header-cell-resize {
  width: 3px;
  right: 1px;
}
.ag-header-cell-resize:after,
.ag-ltr .ag-header-cell-resize:after {
  border-right: 1px dashed #bec0c4;
  box-sizing: content-box;
  content: "resize";
  display: block;
  height: 16px;
  opacity: 0.8;
  margin-top: 14px;
  overflow: hidden;
  text-indent: 3px;
  width: 3px;
}

.ag-body-container,
.ag-row-focus,
.ag-cell-focus {
  outline: none !important;
}
.ag-body-container input,
.ag-row-focus input,
.ag-cell-focus input {
  outline: none !important;
}

.ag-header-row {
  background-color: #e6e9eb !important;
}
.ag-header-row .ag-header-icon.ag-sort-ascending-icon:before {
  content: "\f106";
}
.ag-header-row .ag-header-icon.ag-sort-descending-icon:before {
  content: "\f107";
}
.ag-header-row .ag-header-icon.ag-sort-ascending-icon,
.ag-header-row .ag-header-icon.ag-sort-descending-icon {
  opacity: 1;
}
.ag-header-row .ag-header-icon.ag-sort-ascending-icon span.ag-icon,
.ag-header-row .ag-header-icon.ag-sort-descending-icon span.ag-icon {
  display: none;
}
.ag-header-row .ag-header-icon.ag-sort-ascending-icon:before,
.ag-header-row .ag-header-icon.ag-sort-descending-icon:before {
  position: relative;
  top: 1px;
  margin-left: 0.25rem;
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  text-decoration: inherit;
  font-size: 1.3rem;
}

.ag-theme-fresh.wrap-text .ag-cell,
.ag-theme-fresh.wrap-text .ag-row,
.ag-theme-fresh-class.wrap-text .ag-cell,
.ag-theme-fresh-class.wrap-text .ag-row {
  white-space: normal;
}
.ag-theme-fresh.first-bold .ag-cell:first-child,
.ag-theme-fresh-class.first-bold .ag-cell:first-child {
  font-weight: bold;
}
.ag-theme-fresh.first-bold .ag-cell:first-child a,
.ag-theme-fresh-class.first-bold .ag-cell:first-child a {
  font-weight: bold;
}
.ag-theme-fresh .f-dropdown.fixed,
.ag-theme-fresh-class .f-dropdown.fixed {
  position: fixed !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
}
.ag-theme-fresh .f-dropdown.custom-dropdown-fixed,
.ag-theme-fresh-class .f-dropdown.custom-dropdown-fixed {
  position: absolute !important;
  top: 100% !important;
  right: 0 !important;
  left: auto !important;
  z-index: 9999;
  max-width: 200px !important;
}
.ag-theme-fresh.ag-grid-head-normal .ag-header-cell,
.ag-theme-fresh-class.ag-grid-head-normal .ag-header-cell {
  font-weight: 400;
  padding: 1rem;
}
.ag-theme-fresh.ag-form.editor-view .ag-cell.ag-cell-focus,
.ag-theme-fresh-class.ag-form.editor-view .ag-cell.ag-cell-focus {
  background-color: #e9f5fc !important;
  border-right: 1px solid #d1d2d3;
}
.ag-theme-fresh.ag-form .ag-row:hover, .ag-theme-fresh.ag-form .ag-row.ag-row-hover,
.ag-theme-fresh-class.ag-form .ag-row:hover,
.ag-theme-fresh-class.ag-form .ag-row.ag-row-hover {
  background-color: #e9f5fc;
}
.ag-theme-fresh.ag-form .ag-row:hover .ag-cell:not(.ag-cell-focus), .ag-theme-fresh.ag-form .ag-row.ag-row-hover .ag-cell:not(.ag-cell-focus),
.ag-theme-fresh-class.ag-form .ag-row:hover .ag-cell:not(.ag-cell-focus),
.ag-theme-fresh-class.ag-form .ag-row.ag-row-hover .ag-cell:not(.ag-cell-focus) {
  background-color: transparent;
}
.ag-theme-fresh.ag-form input,
.ag-theme-fresh-class.ag-form input {
  border: 0 none !important;
}
.ag-theme-fresh.ag-form .ag-cell-last-left-pinned,
.ag-theme-fresh-class.ag-form .ag-cell-last-left-pinned {
  font-weight: bold;
}
.ag-theme-fresh.ag-form .ag-cell-last-left-pinned input,
.ag-theme-fresh-class.ag-form .ag-cell-last-left-pinned input {
  font-weight: bold;
}
.ag-theme-fresh.ag-form .ag-floating-bottom-container .ag-row-even .ag-cell,
.ag-theme-fresh-class.ag-form .ag-floating-bottom-container .ag-row-even .ag-cell {
  font-weight: bold;
  border-bottom: 0 none;
}
.ag-theme-fresh.ag-form .ag-floating-bottom-container .ag-row-even .ag-cell input,
.ag-theme-fresh-class.ag-form .ag-floating-bottom-container .ag-row-even .ag-cell input {
  font-weight: bold;
}
.ag-theme-fresh.ag-form .ag-floating-bottom-container .ag-row-odd .ag-cell,
.ag-theme-fresh-class.ag-form .ag-floating-bottom-container .ag-row-odd .ag-cell {
  border-top: 0 none;
}
.ag-theme-fresh.ag-form .ag-pinned-left-floating-bottom .ag-row-odd .ag-cell,
.ag-theme-fresh.ag-form .ag-pinned-right-floating-bottom .ag-row-odd .ag-cell,
.ag-theme-fresh-class.ag-form .ag-pinned-left-floating-bottom .ag-row-odd .ag-cell,
.ag-theme-fresh-class.ag-form .ag-pinned-right-floating-bottom .ag-row-odd .ag-cell {
  border-top: 0 none;
  font-weight: normal;
}
.ag-theme-fresh.ag-form .ag-pinned-left-floating-bottom .ag-row-odd .ag-cell input,
.ag-theme-fresh.ag-form .ag-pinned-right-floating-bottom .ag-row-odd .ag-cell input,
.ag-theme-fresh-class.ag-form .ag-pinned-left-floating-bottom .ag-row-odd .ag-cell input,
.ag-theme-fresh-class.ag-form .ag-pinned-right-floating-bottom .ag-row-odd .ag-cell input {
  font-weight: normal;
}
.ag-theme-fresh.ag-form .ag-pinned-left-floating-bottom .ag-row-even .ag-cell,
.ag-theme-fresh.ag-form .ag-pinned-right-floating-bottom .ag-row-even .ag-cell,
.ag-theme-fresh-class.ag-form .ag-pinned-left-floating-bottom .ag-row-even .ag-cell,
.ag-theme-fresh-class.ag-form .ag-pinned-right-floating-bottom .ag-row-even .ag-cell {
  border-bottom: 0 none;
}
.ag-theme-fresh.ag-form .ag-cell,
.ag-theme-fresh-class.ag-form .ag-cell {
  padding: 0 1.5rem;
  line-height: 44px;
}
.ag-theme-fresh.ag-form .ag-cell select,
.ag-theme-fresh-class.ag-form .ag-cell select {
  background-color: #fff !important;
  border: 1px solid #d1d2d3;
}
.ag-theme-fresh.ag-form .ag-cell input,
.ag-theme-fresh-class.ag-form .ag-cell input {
  padding: 0 !important;
  margin: 0;
  background-color: transparent;
  min-height: 44px;
}
.ag-theme-fresh.ag-form .ag-cell.align-right input,
.ag-theme-fresh-class.ag-form .ag-cell.align-right input {
  text-align: right;
}
.ag-theme-fresh.wrap-text .ag-cell,
.ag-theme-fresh.wrap-text .ag-row,
.ag-theme-fresh-class.wrap-text .ag-cell,
.ag-theme-fresh-class.wrap-text .ag-row {
  white-space: normal;
}
.ag-theme-fresh.overflow-visible .ag-cell,
.ag-theme-fresh.overflow-visible .ag-row,
.ag-theme-fresh-class.overflow-visible .ag-cell,
.ag-theme-fresh-class.overflow-visible .ag-row {
  overflow: visible;
}
.ag-theme-fresh.first-bold .ag-cell:first-child,
.ag-theme-fresh-class.first-bold .ag-cell:first-child {
  font-weight: bold;
}
.ag-theme-fresh.first-bold .ag-cell:first-child a,
.ag-theme-fresh-class.first-bold .ag-cell:first-child a {
  font-weight: bold;
}
.ag-theme-fresh.ag-grid-head-normal .ag-header-cell,
.ag-theme-fresh-class.ag-grid-head-normal .ag-header-cell {
  font-weight: 400;
  padding: 1rem;
}
.ag-theme-fresh,
.ag-theme-fresh-class {
  font-size: 1.25rem;
  /* this is for the rowGroupPanel, that appears along the top of the grid */
  /* this is for the column drops that appear in the toolPanel */
}
.ag-theme-fresh .ag-header-icon.pt-download,
.ag-theme-fresh-class .ag-header-icon.pt-download {
  position: absolute;
  right: 0.56rem;
  top: 0.24rem;
  bottom: 0;
  margin: auto;
  opacity: 1;
}
.ag-theme-fresh .ag-icon-menu,
.ag-theme-fresh-class .ag-icon-menu {
  filter: none !important;
  -webkit-filter: none !important;
}
.ag-theme-fresh .ag-header-button,
.ag-theme-fresh-class .ag-header-button {
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  bottom: 0;
  margin: 0.25rem 0 0 0 !important;
  height: 20px;
}
.ag-theme-fresh .ag-header-button.button.icon-btn.nano,
.ag-theme-fresh-class .ag-header-button.button.icon-btn.nano {
  background-color: #e6e9eb !important;
  width: 2.8rem;
}
.ag-theme-fresh .row-actions > *,
.ag-theme-fresh-class .row-actions > * {
  opacity: 0.25;
}
.ag-theme-fresh .actions,
.ag-theme-fresh-class .actions {
  text-align: right;
}
.ag-theme-fresh .actions.to-middle,
.ag-theme-fresh-class .actions.to-middle {
  top: auto !important;
  margin: -0.72rem 0;
}
@media only screen and (min-width: 1441px) {
  .ag-theme-fresh .actions.to-middle,
  .ag-theme-fresh-class .actions.to-middle {
    margin: -0.64rem 0;
  }
}
@media only screen and (min-width: 1441px) and (min-width: 1681px) {
  .ag-theme-fresh .actions.to-middle,
  .ag-theme-fresh-class .actions.to-middle {
    margin: -0.56rem 0;
  }
}
.ag-theme-fresh .actions span,
.ag-theme-fresh-class .actions span {
  display: inline-block;
}
.ag-theme-fresh .actions span,
.ag-theme-fresh .actions a,
.ag-theme-fresh .actions button,
.ag-theme-fresh .actions form,
.ag-theme-fresh-class .actions span,
.ag-theme-fresh-class .actions a,
.ag-theme-fresh-class .actions button,
.ag-theme-fresh-class .actions form {
  display: inline-block;
  vertical-align: middle;
}
.ag-theme-fresh .actions > * + *,
.ag-theme-fresh-class .actions > * + * {
  margin-left: 0.8rem;
}
.ag-theme-fresh .actions .flexible-rolldown,
.ag-theme-fresh-class .actions .flexible-rolldown {
  position: relative;
  text-align: left;
}
.ag-theme-fresh .actions .flexible-rolldown ul a,
.ag-theme-fresh-class .actions .flexible-rolldown ul a {
  display: block;
}
.ag-theme-fresh .actions .flexible-rolldown ul a.disabled,
.ag-theme-fresh-class .actions .flexible-rolldown ul a.disabled {
  color: #bec0c4;
}
.ag-theme-fresh .ag-pinned-left-cols-viewport-wrapper:not(.ag-hidden) + .ag-body-viewport-wrapper .ag-body-viewport .ag-row,
.ag-theme-fresh-class .ag-pinned-left-cols-viewport-wrapper:not(.ag-hidden) + .ag-body-viewport-wrapper .ag-body-viewport .ag-row {
  border-left: none !important;
}
.ag-theme-fresh .ag-pinned-left-cols-container,
.ag-theme-fresh .ag-pinned-right-cols-container,
.ag-theme-fresh-class .ag-pinned-left-cols-container,
.ag-theme-fresh-class .ag-pinned-right-cols-container {
  background-color: #f7f9fa;
  box-shadow: none;
}
.ag-theme-fresh .ag-pinned-left-cols-container .ag-row-even,
.ag-theme-fresh .ag-pinned-left-cols-container .ag-row-odd,
.ag-theme-fresh .ag-pinned-left-cols-container .ag-row-focus,
.ag-theme-fresh .ag-pinned-left-cols-container .ag-cell-focus,
.ag-theme-fresh .ag-pinned-right-cols-container .ag-row-even,
.ag-theme-fresh .ag-pinned-right-cols-container .ag-row-odd,
.ag-theme-fresh .ag-pinned-right-cols-container .ag-row-focus,
.ag-theme-fresh .ag-pinned-right-cols-container .ag-cell-focus,
.ag-theme-fresh-class .ag-pinned-left-cols-container .ag-row-even,
.ag-theme-fresh-class .ag-pinned-left-cols-container .ag-row-odd,
.ag-theme-fresh-class .ag-pinned-left-cols-container .ag-row-focus,
.ag-theme-fresh-class .ag-pinned-left-cols-container .ag-cell-focus,
.ag-theme-fresh-class .ag-pinned-right-cols-container .ag-row-even,
.ag-theme-fresh-class .ag-pinned-right-cols-container .ag-row-odd,
.ag-theme-fresh-class .ag-pinned-right-cols-container .ag-row-focus,
.ag-theme-fresh-class .ag-pinned-right-cols-container .ag-cell-focus {
  background-color: inherit;
}
.ag-theme-fresh .ag-pinned-left-cols-container .ag-cell,
.ag-theme-fresh .ag-pinned-right-cols-container .ag-cell,
.ag-theme-fresh-class .ag-pinned-left-cols-container .ag-cell,
.ag-theme-fresh-class .ag-pinned-right-cols-container .ag-cell {
  border-top-color: transparent;
}
.ag-theme-fresh .ag-pinned-left-cols-container .ag-cell,
.ag-theme-fresh-class .ag-pinned-left-cols-container .ag-cell {
  border-right: 1px solid #d1d2d3 !important;
}
.ag-theme-fresh .ag-pinned-right-cols-container .ag-cell,
.ag-theme-fresh-class .ag-pinned-right-cols-container .ag-cell {
  border-left: 1px solid #d1d2d3 !important;
}
.ag-theme-fresh .ag-header-cell,
.ag-theme-fresh .ag-header-group-cell-label,
.ag-theme-fresh-class .ag-header-cell,
.ag-theme-fresh-class .ag-header-group-cell-label {
  font-weight: bold;
  color: #343C48;
  text-transform: uppercase;
  font-size: 1rem;
}
.ag-theme-fresh .ag-header-cell span,
.ag-theme-fresh .ag-header-cell label,
.ag-theme-fresh .ag-header-group-cell-label span,
.ag-theme-fresh .ag-header-group-cell-label label,
.ag-theme-fresh-class .ag-header-cell span,
.ag-theme-fresh-class .ag-header-cell label,
.ag-theme-fresh-class .ag-header-group-cell-label span,
.ag-theme-fresh-class .ag-header-group-cell-label label {
  color: #343C48;
}
.ag-theme-fresh .ag-header-cell .ag-icon,
.ag-theme-fresh .ag-header-group-cell-label .ag-icon,
.ag-theme-fresh-class .ag-header-cell .ag-icon,
.ag-theme-fresh-class .ag-header-group-cell-label .ag-icon {
  filter: invert(1);
  -webkit-filter: invert(1);
}
.ag-theme-fresh img,
.ag-theme-fresh-class img {
  vertical-align: middle;
  border: 0;
}
.ag-theme-fresh .ag-root,
.ag-theme-fresh-class .ag-root {
  height: auto !important;
  width: 100%;
  border-color: #d1d2d3;
  border-width: 1px;
  border-style: solid;
  background-color: #fff;
}
.ag-theme-fresh.border-last-row .ag-row.ag-row-last,
.ag-theme-fresh-class.border-last-row .ag-row.ag-row-last {
  border-bottom: 1px solid #d1d2d3 !important;
}
.ag-theme-fresh .ag-body-viewport-wrapper,
.ag-theme-fresh-class .ag-body-viewport-wrapper {
  height: auto;
  width: 100%;
}
.ag-theme-fresh:not(.ag-documents) .ag-root .ag-body,
.ag-theme-fresh-class:not(.ag-documents) .ag-root .ag-body {
  height: auto;
}
.ag-theme-fresh:not(.ag-documents) .ag-cell-not-inline-editing,
.ag-theme-fresh-class:not(.ag-documents) .ag-cell-not-inline-editing {
  padding: 10px;
}
.ag-theme-fresh:not(.ag-documents) .row-actions,
.ag-theme-fresh-class:not(.ag-documents) .row-actions {
  top: 0.8rem;
}
.ag-theme-fresh:not(.ag-documents) .row-actions > span,
.ag-theme-fresh-class:not(.ag-documents) .row-actions > span {
  margin-left: 3px;
}
.ag-theme-fresh:not(.ag-documents):not(.no-hover) .ag-row:hover .ag-cell,
.ag-theme-fresh-class:not(.ag-documents):not(.no-hover) .ag-row:hover .ag-cell {
  background-color: #e9f5fc;
}
.ag-theme-fresh:not(.ag-documents):not(.no-hover) .ag-row:hover .ag-cell .row-actions *,
.ag-theme-fresh-class:not(.ag-documents):not(.no-hover) .ag-row:hover .ag-cell .row-actions * {
  opacity: 1;
}
.ag-theme-fresh .ag-row[style*="height: 44px"] .row-actions,
.ag-theme-fresh-class .ag-row[style*="height: 44px"] .row-actions {
  top: 0.16rem;
}
.ag-theme-fresh .ag-cell-range-selected-1:not(.ag-cell-focus),
.ag-theme-fresh-class .ag-cell-range-selected-1:not(.ag-cell-focus) {
  background-color: rgba(120, 120, 120, 0.4);
}
.ag-theme-fresh .ag-cell-range-selected-2:not(.ag-cell-focus),
.ag-theme-fresh-class .ag-cell-range-selected-2:not(.ag-cell-focus) {
  background-color: rgba(80, 80, 80, 0.4);
}
.ag-theme-fresh .ag-cell-range-selected-3:not(.ag-cell-focus),
.ag-theme-fresh-class .ag-cell-range-selected-3:not(.ag-cell-focus) {
  background-color: rgba(40, 40, 40, 0.4);
}
.ag-theme-fresh .ag-cell-range-selected-4:not(.ag-cell-focus),
.ag-theme-fresh-class .ag-cell-range-selected-4:not(.ag-cell-focus) {
  background-color: rgba(0, 0, 0, 0.4);
}
.ag-theme-fresh .ag-column-moving .ag-cell,
.ag-theme-fresh .ag-column-moving .ag-header-cell,
.ag-theme-fresh .ag-column-moving .ag-header-group-cell,
.ag-theme-fresh-class .ag-column-moving .ag-cell,
.ag-theme-fresh-class .ag-column-moving .ag-header-cell,
.ag-theme-fresh-class .ag-column-moving .ag-header-group-cell {
  -webkit-transition: left 0.2s;
  -moz-transition: left 0.2s;
  -o-transition: left 0.2s;
  -ms-transition: left 0.2s;
  transition: left 0.2s;
}
.ag-theme-fresh .ag-row,
.ag-theme-fresh-class .ag-row {
  border-color: #d1d2d3;
  border-width: 0 0 1px;
  border-style: solid;
}
.ag-theme-fresh .ag-row.ag-row-last,
.ag-theme-fresh-class .ag-row.ag-row-last {
  border-bottom: 0 none !important;
}
.ag-theme-fresh .ag-header-row,
.ag-theme-fresh-class .ag-header-row {
  border-color: #d1d2d3;
  border-width: 0 0 1px;
  border-style: solid;
}
.ag-theme-fresh .ag-header-row + .ag-header-row,
.ag-theme-fresh-class .ag-header-row + .ag-header-row {
  border-top-color: transparent;
}
.ag-theme-fresh .ag-header-row[style*="height: 0px"],
.ag-theme-fresh-class .ag-header-row[style*="height: 0px"] {
  border-width: 0;
}
.ag-theme-fresh .ag-header-cell:last-of-type .ag-header-cell-resize:after,
.ag-theme-fresh .ag-header-group-cell:last-of-type .ag-header-cell-resize:after,
.ag-theme-fresh-class .ag-header-cell:last-of-type .ag-header-cell-resize:after,
.ag-theme-fresh-class .ag-header-group-cell:last-of-type .ag-header-cell-resize:after {
  opacity: 0;
}
.ag-theme-fresh .ag-pinned-left-header .ag-header-row,
.ag-theme-fresh-class .ag-pinned-left-header .ag-header-row {
  border-right: 1px solid transparent !important;
}
.ag-theme-fresh .ag-pinned-left-header .ag-header-cell:last-of-type .ag-header-cell-resize:after,
.ag-theme-fresh .ag-pinned-left-header .ag-header-group-cell:last-of-type .ag-header-cell-resize:after,
.ag-theme-fresh-class .ag-pinned-left-header .ag-header-cell:last-of-type .ag-header-cell-resize:after,
.ag-theme-fresh-class .ag-pinned-left-header .ag-header-group-cell:last-of-type .ag-header-cell-resize:after {
  opacity: 1;
}
.ag-theme-fresh .ag-pinned-right-header .ag-header-row,
.ag-theme-fresh-class .ag-pinned-right-header .ag-header-row {
  border-left: 1px solid transparent !important;
}
.ag-theme-fresh .ag-pinned-left-header:not(.ag-hidden) + .ag-header-viewport .ag-header-row,
.ag-theme-fresh-class .ag-pinned-left-header:not(.ag-hidden) + .ag-header-viewport .ag-header-row {
  border-left: none !important;
}
.ag-theme-fresh .ag-body-container.ag-layout-auto-height,
.ag-theme-fresh-class .ag-body-container.ag-layout-auto-height {
  min-height: 4.4rem !important;
}
.ag-theme-fresh .ag-cell,
.ag-theme-fresh-class .ag-cell {
  font-size: 1.25rem;
  font-weight: 400;
  border-top: none;
  color: #343C48;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
}
.ag-theme-fresh .ag-cell .markdown,
.ag-theme-fresh-class .ag-cell .markdown {
  white-space: normal;
  word-wrap: break-word;
}
.ag-theme-fresh .ag-cell .markdown p,
.ag-theme-fresh .ag-cell .markdown ul,
.ag-theme-fresh .ag-cell .markdown ol,
.ag-theme-fresh .ag-cell .markdown li,
.ag-theme-fresh-class .ag-cell .markdown p,
.ag-theme-fresh-class .ag-cell .markdown ul,
.ag-theme-fresh-class .ag-cell .markdown ol,
.ag-theme-fresh-class .ag-cell .markdown li {
  white-space: normal;
  word-wrap: break-word;
}
.ag-theme-fresh .ag-cell > a:not(.pti):not(.button),
.ag-theme-fresh .ag-cell > span > a:not(.pti):not(.button),
.ag-theme-fresh-class .ag-cell > a:not(.pti):not(.button),
.ag-theme-fresh-class .ag-cell > span > a:not(.pti):not(.button) {
  color: #343C48;
  font-weight: bold;
}
.ag-theme-fresh .ag-cell a.data-item,
.ag-theme-fresh-class .ag-cell a.data-item {
  color: inherit;
  display: block;
}
.ag-theme-fresh .ag-cell .issue-severity,
.ag-theme-fresh .ag-cell .rfc-priority,
.ag-theme-fresh-class .ag-cell .issue-severity,
.ag-theme-fresh-class .ag-cell .rfc-priority {
  white-space: nowrap !important;
}
.ag-theme-fresh .ag-cell.overflow-visible,
.ag-theme-fresh-class .ag-cell.overflow-visible {
  overflow: visible;
}
.ag-theme-fresh .ag-cell > div:not([class]),
.ag-theme-fresh-class .ag-cell > div:not([class]) {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.ag-theme-fresh .ag-cell > span > span > i.pti:before,
.ag-theme-fresh-class .ag-cell > span > span > i.pti:before {
  color: #585f69;
  font-size: 0.8em;
}
.ag-theme-fresh .ag-cell > span > span > i.pti,
.ag-theme-fresh-class .ag-cell > span > span > i.pti {
  min-width: 1.3em;
  margin: 0 0.4rem 0 0;
  text-align: center;
}
.ag-theme-fresh .ag-cell .data-list .status-label,
.ag-theme-fresh-class .ag-cell .data-list .status-label {
  margin-right: 0.5rem;
}
.ag-theme-fresh .ag-cell .data-list .data-item .data-label + .data-value,
.ag-theme-fresh-class .ag-cell .data-list .data-item .data-label + .data-value {
  margin-left: 0.24rem;
}
.ag-theme-fresh .ag-cell .data-item,
.ag-theme-fresh-class .ag-cell .data-item {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.ag-theme-fresh .ag-cell .data-item.no-space,
.ag-theme-fresh-class .ag-cell .data-item.no-space {
  margin-left: 0.8rem;
}
.ag-theme-fresh .ag-cell .data-item.no-space:before,
.ag-theme-fresh-class .ag-cell .data-item.no-space:before {
  display: none;
}
.ag-theme-fresh .ag-cell .data-item > *,
.ag-theme-fresh .ag-cell .data-item > *:before,
.ag-theme-fresh-class .ag-cell .data-item > *,
.ag-theme-fresh-class .ag-cell .data-item > *:before {
  overflow: auto;
  text-overflow: initial;
  display: inline;
  vertical-align: middle;
}
.ag-theme-fresh .ag-cell .data-item .data-value,
.ag-theme-fresh .ag-cell .data-item .data-count,
.ag-theme-fresh-class .ag-cell .data-item .data-value,
.ag-theme-fresh-class .ag-cell .data-item .data-count {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: inherit;
}
.ag-theme-fresh .ag-cell .data-item .data-value a,
.ag-theme-fresh .ag-cell .data-item .data-count a,
.ag-theme-fresh-class .ag-cell .data-item .data-value a,
.ag-theme-fresh-class .ag-cell .data-item .data-count a {
  color: inherit;
}
.ag-theme-fresh .ag-cell .data-item .avatar,
.ag-theme-fresh-class .ag-cell .data-item .avatar {
  cursor: pointer;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown {
  overflow: visible;
  padding: 0;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown.gray,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown.gray {
  background-color: #f0f1f2;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown.gray .issues,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown.gray .issues {
  background-color: #fff;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown.gray .data-items,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown.gray .data-items {
  padding: 0.56rem 0.8rem;
  font-size: 1.15rem;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown .issues,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown .issues {
  display: block;
  max-height: 25.6rem;
  overflow-y: auto;
  overflow-x: hidden;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown .issues .issue,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown .issues .issue {
  display: block;
  color: inherit;
  padding: 0 0.8rem;
  height: 26px;
  line-height: 26px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 1.15rem;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown .issues .issue + .issue,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown .issues .issue + .issue {
  border-top: 1px solid #e6e9eb;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown .issues .issue .pin.small,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown .issues .issue .pin.small {
  width: 10px;
  height: 10px;
  margin-right: 0.16rem;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown .issues .issue:hover,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown .issues .issue:hover {
  background-color: #e9f5fc;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown.fixed,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown.fixed {
  position: fixed !important;
  top: auto !important;
  left: auto !important;
  max-width: 350px;
  width: 350px;
  display: none;
  z-index: 10000000;
  transform: translate(calc(-50% + 12px), calc(-100% - 30px));
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown.fixed.open,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown.fixed.open {
  display: block;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown:before, .ag-theme-fresh .ag-cell .data-item .f-dropdown:after,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown:before,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown:after {
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(180deg);
  top: auto;
  border-width: 16px;
  pointer-events: none;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown:after,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown:after {
  bottom: -32px;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown:before,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown:before {
  bottom: -31px;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown .f-dropdown-content,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown .f-dropdown-content {
  max-height: 25.6rem;
  overflow: auto;
  padding: 1.6rem;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown.dark-content.fixed,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown.dark-content.fixed {
  transform: translate(calc(-50% + 12px), calc(-100% - 40px));
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown.dark-content:after,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown.dark-content:after {
  display: none;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown.dark-content .data-item + .data-item:before,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown.dark-content .data-item + .data-item:before {
  color: #fff;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown .avatar,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown .avatar {
  width: 55px;
  height: 55px;
  float: left;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown .avatar .initials,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown .avatar .initials {
  font-size: 3.2rem;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown .avatar + .user-details,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown .avatar + .user-details {
  margin-left: 70px;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown p,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown p {
  margin: 1.6rem 0 0;
  font-size: 1.15rem;
  color: #9d9fa4;
  white-space: normal;
  word-wrap: break-word;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown .user-details,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown .user-details {
  line-height: normal;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown .user-details .name,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown .user-details .name {
  font-size: 1.6rem;
  margin-bottom: 0.16rem;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown .user-details .data-item,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown .user-details .data-item {
  font-size: 1.15rem;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown .user-details .data-count,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown .user-details .data-count {
  cursor: pointer;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown .user-details .data-count:hover,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown .user-details .data-count:hover {
  text-decoration: underline;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown .user-details .user-status.good,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown .user-details .user-status.good {
  color: #00a57a;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown .user-details .user-status.fair,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown .user-details .user-status.fair {
  color: #ef7c22;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown .user-details .user-status.poor,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown .user-details .user-status.poor {
  color: #EF452F;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown p,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown p {
  clear: both;
}
.ag-theme-fresh .ag-cell .data-item .f-dropdown.dark,
.ag-theme-fresh-class .ag-cell .data-item .f-dropdown.dark {
  color: #fff;
}
.ag-theme-fresh .ag-cell.mark,
.ag-theme-fresh-class .ag-cell.mark {
  background-color: #f2f5f6;
  border-right: 1px solid #d1d2d3;
}
.ag-theme-fresh .ag-cell.bold,
.ag-theme-fresh-class .ag-cell.bold {
  font-weight: bold;
}
.ag-theme-fresh .ag-cell > ul:only-child,
.ag-theme-fresh-class .ag-cell > ul:only-child {
  margin: 0;
}
.ag-theme-fresh .ag-cell .level-down,
.ag-theme-fresh-class .ag-cell .level-down {
  margin-right: 0.8rem;
  margin-top: 0.24rem;
}
.ag-theme-fresh .ag-cell .avatar + .user-name,
.ag-theme-fresh-class .ag-cell .avatar + .user-name {
  font-weight: normal;
}
.ag-theme-fresh .ag-cell .avatar + .company-name,
.ag-theme-fresh .ag-cell .company-roles,
.ag-theme-fresh-class .ag-cell .avatar + .company-name,
.ag-theme-fresh-class .ag-cell .company-roles {
  font-weight: bold;
}
.ag-theme-fresh .ag-cell span.answer.green,
.ag-theme-fresh-class .ag-cell span.answer.green {
  color: #00a57a;
}
.ag-theme-fresh .ag-cell span.answer.red,
.ag-theme-fresh-class .ag-cell span.answer.red {
  color: #EF452F;
}
.ag-theme-fresh .ag-rtl .ag-cell-no-focus,
.ag-theme-fresh-class .ag-rtl .ag-cell-no-focus {
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
}
.ag-theme-fresh .ag-rtl .ag-cell-no-focus:last-child,
.ag-theme-fresh-class .ag-rtl .ag-cell-no-focus:last-child {
  border-right: 1px solid transparent;
}
.ag-theme-fresh .ag-rtl .ag-cell-first-right-pinned,
.ag-theme-fresh-class .ag-rtl .ag-cell-first-right-pinned {
  border-left: 1px solid #d1d2d3;
}
.ag-theme-fresh .ag-ltr .ag-cell-first-right-pinned,
.ag-theme-fresh-class .ag-ltr .ag-cell-first-right-pinned {
  border-left: 1px solid #d1d2d3;
}
.ag-theme-fresh .ag-rtl .ag-cell-last-left-pinned,
.ag-theme-fresh .ag-ltr .ag-cell-last-left-pinned,
.ag-theme-fresh-class .ag-rtl .ag-cell-last-left-pinned,
.ag-theme-fresh-class .ag-ltr .ag-cell-last-left-pinned {
  font-weight: bold;
}
.ag-theme-fresh .ag-cell-highlight,
.ag-theme-fresh-class .ag-cell-highlight {
  border: 1px solid #006400;
}
.ag-theme-fresh .ag-cell-highlight-animation,
.ag-theme-fresh-class .ag-cell-highlight-animation {
  -webkit-transition: border 1s;
  -moz-transition: border 1s;
  -o-transition: border 1s;
  -ms-transition: border 1s;
  transition: border 1s;
}
.ag-theme-fresh .ag-value-change-delta,
.ag-theme-fresh-class .ag-value-change-delta {
  padding-right: 2px;
}
.ag-theme-fresh .ag-value-change-delta-up,
.ag-theme-fresh-class .ag-value-change-delta-up {
  color: #006400;
}
.ag-theme-fresh .ag-value-change-delta-down,
.ag-theme-fresh-class .ag-value-change-delta-down {
  color: #8b0000;
}
.ag-theme-fresh .ag-value-change-value,
.ag-theme-fresh-class .ag-value-change-value {
  background-color: transparent;
  border-radius: 1px;
  padding-left: 1px;
  padding-right: 1px;
  -webkit-transition: background-color 1s;
  -moz-transition: background-color 1s;
  -o-transition: background-color 1s;
  -ms-transition: background-color 1s;
  transition: background-color 1s;
}
.ag-theme-fresh .ag-value-change-value-highlight,
.ag-theme-fresh-class .ag-value-change-value-highlight {
  background-color: #cec;
  -webkit-transition: background-color 0.1s;
  -moz-transition: background-color 0.1s;
  -o-transition: background-color 0.1s;
  -ms-transition: background-color 0.1s;
  transition: background-color 0.1s;
}
.ag-theme-fresh .ag-rich-select,
.ag-theme-fresh-class .ag-rich-select {
  font-size: 14px;
  border: 1px solid #d1d2d3;
  background-color: #fff;
}
.ag-theme-fresh .ag-rich-select-value,
.ag-theme-fresh-class .ag-rich-select-value {
  padding: 2px;
}
.ag-theme-fresh .ag-rich-select-list,
.ag-theme-fresh-class .ag-rich-select-list {
  border-top: 1px solid #d1d2d3;
}
.ag-theme-fresh .ag-rich-select-row,
.ag-theme-fresh-class .ag-rich-select-row {
  padding: 2px;
}
.ag-theme-fresh .ag-rich-select-row-selected,
.ag-theme-fresh-class .ag-rich-select-row-selected {
  background-color: #cdd2d6;
}
.ag-theme-fresh .ag-header,
.ag-theme-fresh-class .ag-header {
  color: #000;
  font-weight: normal;
}
.ag-theme-fresh .ag-header-icon,
.ag-theme-fresh-class .ag-header-icon {
  color: #000;
  stroke: none;
  fill: #000;
}
.ag-theme-fresh .ag-no-scrolls .ag-header-container,
.ag-theme-fresh-class .ag-no-scrolls .ag-header-container {
  background: -webkit-linear-gradient(#fff, #d3d3d3);
  background: -moz-linear-gradient(#fff, #d3d3d3);
  background: -o-linear-gradient(#fff, #d3d3d3);
  background: -ms-linear-gradient(#fff, #d3d3d3);
  background: linear-gradient(#fff, #d3d3d3);
}
.ag-theme-fresh .ag-ltr .ag-header-cell,
.ag-theme-fresh-class .ag-ltr .ag-header-cell {
  border-right: 1px solid transparent;
}
.ag-theme-fresh .ag-rtl .ag-header-cell,
.ag-theme-fresh-class .ag-rtl .ag-header-cell {
  border-left: 1px solid transparent;
}
.ag-theme-fresh .ag-header-cell-moving .ag-header-cell-label,
.ag-theme-fresh-class .ag-header-cell-moving .ag-header-cell-label {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
.ag-theme-fresh .ag-header-cell-moving,
.ag-theme-fresh-class .ag-header-cell-moving {
  background-color: #cdd2d6;
}
.ag-theme-fresh .ag-ltr .ag-header-group-cell,
.ag-theme-fresh-class .ag-ltr .ag-header-group-cell {
  border-right: 1px solid transparent;
}
.ag-theme-fresh .ag-rtl .ag-header-group-cell,
.ag-theme-fresh-class .ag-rtl .ag-header-group-cell {
  border-left: 1px solid transparent;
}
.ag-theme-fresh .ag-header-group-cell-with-group,
.ag-theme-fresh-class .ag-header-group-cell-with-group {
  border-bottom: 1px solid transparent;
}
.ag-theme-fresh .ag-header-cell-label,
.ag-theme-fresh .ag-ltr .ag-header-group-cell-label,
.ag-theme-fresh-class .ag-header-cell-label,
.ag-theme-fresh-class .ag-ltr .ag-header-group-cell-label {
  padding: 13px 10px;
}
.ag-theme-fresh .ag-header-cell,
.ag-theme-fresh-class .ag-header-cell {
  text-align: left;
}
.ag-theme-fresh .ag-header-cell.ag-header-cell-filtered .ag-header-cell-menu-button,
.ag-theme-fresh-class .ag-header-cell.ag-header-cell-filtered .ag-header-cell-menu-button {
  right: 0.56rem;
}
.ag-theme-fresh .ag-rtl .ag-header-group-cell-label,
.ag-theme-fresh-class .ag-rtl .ag-header-group-cell-label {
  padding-right: 10px;
}
.ag-theme-fresh .ag-rtl .ag-header-group-text,
.ag-theme-fresh-class .ag-rtl .ag-header-group-text {
  margin-left: 2px;
}
.ag-theme-fresh .ag-ltr .ag-header-group-text,
.ag-theme-fresh-class .ag-ltr .ag-header-group-text {
  margin-right: 2px;
}
.ag-theme-fresh .ag-header-cell-menu-button,
.ag-theme-fresh-class .ag-header-cell-menu-button {
  padding: 2px;
  margin-top: 1.2rem;
  margin-left: 1px;
  margin-right: 0.8rem;
  border: 1px solid transparent;
  border-radius: 3px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  line-height: 0px;
  position: absolute;
  right: 0.32rem;
}
.ag-theme-fresh .ag-row-even,
.ag-theme-fresh-class .ag-row-even {
  background-color: #fff;
}
.ag-theme-fresh .ag-row-odd,
.ag-theme-fresh-class .ag-row-odd {
  background-color: #f7f9fa;
}
.ag-theme-fresh .ag-row-selected,
.ag-theme-fresh-class .ag-row-selected {
  background-color: #e9f5fc;
}
.ag-theme-fresh .ag-floating-top .ag-row,
.ag-theme-fresh .ag-floating-bottom .ag-row,
.ag-theme-fresh-class .ag-floating-top .ag-row,
.ag-theme-fresh-class .ag-floating-bottom .ag-row {
  background-color: #e9f5fc;
}
.ag-theme-fresh .ag-floating-top .ag-row .ag-cell-no-focus,
.ag-theme-fresh .ag-floating-bottom .ag-row .ag-cell-no-focus,
.ag-theme-fresh-class .ag-floating-top .ag-row .ag-cell-no-focus,
.ag-theme-fresh-class .ag-floating-bottom .ag-row .ag-cell-no-focus {
  border-right-color: #d1d2d3;
  font-weight: bold;
}
.ag-theme-fresh .ag-overlay-loading-wrapper,
.ag-theme-fresh-class .ag-overlay-loading-wrapper {
  background-color: rgba(255, 255, 255, 0.5);
}
.ag-theme-fresh .ag-overlay-loading-center,
.ag-theme-fresh-class .ag-overlay-loading-center {
  background-color: #fff;
  border: 1px solid #d1d2d3;
  border-radius: 10px;
  padding: 10px;
  color: #000;
}
.ag-theme-fresh .ag-overlay-no-rows-center,
.ag-theme-fresh-class .ag-overlay-no-rows-center {
  background-color: #fff;
  border: 1px solid #d1d2d3;
  border-radius: 10px;
  padding: 10px;
  position: relative;
  z-index: 10;
}
.ag-theme-fresh .ag-group-cell-entire-row,
.ag-theme-fresh .ag-footer-cell-entire-row,
.ag-theme-fresh-class .ag-group-cell-entire-row,
.ag-theme-fresh-class .ag-footer-cell-entire-row {
  background-color: #f6f6f6;
  padding: 2px;
}
.ag-theme-fresh small.error,
.ag-theme-fresh-class small.error {
  padding: 0.6rem 0.9rem 0.42rem;
  line-height: normal;
}
.ag-theme-fresh .ag-group-expanded:after,
.ag-theme-fresh-class .ag-group-expanded:after {
  content: "\f146";
}
.ag-theme-fresh .ag-group-contracted:after,
.ag-theme-fresh-class .ag-group-contracted:after {
  content: "\f0fe";
}
.ag-theme-fresh .ag-group-contracted span.ag-icon,
.ag-theme-fresh .ag-group-expanded span.ag-icon,
.ag-theme-fresh-class .ag-group-contracted span.ag-icon,
.ag-theme-fresh-class .ag-group-expanded span.ag-icon {
  display: none;
}
.ag-theme-fresh .ag-full-width-row,
.ag-theme-fresh-class .ag-full-width-row {
  border-top: 1px solid #f2f5f6;
}
.ag-theme-fresh .ag-full-width-row .row-padding,
.ag-theme-fresh-class .ag-full-width-row .row-padding {
  padding: 15px;
}
.ag-theme-fresh .ag-full-width-row textarea,
.ag-theme-fresh-class .ag-full-width-row textarea {
  resize: none;
}
.ag-theme-fresh .ag-full-width-row .markdown-textarea textarea,
.ag-theme-fresh-class .ag-full-width-row .markdown-textarea textarea {
  height: 4.8rem !important;
  min-height: 4.8rem !important;
  margin: 0;
}
.ag-theme-fresh .ag-group-expanded:after,
.ag-theme-fresh .ag-group-contracted:after,
.ag-theme-fresh-class .ag-group-expanded:after,
.ag-theme-fresh-class .ag-group-contracted:after {
  font-family: "FontAwesome";
  color: #343C48;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 1.28rem;
}
.ag-theme-fresh .ag-group-expanded img,
.ag-theme-fresh .ag-group-contracted img,
.ag-theme-fresh-class .ag-group-expanded img,
.ag-theme-fresh-class .ag-group-contracted img {
  display: none;
}
.ag-theme-fresh:not(.not-hide-value) .ag-group-expanded ~ .ag-group-value,
.ag-theme-fresh:not(.not-hide-value) .ag-group-contracted ~ .ag-group-value,
.ag-theme-fresh-class:not(.not-hide-value) .ag-group-expanded ~ .ag-group-value,
.ag-theme-fresh-class:not(.not-hide-value) .ag-group-contracted ~ .ag-group-value {
  display: none;
}
.ag-theme-fresh.not-hide-value .ag-group-value a,
.ag-theme-fresh-class.not-hide-value .ag-group-value a {
  color: inherit;
}
.ag-theme-fresh.not-hide-value .ag-group-value > span > *,
.ag-theme-fresh-class.not-hide-value .ag-group-value > span > * {
  vertical-align: top;
}
.ag-theme-fresh.not-hide-value .ag-group-value .company-name + .button,
.ag-theme-fresh.not-hide-value .ag-group-value .user-name + .button,
.ag-theme-fresh-class.not-hide-value .ag-group-value .company-name + .button,
.ag-theme-fresh-class.not-hide-value .ag-group-value .user-name + .button {
  margin-top: -0.32rem;
}
.ag-theme-fresh.not-hide-value .avatar,
.ag-theme-fresh-class.not-hide-value .avatar {
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  line-height: 2.3rem;
  margin-right: 0.8rem;
  margin-top: -0.32rem;
}
.ag-theme-fresh.not-hide-value .avatar .initials,
.ag-theme-fresh-class.not-hide-value .avatar .initials {
  font-size: 0.9rem;
}
.ag-theme-fresh.not-hide-value .icon-btn,
.ag-theme-fresh-class.not-hide-value .icon-btn {
  margin-top: -0.32rem;
}
.ag-theme-fresh .ag-ltr .ag-group-expanded,
.ag-theme-fresh-class .ag-ltr .ag-group-expanded {
  padding-right: 4px;
}
.ag-theme-fresh .ag-rtl .ag-group-expanded,
.ag-theme-fresh-class .ag-rtl .ag-group-expanded {
  padding-left: 4px;
}
.ag-theme-fresh .ag-ltr .ag-group-contracted,
.ag-theme-fresh-class .ag-ltr .ag-group-contracted {
  padding-right: 4px;
}
.ag-theme-fresh .ag-rtl .ag-group-contracted,
.ag-theme-fresh-class .ag-rtl .ag-group-contracted {
  padding-left: 4px;
}
.ag-theme-fresh .ag-ltr .ag-group-value,
.ag-theme-fresh-class .ag-ltr .ag-group-value {
  padding-right: 2px;
}
.ag-theme-fresh .ag-rtl .ag-group-value,
.ag-theme-fresh-class .ag-rtl .ag-group-value {
  padding-left: 2px;
}
.ag-theme-fresh .ag-ltr .ag-group-checkbox,
.ag-theme-fresh-class .ag-ltr .ag-group-checkbox {
  padding-right: 2px;
}
.ag-theme-fresh .ag-rtl .ag-group-checkbox,
.ag-theme-fresh-class .ag-rtl .ag-group-checkbox {
  padding-left: 2px;
}
.ag-theme-fresh .ag-group-child-count,
.ag-theme-fresh-class .ag-group-child-count {
  display: inline-block;
  vertical-align: middle;
}
.ag-theme-fresh .ag-footer-cell,
.ag-theme-fresh-class .ag-footer-cell {
  font-style: italic;
}
.ag-theme-fresh .ag-menu,
.ag-theme-fresh-class .ag-menu {
  border: 1px solid #d1d2d3;
  background-color: #f6f6f6;
  cursor: default;
  font-size: 14px;
}
.ag-theme-fresh .ag-menu .ag-tab-header,
.ag-theme-fresh-class .ag-menu .ag-tab-header {
  background-color: #e6e6e6;
}
.ag-theme-fresh .ag-menu .ag-tab,
.ag-theme-fresh-class .ag-menu .ag-tab {
  padding: 6px 8px 6px 8px;
  margin: 2px 2px 0px 2px;
  display: inline-block;
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
  border-top: 1px solid transparent;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
}
.ag-theme-fresh .ag-menu .ag-tab-selected,
.ag-theme-fresh-class .ag-menu .ag-tab-selected {
  background-color: #f6f6f6;
  border-right: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
  border-top: 1px solid #d3d3d3;
}
.ag-theme-fresh .ag-menu-separator,
.ag-theme-fresh-class .ag-menu-separator {
  border-top: 1px solid #d3d3d3;
}
.ag-theme-fresh .ag-menu-option-active,
.ag-theme-fresh-class .ag-menu-option-active {
  background-color: #bde2e5;
}
.ag-theme-fresh .ag-menu-option-icon,
.ag-theme-fresh .ag-menu-option-text,
.ag-theme-fresh-class .ag-menu-option-icon,
.ag-theme-fresh-class .ag-menu-option-text {
  padding: 2px 4px 2px 4px;
  vertical-align: middle;
}
.ag-theme-fresh .ag-menu-option-shortcut,
.ag-theme-fresh-class .ag-menu-option-shortcut {
  padding: 2px 2px 2px 2px;
  vertical-align: middle;
}
.ag-theme-fresh .ag-menu-option-popup-pointer,
.ag-theme-fresh-class .ag-menu-option-popup-pointer {
  padding: 2px 4px 2px 4px;
  vertical-align: middle;
}
.ag-theme-fresh .ag-menu-option-disabled,
.ag-theme-fresh-class .ag-menu-option-disabled {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
.ag-theme-fresh .ag-menu-column-select-wrapper,
.ag-theme-fresh-class .ag-menu-column-select-wrapper {
  margin: 2px;
}
.ag-theme-fresh .ag-filter > div > div,
.ag-theme-fresh-class .ag-filter > div > div {
  padding: 0 0.8rem !important;
  width: auto !important;
}
.ag-theme-fresh .ag-filter > div > div .ag-filter-checkbox,
.ag-theme-fresh-class .ag-filter > div > div .ag-filter-checkbox {
  height: 1.6rem !important;
}
.ag-theme-fresh .ag-filter > div > div .ag-filter-header-container,
.ag-theme-fresh-class .ag-filter > div > div .ag-filter-header-container {
  height: auto !important;
}
.ag-theme-fresh .ag-filter > div > div .ag-filter-header-container + .ag-filter-header-container,
.ag-theme-fresh-class .ag-filter > div > div .ag-filter-header-container + .ag-filter-header-container {
  margin-top: 0.16rem;
}
.ag-theme-fresh .ag-filter > div > div input[type=text],
.ag-theme-fresh-class .ag-filter > div > div input[type=text] {
  height: 2.8rem !important;
  line-height: 2.8rem !important;
  margin: 0.4rem !important;
  width: calc(100% - 0.8rem) !important;
}
.ag-theme-fresh .ag-filter > div > div input[type=text]:hover,
.ag-theme-fresh-class .ag-filter > div > div input[type=text]:hover {
  background-color: #fff;
}
.ag-theme-fresh .ag-filter-checkbox,
.ag-theme-fresh-class .ag-filter-checkbox {
  position: relative;
  top: 2px;
  left: 2px;
}
.ag-theme-fresh .ag-filter-header-container,
.ag-theme-fresh-class .ag-filter-header-container {
  border-bottom: 1px solid transparent;
}
.ag-theme-fresh .ag-filter-apply-panel,
.ag-theme-fresh-class .ag-filter-apply-panel {
  border-top: 1px solid transparent;
  padding: 2px;
}
.ag-theme-fresh .ag-filter-value,
.ag-theme-fresh-class .ag-filter-value {
  margin-left: 4px;
}
.ag-theme-fresh .ag-ltr .ag-selection-checkbox,
.ag-theme-fresh-class .ag-ltr .ag-selection-checkbox {
  padding-right: 4px;
}
.ag-theme-fresh .ag-rtl .ag-selection-checkbox,
.ag-theme-fresh-class .ag-rtl .ag-selection-checkbox {
  padding-left: 4px;
}
.ag-theme-fresh .ag-paging-panel,
.ag-theme-fresh-class .ag-paging-panel {
  padding: 4px;
}
.ag-theme-fresh .ag-paging-button,
.ag-theme-fresh-class .ag-paging-button {
  margin-left: 4px;
  margin-right: 4px;
}
.ag-theme-fresh .ag-paging-row-summary-panel,
.ag-theme-fresh-class .ag-paging-row-summary-panel {
  display: inline-block;
  width: 300px;
}
.ag-theme-fresh .ag-tool-panel,
.ag-theme-fresh-class .ag-tool-panel {
  background-color: #f6f6f6;
  border-bottom: 1px solid #d1d2d3;
  border-top: 1px solid #d1d2d3;
  color: #222;
}
.ag-theme-fresh .ltr .ag-tool-panel,
.ag-theme-fresh-class .ltr .ag-tool-panel {
  border-right: 1px solid #d1d2d3;
}
.ag-theme-fresh .rtl .ag-tool-panel,
.ag-theme-fresh-class .rtl .ag-tool-panel {
  border-left: 1px solid #d1d2d3;
}
.ag-theme-fresh .ag-status-bar,
.ag-theme-fresh-class .ag-status-bar {
  color: #222;
  background-color: #f6f6f6;
  font-size: 14px;
  height: 22px;
  border-bottom: 1px solid #d1d2d3;
  border-left: 1px solid #d1d2d3;
  border-right: 1px solid #d1d2d3;
  padding: 2px;
  display: none;
}
.ag-theme-fresh .ag-status-bar-aggregations,
.ag-theme-fresh-class .ag-status-bar-aggregations {
  float: right;
}
.ag-theme-fresh .ag-status-bar-item,
.ag-theme-fresh-class .ag-status-bar-item {
  padding-left: 10px;
}
.ag-theme-fresh .ag-column-drop-cell,
.ag-theme-fresh-class .ag-column-drop-cell {
  background: -webkit-linear-gradient(#fff, #d3d3d3);
  background: -moz-linear-gradient(#fff, #d3d3d3);
  background: -o-linear-gradient(#fff, #d3d3d3);
  background: -ms-linear-gradient(#fff, #d3d3d3);
  background: linear-gradient(#fff, #d3d3d3);
  color: #000;
  border: 1px solid #d1d2d3;
}
.ag-theme-fresh .ag-column-drop-cell-ghost,
.ag-theme-fresh-class .ag-column-drop-cell-ghost {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
.ag-theme-fresh .ag-column-drop-cell-text,
.ag-theme-fresh-class .ag-column-drop-cell-text {
  padding-left: 2px;
  padding-right: 2px;
}
.ag-theme-fresh .ag-column-drop-cell-button,
.ag-theme-fresh-class .ag-column-drop-cell-button {
  border: 1px solid transparent;
  padding-left: 2px;
  padding-right: 2px;
  border-radius: 3px;
}
.ag-theme-fresh .ag-column-drop-cell-button:hover,
.ag-theme-fresh-class .ag-column-drop-cell-button:hover {
  border: 1px solid #d1d2d3;
}
.ag-theme-fresh .ag-column-drop-empty-message,
.ag-theme-fresh-class .ag-column-drop-empty-message {
  padding-left: 2px;
  padding-right: 2px;
  color: #d1d2d3;
}
.ag-theme-fresh .ag-column-drop-icon,
.ag-theme-fresh-class .ag-column-drop-icon {
  margin: 3px;
}
.ag-theme-fresh .ag-column-drop,
.ag-theme-fresh-class .ag-column-drop {
  background-color: #f6f6f6;
}
.ag-theme-fresh .ag-column-drop-horizontal,
.ag-theme-fresh-class .ag-column-drop-horizontal {
  padding: 2px;
  border-top: 1px solid #d1d2d3;
  border-left: 1px solid #d1d2d3;
  border-right: 1px solid #d1d2d3;
}
.ag-theme-fresh .ag-column-drop-vertical,
.ag-theme-fresh-class .ag-column-drop-vertical {
  padding: 4px 4px 10px 4px;
  border-bottom: 1px solid #d1d2d3;
}
.ag-theme-fresh .ag-column-drop-vertical .ag-column-drop-cell,
.ag-theme-fresh-class .ag-column-drop-vertical .ag-column-drop-cell {
  margin-top: 2px;
}
.ag-theme-fresh .ag-column-drop-vertical .ag-column-drop-empty-message,
.ag-theme-fresh-class .ag-column-drop-vertical .ag-column-drop-empty-message {
  text-align: center;
  padding: 5px;
}
.ag-theme-fresh .ag-pivot-mode,
.ag-theme-fresh-class .ag-pivot-mode {
  border-bottom: 1px solid #d1d2d3;
  padding: 4px;
  background-color: #f6f6f6;
}
.ag-theme-fresh .ag-tool-panel .ag-column-select-panel,
.ag-theme-fresh-class .ag-tool-panel .ag-column-select-panel {
  border-bottom: 1px solid #d1d2d3;
}
.ag-theme-fresh .ag-select-agg-func-popup,
.ag-theme-fresh-class .ag-select-agg-func-popup {
  cursor: default;
  position: absolute;
  font-size: 14px;
  background-color: #fff;
  border: 1px solid #d1d2d3;
}
.ag-theme-fresh .ag-select-agg-func-item,
.ag-theme-fresh-class .ag-select-agg-func-item {
  padding-left: 2px;
  padding-right: 2px;
}
.ag-theme-fresh .ag-select-agg-func-item:hover,
.ag-theme-fresh-class .ag-select-agg-func-item:hover {
  background-color: #bde2e5;
}

#document-grid .ag-root-wrapper-body {
  display: block;
}
#document-grid .ag-root-wrapper-body .ag-root {
  width: 100%;
}

#financeGrid .ag-group-expanded,
#financeGrid .ag-group-contracted {
  position: relative;
  z-index: 2;
}
#financeGrid .ag-group-expanded ~ .ag-group-value,
#financeGrid .ag-group-contracted ~ .ag-group-value {
  display: inline;
  font-weight: bold;
}

#product-requirements-grid .ag-row.approved-product {
  background-color: rgba(229, 248, 243, 0.5) !important;
}
#product-requirements-grid .ag-row.rejected-product {
  background-color: rgba(255, 221, 221, 0.4) !important;
}
#product-requirements-grid .ag-row.approved-product:hover .ag-cell, #product-requirements-grid .ag-row.rejected-product:hover .ag-cell {
  background-color: initial;
}

.ag-theme-fresh.no-seps .ag-cell,
.ag-theme-fresh.no-seps .ag-ltr .ag-header-cell {
  border-right: 1px solid transparent;
}

.ag-theme-fresh:not(.no-focus) .ag-cell-focus {
  background-color: #e9f5fc !important;
}
.ag-theme-fresh:not(.no-focus):not(#document-grid):not(#project-areas-grid) .ag-cell-focus {
  border-left-color: #d1d2d3;
  border-right-color: #d1d2d3;
}

.editable-cell {
  background-color: #ffdddd !important;
}
.editable-cell.editable-color-disabled {
  background-color: inherit !important;
}

.eval-table .ag-layout-auto-height .ag-row {
  position: absolute !important;
}

#projects-index-table .ag-filter-checkbox {
  display: inline;
}

.ag-theme-fresh.ag-form#project-areas-grid .ag-cell {
  padding: 0 1.5rem;
  line-height: 4.4rem;
  border-right-color: #d1d2d3;
}
.ag-theme-fresh.ag-form#project-areas-grid .ag-pinned-right-cols-container .ag-cell {
  border-left: none !important;
}

.ag-header-group-text i.pti {
  color: #8A8F97;
}
.ag-header-group-text i.pti:hover {
  color: #585f69;
}

.ag-cell.errors {
  background-color: #ffdddd !important;
  color: #EF452F !important;
}

.ag-row.errors {
  background-color: #ffdddd !important;
}
.ag-row.errors .ag-cell {
  background-color: #ffdddd !important;
}
.ag-row.errors .ag-cell-wrapper .ag-selection-checkbox + .ag-cell-value {
  padding-left: 2rem;
}
.ag-row.errors .ag-cell-wrapper > *:first-child {
  white-space: nowrap;
}
.ag-row.errors .ag-cell-wrapper > *:first-child:before {
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  text-decoration: inherit;
  font-size: 1.4rem;
  margin-right: 0.4rem;
  content: "\f071";
  color: #ef5f48;
  vertical-align: middle;
  margin-top: -0.7rem;
}

.sbx-sffv-disabled {
  display: none;
}

.ais-price-ranges--list {
  display: none;
}

.ais-NumericMenu-item {
  font-size: 1.25rem;
}

.ais-NumericMenu-list > *::novalidate + div {
  color: #EF452F;
  font-size: 1.25rem;
}

label.ais-NumericMenu-label {
  font-weight: 400;
  font-size: inherit;
}
label.ais-NumericMenu-label > em {
  background: #fff9e1;
}

.ais-CurrentRefinements-list + .ais-current-refined-values--clear-all {
  display: none;
  cursor: pointer;
}
.ais-CurrentRefinements-list .ais-CurrentRefinements-item {
  display: inline-block;
  background-color: #d1d2d3;
  font-size: 0.95rem;
  border: 1px solid #d1d2d3;
  border-radius: 1.3rem;
  margin: 0.8rem 0.5rem 0.2rem 0;
  padding: 0.25rem 0.25rem 0 1.25rem;
  color: #343C48;
  text-transform: uppercase;
}
.ais-CurrentRefinements-list .ais-CurrentRefinements-item:last-child {
  margin-bottom: 1.8rem;
  margin-right: 1rem;
}
.ais-CurrentRefinements-list .ais-CurrentRefinements-item .ais-CurrentRefinements-link {
  display: inline-block;
  color: #101a28 !important;
  text-decoration: none !important;
  font-size: 1.15rem;
  text-transform: none;
  position: relative;
  height: 2.2rem;
  margin-top: -1px;
  padding: 0 2rem 0 0;
  vertical-align: middle;
}
.ais-CurrentRefinements-list .ais-CurrentRefinements-item .ais-CurrentRefinements-link:first-child {
  margin-left: 0.2rem;
}
.ais-CurrentRefinements-list .ais-CurrentRefinements-item .ais-CurrentRefinements-link .ais-CurrentRefinements-categoryLabel {
  font-size: 1.15rem;
}
.ais-CurrentRefinements-list .ais-CurrentRefinements-item .ais-CurrentRefinements-link .ais-CurrentRefinements-categoryLabel:before {
  content: "(";
}
.ais-CurrentRefinements-list .ais-CurrentRefinements-item .ais-CurrentRefinements-link .ais-CurrentRefinements-categoryLabel:after {
  content: ")";
}
.ais-CurrentRefinements-list .ais-CurrentRefinements-item .ais-CurrentRefinements-link:after {
  content: "\f00d";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  line-height: inherit;
  color: #343C48;
  font-weight: 300;
  right: 0.8rem;
  line-height: 2rem;
  font-size: 1rem;
  top: 0;
}
.ais-CurrentRefinements-list .ais-CurrentRefinements-item .ais-CurrentRefinements-link:hover {
  text-decoration: line-through !important;
}

.ais-RefinementList-count,
.ais-HierarchicalMenu-count,
.ais-toggle--count {
  font-size: 1rem;
}

button.sbx-sffv__submit {
  display: none;
}

button.sbx-sffv__reset {
  position: absolute;
  right: 0;
  background: transparent !important;
  top: -0.5rem;
  color: #343C48;
  padding: 0.4rem !important;
}

.ais-HierarchicalMenu--body {
  border-top: 1px solid #d1d2d3;
  padding-bottom: 1rem;
}

.ais-HierarchicalMenu-item {
  border-left: 1px solid #d1d2d3;
  border-right: 1px solid #d1d2d3;
  text-decoration: none;
  font-size: 1.25rem;
  background-color: #fff;
  border-bottom: 1px solid #d1d2d3;
  position: relative;
}

.ais-HierarchicalMenu-item--selected {
  background: #e9f5fc !important;
  font-weight: bold !important;
}
.ais-HierarchicalMenu-item--selected .ais-HierarchicalMenu-item .ais-HierarchicalMenu-link {
  font-weight: normal;
}

.ais-HierarchicalMenu-link {
  display: block;
  padding: 0.64rem 1.6rem 0.32rem 0.8rem;
  color: #343C48 !important;
}
.ais-HierarchicalMenu-link:hover {
  background: #e9f5fc;
  text-decoration: none;
}

.ais-HierarchicalMenu-list--child {
  margin: 0 !important;
}
.ais-HierarchicalMenu-list--child .ais-HierarchicalMenu-item {
  border: none;
  border-top: 1px solid #d1d2d3;
}
.ais-HierarchicalMenu-list--child .ais-HierarchicalMenu-list--child .ais-HierarchicalMenu-link {
  padding-left: 3rem;
}
.ais-HierarchicalMenu-list--child .ais-HierarchicalMenu-list--child .ais-HierarchicalMenu-link:before {
  left: 2rem;
}
.ais-HierarchicalMenu-list--child .ais-HierarchicalMenu-list--child .ais-HierarchicalMenu-link .ais-HierarchicalMenu-list--child .ais-HierarchicalMenu-link {
  padding-left: 4rem;
}
.ais-HierarchicalMenu-list--child .ais-HierarchicalMenu-list--child .ais-HierarchicalMenu-link .ais-HierarchicalMenu-list--child .ais-HierarchicalMenu-link:before {
  left: 3rem;
}
.ais-HierarchicalMenu-list--child .ais-HierarchicalMenu-link {
  padding-left: 3.2rem;
}
.ais-HierarchicalMenu-list--child .ais-HierarchicalMenu-link:before {
  font-family: "FontAwesome";
  content: "\f141";
  position: absolute;
  left: 1.6rem;
  top: 0.8rem;
  font-size: 1rem;
}

.ais-HierarchicalMenu-list__lvl2 .ais-HierarchicalMenu-link {
  padding-left: 4.8rem;
}
.ais-HierarchicalMenu-list__lvl2 .ais-HierarchicalMenu-link:before {
  left: 3.2rem;
}

.ais-HierarchicalMenu-list__lvl3 .ais-HierarchicalMenu-link {
  padding-left: 6.4rem;
}
.ais-HierarchicalMenu-list__lvl3 .ais-HierarchicalMenu-link:before {
  left: 4.8rem;
}

ul.ais-HierarchicalMenu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
  border-top: 1px solid #d1d2d3;
}

.ais-SearchBox {
  max-width: none !important;
}

.ais-RangeSlider {
  padding: 0 1rem;
}

.ais-RangeSlider--connect {
  background: #0684d7;
}

.ais-RangeSlider .ais-RangeSlider-handle {
  height: 18px;
  width: 18px;
  border: 1px solid #0684d7;
  background: #0684d7;
  bottom: 9px;
  border-radius: 3.2rem;
}

.ais-RangeSlider .rheostat-horizontal .rheostat-handle {
  margin-left: -9px;
}
.ais-RangeSlider .rheostat-horizontal .rheostat-handle:after {
  content: "";
  height: 18px;
  width: 18px;
  border: 1px solid #0684d7;
  background: #0684d7;
  bottom: 9px;
  border-radius: 3.2rem;
  cursor: pointer;
  position: absolute;
  display: block;
  top: -11px;
}
.ais-RangeSlider .rheostat-horizontal .rheostat-handle .rheostat-tooltip {
  height: 1.6rem;
  width: auto !important;
  background: rgba(237, 239, 241, 0.8) !important;
  padding: 0 0.4rem;
  border-radius: 0.12rem;
  line-height: 1.6rem;
  margin-left: 0 !important;
  color: #3b434c;
  font-size: 0.8em;
  margin-top: 0.96rem;
  position: absolute;
}

.rheostat-handle-upper .rheostat-tooltip {
  right: -18px;
}

.rheostat-handle-lower .rheostat-tooltip {
  left: 0;
}

.ais-RangeSlider-handle-lower {
  left: -11px;
}

.ais-RangeSlider-handle-upper {
  right: 11px;
}

.ais-RangeSlider-target {
  height: 4px;
  margin-top: 1.6rem;
  margin-bottom: 3.6rem;
}

.ais-RangeSlider .rheostat-horizontal .rheostat-progress {
  height: 4px;
  background: #0684d7;
  margin-top: -4px;
  position: absolute;
}

.ais-RangeSlider--base {
  border: none;
}

.ais-RangeSlider .rheostat {
  margin-top: 2.8rem !important;
  margin-bottom: 2.16rem !important;
}

.ais-RangeSlider .rheostat-horizontal .rheostat-background {
  background: #d1d2d3;
  border: none;
  height: 4px !important;
  top: 1px !important;
  border-radius: 1px;
}

.ais-RangeSlider--handle-upper .ais-RangeSlider-tooltip {
  right: 0;
}

.ais-RangeSlider .rheostat-horizontal .rheostat-handle .ais-RangeSlider-tooltip {
  height: 1.6rem;
  width: auto !important;
  background: rgba(230, 233, 235, 0.8) !important;
  padding: 0 0.4rem;
  border-radius: 1px;
  line-height: 1.6rem;
  margin-left: 0 !important;
  color: #343C48;
}

.ct-chart-bar {
  width: calc(100% - 1.6rem) !important;
  margin-top: -17px;
  position: relative;
  bottom: -17px;
  left: 0.8rem;
}

.ct-bar {
  stroke: #6c727a !important;
  stroke-width: 15px !important;
}

#sort-by-container {
  display: inline-block;
  width: 4.8rem;
}

#sort-by-container {
  width: 12.8rem;
}

.ais-Stats, .ais-Hits, .ais-Stats--time {
  font-size: 1.25rem;
  margin-left: 0.5rem;
}

.no-result-container {
  display: inline-block;
}

.ais-Hits__empty {
  color: #EF452F;
  font-weight: bold;
}

.ais-clear-all--link > div:before {
  font-family: "FontAwesome";
  content: "\f00d";
  position: relative;
  right: 0.4rem;
  padding-left: 0.32rem;
  line-height: inherit;
}

.ais-RangeInput .ais-RangeInput-input,
.ais-RangeInput .ais-RangeInput-input--min,
.ais-RangeInput .ais-RangeInput-input--max,
.ais-RangeInput .ais-RangeInput-separator,
.ais-RangeInput .ais-RangeInput-label,
.ais-RangeInput .ais-PriceRanges-currency,
.ais-RangeInput .ais-PriceRanges-label,
.ais-RangeInput .ais-PriceRanges-input,
.ais-RangeInput .ais-PriceRanges-separator, .ais-price-ranges .ais-RangeInput-input,
.ais-price-ranges .ais-RangeInput-input--min,
.ais-price-ranges .ais-RangeInput-input--max,
.ais-price-ranges .ais-RangeInput-separator,
.ais-price-ranges .ais-RangeInput-label,
.ais-price-ranges .ais-PriceRanges-currency,
.ais-price-ranges .ais-PriceRanges-label,
.ais-price-ranges .ais-PriceRanges-input,
.ais-price-ranges .ais-PriceRanges-separator {
  display: inline-block;
  margin: 0;
}
.ais-RangeInput .ais-PriceRanges-currency, .ais-price-ranges .ais-PriceRanges-currency {
  display: none;
}
.ais-RangeInput .ais-PriceRanges-form, .ais-price-ranges .ais-PriceRanges-form {
  margin: 0;
}
.ais-RangeInput .ais-RangeInput-input--min,
.ais-RangeInput .ais-RangeInput-input--max, .ais-price-ranges .ais-RangeInput-input--min,
.ais-price-ranges .ais-RangeInput-input--max {
  min-width: calc(100% - 2rem);
}
.ais-RangeInput .ais-RangeInput-label,
.ais-RangeInput .ais-PriceRanges-label, .ais-price-ranges .ais-RangeInput-label,
.ais-price-ranges .ais-PriceRanges-label {
  width: calc(50% - 3.6rem);
}
.ais-RangeInput .ais-PriceRanges-separator,
.ais-RangeInput .ais-RangeInput-separator, .ais-price-ranges .ais-PriceRanges-separator,
.ais-price-ranges .ais-RangeInput-separator {
  text-align: center;
  margin-left: 0.24rem;
  width: 2.24rem;
  font-size: 1.15rem;
}
.ais-RangeInput .ais-RangeInput-form, .ais-price-ranges .ais-RangeInput-form {
  margin: 0;
}
.ais-RangeInput .ais-RangeInput-submit,
.ais-RangeInput .ais-PriceRanges-button, .ais-price-ranges .ais-RangeInput-submit,
.ais-price-ranges .ais-PriceRanges-button {
  margin-left: 0.8rem;
  width: 3.6rem;
  height: 3.6rem;
  line-height: 3.52rem;
  padding: 0;
  margin-bottom: 0;
}
.ais-RangeInput .ais-RangeInput-submit:after,
.ais-RangeInput .ais-PriceRanges-button:after, .ais-price-ranges .ais-RangeInput-submit:after,
.ais-price-ranges .ais-PriceRanges-button:after {
  content: "\f002";
  font-family: "fontAwesome";
  font-weight: 400;
  font-size: 1.36rem;
}

/*
 * qTip2 - Pretty powerful tooltips - v2.2.1
 * http://qtip2.com
 *
 * Copyright (c) 2015
 * Released under the MIT licenses
 * http://jquery.org/license
 *
 * Date: Sun Sep 13 2015 03:05 EDT-0400
 * Plugins: tips viewport imagemap svg
 * Styles: core css3
 */
.qtip {
  position: absolute;
  left: -28000px;
  top: -28000px;
  display: none;
  max-width: 280px;
  min-width: 50px;
  font-size: 10.5px;
  line-height: 12px;
  direction: ltr;
  box-shadow: none;
  padding: 0;
}

.qtip-content {
  position: relative;
  padding: 5px 9px;
  overflow: hidden;
  text-align: left;
  word-wrap: break-word;
}

.qtip-titlebar {
  position: relative;
  padding: 5px 35px 5px 10px;
  overflow: hidden;
  border-width: 0 0 1px;
  font-weight: bold;
}

.qtip-titlebar + .qtip-content {
  border-top-width: 0 !important;
}

/* Default close button class */
.qtip-close {
  position: absolute;
  right: -9px;
  top: -9px;
  z-index: 11; /* Overlap .qtip-tip */
  cursor: pointer;
  outline: medium none;
  border: 1px solid transparent;
}

.qtip-titlebar .qtip-close {
  right: 4px;
  top: 50%;
  margin-top: -9px;
}

* html .qtip-titlebar .qtip-close {
  top: 16px;
} /* IE fix */
.qtip-titlebar .ui-icon,
.qtip-icon .ui-icon {
  display: block;
  text-indent: -1000em;
  direction: ltr;
}

.qtip-icon, .qtip-icon .ui-icon {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  text-decoration: none;
}

.qtip-icon .ui-icon {
  width: 18px;
  height: 14px;
  line-height: 14px;
  text-align: center;
  text-indent: 0;
  font: normal bold 10px/13px Tahoma, sans-serif;
  color: inherit;
  background: transparent none no-repeat -100em -100em;
}

/* Applied to 'focused' tooltips e.g. most recently displayed/interacted with */
/* Applied on hover of tooltips i.e. added/removed on mouseenter/mouseleave respectively */
/* Default tooltip style */
.qtip-default {
  border: 1px solid #F1D031;
  background-color: #FFFFA3;
  color: #101a28;
}

.qtip-default .qtip-titlebar {
  background-color: #FFEF93;
}

.qtip-default .qtip-icon {
  border-color: #6c727a;
  background: #F1F1F1;
  color: #343C48;
}

.qtip-default .qtip-titlebar .qtip-close {
  border-color: #585f69;
  color: #111;
}

.qtip-shadow {
  -webkit-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
}

/* Add rounded corners to your tooltips in: FF3+, Chrome 2+, Opera 10.6+, IE9+, Safari 2+ */
.qtip-rounded,
.qtip-tipsy,
.qtip-bootstrap {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.qtip-rounded .qtip-titlebar {
  -moz-border-radius: 4px 4px 0 0;
  -webkit-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}

/* Youtube tooltip style */
.qtip-youtube {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 0 3px #101a28;
  -moz-box-shadow: 0 0 3px #101a28;
  box-shadow: 0 0 3px #101a28;
  color: white;
  border: 0 solid transparent;
  background: #4A4A4A;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #4A4A4A), color-stop(100%, black));
  background-image: -webkit-linear-gradient(top, #4A4A4A 0, black 100%);
  background-image: -moz-linear-gradient(top, #4A4A4A 0, black 100%);
  background-image: -ms-linear-gradient(top, #4A4A4A 0, black 100%);
  background-image: -o-linear-gradient(top, #4A4A4A 0, black 100%);
}

.qtip-youtube .qtip-titlebar {
  background-color: #4A4A4A;
  background-color: rgba(0, 0, 0, 0);
}

.qtip-youtube .qtip-content {
  padding: 0.75em;
  font: 12px arial, sans-serif;
  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#4a4a4a,EndColorStr=#000000);
  -ms-filter: "progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#4a4a4a,EndColorStr=#000000);";
}

.qtip-youtube .qtip-icon {
  border-color: #222;
}

.qtip-youtube .qtip-titlebar .ui-state-hover {
  border-color: #303030;
}

/* jQuery TOOLS Tooltip style */
.qtip-jtools {
  background: #232323;
  background: rgba(0, 0, 0, 0.7);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#717171), to(#232323));
  background-image: -moz-linear-gradient(top, #717171, #232323);
  background-image: -webkit-linear-gradient(top, #717171, #232323);
  background-image: -ms-linear-gradient(top, #717171, #232323);
  background-image: -o-linear-gradient(top, #717171, #232323);
  border: 2px solid #6c727a;
  border: 2px solid rgb(241, 241, 241);
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 0 12px #101a28;
  -moz-box-shadow: 0 0 12px #101a28;
  box-shadow: 0 0 12px #101a28;
}

/* IE Specific */
.qtip-jtools .qtip-titlebar {
  background-color: transparent;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#717171,endColorstr=#4A4A4A);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#717171,endColorstr=#4A4A4A)";
}

.qtip-jtools .qtip-content {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4A4A4A,endColorstr=#232323);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#4A4A4A,endColorstr=#232323)";
}

.qtip-jtools .qtip-titlebar,
.qtip-jtools .qtip-content {
  background: transparent;
  color: white;
  border: 0 dashed transparent;
}

.qtip-jtools .qtip-icon {
  border-color: #101a28;
}

.qtip-jtools .qtip-titlebar .ui-state-hover {
  border-color: #101a28;
}

/* Cluetip style */
.qtip-cluetip {
  -webkit-box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
  background-color: #D9D9C2;
  color: #111;
  border: 0 dashed transparent;
}

.qtip-cluetip .qtip-titlebar {
  background-color: #87876A;
  color: white;
  border: 0 dashed transparent;
}

.qtip-cluetip .qtip-icon {
  border-color: #808064;
}

.qtip-cluetip .qtip-titlebar .ui-state-hover {
  border-color: #696952;
  color: #696952;
}

/* Tipsy style */
.qtip-tipsy {
  background: black;
  background: rgba(0, 0, 0, 0.87);
  color: white;
  border: 0 solid transparent;
  font-size: 11px;
  font-family: "Lucida Grande", sans-serif;
  font-weight: bold;
  line-height: 16px;
  text-shadow: 0 1px black;
}

.qtip-tipsy .qtip-titlebar {
  padding: 6px 35px 0 10px;
  background-color: transparent;
}

.qtip-tipsy .qtip-content {
  padding: 8px;
}

.qtip-tipsy .qtip-icon {
  border-color: #222;
  text-shadow: none;
}

.qtip-tipsy .qtip-titlebar .ui-state-hover {
  border-color: #303030;
}

/* Tipped style */
.qtip-tipped {
  border: 3px solid #959FA9;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background-color: #F9F9F9;
  color: #454545;
  font-weight: normal;
  font-family: serif;
}

.qtip-tipped .qtip-titlebar {
  border-bottom-width: 0;
  color: white;
  background: #3A79B8;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3A79B8), to(#2E629D));
  background-image: -webkit-linear-gradient(top, #3A79B8, #2E629D);
  background-image: -moz-linear-gradient(top, #3A79B8, #2E629D);
  background-image: -ms-linear-gradient(top, #3A79B8, #2E629D);
  background-image: -o-linear-gradient(top, #3A79B8, #2E629D);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#3A79B8,endColorstr=#2E629D);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#3A79B8,endColorstr=#2E629D)";
}

.qtip-tipped .qtip-icon {
  border: 2px solid #285589;
  background: #285589;
}

.qtip-tipped .qtip-icon .ui-icon {
  background-color: #FBFBFB;
  color: #101a28;
}

/**
 * Twitter Bootstrap style.
 *
 * Tested with IE 8, IE 9, Chrome 18, Firefox 9, Opera 11.
 * Does not work with IE 7.
 */
.qtip-bootstrap {
  /** Taken from Bootstrap body */
  font-size: 14px;
  line-height: 20px;
  color: #101a28;
  /** Taken from Bootstrap .popover */
  padding: 1px;
  background-color: #ffffff;
  border: 1px solid #6c727a;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.qtip-bootstrap .qtip-titlebar {
  /** Taken from Bootstrap .popover-title */
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #d1d2d3;
  border-bottom: 1px solid #ebebeb;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}

.qtip-bootstrap .qtip-titlebar .qtip-close {
  /**
   * Overrides qTip2:
   * .qtip-titlebar .qtip-close{
   *   [...]
   *   right: 4px;
   *   top: 50%;
   *   [...]
   *   border-style: solid;
   * }
   */
  right: 11px;
  top: 45%;
  border-style: none;
}

.qtip-bootstrap .qtip-content {
  /** Taken from Bootstrap .popover-content */
  padding: 9px 14px;
}

.qtip-bootstrap .qtip-icon {
  /**
   * Overrides qTip2:
   * .qtip-default .qtip-icon {
   *   border-color: $pt-gray-4;
   *   background: #F1F1F1;
   *   color: $pt-gray-2;
   * }
   */
  background: transparent;
}

.qtip-bootstrap .qtip-icon .ui-icon {
  /**
   * Overrides qTip2:
   * .qtip-icon .ui-icon{
   *   width: 18px;
   *   height: 14px;
   * }
   */
  width: auto;
  height: auto;
  /* Taken from Bootstrap .close */
  float: right;
  font-size: 20px;
  font-weight: bold;
  line-height: 18px;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}

.qtip-bootstrap .qtip-icon .ui-icon:hover {
  /* Taken from Bootstrap .close:hover */
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  filter: alpha(opacity=40);
}

/* IE9 fix - removes all filters */
.qtip:not(.ie9haxors) div.qtip-content,
.qtip:not(.ie9haxors) div.qtip-titlebar {
  filter: none;
  -ms-filter: none;
}

.qtip .qtip-tip {
  margin: 0 auto;
  overflow: hidden;
  z-index: 10;
}

/* Opera bug #357 - Incorrect tip position
https://github.com/Craga89/qTip2/issues/367 */
x:-o-prefocus, .qtip .qtip-tip {
  visibility: hidden;
}

.qtip .qtip-tip,
.qtip .qtip-tip .qtip-vml,
.qtip .qtip-tip canvas {
  position: absolute;
  color: #123456;
  background: transparent;
  border: 0 dashed transparent;
}

.qtip .qtip-tip canvas {
  top: 0;
  left: 0;
}

.qtip .qtip-tip .qtip-vml {
  behavior: url(#default#VML);
  display: inline-block;
  visibility: visible;
}

/*Custom*/
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.qtip .clearfix {
  display: inline-block;
}

.qtip {
  max-width: 300px;
  min-width: 300px;
  text-shadow: none;
  z-index: 10 !important;
}

.qtip .qtip-company {
  min-width: 280px;
  position: relative;
  background-color: #fff;
  border-radius: 0.24rem !important;
  padding-top: 1.6rem !important;
  margin-bottom: 3px;
}
.qtip .qtip-company .company-header {
  height: 7.68rem;
}
.qtip .qtip-company .company-header .company-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #43a5e0;
  font-size: 1rem;
  width: 64%;
  line-height: 1.76rem;
}
.qtip .qtip-company .company-header .company-title a {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  color: #43a5e0;
  text-decoration: none;
}
.qtip .qtip-company .company-header .company-logo {
  position: absolute;
  cursor: default;
  display: block;
  background: #fff;
  border-radius: 100%;
  border: 3px solid white;
  box-shadow: 0 0 1px #c7c7c7;
  width: 6.4rem;
  height: 6.4rem;
  left: 1.2rem;
  top: 1.2rem;
  margin: 0 0 0.8rem;
  overflow: hidden;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.qtip .qtip-company .company-header .company-logo img {
  width: 100%;
  height: auto;
  border: none;
  margin: 0 auto;
  -webkit-align-self: center;
  align-self: center;
}
.qtip .qtip-company .company-header .company-details {
  padding-bottom: 1.6rem !important;
  left: 9.04rem;
  top: 0.64rem;
  position: relative;
}
.qtip .qtip-company .company-header .company-details .company-data {
  color: #585f69 !important;
  font-size: 1.15rem;
  line-height: 1;
  font-weight: normal;
}
.qtip .qtip-company .company-header .company-details .company-location {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 16px;
  font-size: 11px;
  color: #737373;
  margin: 0.4rem 0;
  font-weight: 700 !important;
  display: inline-block;
  width: 64%;
}
.qtip .qtip-company .company-header .company-details .company-location a {
  color: #43a5e0;
  text-decoration: none;
  font-size: 1.15rem !important;
  line-height: 1 !important;
}
.qtip .qtip-company .company-activities {
  padding-top: 0.8rem !important;
  padding-left: 1.6rem !important;
  padding-right: 1.6rem !important;
}
.qtip .qtip-company .company-activities .pt-pill {
  display: inline-block;
  background: #ebebeb;
  border: 1px solid #e3e3e3;
  color: #737373;
  padding: 0.4rem 0.64rem;
  font-size: 0.96rem;
  line-height: 1;
  width: auto;
  margin: 0.08rem 0.16rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none !important;
  font-weight: normal;
}
.qtip .qtip-company .company-activities .pt-pill:hover {
  background: #f8920f;
  border-color: #f8920f;
  color: white;
  font-weight: bold;
}
.qtip .qtip-company .company-activities .pt-pill.vcard-count {
  font-size: 1.25rem !important;
  line-height: 1.76rem !important;
  font-weight: inherit;
  line-height: 2.08rem;
  background: transparent;
  border-color: transparent;
  color: #43a5e0;
  padding: 0;
}
.qtip .qtip-company .company-activities .pt-pill.vcard-count:hover {
  text-decoration: underline !important;
  background: transparent;
  border-color: transparent;
  color: #43a5e0 !important;
}
.qtip .qtip-company .thumb-list-container {
  width: 100%;
  min-width: 270px;
  position: relative;
  margin: 0 !important;
  padding: 1.6rem 1.6rem 3.2rem 1.6rem !important;
  box-sizing: border-box;
}
.qtip .qtip-company .thumb-list-container ul.thumb-list {
  padding-left: 0px;
  width: 100%;
  list-style-type: none;
  max-width: 500px;
  margin: 0 auto;
}
.qtip .qtip-company .thumb-list-container ul.thumb-list li {
  float: left;
  width: 22%;
  margin: 0 2%;
  padding: 0;
  background: #e6e9eb;
  margin-left: 0;
  width: 54px;
  height: 54px;
}
.qtip .qtip-company .thumb-list-container ul.thumb-list li:first-child {
  margin-left: 0;
}
.qtip .qtip-company .thumb-list-container ul.thumb-list li:last-child {
  margin-right: 0;
}
.qtip .qtip-company .thumb-list-container ul.thumb-list li a {
  width: 54px;
  height: 54px !important;
  line-height: 20px !important;
  overflow: hidden;
  display: block;
  text-align: center;
  border-radius: 0.24rem;
  padding: 0;
  font-size: 2.24rem;
  color: transparent;
}
.qtip .qtip-company .thumb-list-container ul.thumb-list li a i:before {
  color: white;
  float: left;
  margin: 0 -0.4rem 0 -0.64rem;
}
.qtip .qtip-company .thumb-list-container ul.thumb-list li a img {
  width: 54px !important;
  height: 54px !important;
  border: none;
  margin: 0 auto;
  -webkit-align-self: center;
  align-self: center;
}
.qtip .qtip-company .thumb-list-container ul.thumb-list li a:hover {
  text-decoration: none !important;
}
.qtip .qtip-company .thumb-list-container ul.thumb-list li.project-count a {
  height: 54px;
  line-height: 54px !important;
  background: #6c727a;
  color: white !important;
  text-decoration: none !important;
}
.qtip .qtip-company .thumb-list-container ul.thumb-list li.project-count a i.pti.pt-plus {
  margin-top: 20px;
}
.qtip .qtip-company .thumb-list-container ul.thumb-list li.project-count a i.pti.pt-plus:before {
  color: white;
  float: left;
  margin: 0 -0.4rem 0 0.4rem;
  content: "+";
  font-weight: bold;
  font-size: 2.24rem;
  font-style: normal;
}
.qtip .qtip-company .thumb-list-container ul.thumb-list li.project-count a:hover {
  background: #f8920f;
}
.qtip .qtip-company .no-listed-project {
  text-align: center;
  border-radius: 0.24rem;
  background: #C1BDBD;
  font-size: 2.08rem;
  min-height: 5.44rem;
  line-height: 5.44rem;
}
.qtip .qtip-company .company-footer {
  bottom: -2px;
}

.row {
  max-width: 100%;
  position: relative;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.nomargin {
  margin: 0 !important;
}

.qtip .qtip-project {
  min-height: 336px;
  min-width: 280px;
  display: inline-block;
  width: 100%;
}
.qtip .qtip-project .project-vcard {
  background: white;
  overflow: hidden;
  border-radius: 0.32rem;
}
.qtip .qtip-project .project-vcard .project-image-loader-overlay {
  height: 16rem;
  opacity: 0.9;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 1;
  background: #585f69;
}
.qtip .qtip-project .project-vcard .vcard-img-box {
  border-bottom: 5px solid #b0b0b0;
  background-color: #737373 !important;
  height: 16rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0.32rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.qtip .qtip-project .project-vcard .vcard-img-box .vcard-project-status {
  display: inline-block;
  width: auto;
  height: 3.04rem;
  vertical-align: middle;
  text-align: left;
  font-size: 1rem;
  background: #9ad897;
  padding: 0 1.04rem 0 0;
  margin-right: 0.4rem;
  position: absolute;
  bottom: -5px;
  left: 0;
  border-radius: 0.32rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  z-index: 3;
}
.qtip .qtip-project .project-vcard .vcard-img-box .vcard-project-status span {
  position: relative;
  text-transform: capitalize;
  font-weight: bold;
  margin-left: 0.64rem;
  line-height: 3.04rem;
  color: white;
}
.qtip .qtip-project .project-vcard .vcard-img-box img {
  width: 100%;
  height: auto;
  border: none;
  margin: 0 auto;
  -webkit-align-self: center;
  align-self: center;
  border-radius: 0.32rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.qtip .qtip-project .project-vcard .vcard-img-box .vcard-img-box-overlay {
  filter: alpha(opacity=0);
  opacity: 0;
  background-color: rgba(60, 60, 60, 0.7);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  z-index: 2;
  text-align: center;
  width: 100%;
  border-radius: 0.32rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.qtip .qtip-project .project-vcard .vcard-img-box .vcard-img-box-overlay .wrapper {
  bottom: 0;
  left: 0;
  height: 20px;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.qtip .qtip-project .project-vcard .vcard-img-box .vcard-img-box-overlay .wrapper a {
  filter: alpha(opacity=0);
  opacity: 0;
  color: #eee;
  font-size: 1.25rem;
  font-weight: 700;
  z-index: 1;
}
.qtip .qtip-project .project-vcard .vcard-img-box:hover .vcard-img-box-overlay {
  opacity: 1;
}
.qtip .qtip-project .project-vcard .vcard-img-box:hover .vcard-img-box-overlay .wrapper a {
  opacity: 1;
}
.qtip .qtip-project .project-vcard .vcard-info {
  display: block;
  padding: 1.2rem 1.2rem 1.6rem 1.2rem;
  background: white;
}
.qtip .qtip-project .project-vcard .vcard-info h2 {
  width: 99%;
  color: #5d5d5d;
  font-size: 1.15rem;
  line-height: 1.6rem;
  font-weight: 400;
  padding: 0;
  text-transform: none;
  margin-bottom: 0.56rem;
}
.qtip .qtip-project .project-vcard .vcard-info h2 a {
  color: #5d5d5d;
  font-size: 1.3rem;
  font-weight: bold;
  text-decoration: none;
}
.qtip .qtip-project .project-vcard .vcard-info:hover h2 a {
  color: #43a5e0;
}
.qtip .qtip-project .project-vcard .vcard-info:hover h2 a:hover {
  text-decoration: underline;
}
.qtip .qtip-project .project-vcard .meta-info {
  color: gray;
  font-size: 0.96rem;
  margin-bottom: 0.96rem;
}
.qtip .qtip-project .project-vcard ul.project-result-participants {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 4.96rem;
  margin-bottom: 1.6rem;
}
.qtip .qtip-project .project-vcard ul.project-result-participants li {
  vertical-align: top;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  display: inline-block;
  margin-right: 5px !important;
}
.qtip .qtip-project .project-vcard ul.project-result-participants li .company-logo {
  position: relative;
  border-radius: 100%;
  border: 2px solid white;
  box-shadow: 0 0 0 1px #cdd2d6;
  width: 4.56rem;
  height: 4.64rem;
  background: white;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.qtip .qtip-project .project-vcard ul.project-result-participants li .company-logo img {
  width: 100%;
  height: auto;
  border: none;
  margin: 0 auto;
  -webkit-align-self: center;
  align-self: center;
  background: transparent;
}
.qtip .qtip-project .project-vcard ul.project-result-participants li.participants-count a {
  background: #6c727a;
  border-radius: 100%;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  height: 50px;
  margin-right: 0;
  line-height: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  -moz-transition: all all 0.4s ease 0s;
  -webkit-transition: all all 0.4s ease 0s;
  -o-transition: all all 0.4s ease 0s;
  -ms-transition: all all 0.4s ease 0s;
  display: inline-block;
}
.qtip .qtip-project .project-vcard ul.project-result-participants li.participants-count a i.pti.pt-plus {
  font-size: 1.5rem;
  line-height: 50px;
  margin-right: 0.24rem;
  color: white;
  margin-left: -0.4rem;
}
.qtip .qtip-project .project-vcard ul.project-result-participants li.participants-count a i.pti.pt-plus:before {
  content: "+";
  font-weight: bold;
  font-style: normal;
}
.qtip .qtip-project .project-vcard ul.project-result-participants li.participants-count:hover a {
  background: #f8920f;
}
.qtip .qtip-project .project-vcard ul.project-result-activities {
  list-style: none;
  margin: 0 0 0.64rem 0;
  padding-left: 0px;
}
.qtip .qtip-project .project-vcard ul.project-result-activities li {
  display: inline-block;
  background: #ebebeb;
  border: 1px solid #e3e3e3;
  color: #737373;
  padding: 0.4rem 0.64rem;
  font-size: 0.96rem;
  line-height: 1;
  width: auto;
  margin: 0 0.24rem 0.8rem 0;
  border-radius: 0.24rem;
  cursor: pointer;
  font-weight: normal;
}
.qtip .qtip-project .project-vcard ul.project-result-activities li:hover {
  text-decoration: none;
  cursor: default;
}
.qtip .qtip-project .project-vcard ul.project-result-activities li.more {
  padding: 0;
  background: transparent;
  border: 1px solid transparent;
}
.qtip .qtip-project .project-vcard ul.project-result-activities li.more a {
  display: block;
  background: transparent;
  border-color: transparent;
  color: #43a5e0;
}
.qtip .qtip-project .project-vcard ul.project-result-activities li.more a:hover {
  text-decoration: underline;
}
.qtip .qtip-project.completed .vcard-img-box .vcard-project-status {
  background-color: #9ad897;
}
.qtip .qtip-project.completed .vcard-img-box {
  border-color: #9ad897;
}
.qtip .qtip-project.planning .vcard-img-box .vcard-project-status {
  background-color: #96cbec;
}
.qtip .qtip-project.planning .vcard-img-box {
  border-color: #96cbec;
}
.qtip .qtip-project.tender .vcard-img-box .vcard-project-status {
  background-color: #f3e27f;
}
.qtip .qtip-project.tender .vcard-img-box {
  border-color: #f3e27f;
}
.qtip .qtip-project.under_design .vcard-img-box .vcard-project-status {
  background-color: #f9c179;
}
.qtip .qtip-project.under_design .vcard-img-box {
  border-color: #f9c179;
}
.qtip .qtip-project.under_construction .vcard-img-box .vcard-project-status {
  background-color: #c8b8f9;
}
.qtip .qtip-project.under_construction .vcard-img-box {
  border-color: #c8b8f9;
}
.qtip .qtip-project.on_hold .vcard-img-box .vcard-project-status {
  background-color: #6c727a;
}
.qtip .qtip-project.on_hold .vcard-img-box {
  border-color: #6c727a;
}
.qtip .qtip-project.cancelled .vcard-img-box .vcard-project-status {
  background-color: #f4a598;
}
.qtip .qtip-project.cancelled .vcard-img-box {
  border-color: #f4a598;
}
.qtip .qtip-project .company-footer {
  bottom: 7px;
}

.qtip .company-footer {
  text-align: center;
  background-color: black;
  text-align: center;
  padding: 0.64rem 0;
  font-size: 0.96rem;
  left: 0;
  position: absolute;
  width: 100%;
  bottom: 2px;
  border-radius: 0 0 0.4rem 0.4rem;
}

.glossarizer_replaced {
  border-bottom: 1px dotted #2B2929;
  cursor: help;
}

.glossarizer_project_replaced {
  border-bottom: 1px dotted #2B2929;
  cursor: help;
}

.qtip:before {
  content: "";
  width: 300%;
  height: 30px;
  position: absolute;
  top: -30px;
  left: -100%;
}
.qtip:after {
  content: "";
  width: 300%;
  height: 45px;
  position: absolute;
  bottom: -45px;
  left: -100%;
}
.qtip .spinner {
  margin: 0px auto;
  font-size: 5px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
.qtip .spinner,
.qtip .spinner:after {
  border-radius: 50%;
  width: 15px;
  height: 15px;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* ---------------------------- */
/* ***** REUSABLE CLASSES ***** */
/* ---------------------------- */
.column.size-1of2 {
  width: 50%;
  position: static;
}

.column.size-1of3 {
  width: 33.33333%;
  position: static;
}

.column.size-1of4 {
  width: 25%;
  position: static;
}

.column.size-1of5 {
  width: 20%;
  position: static;
}

.column.size-1of6 {
  width: 16.66666%;
  position: static;
}

.page-intro {
  font-size: 1.5rem;
  line-height: 2.24rem;
  font-weight: 400;
}

.note {
  font-size: 1.25rem;
  font-weight: 700;
  color: #343C48;
}

.contact-icons i {
  margin-right: 0.4rem;
  margin-left: 0;
}

.no-entries {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  align-items: center;
  height: 100%;
}
.no-entries > .no-entries__content {
  margin: auto;
  padding: 2rem 0 8rem;
}
@media only screen and (max-width: 1024px) {
  .no-entries > .no-entries__content {
    margin: 2rem auto 0;
  }
}
.no-entries > .no-entries__content > img {
  margin: 3rem auto 2.5rem;
}
.no-entries > .no-entries__content > img.oppo-no-entries-img {
  max-width: 22rem;
}
.no-entries > .no-entries__content > i {
  font-size: 5rem;
  width: 11rem;
  height: 11rem;
  line-height: 10.5rem;
  border-radius: 11rem;
  color: white;
  background-color: #bec0c4;
  border: 2px solid white;
}
.no-entries > .no-entries__content > i:not(.secondary-icon) {
  margin: 0 -2.5rem 3rem;
  position: relative;
  top: 0.5rem;
  z-index: 1;
  background-color: #8A8F97;
}
.no-entries > .no-entries__content > i.secondary-icon {
  font-size: 3.5rem;
  width: 9rem;
  height: 9rem;
  line-height: 8.5rem;
}
.no-entries h3 {
  font-size: 2rem;
  padding-bottom: 1rem;
}
.no-entries p {
  font-size: 1.3rem;
  max-width: 52rem;
  margin: 0 auto 2rem;
}
.no-entries p i {
  font-size: 1.2rem;
}

.scroll-nav-offset {
  height: 5.6rem;
  position: absolute;
  top: -5.6rem;
}
@media only screen and (max-width: 1024px) {
  .scroll-nav-offset {
    top: 0;
    height: 0;
  }
}

.hdr-w-underline {
  padding-bottom: 1.6rem;
  position: relative;
}
.hdr-w-underline:after {
  content: "";
  width: 6.4rem;
  height: 3px;
  border-radius: 1px;
  position: absolute;
  background-color: #0684d7;
  bottom: 0;
  left: 0;
}
.hdr-w-underline.center {
  margin: 0 auto;
}
.hdr-w-underline.center:after {
  margin: auto;
  right: 0;
}

.user-action {
  background: #585f69;
  width: 2.56rem;
  height: 2.56rem;
  line-height: 2.72rem;
  font-size: 1.25rem;
  text-align: center;
  overflow: hidden;
  border-radius: 1px;
  margin: 0 2px 0 0;
  color: #fff;
  border: none;
  display: inline-block;
  cursor: pointer !important;
  vertical-align: middle;
  text-decoration: none !important;
  overflow: hidden;
  font-weight: 700;
}
@media only screen and (min-width: 1025px) {
  .user-action {
    -webkit-transition: background 0.2s ease-out;
    -moz-transition: background 0.2s ease-out;
    -o-transition: background 0.2s ease-out;
    transition: background 0.2s ease-out;
  }
}
.user-action > span {
  display: none;
  margin-left: 0.4rem;
}
.user-action.has-label {
  width: auto;
  padding: 0 0.8rem;
}
.user-action.has-label > span {
  display: inline-block;
}
.user-action.disabled {
  -webkit-filter: grayscale(100);
  filter: grayscale(100);
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
}
.user-action:last-child {
  margin-right: 0;
}
.user-action:before {
  font-family: "Font Awesome 5 Pro";
  display: inline-block;
}
.user-action i.pti {
  color: #fff;
  font-size: inherit;
  margin: 0;
}
.user-action:hover {
  background: #585f69;
  color: #fff;
}
.user-action.main-action {
  background: #e6e9eb !important;
  color: #343C48 !important;
}
.user-action.main-action:hover {
  background: #fff !important;
}
.user-action.user-like {
  background: #fff;
  color: #EF452F;
}
.user-action.user-like:before {
  content: "\f004";
  color: #EF452F;
}
.user-action.user-like:hover {
  background: #fff !important;
  color: #EF452F !important;
}
.user-action.user-like:hover:before {
  color: #EF452F !important;
}
.user-action.user-like.action-active {
  background: #EF452F !important;
  color: #fff !important;
}
.user-action.user-like.action-active:before {
  color: #fff !important;
}
.user-action.user-tag {
  background: #fff;
  color: #0684d7;
}
.user-action.user-tag:before {
  content: "\f02b";
  color: #0684d7;
  font-size: 1.48rem;
}
.user-action.user-tag:hover {
  background: #fff !important;
  color: #0684d7 !important;
}
.user-action.user-tag:hover:before {
  color: #0684d7 !important;
}
.user-action.user-tag.action-active {
  background: #0684d7 !important;
  color: #fff !important;
}
.user-action.user-tag.action-active:before {
  color: #fff !important;
}
.user-action.user-bookmark {
  background: #fff;
  color: #0684d7;
}
.user-action.user-bookmark:before {
  content: "\f02e";
  color: #0684d7;
}
.user-action.user-bookmark:hover {
  background: #fff !important;
  color: #0684d7 !important;
}
.user-action.user-bookmark:hover:before {
  color: #0684d7 !important;
}
.user-action.user-bookmark.action-active {
  background: #0684d7 !important;
  color: #fff !important;
}
.user-action.user-bookmark.action-active:before {
  color: #fff !important;
}
.user-action.user-quote {
  background: #00a57a;
  color: #fff !important;
}
.user-action.user-edit {
  background: #0684d7;
  color: #fff !important;
}
.user-action.user-edit:before {
  content: "\f040";
}
.user-action.user-delete {
  background: #EF452F;
  color: #fff !important;
}
.user-action.user-delete:before {
  content: "\f00d";
}
.user-action.admin-feature {
  background: #fff;
}
.user-action.admin-feature:before {
  content: "\f005";
  color: #ef7c22;
}
.user-action.admin-feature:hover {
  background: #fff !important;
  color: #ef7c22 !important;
}
.user-action.admin-feature:hover:before {
  color: #ef7c22 !important;
}
.user-action.admin-feature.action-active {
  background: #ef7c22 !important;
  color: #fff !important;
}
.user-action.admin-feature.action-active:before {
  color: #fff !important;
}
.user-action.add-list:before {
  content: "\f192";
  display: inline-block;
}
.user-action.company-enquiry:before {
  content: "\f0e5";
}
.user-action.invite-tender:before {
  content: "\f090";
}
.user-action.user-action-list:before {
  content: "\f0c9";
}
.user-action.admin-action-list:before {
  content: "\f013";
}

@media only screen and (max-width: 1024px) {
  .user-action-list,
  .admin-action-list {
    display: none;
  }
}
.user-action-list + .f-dropdown.content,
.admin-action-list + .f-dropdown.content {
  min-width: 12.4rem;
  max-width: 12.4rem;
}
.user-action-list + .f-dropdown.content.open,
.admin-action-list + .f-dropdown.content.open {
  left: auto !important;
  right: -0.4rem !important;
  top: 3.2rem !important;
}
.user-action-list + .f-dropdown.content ul > li > a,
.admin-action-list + .f-dropdown.content ul > li > a {
  padding: 0 0.8rem 0 0 !important;
  position: relative;
  height: 2.72rem;
  line-height: 2.72rem;
}
.user-action-list + .f-dropdown.content ul > li > a:before,
.admin-action-list + .f-dropdown.content ul > li > a:before {
  font-family: "Font Awesome 5 Pro";
  font-size: 1.15rem;
  width: 2.4rem;
  display: inline-block !important;
  text-align: center;
  top: auto;
  left: auto;
  margin: 0 0 0 0.32rem;
}
.user-action-list + .f-dropdown.content ul > li > a.company-enquiry:before,
.admin-action-list + .f-dropdown.content ul > li > a.company-enquiry:before {
  content: "\f0e5";
}
.user-action-list + .f-dropdown.content ul > li > a.invite-tender:before,
.admin-action-list + .f-dropdown.content ul > li > a.invite-tender:before {
  content: "\f090";
}
.user-action-list + .f-dropdown.content ul > li > a.add-list:before,
.admin-action-list + .f-dropdown.content ul > li > a.add-list:before {
  content: "\f192";
}
.user-action-list + .f-dropdown.content ul > li > a.admin-edit:before,
.admin-action-list + .f-dropdown.content ul > li > a.admin-edit:before {
  content: "\f040";
}
.user-action-list + .f-dropdown.content ul > li > a.admin-delete:before,
.admin-action-list + .f-dropdown.content ul > li > a.admin-delete:before {
  content: "\f014";
}
.user-action-list + .f-dropdown.content ul > li > a.admin-duplicate:before,
.admin-action-list + .f-dropdown.content ul > li > a.admin-duplicate:before {
  content: "\f08e";
}
.user-action-list + .f-dropdown.content ul > li > a.admin-link:before,
.admin-action-list + .f-dropdown.content ul > li > a.admin-link:before {
  content: "\f0c1";
}

.open-office-location {
  top: 7.6rem !important;
  right: 3.2rem !important;
}

.edit-controls {
  position: absolute;
  text-align: right;
  z-index: 99;
  top: 0.8rem;
  right: 1.12rem;
}
.edit-controls .edit-controls {
  position: static !important;
}
.edit-controls div {
  display: inline-block;
}
.edit-controls > a {
  text-decoration: none !important;
  display: inline-block;
}
.edit-controls > a i {
  display: inline-block;
  border: none;
  background: #585f69;
  width: 2.4rem;
  height: 2.32rem;
  padding-top: 0.4rem;
  font-size: 1.3rem;
  text-align: center;
  overflow: hidden;
  border-radius: 1px;
  margin: 0;
  color: #fff;
}
.edit-controls > a i:hover {
  text-decoration: none;
  border-color: #0684d7;
  background: #0684d7;
  color: #fff;
}
.edit-controls > a i.pt-delete:hover {
  background-color: #EF452F;
}
.edit-controls > a i.pt-delete:hover:before {
  color: #fff;
}
.edit-controls > a + .edit-controls {
  margin-left: 0.48rem;
}
.edit-controls.inline {
  position: relative;
  right: auto;
  top: 0.48rem;
  left: 0.4rem;
}
.edit-controls.inline a {
  bottom: auto;
}
.edit-controls.inline a i {
  width: 1.92rem;
  height: 1.84rem;
  font-size: 1.25rem;
}
.edit-controls.light a i {
  background: #d1d2d3;
}
@media only screen and (max-width: 1024px) {
  .edit-controls a i {
    width: 2.56rem;
    height: 2.56rem;
    padding-top: 0.4rem;
    font-size: 1.5rem;
    margin: 0 0 0 0.4rem;
  }
  .edit-controls.inline {
    top: 0.56rem;
  }
  .edit-controls.inline a {
    bottom: auto;
  }
  .edit-controls.inline a i {
    width: 2.56rem;
    height: 2.56rem;
    padding-top: 0.4rem;
    font-size: 1.5rem;
    margin: 0 0 0 0.4rem;
  }
}

.form-container, .edit-container {
  background-color: #fff;
  padding: 2rem;
  border: 1px solid #d1d2d3;
  border-radius: 1px;
}

.edit-container {
  display: none;
}

.row.section-header {
  padding-bottom: 0;
  margin: 0 0 0.8rem;
  overflow: hidden;
}
.row.section-header h4 {
  font-weight: bold;
  font-size: 1.3rem;
  color: #343C48;
  text-transform: uppercase;
  text-align: left;
  padding: 0;
  line-height: 2.8rem;
}
.row.section-header h4.icon-header {
  line-height: 2.88rem;
  margin-left: 2.4rem;
  margin-top: 0.56rem;
}
.row.section-header h4.icon-header:before {
  margin-top: 0;
  margin-left: 0.16rem;
  color: #343C48;
  font-size: 1.76rem;
  font-family: "Font Awesome 5 Pro";
  display: inline-block;
}
.row.section-header .button {
  margin-bottom: 0;
}
.row.section-header {
  /* max-width 640  ===/ MOBILE /===  */
}
@media only screen and (max-width: 640px) {
  .row.section-header {
    height: 3.2rem;
  }
  .row.section-header h4 {
    font-size: 1.5rem;
  }
  .row.section-header h4.icon-header {
    line-height: 2.56rem;
    margin-left: 2.24rem;
  }
  .row.section-header h4.icon-header:before {
    font-size: 1.5rem;
  }
}

.no-data {
  color: #6c727a;
  font-size: 1.2rem;
}

a.section, .section {
  position: relative;
  display: block;
  background: white;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 1px;
  border: 1px solid #d1d2d3;
}
a.section.with-icon:before, .section.with-icon:before {
  font-family: "fontAwesome";
  margin-right: 0.5rem;
  color: #343C48;
  font-size: 1.6rem;
  position: relative;
  top: 1px;
}
a.section.no-data, .section.no-data {
  background: rgba(209, 210, 211, 0.125);
  box-shadow: none;
  border-style: dashed;
  padding: 1.5rem;
  font-size: 1.25rem;
  color: #585f69 !important;
}
a.section.cta-msg, .section.cta-msg {
  padding: 1.5rem;
  background-color: #fff9e1 !important;
}
a.section#tasks-box, .section#tasks-box {
  background-color: white;
}
a.section.invitations-box, .section.invitations-box {
  background-color: white;
}
a.section#tasks-box, a.section.invitations-box, a.section#notifications-box, .section#tasks-box, .section.invitations-box, .section#notifications-box {
  padding-bottom: 1rem;
}
a.section#tasks-box .right, a.section.invitations-box .right, a.section#notifications-box .right, .section#tasks-box .right, .section.invitations-box .right, .section#notifications-box .right {
  float: right;
}
a.section#tasks-box h6, a.section.invitations-box h6, a.section#notifications-box h6, .section#tasks-box h6, .section.invitations-box h6, .section#notifications-box h6 {
  text-transform: uppercase;
  font-size: 1.25rem;
  padding-bottom: 0.5rem;
}
a.section.light-bg, .section.light-bg {
  background: #f2f5f6;
}
a.section.green-bg, .section.green-bg {
  background: #e5f8f3;
}
a.section.yellow-bg, .section.yellow-bg {
  background: #fff9e1;
}
a.section.blue-bg, .section.blue-bg {
  background: #e9f5fc;
}
a.section.dark, .section.dark {
  background-color: #e6e9eb;
}
a.section.black, .section.black {
  background-color: #585f69;
}
a.section.info, .section.info {
  background: #e9f5fc;
}
a.section.info.yellow, .section.info.yellow {
  background: #fff9e1;
}
a.section.info > .pti.pti-big, .section.info > .pti.pti-big {
  color: #585f69;
}
a.section.info > .pti.pti-big .pti, .section.info > .pti.pti-big .pti {
  color: #e9f5fc;
}
a.section > .pti.pti-big, .section > .pti.pti-big {
  float: left;
}
a.section > .pti.pti-big + .section-content, .section > .pti.pti-big + .section-content {
  margin-left: 65px;
}
a.section > .pti.pti-big + .section-content:after, .section > .pti.pti-big + .section-content:after {
  content: "";
  clear: both;
  display: block;
}
a.section > .section-content p, .section > .section-content p {
  margin: 0 0 0.64rem;
}
a.section > .section-content p.bold, .section > .section-content p.bold {
  font-weight: bold;
}
a.section .subsection, .section .subsection {
  padding-left: 2.4rem;
}
a.section .subsection p, .section .subsection p {
  margin: 0 0 0.64rem;
}
a.section .subsection + h5, .section .subsection + h5 {
  margin-top: 2.4rem;
}

a.section.no-data:hover {
  background: #0684d7;
  border: 1px solid #0684d7;
  color: #fff !important;
  text-decoration: none;
}

.box-header {
  position: relative;
  border: 1px solid #d1d2d3;
  background-color: #cdd2d6;
  border-radius: 1px;
  padding: 0.32rem 0.56rem;
  height: 3.36rem;
  margin-bottom: 2rem;
  overflow: hidden;
}
.box-header h4, .box-header h5 {
  padding: 0;
  line-height: 2.72rem;
}
.box-header h4.icon-header, .box-header h5.icon-header {
  line-height: 2.24rem;
}

.height-auto {
  height: auto;
}

.icon-header:before {
  font-family: "Font Awesome 5 Pro";
  content: "";
  left: 0;
  position: absolute;
  font-weight: 400;
  color: #343C48;
}

/* ----------------------------- */
/* ***** SHARED COMPONENTS ***** */
/* ----------------------------- */
.image-input {
  width: 6.4rem;
  min-height: 6.4rem;
  background-color: white;
  border: 1px solid #d1d2d3;
  align-items: center;
  overflow: hidden;
  border-radius: 2px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.image-input.no-image {
  border-style: dashed;
  cursor: pointer;
}
.image-input.no-image:before {
  margin: auto;
  font-family: "Font Awesome 5 Pro";
  content: "\f03e";
  font-size: 2.2rem;
  font-weight: 300;
  color: #cdd2d6;
}
.image-input.no-image:hover {
  border-style: solid;
  border-color: #0684d7;
}

.selectize-control.multi .selectize-input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.tag__item {
  border-radius: 1.3rem;
  width: auto;
  max-width: 100%;
  margin: 0.25rem 0.5rem 0.25rem 0;
  padding: 0.25rem 1.25rem !important;
  line-height: 1.5;
  background: #e6e9eb !important;
  color: #343C48;
  font-size: 1.25rem;
  display: inline-block;
  box-shadow: none;
  text-shadow: none;
  white-space: normal;
  word-wrap: break-word;
  border: none;
}

.tags-wrapper {
  padding: 0;
  position: relative;
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.tags-wrapper > span {
  padding: 0.48rem 0.48rem 0 0;
  white-space: nowrap;
}
.tags-wrapper .seamless {
  max-width: 100%;
  display: inline-block;
}
.tags-wrapper .seamless > .tags {
  border-color: transparent;
}
.tags-wrapper .seamless .selectize-control .selectize-input {
  background-color: transparent !important;
  border-color: transparent !important;
  min-width: 14.4rem;
  max-width: 100%;
  line-height: 2.8rem !important;
}
.tags-wrapper .seamless .selectize-control .selectize-input.has-items {
  padding-right: 2.4rem !important;
}
.tags-wrapper .seamless .selectize-control .selectize-input:hover {
  border: 1px dashed #0684d7 !important;
  background: transparent !important;
}
.tags-wrapper .seamless .selectize-control .selectize-input:hover::after {
  content: "\f040";
  font-family: "Font Awesome 5 Pro";
  font-size: 1.28rem;
  font-weight: 300;
  position: absolute;
  top: 0.6rem;
  right: 0;
  margin-right: 0.56rem;
  color: #0684d7;
}
.tags-wrapper .seamless .selectize-control .selectize-input.focus {
  border: 1px solid #0684d7 !important;
  background: transparent !important;
}
.tags-wrapper .seamless .selectize-control .selectize-input > input {
  max-width: 100%;
}
.tags-wrapper .seamless .selectize-control .selectize-input > input::-webkit-input-placeholder {
  color: #0684d7;
  font-weight: normal;
  opacity: 1;
}
.tags-wrapper .seamless .selectize-control .selectize-input > input::-moz-placeholder {
  color: #0684d7;
  font-weight: normal;
  opacity: 1;
}
.tags-wrapper .seamless .selectize-control .selectize-input > input:-ms-input-placeholder {
  color: #0684d7;
  font-weight: normal;
  opacity: 1;
}
.tags-wrapper .seamless .selectize-control .selectize-input > input:-moz-placeholder {
  color: #0684d7;
  font-weight: normal;
  opacity: 1;
}
.tags-wrapper .seamless .selectize-control.multi {
  margin-bottom: 0;
}
.tags-wrapper .seamless .selectize-control .selectize-dropdown .tag-option {
  padding-right: 8px !important;
  word-wrap: break-word;
  text-align: left !important;
}
.tags-wrapper .seamless .selectize-control .selectize-dropdown .tag-option:hover .right i {
  color: #343C48;
}
.tags-wrapper .seamless .selectize-control .selectize-dropdown .tag-option span {
  word-wrap: break-word;
}
.tags-wrapper .seamless .selectize-control .selectize-dropdown .tag-option .right {
  text-align: center;
  width: 1.6rem;
}
.tags-wrapper .seamless .selectize-control .selectize-dropdown .tag-option .right i {
  color: #6c727a;
  font-size: 1.1rem;
  margin: 0;
}
.tags-wrapper .seamless .selectize-control .selectize-dropdown .create strong {
  display: inline-block;
  word-wrap: break-word;
  max-width: 100%;
}
.tags-wrapper .seamless .selectize-control .selectize-dropdown .manage-link {
  text-align: center;
  background: #f2f5f6;
  color: #0684d7;
  line-height: 2.8rem;
  padding: 5px 8px;
  border-top: 1px solid #d1d2d3;
}
.tags-wrapper .seamless .selectize-control .selectize-dropdown .manage-link a {
  padding: 0;
  color: #0684d7;
}
.tags-wrapper .seamless .selectize-control .selectize-dropdown [data-selectable] .highlight {
  background: #fff9e1;
}
.tags-wrapper .seamless.product .selectize-control {
  margin-top: 0.16rem;
}

.expandable-block {
  position: relative;
}
.expandable-block .hidden-content {
  display: none;
}
.expandable-block .collapse + .hidden-content {
  display: block;
}
.expandable-block .toggle-expand {
  cursor: pointer;
}
.expandable-block .toggle-content-btn:before {
  font-family: "fontAwesome";
  font-size: 1.25rem;
  color: #343C48;
  vertical-align: middle;
  margin-right: 0.25rem;
  content: "\f196";
}
.expandable-block .toggle-content-btn.expand:before {
  content: "\f196" !important;
}
.expandable-block .toggle-content-btn.collapse:before {
  content: "\f147" !important;
}
.expandable-block.expanded .toggle-content-btn:before {
  content: "\f147";
}
.expandable-block.expanded .hidden-content {
  display: block;
}

/*  slideToggle (open/close) */
.expand-box, .expand-box-prev {
  display: none;
}

.expand-handle, .expand-handle-prev {
  cursor: pointer;
}
.expand-handle i.pti, .expand-handle-prev i.pti {
  font-size: 1.15rem;
  line-height: 1;
  margin-left: 0.24rem;
  margin-top: 0.32rem;
}
.expand-handle i.pti:before, .expand-handle-prev i.pti:before {
  line-height: auto;
}
.expand-handle:hover, .expand-handle-prev:hover {
  text-decoration: none;
}
.expand-handle:hover i.pti, .expand-handle-prev:hover i.pti {
  text-decoration: none;
  color: #0684d7;
}
.expand-handle a:hover, .expand-handle-prev a:hover {
  text-decoration: none !important;
}

.expand-handle.open + .expand-box {
  display: block;
}

/* tabs */
div.pt-tabs ul {
  margin: 0;
  padding: 0;
  border: 1px solid #f2f5f6;
  border-bottom-color: #6c727a;
  background-color: #cdd2d6;
  background-image: -moz-linear-gradient(top, #d1d2d3, #cdd2d6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#d1d2d3), to(#cdd2d6));
  background-image: -webkit-linear-gradient(top, #d1d2d3, #cdd2d6);
  background-image: -o-linear-gradient(top, #d1d2d3, #cdd2d6);
  background-image: linear-gradient(to bottom, #d1d2d3, #cdd2d6);
  background-repeat: repeat-x;
  filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='argb(#d1d2d3)', endColorstr='argb(#cdd2d6)', GradientType=0)";
  border-radius: 1px;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
}
div.pt-tabs ul li {
  display: table-cell;
  border-left: 1px solid #d1d2d3;
  border-right: 1px solid #e6e9eb;
  border-left-color: #f2f5f6;
  margin: 0;
}
div.pt-tabs ul li a {
  display: block;
  color: #101a28;
  padding: 1.6rem 3.52rem;
  /* min-width 641px */
}
@media only screen and (min-width: 641px) {
  div.pt-tabs ul li a {
    padding: 1.6rem 2.96rem;
  }
}
div.pt-tabs ul li a {
  font-size: 1.3rem;
  font-weight: 700;
}
div.pt-tabs ul li:first-child {
  border-left: none;
}
div.pt-tabs ul li:first-child a {
  border-top-left-radius: 1px;
  border-bottom-left-radius: 1px;
}
div.pt-tabs ul li:hover {
  border-left-color: #cdd2d6;
}
div.pt-tabs ul li:hover a {
  background-color: #6c727a;
  background-image: -moz-linear-gradient(top, #d1d2d3, #6c727a);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#d1d2d3), to(#6c727a));
  background-image: -webkit-linear-gradient(top, #d1d2d3, #6c727a);
  background-image: -o-linear-gradient(top, #d1d2d3, #6c727a);
  background-image: linear-gradient(to bottom, #d1d2d3, #6c727a);
  background-repeat: repeat-x;
  filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='argb(#d1d2d3)', endColorstr='argb(#6c727a)', GradientType=0)";
}
div.pt-tabs ul li.selected {
  border-left-color: #e9f5fc;
}
div.pt-tabs ul li.selected a {
  background-color: #0684d7;
  background-image: -moz-linear-gradient(top, #e9f5fc, #0684d7);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e9f5fc), to(#0684d7));
  background-image: -webkit-linear-gradient(top, #e9f5fc, #0684d7);
  background-image: -o-linear-gradient(top, #e9f5fc, #0684d7);
  background-image: linear-gradient(to bottom, #e9f5fc, #0684d7);
  background-repeat: repeat-x;
  filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='argb(#e9f5fc)', endColorstr='argb(#0684d7)', GradientType=0)";
  position: relative;
}
div.pt-tabs ul li.selected a:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f0d7";
  position: absolute;
  left: 50%;
  margin-left: -0.8rem;
  top: 89%;
  color: #0684d7;
  font-size: 2.4rem;
  line-height: auto;
  transform: scale(2, 1);
  -webkit-transform: scale(2, 1);
  text-shadow: 1px 1px 0 rgba(16, 26, 40, 0.1);
}

/* Spinner / Loader */
.spinner {
  height: 36px !important;
  width: 36px !important;
  margin: 0 auto;
  position: relative;
  -webkit-animation: rotation 0.6s infinite linear;
  -moz-animation: rotation 0.6s infinite linear;
  -o-animation: rotation 0.6s infinite linear;
  animation: rotation 0.6s infinite linear;
  border-left: 8px solid rgba(255, 255, 255, 0.2);
  border-right: 8px solid rgba(255, 255, 255, 0.2);
  border-bottom: 8px solid rgba(255, 255, 255, 0.2);
  border-top: 8px solid #0684d7;
  border-radius: 100%;
}
.spinner.dark {
  border-left: 6px solid #f2f5f6;
  border-right: 6px solid #f2f5f6;
  border-bottom: 6px solid #f2f5f6;
  border-top: 6px solid #0684d7;
}
.spinner.small {
  height: 30px !important;
  width: 30px !important;
}
.spinner.thin {
  border-left-width: 4px;
  border-right-width: 4px;
  border-bottom-width: 4px;
  border-top-width: 4px;
}

.spinner-center {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 4000;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@-moz-keyframes rotation {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}
@-o-keyframes rotation {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(359deg);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
ul.check-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ul.check-list li {
  display: block;
  padding: 0;
}
ul.check-list li:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f00c";
  margin-right: 0.56rem;
  color: #6c727a;
}
ul.check-list li.completed:before {
  color: #00a57a;
}
ul.check-list li.rejected:before {
  content: "\f00d";
  color: #EF452F;
}
ul.check-list.blue li {
  position: relative;
  padding-left: 2.08rem;
  padding-bottom: 0.16rem;
}
ul.check-list.blue li:before {
  color: #0684d7;
  left: 0;
  top: 2px;
  position: absolute;
}

.f-dropdown.content {
  outline: none;
  min-width: 16rem;
  max-width: 30rem;
  font-size: 1.25rem;
  margin: 0;
  padding: 0;
  border: 1px solid #cdd2d6;
  box-shadow: 0px 2px 3px 0px rgba(16, 26, 40, 0.2);
  border-radius: 1px;
  text-align: left;
  z-index: 550;
}
.f-dropdown.content.groups {
  margin-top: 8px;
}
.f-dropdown.content.groups li:first-child {
  border-top-left-radius: 1px;
  border-top-right-radius: 1px;
}
.f-dropdown.content.open:before, .f-dropdown.content.open:after {
  display: none;
}
.f-dropdown.content.groups.open:before {
  border-width: 8px;
  display: block;
  border-bottom-color: #d1d2d3;
  top: -15px;
}
.f-dropdown.content ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.f-dropdown.content ul li {
  display: block;
  border-top: 1px solid #cdd2d6;
  padding: 0;
}
.f-dropdown.content ul li.dd-header {
  background: #e6e9eb;
  border-top: none;
  padding: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}
.f-dropdown.content ul li a {
  color: #343C48;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 400;
  padding: 1rem;
  background-color: #fff;
}
.f-dropdown.content ul li a:before {
  font-family: "Font Awesome 5 Pro";
  position: relative;
  top: 50%;
  left: 0;
  color: #343C48;
  font-size: 1.5rem;
  margin-right: 0.35rem;
}
.f-dropdown.content ul li a i {
  margin-right: 0.35rem;
}
.f-dropdown.content ul li:hover a {
  color: #101a28;
  background-color: #fff9e1;
  text-decoration: none !important;
}
.f-dropdown.content ul.arrow-top li:first-child {
  border-top: none !important;
}
.f-dropdown.content ul.arrow-top li:first-child:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  border-color: transparent transparent #fff transparent;
  border-bottom-style: solid;
  position: absolute;
  top: -12px;
  left: auto;
  right: 9px;
  z-index: 89;
  border-bottom-color: #fff;
}
.f-dropdown.content ul.arrow-top li:first-child:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 7px;
  border-color: transparent transparent #bec0c4 transparent;
  border-bottom-style: solid;
  position: absolute;
  top: -14px;
  left: auto;
  right: 8px;
  z-index: 88;
}
.f-dropdown.content ul.arrow-top li:first-child:hover:before {
  border-bottom-color: #fff9e1;
}

.pt-pill, a.pt-pill {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  display: inline-block;
  border-radius: 1px;
  font-size: 1.25rem;
  padding: 0 0.64rem;
  height: 2.24rem;
  line-height: 2.08rem;
  margin-left: 0.24rem;
  cursor: default;
  color: inherit;
  text-decoration: none !important;
}
.pt-pill:first-child, a.pt-pill:first-child {
  margin: 0;
}

ul.pt-pill-list {
  padding: 0 !important;
  position: relative;
  top: -0.4rem;
}
ul.pt-pill-list li {
  padding: 0 0.8rem 0.8rem 0;
  list-style: none;
}
ul.pt-pill-list li .pt-pill {
  background-color: #0684d7;
  border-radius: 1px;
  position: relative;
  color: #fff;
}
ul.pt-pill-list li .pt-pill span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  width: 70%;
  max-height: 2.24rem;
  line-height: 2.24rem;
}
ul.pt-pill-list li .pt-pill i {
  position: absolute;
  right: 0.64rem;
  top: 0.4rem;
  cursor: pointer;
  color: #fff;
}
ul.pt-pill-list li .pt-pill.tag {
  padding-right: 1.6rem !important;
  height: 2.64rem;
  width: 100%;
  line-height: 2.56rem;
}
ul.pt-pill-list li .pt-pill.tag span {
  max-height: 2.56rem;
  line-height: 2.56rem;
}
ul.pt-pill-list li .pt-pill.tag i {
  position: absolute;
  height: 2.56rem;
  line-height: 2.56rem;
  width: 1.6rem;
  top: 0.08rem;
  text-align: center;
  cursor: pointer;
}
ul.pt-pill-list li:hover .pt-pill {
  background-color: #0684d7;
}
@media only screen and (max-width: 1024px) {
  ul.pt-pill-list li .pt-pill {
    height: 3.04rem;
    max-height: 3.04rem;
  }
  ul.pt-pill-list li .pt-pill span {
    padding: 0 0.8rem;
    height: 3.04rem;
    max-height: 3.04rem;
    line-height: 3.2rem;
  }
  ul.pt-pill-list li .pt-pill i {
    top: 0.8rem;
    right: 0.8rem;
  }
}
ul.pt-pill-list.small-block-grid-3 li {
  width: auto !important;
}
ul.pt-pill-list.small-block-grid-3 li .pt-pill {
  padding-right: 1.6rem;
}
ul.pt-pill-list.small-block-grid-3 li .pt-pill span {
  width: 100%;
}

.trial-box {
  border-radius: 1px;
  padding: 4rem 0 2rem 0;
  margin: 0 0 4.8rem 0;
  background: #0684d7 url("/assets/protenders/mouse-95c41683.png") 4.8rem top no-repeat;
  background-size: auto 90%;
  text-shadow: 1px 1px 0 rgba(16, 26, 40, 0.1);
}
.trial-box h1 {
  color: #fff;
}
.trial-box p {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0;
}
.trial-box .form {
  position: relative;
  margin-top: 3.6rem;
}
.trial-box .form img#circ-arrow-orange {
  position: absolute;
  top: -0.96rem;
  left: -9.6rem;
}

.pt-hint {
  display: inline-block;
  border-radius: 100%;
  color: #343C48 !important;
  font-size: 1.28rem;
  line-height: inherit;
  margin-left: 0.4rem;
}
.pt-hint:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f059";
  line-height: 1;
  display: block;
  position: relative;
  top: -1px;
}
.pt-hint:hover {
  color: #343C48;
}

.avatar {
  display: block;
  overflow: hidden;
  background: #fff;
  border-radius: 100%;
  line-height: normal;
  position: relative;
}
.avatar > img {
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
}
.avatar.small {
  width: 3.2rem;
  height: 3.2rem;
}
.avatar + *[class*=name] {
  font-weight: bold;
}
.avatar.company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  border: 3px solid transparent;
  box-shadow: none;
  text-align: center;
  background-color: #fff;
}

.table-company-logo {
  display: inline-block;
}
.table-company-logo img {
  width: 3rem;
  height: auto;
}
.table-company-logo + .company-name {
  margin-left: 1rem;
}

.bubble {
  font-size: 1.12rem !important;
  padding: 1rem;
  font-style: normal;
  font-weight: normal;
  border-radius: 1px;
  background: white;
  margin: 0.5rem 0 0;
  position: relative;
  z-index: 88;
  min-width: 19.2rem;
  box-shadow: 0px 2px 3px 0px rgba(16, 26, 40, 0.2);
}
.bubble:before {
  border: inset 5px;
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-color: transparent transparent white transparent;
  border-bottom-style: solid;
  position: absolute;
  z-index: 88;
  left: auto;
  right: auto;
  border-width: 12px !important;
  top: -20px;
}
.bubble.right {
  right: -2px;
}
.bubble.right:before {
  right: 8px;
  left: auto;
}
.bubble label.custom-checkbox {
  vertical-align: middle;
}
.bubble label.custom-checkbox > * {
  vertical-align: middle;
}

.bubble-count {
  position: relative;
  display: inline-block;
  min-width: 1.6rem;
  height: 1.6rem;
  top: -1px;
  margin-left: 0.24rem;
  border-radius: 3.2rem;
  background: #EF452F;
  color: white;
  font-size: 0.88rem;
  line-height: 1.6rem;
  font-weight: 700;
  padding: 0 0.56rem;
}

/* Error Messages */
@keyframes alertSlide {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.alert-box {
  position: fixed;
  font-weight: 700;
  z-index: 1000;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  font-size: 1.25rem;
  text-align: center;
  box-shadow: none;
  padding: 1.2rem 1.6rem 0.8rem 4rem;
  border: none !important;
}
.alert-box:not(.relative) {
  margin: 0;
}
.alert-box:not(.relative):not(.position-fixed) {
  animation: 1s ease-in 0s 1 alertSlide;
}
.alert-box i.pti {
  margin-left: 0;
  margin-right: 0.4rem;
  color: #fff;
}
.alert-box.relative {
  font-weight: normal;
  border-radius: 0.5rem;
  font-size: 1.25rem;
  padding: 1rem 1.5rem;
  text-align: left;
  right: auto;
  left: auto;
  bottom: auto;
  z-index: 0;
}
.alert-box.relative i {
  margin-left: 0;
  margin-right: 0.4rem;
  color: inherit;
  line-height: inherit;
  width: auto;
}
.alert-box.relative a.close {
  display: none;
}
.alert-box.relative.error, .alert-box.relative.alert {
  background-color: #ffdddd;
  color: #EF452F;
  border: 1px solid rgba(239, 69, 47, 0.3) !important;
}
.alert-box.error, .alert-box.alert {
  background-color: #EF452F;
  border-radius: none;
}
.alert-box.error div b, .alert-box.alert div b {
  font-size: 1.92rem;
  font-weight: 700;
  line-height: 3.2rem;
}
.alert-box.error.relative, .alert-box.alert.relative {
  background-color: #ffdddd;
  color: #EF452F;
  border: 1px solid rgba(239, 69, 47, 0.1) !important;
}
.alert-box.success {
  background-color: #00a57a;
  margin-bottom: 0;
}
.alert-box.success a {
  color: inherit;
  text-decoration: underline;
}
.alert-box.success.relative {
  background-color: #00a57a;
}
.alert-box.warning {
  background-color: #f6ad21;
  margin-bottom: 0;
}
.alert-box.warning.relative {
  background-color: #fff9e1;
  color: #101a28;
  border: 1px solid rgba(246, 173, 33, 0.3) !important;
}
.alert-box.notice {
  background-color: #EF452F;
  text-align: left;
}
.alert-box.notice a {
  color: inherit;
  text-decoration: underline;
}
.alert-box.notice .pti:before {
  color: inherit;
  margin-left: 0;
  margin-right: 0.8rem;
  font-size: 1.92rem;
}
.alert-box h2 {
  color: #343C48;
  font-size: 2.4rem;
}
.alert-box h3 {
  font-size: 1.3rem;
  padding: 0;
}
.alert-box p {
  margin: 0;
}
.alert-box a.close {
  padding-top: 0;
  margin-top: -0.88rem;
  opacity: 0.8;
}
.alert-box a.close .pt-cancel {
  margin-left: 0;
  font-size: 1.92rem;
  color: #fff;
}
.alert-box a.close:hover {
  opacity: 1;
  text-decoration: none;
}
.alert-box .item-detail .item-title {
  margin: 0;
}
.alert-box.button-alert {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #343C48;
}
.alert-box.info {
  border: 1px solid #d1d2d3 !important;
  background-color: rgba(6, 132, 215, 0.03);
  position: relative;
  font-size: 1.3rem;
  font-weight: normal;
  color: #585f69;
}
.alert-box.info h3 {
  color: #343C48;
}
.alert-box.info button i {
  font-size: 1.4rem;
  margin-right: 0.7rem;
}
.alert-box.subscription {
  color: #101a28;
  background-color: #fff9e1;
  position: relative;
  box-shadow: 2px 2px 4px rgba(16, 26, 40, 0.12);
}
.alert-box.subscription i {
  font-size: 1.8rem;
  margin-right: 1rem;
}
.alert-box.sticky {
  position: sticky;
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  top: 1rem;
  z-index: 999;
}
.alert-box.on-center {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  max-width: 87rem;
  margin: 0 auto;
}
.alert-box .alert-details-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

#overview-details {
  margin-bottom: 2rem;
}
#overview-details .ico-label:before {
  font-family: "Font Awesome 5 Pro";
  border-radius: 1px;
  margin-right: 0.56rem;
  border: 1px solid transparent;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  display: inline-block;
  width: 26px;
  height: 26px;
  line-height: 25px;
  margin-bottom: 0.5rem;
}
#overview-details .location:before {
  background: #e6e9eb;
  content: "\f041";
  color: #343C48;
  border-color: #cdd2d6;
}
#overview-details .sector:before {
  background: #fff;
  color: #343C48;
  border-color: #cdd2d6;
}
#overview-details .status.ongoing:before {
  background-color: #c2468a !important;
  content: "\f01d" !important;
}
#overview-details .status.completed:before {
  background-color: #00a57a;
  content: "\f00c";
}
#overview-details .status.planning:before, #overview-details .status.in_planning:before {
  content: "\f0eb";
  background-color: #0684d7;
}
#overview-details .status.tender:before, #overview-details .status.in_tender:before {
  background-color: #f6ad21;
  content: "\f15c";
}
#overview-details .status.under_design:before, #overview-details .status.in_design:before {
  background-color: #175894;
  content: "\f040";
}
#overview-details .status.under_construction:before {
  background-color: #ef7c22;
  content: "\f0ad";
}
#overview-details .status.on_hold:before, #overview-details .status.on-hold:before {
  background-color: #6557b9;
  content: "\f28b";
}
#overview-details .status.cancelled:before {
  background-color: #EF452F;
  content: "\f057";
}

.sector-icon:before,
.sector:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f128";
}
.sector-icon.agricultural:before, .sector-icon.Agricultural:before,
.sector.agricultural:before,
.sector.Agricultural:before {
  content: "\f1bb";
}
.sector-icon.governmental:before, .sector-icon.Governmental:before,
.sector.governmental:before,
.sector.Governmental:before {
  content: "\f19c";
}
.sector-icon.commercial:before, .sector-icon.Commercial:before,
.sector.commercial:before,
.sector.Commercial:before {
  content: "\f54f";
}
.sector-icon.corporate:before, .sector-icon.Corporate:before,
.sector.corporate:before,
.sector.Corporate:before {
  content: "\f1ad";
}
.sector-icon.cultural:before, .sector-icon.Cultural:before,
.sector.cultural:before,
.sector.Cultural:before {
  content: "\f1fc";
}
.sector-icon.educational:before, .sector-icon.Educational:before,
.sector.educational:before,
.sector.Educational:before {
  content: "\f19d";
}
.sector-icon.healthcare:before, .sector-icon.Healthcare:before,
.sector.healthcare:before,
.sector.Healthcare:before {
  content: "\f0fd";
}
.sector-icon.hospitality:before, .sector-icon.Hospitality:before,
.sector.hospitality:before,
.sector.Hospitality:before {
  content: "\f236";
}
.sector-icon.industrial:before, .sector-icon.Industrial:before,
.sector.industrial:before,
.sector.Industrial:before {
  content: "\f275";
}
.sector-icon.oil:before, .sector-icon.Oil:before,
.sector.oil:before,
.sector.Oil:before {
  content: "\f275";
}
.sector-icon.oil_and_gas:before, .sector-icon.Oil_and_gas:before,
.sector.oil_and_gas:before,
.sector.Oil_and_gas:before {
  content: "\f043";
}
.sector-icon.infrastructure:before, .sector-icon.Infrastructure:before,
.sector.infrastructure:before,
.sector.Infrastructure:before {
  content: "\f018";
}
.sector-icon.laboratory:before, .sector-icon.Laboratory:before,
.sector.laboratory:before,
.sector.Laboratory:before {
  content: "\f0c3";
}
.sector-icon.military:before, .sector-icon.Military:before,
.sector.military:before,
.sector.Military:before {
  content: "\f135";
}
.sector-icon.other:before, .sector-icon.Other:before, .sector-icon.master:before, .sector-icon.Master:before,
.sector.other:before,
.sector.Other:before,
.sector.master:before,
.sector.Master:before {
  content: "\f059";
}
.sector-icon.pharma:before, .sector-icon.Pharma:before,
.sector.pharma:before,
.sector.Pharma:before {
  content: "\f0e5";
}
.sector-icon.recreational:before, .sector-icon.Recreational:before,
.sector.recreational:before,
.sector.Recreational:before {
  content: "\f1e3";
}
.sector-icon.religious:before, .sector-icon.Religious:before,
.sector.religious:before,
.sector.Religious:before {
  content: "\f186";
}
.sector-icon.residential:before, .sector-icon.Residential:before,
.sector.residential:before,
.sector.Residential:before {
  content: "\f015";
}
.sector-icon.retail:before, .sector-icon.Retail:before,
.sector.retail:before,
.sector.Retail:before {
  content: "\f07a";
}
.sector-icon.mixed:before, .sector-icon.Mixed:before,
.sector.mixed:before,
.sector.Mixed:before {
  content: "\f029";
}
.sector-icon.aviation:before, .sector-icon.Aviation:before,
.sector.aviation:before,
.sector.Aviation:before {
  content: "\f072";
}
.sector-icon.energy:before, .sector-icon.Energy:before,
.sector.energy:before,
.sector.Energy:before {
  content: "\f0e7";
}
.sector-icon.transport:before, .sector-icon.Transport:before,
.sector.transport:before,
.sector.Transport:before {
  content: "\f207";
}
.sector-icon.research:before, .sector-icon.Research:before,
.sector.research:before,
.sector.Research:before {
  content: "\f002";
}

.overflow-fade:before {
  background-color: transparent;
  background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 60%, rgb(255, 255, 255));
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(255, 255, 255, 0) 60%), to(rgb(255, 255, 255)));
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 60%, rgb(255, 255, 255));
  background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0) 60%, rgb(255, 255, 255));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, rgb(255, 255, 255));
  background-repeat: repeat-x;
  filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='argb(rgba(255, 255, 255, 0) 60%)', endColorstr='argb(rgb(255, 255, 255))', GradientType=0)";
  content: " ";
  position: absolute;
  height: 12.8rem;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.7;
}

.alert-container-fixed .alert-box {
  z-index: 549;
  width: 100%;
  /* min-width 641px & max-width 1024  ===/ TABLETS /===  */
}
@media only screen and (min-width: 641px) and (max-width: 1024px) {
  .alert-container-fixed .alert-box {
    position: relative;
  }
}
.alert-container-fixed .alert-box {
  /* max-width 640  ===/ MOBILE /===  */
}
@media only screen and (max-width: 640px) {
  .alert-container-fixed .alert-box {
    position: relative;
  }
}
.alert-container-fixed .alert-box {
  /* min-width 1025px */
}
@media only screen and (min-width: 1025px) {
  .alert-container-fixed .alert-box {
    position: fixed;
  }
}

.content-block {
  padding-bottom: 2rem;
}

.name {
  font-size: 1.3rem;
  font-weight: 700;
}

.page-header-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.result-options-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  margin-right: auto;
}
.result-options-row .result-count {
  align-self: center;
}

.action-bar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 1rem;
  align-items: center;
}
@media (max-width: 1023px) {
  .action-bar {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .action-bar .flexible-rolldown .button {
    margin-top: 0;
  }
  .action-bar .button-group .button {
    margin-top: 0;
  }
}
.action-bar .section-header-row {
  padding-bottom: 0;
}
.action-bar .flexible-rolldown, .action-bar .selectize-wrapper {
  vertical-align: top;
}
.action-bar .button-group, .action-bar .result-options-row, .action-bar #view-actions {
  margin-bottom: 1rem !important;
  white-space: nowrap;
}
.action-bar#search-nav-bar {
  padding-bottom: 0;
}
.action-bar.pages-head .flexible-rolldown, .action-bar.pages-head .keyword-search {
  height: 2.48rem;
  line-height: 2.48rem;
}
.action-bar.pages-head .selectize-wrapper.nano {
  height: 2.48rem;
  line-height: 2.48rem;
}
.action-bar.pages-head .selectize-wrapper.nano .selectize-control {
  height: 2.48rem;
  line-height: 2.48rem;
}
.action-bar.align-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}
.action-bar.space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.action-bar > .float-left {
  margin-left: 0;
  margin-right: auto;
}
.action-bar.dark {
  padding: 0.24rem 1.5rem 0;
  background: #e6e9eb;
  border: 1px solid #d1d2d3;
  min-height: 4.4rem;
  color: #fff;
}
.action-bar.dark .rolldown.pill-btn {
  min-width: 12.8rem;
}
.action-bar.dark .rolldown.pill-btn.min-width-6 {
  min-width: 9.6rem;
}
.action-bar.dark.rounded {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.action-bar.dark.row.dark + .row > .columns.small-24 > .ag-theme-fresh .ag-root {
  border-top: 0 none;
}
.action-bar.alternative {
  border: 1px solid #d1d2d3;
  background-color: #f7f9fa;
  border-bottom: 1px solid #d1d2d3;
  padding: 0 1.5rem;
  min-height: 4.5rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.action-bar.alternative:after, .action-bar.alternative:before {
  display: none;
}
.action-bar.alternative + .alternative.table-scroll {
  border-top: 0 none;
}
.action-bar span.title {
  line-height: 2.24rem;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bold;
  color: #343C48;
}
.action-bar > * {
  vertical-align: middle;
}
.action-bar > * + * {
  margin-left: 0.5rem;
}
.action-bar input, .action-bar select {
  margin-bottom: 0 !important;
}
.action-bar > .keyword-search, .action-bar > .right > .keyword-search {
  vertical-align: top;
}
.action-bar > .keyword-search input, .action-bar > .right > .keyword-search input {
  vertical-align: top;
}
.action-bar .switcher a {
  color: #585f69;
}
.action-bar .switcher a i {
  color: #585f69 !important;
}
.action-bar .switcher a:hover {
  color: #343C48 !important;
  text-decoration: none;
}
.action-bar .switcher a:hover i {
  color: #343C48 !important;
}
.action-bar .switcher a.active {
  color: #343C48;
}
.action-bar .switcher a.active i {
  color: #343C48 !important;
}
.action-bar + .table-scroll, .action-bar + table, .action-bar + .document-card, .action-bar + .document-card .ag-root {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.action-bar .inline[id] {
  vertical-align: top;
  letter-spacing: 0.56rem;
}
@media (max-width: 1023px) {
  .action-bar .inline[id] {
    display: content;
  }
}
.action-bar .inline[id] * {
  letter-spacing: normal;
}

.document-name, .title, a.title .item-head a {
  font-size: 1.5rem;
  font-weight: bold !important;
  color: inherit;
  text-decoration: none;
}
.document-name.closed, .title.closed, a.title .item-head a.closed {
  text-decoration: line-through;
}
.document-name.closed .issue-severity, .title.closed .issue-severity, a.title .item-head a.closed .issue-severity {
  opacity: 0.7;
}

.document-name, .title:not(td), a.title .item-head a {
  display: inline-block;
}

td.title a {
  color: inherit;
}

.horizontal-scroll {
  overflow-x: visible;
  overflow-y: auto;
}

.row-actions {
  position: absolute;
  right: 1rem;
  top: 1rem;
}
@media only screen and (min-width: 1025px) {
  .row-actions {
    -webkit-transition: opacity 0.2s ease-in;
    -moz-transition: opacity 0.2s ease-in;
    -o-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
  }
}

.level-down {
  display: inline-block;
  position: relative;
  margin-right: 0.75rem;
  width: 0.75rem;
}
.level-down:before {
  content: "";
  height: 0.65rem;
  width: 0.75rem;
  display: inline-block;
  border-left: 1px solid #bec0c4;
  border-bottom: 1px solid #bec0c4;
  margin: 0.25rem 1rem 1.25rem 0.25rem;
  position: absolute;
  top: 0.25rem;
  margin: 0;
}

.review_recommendations .approved {
  color: #00a57a;
}
.review_recommendations .did_not_review {
  color: #6557b9;
}
.review_recommendations .rejected {
  color: #EF452F;
}
.review_recommendations .in_progress {
  color: #0684d7;
}
.review_recommendations .draft {
  color: #101a28;
}

span.capitalize {
  text-transform: capitalize;
}

.visibility-private, .visibility-public, .visibility-restricted, .visibility-exclusive {
  font-size: 1.2rem;
}
.visibility-private:before, .visibility-public:before, .visibility-restricted:before, .visibility-exclusive:before {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  text-decoration: inherit;
  font-size: 1.5rem;
  margin-right: 0.4rem;
  color: inherit;
  vertical-align: baseline;
}

#clarification_request .visibility-private,
#new_clarification_request .visibility-private,
#clarification-request-grid .visibility-private {
  color: #EF452F !important;
  font-size: 1.2rem;
}
#clarification_request .visibility-private:before,
#new_clarification_request .visibility-private:before,
#clarification-request-grid .visibility-private:before {
  font-family: "Font Awesome 5 Pro";
  font-size: 1.04rem;
  content: "\f023";
}
#clarification_request .visibility-public,
#new_clarification_request .visibility-public,
#clarification-request-grid .visibility-public {
  color: #00a57a !important;
  font-size: 1.2rem;
}
#clarification_request .visibility-public:before,
#new_clarification_request .visibility-public:before,
#clarification-request-grid .visibility-public:before {
  font-family: "Font Awesome 5 Pro";
  font-size: 1.04rem;
  content: "\f13e";
}
#clarification_request .visibility-restricted,
#new_clarification_request .visibility-restricted,
#clarification-request-grid .visibility-restricted {
  color: #ef7c22 !important;
  font-size: 1.2rem;
}
#clarification_request .visibility-restricted:before,
#new_clarification_request .visibility-restricted:before,
#clarification-request-grid .visibility-restricted:before {
  font-family: "Font Awesome 5 Pro";
  font-size: 1.04rem;
  content: "\f070";
}
#clarification_request .visibility-exclusive,
#new_clarification_request .visibility-exclusive,
#clarification-request-grid .visibility-exclusive {
  color: #6557b9 !important;
  font-size: 1.2rem;
}
#clarification_request .visibility-exclusive:before,
#new_clarification_request .visibility-exclusive:before,
#clarification-request-grid .visibility-exclusive:before {
  font-family: "Font Awesome 5 Pro";
  font-size: 1.04rem;
  content: "\f132";
}

#clarification_request .visibility-private, #clarification_request .visibility-public, #clarification_request .visibility-restricted, #clarification_request .visibility-exclusive {
  font-size: 1.04rem !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 10rem;
  display: inline-block;
}
#clarification_request .visibility-private:before, #clarification_request .visibility-public:before, #clarification_request .visibility-restricted:before, #clarification_request .visibility-exclusive:before {
  margin: 0;
  width: 1.6rem;
  text-align: center;
}

#new_clarification_request .visibility-private, #new_clarification_request .visibility-public, #new_clarification_request .visibility-restricted, #new_clarification_request .visibility-exclusive {
  padding: 0.64rem 0;
}
#new_clarification_request .visibility-private:before, #new_clarification_request .visibility-public:before, #new_clarification_request .visibility-restricted:before, #new_clarification_request .visibility-exclusive:before {
  margin: 0;
  width: 1.2rem;
  text-align: left;
}

.no-items {
  text-align: center;
  padding-bottom: 6.4rem;
}
.no-items img {
  margin: 6.4rem auto 2.4rem;
  border: 0;
  width: 100%;
  max-width: 420px;
}

.ccv {
  position: relative;
  margin-right: 10px;
}
.ccv .ccv-tip {
  border: 1px solid #777;
  background-color: #fff;
  padding: 10px 8px;
  z-index: 150;
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 150px;
  display: none;
}
.ccv .ccv-tip img {
  display: block;
  max-width: 50%;
}
.ccv:hover .ccv-tip {
  display: block;
}

/* --------------------------- */
/* ***** UTILITY CLASSES ***** */
/* --------------------------- */
/* display */
.inline, .inline-block {
  display: inline-block;
}

/* style */
.italic {
  font-style: italic;
}

.nolineheight {
  line-height: 1 !important;
}

.opacity0 {
  opacity: 0;
}

.hidden {
  display: none !important;
}

.transparent {
  background-color: transparent !important;
}

/* weight */
.light-weight {
  font-weight: 300 !important;
}

.normal-weight {
  font-weight: 400 !important;
}

.mid-weight {
  font-weight: 700 !important;
}

.bold-weight {
  font-weight: 700 !important;
}

/* case */
.uppercase {
  text-transform: uppercase;
}

/* position */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

/* vertical align*/
.vmiddle {
  vertical-align: middle;
}

.vtop {
  vertical-align: top;
}

.vbottom {
  vertical-align: bottom;
}

.vtexttop {
  vertical-align: text-top;
}

/* transitions */
.anim {
  -webkit-transition: all 600ms ease-out;
  -moz-transition: all 600ms ease-out;
  -o-transition: all 600ms ease-out;
  transition: all 600ms ease-out;
}

/* colors */
.pt-orange {
  color: #ef7c22;
}

.pt-green {
  color: #00a57a;
}

.pt-blue:not(.button):not(button) {
  color: #0684d7 !important;
}

.pt-yellow {
  color: #f6ad21 !important;
}

.pt-red {
  color: #EF452F;
}

.pt-purple {
  color: #6557b9;
}

.pt-white {
  color: #fff;
}

/* padding */
.hpad {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.hpad-left {
  padding-left: 2rem !important;
}

.hpad-right {
  padding-right: 2rem !important;
}

.vpad {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.vpad-top {
  padding-top: 2rem !important;
}

.vpad-bottom {
  padding-bottom: 2rem !important;
}

.nopadding {
  padding: 0 !important;
}

.left-collapse {
  padding-left: 0 !important;
}

.right-collapse {
  padding-right: 0 !important;
}

.bottom-collapse {
  padding-bottom: 0 !important;
}

.xsmall-hpad {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.xsmall-hpad-left {
  padding-left: 0.5rem !important;
}

.xsmall-hpad-right {
  padding-right: 0.5rem !important;
}

.xsmall-vpad {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.xsmall-vpad-top {
  padding-top: 0.5rem !important;
}

.xsmall-vpad-bottom {
  padding-bottom: 0.5rem !important;
}

.small-hpad {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.small-hpad-left {
  padding-left: 1rem !important;
}

.small-hpad-right {
  padding-right: 1rem !important;
}

.small-vpad {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.small-vpad-top {
  padding-top: 1rem !important;
}

.small-vpad-bottom {
  padding-bottom: 1rem !important;
}

.med-hpad {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.med-hpad-left {
  padding-left: 1.5rem !important;
}

.med-hpad-right {
  padding-right: 1.5rem !important;
}

.med-vpad {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.med-vpad-top {
  padding-top: 1.5rem !important;
}

.med-vpad-bottom {
  padding-bottom: 1.5rem !important;
}

/* margin */
.margin-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.margin-left-auto {
  margin-left: auto !important;
}

.margin-right-auto {
  margin-right: auto !important;
}

.nomargin {
  margin: 0 !important;
}

.center-margin, .row.center-margin {
  margin: 0 auto !important;
}

.top-buffer {
  margin-top: 2rem !important;
}

.bottom-buffer {
  margin-bottom: 2rem !important;
}

.left-buffer {
  margin-left: 2rem !important;
}

.right-buffer {
  margin-right: 2rem !important;
}

.med-top-buffer {
  margin-top: 1.5rem !important;
}

.med-bottom-buffer {
  margin-bottom: 1.5rem !important;
}

.med-left-buffer {
  margin-left: 1.5rem !important;
}

.med-right-buffer {
  margin-right: 1.5rem !important;
}

.small-top-buffer {
  margin-top: 1rem !important;
}

.small-bottom-buffer {
  margin-bottom: 1rem !important;
}

.small-left-buffer {
  margin-left: 1rem !important;
}

.small-right-buffer {
  margin-right: 1rem !important;
}

.xsmall-top-buffer {
  margin-top: 0.5rem !important;
}

.xsmall-bottom-buffer {
  margin-bottom: 0.5rem !important;
}

.xsmall-left-buffer {
  margin-left: 0.5rem !important;
}

.xsmall-right-buffer {
  margin-right: 0.5rem !important;
}

.noleftmargin {
  margin-left: 0 !important;
}

.nobottommargin {
  margin-bottom: 0 !important;
}

.norightmargin {
  margin-right: 0 !important;
}

.notopmargin {
  margin-top: 0 !important;
}

/* push flex column right */
.push-right {
  margin-left: auto !important;
}

/* float */
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

/* alignment */
.align-left {
  text-align: left !important;
}

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

.align-center {
  text-align: center !important;
}

.align-top {
  align-self: flex-start !important;
}

/* horizontal divider */
.divider-horiz {
  margin-bottom: 1.5rem;
  border-top: 1px solid #d1d2d3;
}

/* border */
.borders {
  border: 1px solid #d1d2d3;
}

.noborder {
  border: none !important;
}

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

.closed.dashed {
  border: 1px solid #d1d2d3;
  border-style: dashed !important;
}

/* light border */
.closed-light {
  border: 1px solid #e6e9eb;
}

.closed-top-light {
  border-top: 1px solid #e6e9eb;
}
.closed-top-light.dashed {
  border-top-style: dashed !important;
}

.closed-bottom-light {
  border-bottom: 1px solid #e6e9eb;
}
.closed-bottom-light.dashed {
  border-bottom-style: dashed !important;
}

.closed-left-light {
  border-left: 1px solid #e6e9eb;
}

.closed-right-light {
  border-right: 1px solid #e6e9eb;
}

/* Uber light */
.closed-uber-light {
  border: 1px solid #f2f5f6;
}

.closed-top-uber-light {
  border-top: 1px solid #f2f5f6;
}
.closed-top-uber-light.dashed {
  border-top-style: dashed !important;
}

.closed-bottom-uber-light {
  border-bottom: 1px solid #f2f5f6;
}
.closed-bottom-uber-light.dashed {
  border-bottom-style: dashed !important;
}

.closed-left-uber-light {
  border-left: 1px solid #f2f5f6;
}
.closed-left-uber-light.dashed {
  border-left-style: dashed !important;
}

.closed-right-uber-light {
  border-right: 1px solid #f2f5f6;
}
.closed-right-uber-light.dashed {
  border-right-style: dashed !important;
}

/* white border */
.closed-white {
  border: 1px solid white;
}

.closed-top-white {
  border-top: 1px solid white;
}

.closed-bottom-white {
  border-bottom: 1px solid white;
}

.closed-left-white {
  border-left: 1px solid white;
}

.closed-right-white {
  border-right: 1px solid white;
}

.closed-yellow {
  border: 1px solid #d1d2d3;
}

.closed-yellow-mid {
  border: 1px solid #d1d2d3;
}

.closed-orange {
  border: 1px solid #d1d2d3;
}

.closed-green {
  border: 1px solid #d1d2d3;
}

.closed-green-mid {
  border: 1px solid #d1d2d3;
}

.closed-blue {
  border: 1px solid #d1d2d3;
}

.closed-blue-mid {
  border: 1px solid #d1d2d3;
}

.closed-red {
  border: 1px solid #d1d2d3;
}

.closed-red-mid {
  border: 1px solid #d1d2d3;
}

.closed-purple {
  border: 1px solid #d1d2d3;
}

/* fills */
.fill-white {
  background-color: white;
}

.fill-pt-gray-10 {
  background-color: #f2f5f6;
}

.fill-pt-gray-9 {
  background-color: #e6e9eb;
}

.fill-pt-gray-7 {
  background-color: #cdd2d6;
}

.fill-pt-gray-8 {
  background-color: #d1d2d3;
}

.fill-pt-gray-4 {
  background-color: #6c727a;
}

.fill-pt-gray-4 {
  background-color: #6c727a;
}

.fill-pt-gray-3 {
  background-color: #585f69;
}

.fill-pt-gray-3 {
  background-color: #585f69;
}

.fill-pt-gray-2 {
  background-color: #343C48;
}

.fill-pt-gray-2 {
  background-color: #343C48;
}

.fill-pt-gray-1 {
  background-color: #101a28;
}

.fill-pt-gray-1 {
  background-color: #101a28;
}

.fill-blue {
  background-color: #0684d7;
}

.fill-orange {
  background-color: #ef7c22;
}

.fill-green {
  background-color: #00a57a;
}

.fill-red {
  background-color: #EF452F;
}

.fill-yellow {
  background-color: #f6ad21;
}

.fill-purple {
  background-color: #6557b9;
}

.fill-yellow-uber-light {
  background-color: #fff9e1;
}

.fill-blue-uber-light {
  background-color: #e9f5fc;
}

.fill-orange-uber-light {
  background-color: #fff4e5;
}

.fill-green-uber-light {
  background-color: #e5f8f3;
}

.fill-red-uber-light {
  background-color: #ffdddd;
}

.fill-purple-uber-light {
  background-color: white;
}

.fill-blue-light {
  background-color: #e9f5fc;
}

.fill-orange-light {
  background-color: #fff4e5;
}

.fill-green-light {
  background-color: #e5f8f3;
}

.fill-red-light {
  background-color: #ffdddd;
}

.fill-yellow-light {
  background-color: #fff9e1;
}

.fill-purple-light {
  background-color: white;
}

.fill-blue-mid {
  background-color: #0684d7;
}

.fill-orange-mid {
  background-color: #ef7c22;
}

.fill-green-mid {
  background-color: #00a57a;
}

.fill-red-mid {
  background-color: #EF452F;
}

.fill-yellow-mid {
  background-color: #f6ad21;
}

.fill-purple-mid {
  background-color: #6557b9;
}

.fill-blue-dark {
  background-color: #0684d7;
}

.fill-orange-dark {
  background-color: #ef7c22;
}

.fill-green-dark {
  background-color: #00a57a;
}

.fill-red-dark {
  background-color: #EF452F;
}

.fill-yellow-dark {
  background-color: #f6ad21;
}

.fill-purple-dark {
  background-color: #6557b9;
}

/* hover fills */
.fill-05.hover-fill:hover {
  background-color: #d1d2d3;
}

.fill-0.hover-fill:hover {
  background-color: #d1d2d3;
}

.fill-1.hover-fill:hover {
  background-color: #cdd2d6;
}

.fill-2.hover-fill:hover {
  background-color: #6c727a;
}

.fill-3.hover-fill:hover {
  background-color: #6c727a;
}

.nofill {
  background-color: transparent !important;
}

/* radius */
.rounded {
  border-radius: 1px !important;
}

.rounded-top {
  border-top-left-radius: 1px !important;
  border-top-right-radius: 1px !important;
}

.rounded-bottom {
  border-bottom-left-radius: 1px !important;
  border-bottom-right-radius: 1px !important;
}

.rounded-top-left {
  border-top-left-radius: 1px !important;
}

.rounded-top-right {
  border-top-right-radius: 1px !important;
}

.rounded-bottom-left {
  border-bottom-left-radius: 1px !important;
}

.rounded-bottom-right {
  border-bottom-right-radius: 1px !important;
}

.inner-bevel {
  border-bottom-color: rgba(255, 255, 255, 0.6);
  border-right-color: rgba(255, 255, 255, 0.6);
}

/* Shadow */
.shadow {
  -webkit-box-shadow: 0px 2px 0px rgba(16, 26, 40, 0.03);
  box-shadow: 0px 2px 0px rgba(16, 26, 40, 0.03);
}

.inner-shadow {
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.03);
}

.inverted-text-shadow {
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
}

.text-shadow {
  text-shadow: 1px 1px 0 rgba(16, 26, 40, 0.1);
}

.notextshadow {
  text-shadow: none !important;
}

.ff-shadow-light:not(:-moz-handler-blocked) {
  text-shadow: 0px 0px 1px rgba(250, 250, 250, 0.3);
}

.ff-shadow-dark:not(:-moz-handler-blocked) {
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.15);
}

.section-shadow {
  box-shadow: 0px 2px 2px 0px rgba(16, 26, 40, 0.07);
}

.width-auto {
  width: auto !important;
}

.height-auto {
  height: auto !important;
}

.full-width {
  width: 100% !important;
}

/* lists */
.inline-block-list li, .inline-block-list dd {
  display: inline-block;
}

.plain-list {
  list-style-type: none;
}

.circle-list {
  list-style-type: circle;
}

.text-list {
  margin-top: 0;
  margin-bottom: 2rem;
}
.text-list li {
  margin-bottom: 0.5rem;
}
.text-list li:last-child {
  margin-bottom: 0;
}

.hide {
  display: none !important;
}

.display-block {
  display: block !important;
}

.display-inline {
  display: inline !important;
}

.display-inline-block {
  display: inline-block !important;
}

.no-interaction {
  pointer-events: none;
  cursor: default !important;
}

.scroll-box {
  overflow: auto;
}

.nowrap {
  white-space: nowrap;
}

/* wrapping and overflow */
.no-wrap {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Required Field
.required {
	color: #d14;
}*/
/* Color White */
.color-white {
  color: #fff !important;
}

.featured-comapanies-logo {
  top: 0 !important;
  z-index: 99 !important;
}

/* STYLES FOR ELLIPSIS */
h1.ellipsis, h2.ellipsis, h3.ellipsis, h4.ellipsis, h5.ellipsis, h6.ellipsis {
  display: block;
}

.ellipsis {
  width: 95%;
  display: inline-block;
}
.ellipsis .ellip {
  display: block;
  height: 100%;
}
.ellipsis .ellip-line {
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  width: 100%;
}
.ellipsis .ellip,
.ellipsis .ellip-line {
  position: relative;
  overflow: hidden;
}

a.ellipsis:hover > span.ellip > span.ellip-line {
  text-decoration: underline !important;
}

/* -------------------------- */
/* ***** GENERAL / BASE ***** */
/* -------------------------- */
html {
  font-size: 10px !important;
  font-family: "Lato", sans-serif;
}
@media only screen and (min-width: 1281px) {
  html {
    font-size: 11px !important;
  }
}
@media only screen and (min-width: 1281px) and (min-width: 1681px) {
  html {
    font-size: 12px !important;
  }
}
html.modal-open {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
@media only screen and (min-width: 1025px) {
  html.modal-opened {
    position: fixed;
    overflow-y: hidden;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow-y: scroll; /* has to be scroll, not auto */
    -webkit-overflow-scrolling: touch;
  }
  html.modal-opened body {
    position: fixed;
    left: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  html.modal-opened body {
    top: 0 !important;
  }
}
html body {
  background: #f2f5f6 !important;
  color: #343C48;
  padding-top: 4.48rem;
  font-size: 1.5rem;
  line-height: 1.85;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.008rem;
}
html body:not(:-moz-handler-blocked) {
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 1024px) {
  html body {
    padding-top: 0 !important;
  }
}
html body .app {
  font-size: 1.3rem;
  line-height: 150%;
}
html body.modal-open {
  position: fixed;
  overflow-y: hidden;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
html body.trial {
  padding-top: 9.28rem;
}
html body.trial.authorized {
  padding-top: 7.68rem;
}
html body.trial nav.panel-wrapper.top-bar#header {
  top: 3.68rem;
}
html body p, html body ul, html body ol, html body dl, html body li, html body dd, html body span, html body div, html body a {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}
html body ul {
  padding-left: 1.6rem;
}
html body p {
  margin: 0 0 2rem 0;
  line-height: 1.85;
}
html body .app p {
  margin: 0 0 1.5rem 0;
  line-height: 150%;
}
html body q {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.032rem;
}
html body em {
  font-weight: inherit;
  font-style: normal;
}
html body a {
  color: #0684d7;
  text-decoration: none;
}
html body a:hover {
  color: #0684d7;
  text-decoration: underline;
}
html body a:not(.button):not(.user-action-btn):focus {
  color: #0684d7;
}
html body a:focus {
  outline: none;
  -webkit-outline: none;
}
html body a.pt-white {
  color: white;
}
html body a.pt-white:hover, html body a.pt-white:focus {
  color: white;
}
html body strong, html body b {
  font-weight: 700;
}
html body h1, html body .h1, html body h2, html body .h2, html body h3, html body .h3, html body h4, html body h5, html body h6 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  color: inherit;
}
html body h1, html body .h1 {
  font-size: 4.4rem;
  padding: 0 0 1.5rem 0;
}
html body h2, html body .h2 {
  font-size: 3.2rem;
  padding: 0 0 1.5rem 0;
}
html body h3, html body .h3 {
  font-size: 2.5rem;
  padding: 0 0 1.5rem 0;
}
html body .app h3 {
  padding: 0.24rem 0 1rem 0;
  font-size: 1.8rem;
}
html body h4, html body h5, html body h6 {
  font-size: 1.5rem;
  padding: 0 0 0.5rem 0;
}
html body h4.chart-header, html body h5.chart-header, html body h6.chart-header {
  font-size: 1.25rem;
  padding: 0 0 0.8rem 0;
  text-transform: uppercase;
  color: #101a28;
}
html body h4.chart-header span, html body h5.chart-header span, html body h6.chart-header span {
  color: #343C48;
  text-transform: none;
  font-weight: 400;
}
html body h4 {
  font-size: 1.8rem;
}

@media only screen and (max-width: 1024px) {
  html body * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -moz-text-size-adjust: none !important;
    -webkit-text-size-adjust: none !important;
    -ms-text-size-adjust: none !important;
  }
  html {
    font-size: 16px;
  }
  html body {
    padding-top: 0;
  }
  html body #intercom-container {
    display: none !important;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 640px) {
  html {
    font-size: 15px;
  }
  h1, .h1 {
    font-size: 3.2rem !important;
    padding: 0 0 1.5rem 0;
  }
  h2, .h2 {
    font-size: 2.5rem !important;
    padding: 0 0 1.5rem 0;
  }
  h3, .h3 {
    font-size: 2rem;
    padding: 0 0 1rem 0;
  }
  q {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .body-content.full-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
  }
  .body-content.full-height > .actions-bar {
    flex: 0 0 auto;
  }
  .body-content.full-height > .actions-bar + .ag-theme-fresh.with-pagination {
    max-height: calc(100% - 10.88rem) !important;
  }
  .body-content.full-height > .actions-bar + .ag-theme-fresh.with-pagination + #pagination {
    flex: 0 0 auto;
  }
  .body-content.full-height .objects-grid .objects-header {
    position: relative;
    width: inherit;
  }
  .body-content.full-height .objects-grid .objects-header .objects-header-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    right: 0;
    height: inherit;
    width: inherit;
  }
  .body-content.full-height .objects-grid .objects-header .objects-header-wrapper .objects-header-fixed {
    position: fixed;
    height: inherit;
    width: inherit;
    z-index: 100;
  }
  .body-content.full-height .position-fixed {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 10;
  }
  .body-content.full-height .position-fixed.actions-bar {
    z-index: 100;
  }
  .body-content.full-height .position-fixed.actions-bar {
    top: 4.48rem;
    height: 4.96rem;
  }
  .body-content.full-height .position-fixed.actions-bar + * {
    margin-top: 4.96rem;
  }
  .body-content.full-height .position-fixed.alert-box {
    top: 4.48rem;
    height: 4rem;
    line-height: 4rem;
    background-color: #EF452F;
    text-align: left;
    color: white;
    font-size: 1.2rem;
    padding: 0 1.84rem;
  }
  .body-content.full-height .position-fixed.alert-box .button {
    margin-left: 0.8rem;
    font-weight: bold;
    color: #EF452F !important;
  }
  .body-content.full-height .position-fixed.alert-box + * {
    margin-top: 4rem;
  }
  .body-content.full-height .position-fixed.alert-box.position-fixed {
    margin-bottom: 0;
  }
  .body-content.full-height .position-fixed.alert-box.position-fixed + * {
    margin-top: 8.96rem;
  }
  .body-content.stretch {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    -webkit-justify-content: stretch;
    -moz-justify-content: stretch;
    justify-content: stretch;
  }
  .body-content.stretch .info-bar {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 1px;
    -moz-box-flex: 0;
    -moz-flex: 0 0 1px;
    -ms-flex: 0 0 1px;
    flex: 0 0 1px;
  }
  .body-content.stretch .info-bar ~ .panel-wrapper {
    height: calc(100vh - 12.88rem);
  }
  .body-content.stretch .info-bar ~ .side-bar {
    top: 12.88rem;
  }
  .body-content.stretch .info-bar.with-extend ~ .side-bar {
    top: 18.88rem;
  }
  .body-content.stretch .info-bar.with-extend ~ .panel-wrapper {
    height: calc(100vh - 18.88rem);
  }
  .body-content.stretch .panel-wrapper {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-box-flex: 1;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .body-content.stretch .height-100 {
    height: 100%;
  }
  .body-content.stretch .side-bar {
    position: absolute;
  }
}
.body-content.scroll-layout > .panel-wrapper {
  padding: 0;
}
.body-content.scroll-layout > .panel-wrapper .content-container {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.body-content.scroll-layout > .panel-wrapper .sidebar-wrapper {
  padding: 2rem 1rem 2rem 1.5rem;
  overflow: auto;
  margin: 0 !important;
  max-height: calc(100vh - 4.48rem);
}
.body-content.scroll-layout > .panel-wrapper .sidebar-wrapper + .content-wrapper.scroll {
  overflow: auto;
  max-height: calc(100vh - 4.48rem);
}
.body-content.scroll-layout > .panel-wrapper .sidebar-wrapper.fixed {
  position: fixed;
  left: 0;
  bottom: 0;
  top: 4.48rem;
}
.body-content.scroll-layout > .panel-wrapper .sidebar-wrapper.fixed + .content-wrapper {
  margin-left: 33rem !important;
}
.body-content.scroll-layout > .panel-wrapper .content-wrapper {
  padding: 2rem 1.5rem;
  margin: 0 !important;
}
.body-content.scroll-layout > .panel-wrapper .content-wrapper #pagination {
  margin-bottom: 0;
}
.body-content.scroll-layout > .workplace-nav ~ .panel-wrapper .sidebar-wrapper {
  max-height: calc(100vh - 9.6rem);
}
.body-content.sticky-layout .content-wrapper #pagination {
  margin-bottom: 0;
}
.body-content.sticky-layout .sidebar-wrapper .sticky-wrapper, .body-content.sticky-layout .content-wrapper .sticky-wrapper {
  position: sticky;
  top: 6.48rem;
}
.body-content.sticky-layout > .workplace-nav ~ .panel-wrapper .sidebar-wrapper .sticky-wrapper, .body-content.sticky-layout > .workplace-nav ~ .panel-wrapper .content-wrapper .sticky-wrapper {
  top: 11.6rem;
}
.body-content.sidebar-overflow > .workplace-nav ~ .panel-wrapper .sidebar-wrapper .tabs-content {
  max-height: calc(100vh - 9.6rem);
  overflow: auto;
}
.body-content > form {
  margin: 0;
}

body, html {
  height: 100%;
}

.body {
  height: 100%;
}

.scroll-to-body {
  overflow-x: hidden;
}

/* ----------------- */
/* ***** FONTS ***** */
/* ----------------- */
/* ------------------ */
/* ***** FOOTER ***** */
/* ------------------ */
#footer {
  border-top: none;
  overflow: hidden;
  padding: 3.2rem 2.4rem 2.4rem;
  text-align: left;
  clear: both;
  background: #343C48;
  font-size: 1.3rem;
  /* min-width 1441px */
}
@media only screen and (min-width: 1441px) {
  #footer {
    padding-top: 4.8rem;
    padding-bottom: 4.8rem;
    min-height: 38.4rem;
  }
}
#footer .protenders-logo {
  display: block;
  margin-bottom: 1.6rem;
}
#footer a {
  color: #f7f9fa;
}
#footer .content-container {
  max-width: 1660px;
}
#footer .content-container .footer-cols {
  text-align: left;
  overflow: hidden;
}
#footer .content-container .footer-cols h5 {
  color: #e6e9eb;
  padding-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: bold;
}
#footer .content-container .footer-cols h5 a {
  color: inherit;
}
#footer .content-container .footer-cols ul {
  list-style-type: none;
  margin: 0;
  line-height: 2.24rem;
  padding: 0;
}
#footer .content-container .footer-cols ul li {
  margin-bottom: 0.4rem;
}
#footer .content-container .footer-cols ul li a {
  font-size: 1.3rem;
  font-weight: 300 !important;
}
#footer .content-container .footer-cols ul li a:hover {
  color: white;
}
#footer .content-container .footer-text {
  color: #cdd2d6;
  font-weight: 300;
}
#footer .content-container .language-select {
  color: #cdd2d6;
  margin: 0 0 3.2rem;
  font-weight: 300;
}
#footer .content-container ul.social-media {
  list-style-type: none;
  margin: 2.8rem 0 0 0;
  padding: 0;
  display: block;
}
#footer .content-container ul.social-media li {
  margin: 0 0.8rem 1.6rem 0;
  display: inline-block;
  vertical-align: middle;
}
#footer .content-container ul.social-media li a {
  -webkit-transition: all 100ms ease-in;
  -moz-transition: all 100ms ease-in;
  -o-transition: all 100ms ease-in;
  transition: all 100ms ease-in;
}
#footer .content-container ul.social-media li a i {
  font-size: 3.2rem;
  color: #d1d2d3;
}
#footer .content-container ul.social-media li a:hover i {
  color: white !important;
  text-decoration: none;
}
#footer .content-container ul.social-media li a span.hidden {
  display: none;
}
#footer .content-container .powerdby {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #cdd2d6;
  margin-top: 2rem;
  padding-top: 1.5rem;
  font-weight: 300;
  font-size: 1.25rem;
}
#footer .content-container .powerdby a {
  margin-left: 0.8rem;
}
@media only screen and (min-width: 1025px) {
  #footer .large-5, #footer .large-4, #footer .large-3 {
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 1024px) {
  #footer .small-24.columns {
    padding: 0 !important;
    margin-bottom: 1.6rem !important;
  }
  #footer {
    height: auto;
  }
  #footer .content-container .footer-cols h5 {
    font-size: 1.5rem;
    padding-top: 0.56rem;
  }
  #footer .content-container .footer-cols h5:first-child {
    padding-top: 0;
  }
  #footer .content-container .footer-cols ul:not(.social-media) {
    line-height: 2rem;
  }
  #footer .content-container .footer-cols ul:not(.social-media) li {
    display: inline-block;
    position: relative;
    text-align: left;
  }
  #footer .content-container .footer-cols ul:not(.social-media) li a {
    margin-bottom: 0.72rem;
  }
  #footer .content-container .footer-cols ul:not(.social-media) li:after {
    position: relative;
    color: rgba(255, 255, 255, 0.2);
    content: "|";
    font-weight: 300;
    margin-left: 1.04rem;
    margin-right: 0.56rem;
  }
  #footer .content-container .footer-cols ul:not(.social-media) li:last-child:after {
    content: "";
  }
  #footer .content-container .footer-text {
    font-size: 1.3rem;
    line-height: 2.08rem;
  }
  #footer .content-container .powerdby strong {
    display: block;
    padding-bottom: 0.8rem;
  }
  #footer .content-container .powerdby div a {
    margin: 0 0.8rem 0 0;
    font-weight: 300 !important;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 767px) {
  #footer .content-container .powerdby div:last-child {
    text-align: left !important;
    font-weight: 300 !important;
  }
}
#footer img.security-logos {
  margin-top: 3.2rem;
  width: 300px;
}

.row {
  max-width: 100%;
  position: relative;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.row.highlight {
  padding: 0.8rem 1.2rem !important;
  border-top: 1px solid #6c727a;
  border-bottom: 1px solid #6c727a;
  background-color: #e9f5fc;
}
.row.row-wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .row.row-wrap .small-24 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .row.row-wrap .small-24 + .small-24 {
    margin-top: 1.6rem;
  }
}
.row.stretch {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.row.stretch > .columns > *:not(table) {
  min-height: 100%;
  width: 100%;
}
.row.row-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.row.row-flex .small-auto {
  width: auto;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-box-flex: 0;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.row.row-flex .small-full {
  width: auto;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.row.has-cols {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.row.has-cols .cols {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  -webkit-justify-content: stretch;
  -moz-justify-content: stretch;
  justify-content: stretch;
}
.row.has-cols .cols .col.col-stay {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 1px;
  -moz-box-flex: 0;
  -moz-flex: 0 0 1px;
  -ms-flex: 0 0 1px;
  flex: 0 0 1px;
}
.row.has-cols .cols .col.col-stay.row-flex {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-box-flex: 0;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.row.has-cols .cols .col.col-grow {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.row.has-cols .cols form {
  margin: 0;
}
.row.has-cols .cols .action-bar + .side-tabs .tab-scroll {
  overflow-y: auto;
  height: calc(100vh - 19.92rem);
}
.row.has-cols .cols .action-bar + .side-tabs .content-padding .table-scroll {
  height: calc(100vh - 29.12rem);
}
.row.has-cols .cols .action-bar + .side-tabs .content-padding .table-scroll.scroll-to-body {
  height: auto;
}
.row .with-pdf-view {
  position: relative;
}
.row .with-pdf-view > * {
  height: 100% !important;
  position: absolute !important;
  width: 100%;
}

.columns {
  padding: 0 2rem;
  min-height: 1px;
}
.columns:first-child, .columns.first {
  padding-left: 0;
}
.columns.first {
  padding-left: 0 !important;
}
.columns:last-child {
  padding-right: 0;
}
.columns.last {
  padding-right: 0 !important;
}
.columns.with-table-selected-list {
  background-color: #fff;
  background-clip: content-box;
  border-radius: 2px;
  overflow: hidden;
}
.columns.with-table-selected-list table {
  border: 0 none;
}

form .row .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
form .columns {
  padding: 0 1rem;
}
form .has-cols .columns {
  padding: 0 1.92rem;
}
form .has-cols .columns:first-child {
  padding-left: 0;
}
form .has-cols .columns:last-child {
  padding-right: 0;
}

ul {
  padding-left: 1.6rem;
}

ul.no-style, li.no-style {
  list-style: none;
}

p {
  margin: 0 0 1.5rem 0;
  line-height: 150%;
}

q {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.032rem;
}

em {
  font-weight: inherit;
  font-style: normal;
}

a {
  color: #0684d7;
  text-decoration: none;
}
a:hover {
  color: #0684d7;
  text-decoration: underline;
}
a:not(.button):not(.user-action-btn):focus {
  color: #0684d7;
}
a:focus {
  outline: none;
  -webkit-outline: none;
}
a.pt-white {
  color: white;
}
a.pt-white:hover, a.pt-white:focus {
  color: white;
}

strong, b {
  font-weight: 700;
}

h1, .h1, h2, .h2, h3, .h3, h4, h5, h6 {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  color: inherit;
}
h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h4 small, h5 small, h6 small {
  font-size: 50%;
}

h1, .h1 {
  font-size: 4.4rem;
  padding: 0 0 1.5rem 0;
}

h2, .h2 {
  font-size: 3.2rem;
  padding: 0 0 1.5rem 0;
}

h3, .h3 {
  font-size: 2.5rem;
  padding: 0 0 1.5rem 0;
}

h4, h5, h6 {
  font-size: 1.5rem;
  padding: 0 0 0.5rem 0;
}
h4.chart-header, h5.chart-header, h6.chart-header {
  font-size: 1.25rem;
  padding: 0 0 0.8rem 0;
  text-transform: uppercase;
  color: #101a28;
}
h4.chart-header span, h5.chart-header span, h6.chart-header span {
  color: #343C48;
  text-transform: none;
  font-weight: 400;
}

.underline {
  text-decoration: underline;
}

.caption {
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 164%;
}

.small-caption {
  font-size: 0.95rem;
  text-transform: uppercase;
  line-height: 120%;
}

.text {
  font-size: 1.3rem;
  line-height: 138%;
}

.inline-text {
  display: inline;
}

.normal-line-height {
  line-height: normal;
}

.medium-line-height {
  line-height: 2.5rem !important;
}

.small-text {
  font-size: 1.25rem !important;
  line-height: 150%;
}

.super-small-text {
  font-size: 1.15rem !important;
  line-height: 164%;
}

.card-title, .card-header {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 140%;
  color: #101a28 !important;
}
.card-title > a, .card-header > a {
  color: inherit;
}

.small-card-header {
  font-size: 1.35rem;
  line-height: 138%;
  font-weight: bold;
  color: #101a28 !important;
}

.sub-section-header {
  font-size: 1.5rem;
  line-height: 133%;
  color: #101a28;
  font-weight: 700;
}
.sub-section-header a {
  color: inherit;
}

.sub-section-small-header {
  font-size: 1.35rem;
  line-height: 133%;
  color: #101a28;
  font-weight: 700;
}

.section-header {
  font-size: 1.15rem;
  text-transform: uppercase;
  line-height: 150%;
  font-weight: 700;
  color: #101a28;
}
.section-header a:not(.button) {
  color: inherit;
}
.section-header h4.icon-header {
  line-height: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.section-header h4.icon-header:before {
  font-weight: 300;
  font-size: 1.5rem !important;
}

.form-box-header {
  font-size: 1.4rem;
  font-weight: 700;
}

.view-header {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 133%;
  color: #101a28;
}

.menu-item-header, .table-header {
  font-size: 1.25rem !important;
  line-height: 150% !important;
  font-weight: bold;
}

.light-text {
  color: #585f69 !important;
}

.super-light-text {
  color: #6c727a !important;
}

.uber-light-text {
  color: #8A8F97 !important;
}

.white-text {
  color: #fff !important;
}

.error-text {
  color: #EF452F;
}

.list-decimal {
  list-style: decimal;
}

.list-lower-alpha {
  list-style: lower-alpha;
}

.list-circle li {
  list-style: circle;
  padding: 0.5rem 0;
}

.bracets:before {
  content: "[";
  display: inline-block;
}
.bracets:after {
  content: "]";
  display: inline-block;
}

.ellipsis-one-row {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-inline-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.ellipsis-two-row {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-inline-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ellipsis-three-row {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-inline-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.ellipsis-four-row {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-inline-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

/* max-width 640  ===/ MOBILE /===  */
@media only screen and (max-width: 640px) {
  .view-header {
    font-size: calc(1.8rem - 0.1rem);
  }
  .section-header {
    font-size: calc(1.15rem - 0.1rem);
  }
  .sub-section-header {
    font-size: calc(1.5rem - 0.15rem);
  }
  .card-title, .card-header {
    line-height: 145%;
  }
}
.ais-RefinementList-item {
  font-size: 1.25rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.ais-RefinementList-list {
  list-style: none;
  padding-left: 0;
}

.ais-RefinementList-checkbox {
  position: absolute !important;
  margin: 0 !important;
  left: 0;
  top: 0.25rem;
  margin-right: 0.56rem;
}

label.ais-RefinementList-label,
label.ais-ToggleRefinement-label {
  font-size: inherit;
  padding-left: 1.85rem;
}
label.ais-RefinementList-label > em,
label.ais-ToggleRefinement-label > em {
  background: #fff9e1;
}
label.ais-RefinementList-label:hover .ais-RefinementList-labelText,
label.ais-RefinementList-label:hover .ais-ToggleRefinement-labelText,
label.ais-ToggleRefinement-label:hover .ais-RefinementList-labelText,
label.ais-ToggleRefinement-label:hover .ais-ToggleRefinement-labelText {
  text-decoration: underline;
}

input[data-facet-value] ~ span.ais-RefinementList-count, input[data-facet-value] ~ span.ais-HierarchicalMenu-count {
  margin-left: 0.48rem;
}

.ais-RefinementList-count,
.ais-HierarchicalMenu-count {
  display: inline-block;
  font-size: 0.95rem;
  margin-left: 0.5rem;
  background: #e6e9eb;
  line-height: 1.5rem;
  border: 1px solid #e6e9eb;
  color: #101a28;
  padding: 0 0.45rem;
  border-radius: 1.5rem;
  text-decoration: none !important;
}

button.sbx-sffv__submit {
  display: none;
}

button.sbx-sffv__reset {
  position: absolute;
  right: 0;
  background: transparent !important;
  top: -0.5rem;
  color: #343C48;
  padding: 0.4rem !important;
}

.sbx-sffv__reset svg {
  margin: 5px;
  top: 7px;
  position: relative;
  width: 11px;
  height: 11px;
}

.ais-HierarchicalMenu-body {
  border-top: 1px solid #cdd2d6;
  padding-bottom: 1rem;
}

.ais-HierarchicalMenu-item {
  border-left: 1px solid #cdd2d6;
  border-right: 1px solid #cdd2d6;
  text-decoration: none;
  font-size: 1.25rem;
  background-color: #fff;
  border-bottom: 1px solid #cdd2d6;
  position: relative;
}

.ais-HierarchicalMenu-link {
  display: block;
  padding: 0.48rem 1.6rem 0.48rem 0.8rem;
  color: #343C48 !important;
  line-height: 150%;
}
.ais-HierarchicalMenu-link:hover {
  background: #e9f5fc;
  text-decoration: none;
}

.ais-HierarchicalMenu-list__lvl1,
.ais-HierarchicalMenu-list__lvl2,
.ais-HierarchicalMenu-list__lvl3 {
  margin: 0;
}
.ais-HierarchicalMenu-list__lvl1 .ais-HierarchicalMenu-item,
.ais-HierarchicalMenu-list__lvl2 .ais-HierarchicalMenu-item,
.ais-HierarchicalMenu-list__lvl3 .ais-HierarchicalMenu-item {
  border: none;
  border-top: 1px solid #d1d2d3;
}
.ais-HierarchicalMenu-list__lvl1 .ais-HierarchicalMenu-link,
.ais-HierarchicalMenu-list__lvl2 .ais-HierarchicalMenu-link,
.ais-HierarchicalMenu-list__lvl3 .ais-HierarchicalMenu-link {
  padding-left: 3.2rem;
}
.ais-HierarchicalMenu-list__lvl1 .ais-HierarchicalMenu-link:before,
.ais-HierarchicalMenu-list__lvl2 .ais-HierarchicalMenu-link:before,
.ais-HierarchicalMenu-list__lvl3 .ais-HierarchicalMenu-link:before {
  font-family: "FontAwesome";
  content: "\f141";
  position: absolute;
  left: 1.6rem;
  top: 0.8rem;
  font-size: 1rem;
}

.ais-HierarchicalMenu-list__lvl2 .ais-HierarchicalMenu-link {
  padding-left: 4.8rem;
}
.ais-HierarchicalMenu-list__lvl2 .ais-HierarchicalMenu-link:before {
  left: 3.2rem;
}

.ais-HierarchicalMenu-list__lvl3 .ais-HierarchicalMenu-link {
  padding-left: 6.4rem;
}
.ais-HierarchicalMenu-list__lvl3 .ais-HierarchicalMenu-link:before {
  left: 4.8rem;
}

.ais-HierarchicalMenu-item__active {
  background: #e9f5fc;
  font-weight: bold;
}
.ais-HierarchicalMenu-item__active .ais-HierarchicalMenu-item .ais-HierarchicalMenu-link {
  font-weight: normal;
}

.ais-RangeSlider {
  padding: 0 1rem;
}

.ais-RangeSlider-connect {
  background: #0684d7;
}

.ais-RangeSlider-handle {
  height: 22px;
  width: 22px;
  border: 2px solid #0684d7;
  background: #0684d7;
  bottom: 9px;
}

.ais-RangeSlider-handle-lower {
  left: -11px;
}

.ais-RangeSlider-handle-upper {
  right: 11px;
}

.ais-RangeSlider-target {
  height: 4px;
  margin-top: 1.6rem;
  margin-bottom: 3.6rem;
}

.ais-RangeSlider-base {
  border: none;
}

.ais-RangeSlider-background {
  background: #d1d2d3 !important;
}

.ais-RangeSlider-tooltip {
  top: auto;
  bottom: -2.32rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.24rem 0.4rem;
  border-radius: 1px;
}

.ais-RangeSlider-handle-upper .ais-RangeSlider-tooltip {
  right: 0;
}

.ct-chart-bar {
  width: calc(100% - 1.6rem) !important;
  margin-top: -17px;
  position: relative;
  bottom: -17px;
  left: 0.8rem;
}

.ct-bar {
  stroke: #6c727a !important;
  stroke-width: 15px !important;
}

#sort-by-container {
  display: inline-block;
  width: 4.8rem;
  vertical-align: top;
}

#sort-by-container {
  width: 12.8rem;
  vertical-align: top;
}

.ais-ClearRefinements-button--disabled,
.ais-RefinementList-showMore--disabled {
  display: none;
}

.block-swicher {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  -webkit-justify-content: stretch;
  -moz-justify-content: stretch;
  justify-content: stretch;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 1px solid #6c727a;
}
.block-swicher > small.error {
  width: 100%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -moz-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin-bottom: 0;
}
.block-swicher > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.block-swicher > * > input {
  display: none;
}
.block-swicher > * > input + label {
  cursor: pointer !important;
  text-align: center;
  width: 100%;
  margin: 0 !important;
  font-weight: bold;
  color: #585f69;
  background-color: #f2f5f6;
}
.block-swicher > * > input + label:hover {
  background-color: #e9f5fc !important;
  color: #101a28;
}
.block-swicher > * > input + label:after {
  display: inline-block;
  width: 14px;
  height: 14px;
  position: relative;
  vertical-align: middle;
  border: 1px solid #6c727a;
  background: #fff;
  border-radius: 0.24rem;
  padding: 0;
  margin: 0;
  text-align: center;
  top: 1.76rem;
  bottom: auto;
  left: 15px;
  right: auto;
  z-index: 1;
  content: "";
  position: absolute;
}
.block-swicher > * > input:checked + label {
  background-color: #fff;
  color: #101a28;
}
.block-swicher > * > input:checked + label:after {
  border: 1px solid #0684d7;
  background: #0684d7;
}
.block-swicher > * > input:checked + label:before {
  content: "\f00c";
  font-family: "FontAwesome";
  font-size: 10px;
  line-height: 14px;
  color: #fff;
  padding: 0;
  margin: 0;
  text-align: center;
  top: 1.76rem;
  bottom: auto;
  left: 15px;
  width: 14px;
  height: 14px;
  position: absolute;
  z-index: 2;
}
.block-swicher > * > label {
  padding: 1.6rem;
  text-align: center;
  position: relative;
}
.block-swicher > * input {
  position: relative;
  z-index: 1;
}
.block-swicher > * input:checked + label.collection_radio_buttons > span {
  position: relative;
  z-index: 1;
}
.block-swicher > * input:checked + label.collection_radio_buttons:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #E3F2FC;
  content: "";
  z-index: 0;
}
.block-swicher > * + * {
  border-left: 1px solid #E1E2E3;
}

svg .highcharts-contextmenu > div {
  padding: 0 !important;
  border: 1px solid #dadbdc !important;
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.03) !important;
  border-bottom-right-radius: 0.24rem;
  border-bottom-left-radius: 0.24rem;
}
svg .highcharts-contextmenu > div hr {
  display: none;
}
svg .highcharts-contextmenu > div > * + * {
  border-top: 1px solid #e9eaeb;
}
svg .highcharts-contextmenu > div > div {
  color: #656c75 !important;
  text-align: left;
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  padding: 0.4rem 2.8rem 0.4rem 0.8rem !important;
  text-decoration: none !important;
  margin: 0 !important;
}
svg .highcharts-contextmenu > div > div:hover {
  background-color: #e9f5fc !important;
}
svg .highcharts-axis-labels {
  pointer-events: none;
}
svg .highcharts-button path {
  fill: #585f69 !important;
  stroke: #585f69 !important;
}
svg .highcharts-button rect {
  stroke: #d1d2d3;
  stroke-width: 1px;
  fill: white !important;
  cursor: pointer;
}
svg .highcharts-button:hover rect {
  stroke: #d1d2d3;
}
svg .highcharts-data-label-connector {
  fill: none;
  stroke: #cdd2d6;
}

#milestones-chart .highcharts-tooltip span {
  font-family: "Lato", sans-serif !important;
  font-size: 1.25rem !important;
  color: #343C48 !important;
}
#milestones-chart .highcharts-grid-line {
  stroke: #e6e9eb;
}
#milestones-chart .highcharts-xaxis .highcharts-tick, #milestones-chart .highcharts-xaxis .highcharts-axis-line {
  stroke: #d1d2d3;
}
#milestones-chart .highcharts-axis-labels text {
  font-family: "Lato", sans-serif !important;
  font-size: 1.1rem !important;
  fill: #343C48 !important;
}

#evaluators-chart .highcharts-stack-labels .red {
  color: #EF452F;
}
#evaluators-chart .highcharts-stack-labels .green {
  color: #00a57a;
}
#evaluators-chart .highcharts-stack-labels .grey {
  color: #585f69;
}

.chart-options > .chart-group {
  width: 100%;
  line-height: 3;
  padding-left: 1rem;
  display: flex;
}
.chart-options > .chart-group .breakdown-chart-select-description, .chart-options > .chart-group .breakdown-chart-select, .chart-options > .chart-group .breakdown-chart-select-disable-checkbox {
  display: inherit;
  margin-left: 0.5rem;
  white-space: nowrap;
}
.chart-options > .chart-group .breakdown-chart-select-disable-checkbox {
  margin-right: 0.5rem;
}
.chart-options > .chart-group .breakdown-chart-select {
  width: auto;
}

#projects-breakdown .highcharts-container {
  width: 100% !important;
}
#projects-breakdown .highcharts-container svg {
  width: 100% !important;
}

.chart-colors .highcharts-color-0 {
  fill: #0684d7;
  color: #0684d7;
}
.chart-colors .highcharts-color-1 {
  fill: #00a57a;
  color: #00a57a;
}
.chart-colors .highcharts-color-2 {
  fill: #ef7c22;
  color: #ef7c22;
}
.chart-colors .highcharts-color-3 {
  fill: #f6ad21;
  color: #f6ad21;
}
.chart-colors .highcharts-color-4 {
  fill: #EF452F;
  color: #EF452F;
}
.chart-colors .highcharts-color-5 {
  fill: #6557b9;
  color: #6557b9;
}
.chart-colors .highcharts-color-6 {
  fill: #6c727a;
  color: #6c727a;
}
.chart-colors .highcharts-color-7 {
  fill: #bec0c4;
  color: #bec0c4;
}
.chart-colors .highcharts-color-8 {
  fill: #d1d2d3;
  color: #d1d2d3;
}

.column-chart .highcharts-legend .highcharts-color-0 rect, .bar-chart .highcharts-legend .highcharts-color-0 rect {
  fill: #0684d7;
}
.column-chart .highcharts-legend .highcharts-color-1 rect, .bar-chart .highcharts-legend .highcharts-color-1 rect {
  fill: #00a57a;
}
.column-chart .highcharts-legend .highcharts-color-2 rect, .bar-chart .highcharts-legend .highcharts-color-2 rect {
  fill: #ef7c22;
}
.column-chart .highcharts-legend .highcharts-color-3 rect, .bar-chart .highcharts-legend .highcharts-color-3 rect {
  fill: #f6ad21;
}
.column-chart .highcharts-legend .highcharts-color-4 rect, .bar-chart .highcharts-legend .highcharts-color-4 rect {
  fill: #EF452F;
}
.column-chart .highcharts-legend .highcharts-color-5 rect, .bar-chart .highcharts-legend .highcharts-color-5 rect {
  fill: #6557b9;
}
.column-chart .highcharts-legend .highcharts-color-6 rect, .bar-chart .highcharts-legend .highcharts-color-6 rect {
  fill: #6c727a;
}
.column-chart .highcharts-legend .highcharts-color-7 rect, .bar-chart .highcharts-legend .highcharts-color-7 rect {
  fill: #bec0c4;
}
.column-chart .highcharts-legend .highcharts-color-8 rect, .bar-chart .highcharts-legend .highcharts-color-8 rect {
  fill: #d1d2d3;
}

.document-details {
  padding-bottom: 0.5rem;
}
.document-details.block {
  display: block;
  width: 100%;
}
.document-details a:not(.button):not(.editable) {
  color: inherit;
}
.document-details a.icon-btn.hide-document {
  text-decoration: none;
}
.document-details a.icon-btn.hide-document:before {
  font-family: "fontAwesome";
  font-size: 1.15rem;
  line-height: 1;
  margin-right: 0.5rem;
  color: #343C48;
}
.document-details a.icon-btn.hide-document.pt-lock:before {
  color: #EF452F;
}
.document-details a.icon-btn.hide-document.pt-lock + .document-name {
  color: #EF452F;
}
.document-details a.icon-btn.hide-document + .document-name {
  display: inline-block;
}
.document-details h3 {
  padding-bottom: 0 !important;
}
.document-details h3 form {
  vertical-align: middle;
}
.document-details h3 form * {
  vertical-align: top !important;
}
.document-details > .action-bar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  padding-bottom: 0;
}
.document-details > .action-bar > ul {
  flex: 0 0 auto;
  margin-right: 0;
  margin-left: auto;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 100%;
  padding-top: 0;
  margin-top: -1.2rem;
}
.document-details > .action-bar > ul > li {
  margin-top: 1.2rem;
}
.document-details > .action-bar h3 {
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#edit-document-label {
  font-size: 1.25rem;
  margin-left: 1rem;
  font-weight: normal;
  color: #0684d7;
}

form#edit-document-label-form {
  margin-bottom: 0;
}

.document-details.not-submitted {
  opacity: 0.5;
}

.document-name a.toggle-content {
  color: inherit;
  text-decoration: none;
}
.document-name a.toggle-content i.pti + span {
  margin-left: 1rem;
}

a.document-name {
  display: inline;
}

.document-version {
  font-weight: 700 !important;
}

.document-reviews {
  padding-top: 0 !important;
}
.document-reviews.evaluator-avatars-list .data-list {
  margin-right: 100px;
}
.document-reviews.evaluator-avatars-list .data-list .data-item.nowrap, .document-reviews.evaluator-avatars-list .data-list .data-label.nowrap {
  white-space: nowrap !important;
  word-wrap: normal !important;
  word-break: keep-all !important;
}
.document-reviews.evaluator-avatars-list .data-list .data-item.wrap, .document-reviews.evaluator-avatars-list .data-list .data-label.wrap {
  white-space: normal !important;
  word-wrap: normal !important;
  word-break: normal !important;
}
.document-reviews.evaluator-avatars-list .data-list .data-label.nowrap {
  margin-left: 0.8rem;
}
.document-reviews.evaluator-avatars-list .data-list .avatar {
  white-space: nowrap !important;
  word-wrap: normal;
  word-break: keep-all;
}
.document-reviews.evaluator-avatars-list .data-list .avatar .initials {
  word-wrap: normal;
  word-break: keep-all;
  white-space: nowrap;
}
.document-reviews.evaluator-avatars-list .data-list .data-item {
  overflow: visible !important;
}
.document-reviews.evaluator-avatars-list .data-list .data-label:not(.nowrap) {
  overflow: visible !important;
  display: -webkit-inline-box !important;
  display: -moz-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: -webkit-inline-flex !important;
  display: inline-flex !important;
}
.document-reviews.evaluator-avatars-list .data-list .data-label:not(.nowrap) span:first-child {
  white-space: nowrap;
}
.document-reviews.evaluator-avatars-list .data-list .data-label:not(.nowrap) span:first-child + span {
  margin-top: -0.64rem;
}
.document-reviews.evaluator-avatars-list .data-list .data-label:not(.nowrap) .data-value {
  margin: 0.32rem 0;
}
.document-reviews .issue-severity {
  padding-right: 0.4rem;
}
.document-reviews .issue-severity:last-child {
  padding-right: 0;
}
.document-reviews .data-list {
  padding-top: 0.24rem;
  padding-bottom: 1.2rem;
}
.document-reviews .data-list .avatar {
  width: 22px;
  height: 22px;
  display: inline-flex !important;
  vertical-align: middle;
}
.document-reviews .data-list .avatar .initials {
  font-size: 0.96rem;
  font-weight: normal;
  text-transform: uppercase;
}

.document-reviews-actions {
  position: absolute;
  bottom: 0.8rem;
  right: 0.8rem;
}
.document-reviews-actions:not(:empty) + .data-list {
  min-height: 0.88rem;
}

.document-reviews-actions .review-status.accepted, .row-actions .review-status.accepted {
  color: #00a57a;
  font-weight: bold;
}
.document-reviews-actions .review-status.rejected, .row-actions .review-status.rejected {
  color: #EF452F;
  font-weight: bold;
}

#document-grid {
  height: auto !important;
}

.document-card:after {
  content: "";
  display: table;
  clear: both;
}
.document-card {
  position: relative;
  height: auto !important;
}
.document-card.show-overflow {
  overflow: visible;
}
.document-card .ag-body-container, .document-card .ag-body, .document-card .ag-row, .document-card .ag-cell {
  height: auto !important;
  position: relative !important;
  width: 100% !important;
  border-top: none !important;
}
.document-card .ag-cell {
  display: block;
  border-top: none !important;
  height: auto !important;
  padding: 1.04rem 1rem 0 3.6rem;
  min-height: 7.2rem;
}
.document-card .ag-cell .document-details .document-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  padding-right: 2.08rem;
  vertical-align: middle;
  max-width: calc(100% - 1.6rem);
}
.document-card .ag-cell .document-details .document-name .powertip-info.pt-hint {
  position: absolute;
  right: 2px;
  top: 4px;
}
.document-card .ag-cell .document-details .row-actions ~ .document-name {
  max-width: calc(100% - 8rem);
}
.document-card .ag-cell .document-details .hide-document.tip-top ~ .row-actions ~ .document-name {
  max-width: calc(100% - 12rem);
}
.document-card .ag-cell .row-actions > * {
  opacity: 0.25;
  vertical-align: top;
}
.document-card .ag-cell:hover {
  background: #e9f5fc;
}
.document-card .ag-cell:hover .row-actions * {
  opacity: 1;
}
.document-card .ag-row {
  top: auto !important;
}
.document-card .custom-checkbox {
  position: absolute;
  left: 1.52rem;
  top: 1.52rem;
  display: inline-block;
}
.document-card .custom-checkbox span {
  vertical-align: top;
}
.document-card .no-document {
  padding: 1rem 1rem 1rem 2.88rem;
}
.document-card .no-document > * {
  margin-right: 0.8rem;
}
.document-card .no-document .mute {
  font-style: italic;
  color: #585f69;
  font-size: 1.44rem;
}
.document-card .no-document a {
  font-size: 1.312rem;
}

h3 + .data-list {
  padding-top: 1rem;
}

#bidder-document-grid .ag-root-wrapper-body {
  height: auto;
}
#bidder-document-grid .data-list {
  padding-top: 0.16rem;
  padding-bottom: 1rem;
}

.cell-overflow {
  overflow: visible !important;
}

.tool-bar-boq label {
  line-height: 3.52rem;
}

ul.document-items-list.clear li {
  clear: both;
}
ul.document-items-list li {
  white-space: nowrap;
  margin-bottom: 0.16rem;
}
ul.document-items-list li span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inherit;
}

#overview-details .details-image-container ul#photos-bx-pager,
#overview-details .details-image-container ul.photos-bxslider {
  overflow-x: hidden !important;
  list-style: none !important;
  padding: 0;
  margin: 0;
}
#overview-details .details-image-container .slider-thumbs {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  left: 0;
  bottom: 0;
  min-height: 420px;
}
#overview-details .details-image-container .slider-thumbs ul#photos-bx-pager {
  direction: rtl;
  padding-left: 8rem;
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  margin-top: 5.2rem;
  width: calc(4vw + 8rem);
  min-width: 6.4rem;
  max-width: 14.4rem;
  max-height: 100%;
  overflow-y: auto !important;
  margin-left: -1.28rem;
}
#overview-details .details-image-container .slider-thumbs ul#photos-bx-pager li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.2rem;
}
#overview-details .details-image-container .slider-thumbs ul#photos-bx-pager li img {
  width: 100%;
  border: none;
  margin: 0 auto;
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  border-radius: 1px;
  border: 1px solid #d1d2d3;
}
#overview-details .details-image-container .slider-thumbs ul#photos-bx-pager li a.active img {
  border: 1px solid #585f69;
}
@media only screen and (max-width: 980px) {
  #overview-details .details-image-container .slider-thumbs {
    display: none;
  }
}
#overview-details .details-image-container ul.breadcrumbs ~ .slider-thumbs {
  top: 3.68rem;
}
#overview-details .details-image-container ul.breadcrumbs ~ .slider-thumbs ul#photos-bx-pager {
  max-height: 100%;
  margin-top: 0;
}
#overview-details .details-image-container .bx-controls {
  position: absolute;
  top: 0;
  opacity: 0;
  min-height: 420px;
  width: 100%;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
#overview-details .details-image-container .bx-controls .bx-controls-direction {
  text-align: left;
  align-self: center;
  margin-top: -5.6rem;
  width: 100%;
}
#overview-details .details-image-container .bx-controls .bx-controls-direction a {
  color: #fff;
  cursor: pointer;
  border-radius: 0.24rem;
  font-family: "FontAwesome";
  border: 0;
  z-index: 99;
}
#overview-details .details-image-container .bx-controls .bx-controls-direction a:hover {
  text-decoration: none;
}
#overview-details .details-image-container .bx-controls .bx-controls-direction a.disabled {
  opacity: 0;
  pointer-events: none;
}
#overview-details .details-image-container .bx-controls .bx-controls-direction .bx-prev,
#overview-details .details-image-container .bx-controls .bx-controls-direction .bx-next {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 4rem;
}
@media only screen and (min-width: 981px) {
  #overview-details .details-image-container .bx-controls .bx-controls-direction .bx-prev,
  #overview-details .details-image-container .bx-controls .bx-controls-direction .bx-next {
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
}
#overview-details .details-image-container .bx-controls .bx-controls-direction .bx-prev:before,
#overview-details .details-image-container .bx-controls .bx-controls-direction .bx-next:before {
  content: "\f104";
  font-size: 2.4rem;
  position: relative;
  color: #343C48;
  margin: 0;
  cursor: pointer;
  opacity: 1;
  border-radius: 0.24rem;
  width: 4.4rem;
  height: 4.4rem;
  text-align: center;
  display: block;
  left: 0.8rem;
}
#overview-details .details-image-container .bx-controls .bx-controls-direction .bx-prev:hover:before,
#overview-details .details-image-container .bx-controls .bx-controls-direction .bx-next:hover:before {
  text-decoration: none;
}
#overview-details .details-image-container .bx-controls .bx-controls-direction .bx-next {
  right: 0.8rem;
}
#overview-details .details-image-container .bx-controls .bx-controls-direction .bx-next:before {
  content: "\f105";
  left: auto;
}
#overview-details .details-image-container .bx-wrapper {
  position: relative;
}
#overview-details .details-image-container .bx-wrapper .bx-viewport {
  height: 100% !important;
}
#overview-details .details-image-container ul.photos-bxslider {
  width: 100%;
}
#overview-details .details-image-container ul.photos-bxslider li.bxslider-image {
  padding: 0;
  width: 100%;
  height: 100%;
  float: left;
  position: relative;
  min-height: 420px;
  display: block;
}
#overview-details .details-image-container ul.photos-bxslider li.bxslider-image img {
  margin: auto;
  width: initial;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
#overview-details .details-image-container ul.photos-bxslider li.bxslider-image div {
  display: block;
  vertical-align: middle;
  margin: auto;
  width: 100%;
  height: 100%;
}
#overview-details .details-image-container ul.photos-bxslider li.bxslider-image div.product-image img {
  max-width: 80%;
  max-height: 80%;
}
#overview-details .details-image-container .bx-wrapper ul.photos-bxslider {
  height: 100%;
}

.select2-container {
  width: 100% !important;
}
.select2-container.select2-container-multi {
  margin: 0 0 1.6rem 0;
  box-shadow: none;
}
.select2-container.select2-container-multi input {
  height: 3.2rem;
  font-family: "Lato", sans-serif !important;
  padding: 0.8rem 1.28rem 0.8rem 0.8rem !important;
}
.select2-container.select2-container-multi ul.select2-choices {
  border-radius: 1px;
  background-image: none;
  background: #fff;
  box-shadow: none;
  border-color: #d1d2d3;
  padding: 0 0 0 0.32rem;
}
.select2-container.select2-container-multi ul.select2-choices li.select2-search-choice {
  background-image: none;
  font-size: 1.3rem;
  padding: 0.32rem 2rem 0.32rem 0.8rem;
  color: white;
  margin: 0.32rem 0.32rem 0 0;
  background-color: #585f69;
  border-radius: 1px;
  border: none;
  box-shadow: none;
}
.select2-container.select2-container-multi ul.select2-choices li.select2-search-choice div {
  line-height: 1.6rem;
  font-size: 1.12rem;
}
.select2-container.select2-container-multi ul.select2-choices li.select2-search-choice:hover {
  color: #fff;
  background-color: #585f69 !important;
  border-color: transparent;
}
.select2-container.select2-container-multi ul.select2-choices li.select2-search-choice:hover a {
  color: #fff;
}
.select2-container.select2-container-multi ul.select2-choices li.select2-search-choice a.select2-search-choice-close {
  font-size: 1.3rem;
  top: 0.48rem;
  left: auto;
  background-image: none;
  color: white;
  text-decoration: none !important;
  right: 0.32rem;
  background: none !important;
}
.select2-container.select2-container-multi ul.select2-choices li.select2-search-choice a.select2-search-choice-close:before {
  font-family: "FontAwesome";
  content: "\f00d";
  font-size: 1rem;
  color: #fff;
  margin-left: 0;
  text-decoration: none !important;
}
.select2-container.select2-container-multi ul.select2-choices li.select2-search-choice a.select2-search-choice-close:before:hover {
  cursor: pointer;
  text-decoration: none !important;
}
.select2-container.select2-container-multi ul.select2-choices li.select2-search-choice a.select2-search-choice-close:hover {
  cursor: pointer;
  text-decoration: none !important;
}
.select2-container.select2-container-multi ul.select2-choices li.select2-search-field {
  height: 3rem;
}
.select2-container.select2-container-multi ul.select2-choices li.select2-search-field input {
  font-size: 1.3rem;
  color: #585f69 !important;
  font-weight: 300;
  margin: 0;
  padding: 0.8rem 1.28rem 0.8rem 0.48rem !important;
}
.select2-container.select2-container-multi ul.select2-choices:hover {
  border-color: #8A8F97;
}
.select2-container.select2-container-multi.select2-dropdown-open ul.select2-choices {
  background-color: white;
}
.select2-container.select2-container-multi.select2-dropdown-open ul.select2-choices:hover {
  background-color: white !important;
}
.select2-container.select2-container-multi.multiple-required ul.select2-choices {
  background-image: url("/assets/protenders/required_marker-84df37cb.png");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 1.28rem;
  padding: 0 1.6rem 0 0.32rem;
}
.select2-container a.select2-choice {
  cursor: text;
  height: 3.6rem;
  padding-top: 0.4rem;
  background-image: none;
  background-color: #fff;
  border-radius: 1px !important;
  box-shadow: none;
  border-color: #d1d2d3;
}
.select2-container a.select2-choice span.select2-chosen {
  font-size: 1.3rem;
  color: #343C48;
  text-align: left;
}
.select2-container a.select2-choice span.select2-arrow {
  border-left: 0;
  background-image: none;
  background-color: #fff;
  box-shadow: none;
}
.select2-container a.select2-choice:hover {
  border-color: #8A8F97;
}
.select2-container a.select2-choice:hover span.select2-arrow {
  background-color: transparent !important;
}
.select2-container a.select2-choice abbr.select2-search-choice-close {
  cursor: pointer;
  right: 1.2rem;
  background-color: transparent !important;
  background-image: none !important;
}
.select2-container a.select2-choice abbr.select2-search-choice-close:before {
  font-family: "FontAwesome";
  content: "\f00d";
  position: relative;
  font-size: 1.5rem;
  line-height: 1;
  color: #343C48;
  z-index: 999;
  padding: 0.12rem 0.56rem;
  border-radius: 0.32rem;
}
.select2-container a.select2-choice abbr.select2-search-choice-close:hover:before {
  color: white;
  background: #585f69;
}
.select2-container a.select2-choice abbr.select2-search-choice-close + span {
  display: none;
}
.select2-container.select2-allowclear a.select2-choice span.select2-chosen {
  font-size: 1.3rem;
  color: #343C48 !important;
}

.select2-search {
  padding: 0 !important;
}

.select2-drop.select2-drop-above .select2-search input {
  margin-top: -3.8rem !important;
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
  background: white !important;
  border-color: #d1d2d3 !important;
}

.select2-search input.select2-input {
  position: absolute;
  width: 101%;
  margin-top: -3.8rem;
  left: -0.5%;
  font-weight: normal;
  padding: 0.4rem 0 0 0.8rem;
  background-image: none !important;
  margin-bottom: 0.8rem !important;
  border-color: #d1d2d3 !important;
}

#select2-drop.select2-drop {
  border-color: #d1d2d3;
  box-shadow: 0px 2px 0px rgba(16, 26, 40, 0.03);
}
#select2-drop.select2-drop ul.select2-results {
  margin: 0;
  margin-top: 0rem;
  padding: 0;
}
#select2-drop.select2-drop ul.select2-results li {
  padding: 0.16rem 0.64rem;
  border-top: 1px solid #d1d2d3;
  color: #343C48;
  float: left;
  width: 100%;
  background: white;
}
#select2-drop.select2-drop ul.select2-results li.select2-no-results, #select2-drop.select2-drop ul.select2-results li.select2-selection-limit {
  font-size: 1.3rem;
  font-weight: 700;
  border-top: 1px solid #e6e9eb;
  background: #ffdddd;
}
#select2-drop.select2-drop ul.select2-results li.select2-result-unselectable {
  padding: 0;
}
#select2-drop.select2-drop ul.select2-results li.select2-result-selectable div, #select2-drop.select2-drop ul.select2-results li.select2-result-selectable span {
  color: #343C48;
  font-size: 1.3rem !important;
}
#select2-drop.select2-drop ul.select2-results li.select2-result-selectable div.select2-match, #select2-drop.select2-drop ul.select2-results li.select2-result-selectable div em, #select2-drop.select2-drop ul.select2-results li.select2-result-selectable span.select2-match, #select2-drop.select2-drop ul.select2-results li.select2-result-selectable span em {
  border-radius: 1px;
  font-weight: bold;
  text-decoration: none;
  color: #101a28;
  background-color: white;
  letter-spacing: 0.048rem;
}
#select2-drop.select2-drop ul.select2-results li.select2-result-selectable .select2-result-label {
  font-size: 1.3rem;
}
#select2-drop.select2-drop ul.select2-results li.select2-result-selectable .select2-result-label .company-thumb {
  float: left;
  background: #fff;
  border-radius: 100%;
  border: 1px solid #d1d2d3;
  width: 4rem;
  height: 4rem;
  margin: 0.4rem 0.8rem 0.56rem 0;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
#select2-drop.select2-drop ul.select2-results li.select2-result-selectable .select2-result-label .company-thumb img {
  width: 100%;
  height: auto;
  border: none;
  margin: 0 auto;
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
#select2-drop.select2-drop ul.select2-results li.select2-result-selectable .select2-result-label .name-address-container {
  float: left;
  width: 19.2rem;
  padding: 0.4rem;
}
#select2-drop.select2-drop ul.select2-results li.select2-result-selectable .select2-result-label .name-address-container div.company-name {
  font-weight: bold;
  color: #343C48;
  line-height: 1.76rem;
  padding-bottom: 0.16rem;
  font-size: 1.5rem !important;
}
#select2-drop.select2-drop ul.select2-results li.select2-result-selectable .select2-result-label .name-address-container div.company-name em {
  font-size: 1.5rem;
}
#select2-drop.select2-drop ul.select2-results li.select2-result-selectable .select2-result-label .name-address-container div.company-address {
  font-size: 1.3rem;
  color: #343C48;
  line-height: 1.52rem;
}
#select2-drop.select2-drop ul.select2-results li.select2-result-selectable:hover {
  background-color: #e9f5fc !important;
  color: white;
}
#select2-drop.select2-drop ul.select2-results li.select2-highlighted {
  background-color: #e9f5fc !important;
  color: white;
}
#select2-drop.select2-drop ul.select2-results li.select2-highlighted:hover {
  background-color: #e9f5fc !important;
  color: white;
}
#select2-drop.select2-drop ul.select2-results li.select2-result.select2-result-with-children > li.select2-result-label, #select2-drop.select2-drop ul.select2-results li.select2-result.select2-result-with-children li.select2-results-dept-1 > .select2-result-label {
  padding: 0.4rem 0.64rem;
}
#select2-drop.select2-drop ul.select2-results li.select2-result.select2-result-with-children > .select2-result-label {
  font-size: 1.3rem;
  padding: 0.64rem 0.64rem;
  cursor: default !important;
}
#select2-drop.select2-drop ul.select2-results li.select2-result.select2-result-with-children > .select2-result-label > span.select2-match {
  border-radius: 1px;
  text-decoration: none;
  font-weight: bold;
  color: #101a28;
  background-color: white;
  letter-spacing: 0.048rem;
}

.select2-with-searchbox .select2-search {
  min-height: 0 !important;
  display: block !important;
}

.selectize-input {
  border: 1px solid #d1d2d3 !important;
  background: white !important;
}
.selectize-input input[type=text] {
  height: 1.92rem !important;
  padding-top: 0.16rem !important;
  line-height: 1.6rem !important;
  color: #343C48;
  font-size: 1.3rem;
  background: transparent !important;
}
.selectize-input input[type=text]:disabled {
  background: transparent !important;
}
.selectize-input.input-active, .selectize-input.input-active:hover {
  border-color: #0684d7 !important;
  background-color: white !important;
}
.selectize-input:hover {
  border-color: #8A8F97 !important;
  background-color: white !important;
}

.selectize-dropdown {
  border-color: #d1d2d3 !important;
  border-top: 1px solid #d1d2d3 !important;
  color: #343C48 !important;
  background: white;
  z-index: 90;
}
.selectize-dropdown > .selectize-dropdown-content [data-selectable],
.selectize-dropdown > .selectize-dropdown-content .optgroup-header {
  padding: 1rem;
}
.selectize-dropdown > .selectize-dropdown-content > div {
  border-bottom: 1px solid #d1d2d3;
  font-size: 1.25rem;
  background-color: white;
}
.selectize-dropdown > .selectize-dropdown-content > div div.company-thumb,
.selectize-dropdown > .selectize-dropdown-content > div .product-thumb {
  float: left;
  background: #fff;
  border-radius: 100%;
  border: 1px solid #d1d2d3;
  width: 4rem;
  height: 4rem;
  margin: 0 1rem 0 0;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.selectize-dropdown > .selectize-dropdown-content > div div.company-thumb img,
.selectize-dropdown > .selectize-dropdown-content > div .product-thumb img {
  width: 100%;
  height: auto;
  border: none;
  margin: 0 auto;
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.selectize-dropdown > .selectize-dropdown-content > div .product-thumb {
  border-radius: 1px;
  border: none;
}
.selectize-dropdown > .selectize-dropdown-content > div div.name-address-container {
  float: left;
  width: 19.2rem;
  padding: 0.4rem;
}
.selectize-dropdown > .selectize-dropdown-content > div div.name-address-container div.company-name,
.selectize-dropdown > .selectize-dropdown-content > div div.name-address-container .product-name {
  color: #343C48;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  padding-bottom: 0.5rem;
}
.selectize-dropdown > .selectize-dropdown-content > div:last-child {
  border: none;
}
.selectize-dropdown > .selectize-dropdown-content > div.option.active {
  color: #101a28 !important;
  background-color: #e9f5fc !important;
}
.selectize-dropdown > .selectize-dropdown-content:hover > div:hover {
  color: #101a28 !important;
  background-color: #e9f5fc !important;
}
.selectize-dropdown > .selectize-dropdown-content:hover > div:hover .product-thumb {
  border: 1px solid #d1d2d3;
}

.selectize-control.single .selectize-input {
  color: #343C48;
  border: 1px solid #d1d2d3 !important;
  background: white;
}
.selectize-control.single .selectize-input.input-active, .selectize-control.single .selectize-input.input-active:hover {
  border-color: #0684d7 !important;
  background-color: white !important;
}
.selectize-control.single .selectize-input:not(.invalid):hover {
  border-color: #8A8F97 !important;
}
.selectize-control.single .selectize-input:focus {
  background-color: white !important;
  border-color: #0684d7 !important;
  outline: none;
}
.selectize-control.single .selectize-input .item.item.item-selectize {
  font-weight: normal;
}
.selectize-control.single .selectize-input .with-avatar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  min-height: inherit;
  line-height: inherit;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.selectize-control.single .selectize-input .with-avatar img {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-box-flex: 0;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.selectize-control.single .selectize-input .with-avatar span {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 1rem;
}
.selectize-control.single .selectize-input:after {
  content: "\f107" !important;
  font-family: "Font Awesome 5 Pro" !important;
  border: none !important;
  top: -5px !important;
  line-height: 3.75rem !important;
  font-size: 1.1rem !important;
  right: 1.1rem !important;
  margin-top: 0 !important;
  color: #343C48;
  width: auto !important;
}
.selectize-control.single .selectize-input.dropdown-active:before, .selectize-control.single .selectize-input.dropdown-active:after {
  content: "";
  background: transparent;
}
.selectize-control.single .selectize-input.disabled {
  opacity: 1;
  box-shadow: none !important;
  background: #e6e9eb !important;
  color: #bec0c4 !important;
  pointer-events: none !important;
  border-color: #d1d2d3 !important;
}
.selectize-control.single .selectize-input.disabled:after {
  color: #8A8F97;
}

.selectize-control.single .selectize-input {
  height: 3.8rem !important;
}

.selectize-control.multi .selectize-input [data-value] {
  border-radius: 1.3rem;
  width: auto;
  max-width: 100%;
  margin: 0.25rem 0.5rem 0.25rem 0;
  padding: 0.25rem 2.5rem 0.25rem 1.25rem !important;
  line-height: 1.5;
  background: #e6e9eb !important;
  color: #343C48;
  font-size: 1.25rem;
  box-shadow: none;
  text-shadow: none;
  white-space: normal;
  word-wrap: break-word;
  border: none;
}
.selectize-control.multi .selectize-input [data-value]:hover {
  background: #d1d2d3;
}
.selectize-control.multi .selectize-input [data-value] .remove {
  right: 0;
  width: 3rem !important;
  padding: 0 !important;
  font-size: 1.6rem !important;
  margin: 0;
  text-align: center;
  color: #343C48;
  font-weight: 300;
}
.selectize-control.multi .selectize-input [data-value] .remove:hover {
  font-weight: 400;
  background-color: transparent !important;
}
.selectize-control.multi .selectize-input [data-value].active {
  border: none !important;
}
.selectize-control.multi .selectize-input [data-value] > a:not(.remove) {
  top: -1px;
  right: -0.4rem;
  width: 1.12rem;
  position: relative;
  padding: 0;
}

.selectize-control.plugin-remove_button [data-value] .remove {
  border-left: 0 !important;
  font-size: 1.6rem !important;
  width: 2.16rem !important;
  padding: 0 !important;
}

.selectize-control.multi .selectize-input.has-items {
  padding: 0.25rem 0.5rem !important;
  margin-top: 0 !important;
}

.selectize-input .parsley-errors-list {
  display: none !important;
}

.with-level + .selectize-control .selectize-dropdown-content .active {
  background-color: #e9f5fc !important;
}
.with-level + .selectize-control .selectize-dropdown-content [data-level]:hover {
  background-color: #e9f5fc !important;
}
.with-level + .selectize-control .selectize-dropdown-content [data-level] {
  padding: 5px 8px;
  line-height: normal;
}
.with-level + .selectize-control .selectize-dropdown-content [data-level]:before {
  color: transparent;
  font-size: 0;
  display: inline-block;
}
.with-level + .selectize-control .selectize-dropdown-content [data-level][data-level*="."]:before {
  width: 0.96rem;
  height: 0.8rem;
  border-style: dotted;
  border-width: 1px;
  border-color: #585f69;
  border-right: none;
  border-top: none;
  content: "";
  margin-right: 4px;
  top: -2px;
  position: relative;
}

[data-level]:before {
  content: attr(data-level) ". ";
}

ul.better-autocomplete {
  background: #fff !important;
  z-index: 999 !important;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3) !important;
  overflow-y: scroll;
  overflow-x: hidden;
}

.better-autocomplete,
.better-autocomplete > .result {
  list-style: none;
  padding: 0;
  margin: 0;
  background: none;
}

.better-autocomplete {
  text-align: left;
  overflow: auto;
  cursor: default;
  background: white;
  border-bottom: 1px solid #bfbfbf;
  /* Groups */
}
.better-autocomplete > .group {
  position: relative;
  padding: 3px;
  text-align: center;
  background: #e7e7e7;
  border-color: #bfbfbf;
  border-width: 1px 1px 0 1px;
  border-style: solid;
}
.better-autocomplete > .group > h3 {
  font-size: 11px;
  color: #555;
  padding: 0;
  margin: 0;
}
.better-autocomplete > .result {
  position: relative;
  padding: 5px 7px;
  background: white;
  border-color: #bfbfbf;
  border-width: 1px 1px 0 1px;
  border-style: solid;
}
.better-autocomplete > .result > h4 {
  font-size: 12px;
  color: #3c3c3c;
  padding: 0;
  margin: 0 0 2px 0;
}
.better-autocomplete > .result > p {
  font-size: 1.1rem;
  line-height: 1.3;
  color: #6f6f6f;
  padding: 0;
  margin: 0;
}
.better-autocomplete > .result.highlight {
  background: #e9f5fc !important;
}

#select2-drop .select2-search {
  min-height: 0;
  position: absolute;
}
#select2-drop .select2-search input.select2-input {
  left: 0;
  top: 0;
  width: 100%;
  border-color: #0684d7 !important;
  margin-top: -3.8rem;
}

.selectize-control.multi .selectize-input {
  padding: 0.6rem 0.8rem !important;
}
.selectize-control.multi .selectize-input input[type=text] {
  height: 2.6rem !important;
  width: 100% !important;
}

.selectize-control.plugin-remove_button [data-value] .remove {
  border-left: 0 !important;
  font-size: 1.5rem !important;
}
.selectize-control.plugin-remove_button [data-value] .remove:hover {
  background: #0684d7 !important;
}

.selectize-control.multi .selectize-input.has-items {
  padding: 0.16rem 1.6rem 0rem 0.32rem !important;
  margin-top: 0px !important;
}
.selectize-control.multi .selectize-input.has-items input[type=text] {
  height: 2.8rem !important;
}

.selectize-control.single .selectize-input.input-active input .ui-autocomplete.ui-widget {
  max-height: 50vh;
  overflow: auto;
}

.breadcrumbs {
  list-style-type: none;
  padding: 0 0 1rem;
  margin: 0;
  font-size: 1.15rem;
}
.breadcrumbs > li {
  display: inline-block;
}
.breadcrumbs > li:after {
  margin: 0 0.4rem;
  font-size: 1.15rem;
  content: ">";
  top: -1px;
  color: #343C48;
}
.breadcrumbs > li:last-child:after {
  display: none;
}
.breadcrumbs > li.root > a {
  font-weight: bold;
}
.breadcrumbs > li > a {
  text-transform: none;
  font-weight: normal;
}
.breadcrumbs > li.current > a {
  cursor: pointer !important;
}
.breadcrumbs > li.current > a:hover {
  text-decoration: underline !important;
}

.breadCrumb.module > div {
  width: auto !important;
  overflow: visible !important;
}
.breadCrumb.module > div ul.breadcrumbs {
  width: auto !important;
}
.breadCrumb.module > div li {
  display: inline !important;
}

.ui-widget {
  font-family: "Lato", sans-serif;
}

.ui-datepicker {
  z-index: 1010 !important;
}

.ui-datepicker-header {
  background-color: #585f69 !important;
  border: none !important;
  background-image: none !important;
  border-radius: 1px !important;
  margin: 0 0.24rem;
}

.ui-widget-content {
  border-color: #cdd2d6;
  font-size: 1.15rem;
}

button.ui-button {
  color: #fff !important;
  font-weight: 400 !important;
  font-size: 1.25rem !important;
  line-height: 2.88rem !important;
  text-transform: capitalize;
  height: 2.88rem !important;
  padding: 0 1.2rem !important;
  border-radius: 1px !important;
  margin-top: 0 !important;
  box-shadow: none !important;
  background: #0684d7 !important;
  border: none !important;
  outline: none !important;
  position: relative !important;
  background-image: none !important;
  -webkit-transition: background-color 400ms ease-out;
  -moz-transition: background-color 400ms ease-out;
  -o-transition: background-color 400ms ease-out;
  transition: background-color 400ms ease-out;
}
button.ui-button:hover {
  background-color: rgb(0, 114.7866028708, 190.4) !important;
}
button.ui-button.comiseo-daterangepicker-triggerbutton {
  margin: 0;
}
button.ui-button.comiseo-daterangepicker-triggerbutton .ui-button-icon {
  display: none;
}
button.ui-button.comiseo-daterangepicker-triggerbutton:after {
  font-family: "FontAwesome";
  content: "\f107";
  position: absolute;
  top: 52%;
  right: 1.2rem;
  font-size: 1.2rem;
  margin-left: 1.6rem;
  color: #fff;
  line-height: 0;
}
button.ui-button .ui-button-text {
  padding: 0;
}

.comiseo-daterangepicker.ui-front {
  z-index: 500;
}

.ui-button-icon-secondary.ui-icon.ui-icon-triangle-1-s {
  background-image: none !important;
}

.comiseo-daterangepicker-buttonpanel {
  float: right !important;
}
.comiseo-daterangepicker-buttonpanel > button.ui-button {
  color: #fff !important;
  font-weight: 400 !important;
  font-size: 1.15rem !important;
  line-height: 2.8rem !important;
  height: 2.8rem !important;
  padding: 0 1.2rem !important;
  border-radius: 1px !important;
  margin-top: 0 !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
  background-image: none !important;
  margin: 0.8rem 0.24rem !important;
  -webkit-transition: background-color 400ms ease-out;
  -moz-transition: background-color 400ms ease-out;
  -o-transition: background-color 400ms ease-out;
  transition: background-color 400ms ease-out;
}
.comiseo-daterangepicker-buttonpanel > button.ui-button.ui-priority-primary {
  background: #0684d7 !important;
}
.comiseo-daterangepicker-buttonpanel > button.ui-button.ui-priority-primary:hover {
  background: #0684d7 !important;
}
.comiseo-daterangepicker-buttonpanel > button.ui-button.ui-priority-secondary {
  background: #585f69 !important;
}
.comiseo-daterangepicker-buttonpanel > button.ui-button.ui-priority-secondary:hover {
  background: #585f69 !important;
}

.ui-menu-item.ui-state-focus {
  border-color: transparent !important;
  background-color: #e6e9eb !important;
  background-image: none !important;
}

.ui-datepicker .ui-datepicker-title {
  color: #fff !important;
}

.ui-datepicker-prev {
  background-image: none !important;
  border: none !important;
  top: 1px !important;
  left: 1px !important;
}
.ui-datepicker-prev span {
  margin-top: -5px !important;
  background: transparent url("/assets/protenders/ui-icons_ffffff_256x240-dad6d4c9.png") no-repeat -80px -192px !important;
}
.ui-datepicker-prev:hover {
  background: none !important;
  border: none !important;
}
.ui-datepicker-prev:hover span {
  background: transparent url("/assets/protenders/ui-icons_ffffff_256x240-dad6d4c9.png") no-repeat -80px -192px !important;
}

input#date_range {
  opacity: 0;
}

.ui-datepicker-calendar thead > tr > th {
  background-color: #fff;
  color: #585f69;
}
.ui-datepicker-calendar .ui-state-default {
  background-image: none !important;
  border: none !important;
  background-color: #cdd2d6 !important;
  border-radius: 1px !important;
  outline: none;
  padding-right: 0.24rem;
}
.ui-datepicker-calendar .ui-state-default:hover {
  background-color: #585f69 !important;
  color: #fff !important;
}
.ui-datepicker-calendar .ui-state-highlight {
  background-color: transparent !important;
  background-image: none !important;
  font-weight: normal !important;
}
.ui-datepicker-calendar .ui-state-highlight a.ui-state-default {
  background-color: #585f69 !important;
  background-image: none !important;
  font-weight: normal !important;
}
.ui-datepicker-calendar .ui-state-highlight a.ui-state-default:hover {
  background-color: #585f69 !important;
  color: #fff !important;
}
.ui-datepicker-calendar .ui-state-active {
  background-color: #ef7c22 !important;
  color: #fff !important;
}
.ui-datepicker-calendar .ui-state-disabled .ui-state-default {
  pointer-events: none;
}

.ui-datepicker-next {
  background-image: none !important;
  border: none !important;
  top: 1px !important;
  right: 1px !important;
}
.ui-datepicker-next span {
  margin-top: -5px !important;
  background: transparent url("/assets/protenders/ui-icons_ffffff_256x240-dad6d4c9.png") no-repeat -48px -192px !important;
}
.ui-datepicker-next:hover {
  background: none !important;
  border: none !important;
}
.ui-datepicker-next:hover span {
  background: transparent url("/assets/protenders/ui-icons_ffffff_256x240-dad6d4c9.png") no-repeat -48px -192px !important;
}

.ui-datepicker-title select {
  width: 45% !important;
  margin-right: 0.8rem !important;
  display: inline-block !important;
  height: 2.72rem !important;
  padding-left: 0.32rem !important;
}
.ui-datepicker-title select:last-child {
  margin-right: 0 !important;
}
.ui-datepicker-title select.ui-datepicker-month, .ui-datepicker-title select.ui-datepicker-year {
  font-size: 1.25rem !important;
  font-family: "Lato", sans-serif !important;
  font-weight: 400 !important;
  height: 2.16rem !important;
  border: 1px solid #585f69;
  border-radius: 0.24rem !important;
  line-height: normal !important;
}

button.ui-datepicker-current {
  display: none;
}

.clearing-blackout {
  background: rgba(16, 26, 40, 0.95);
  z-index: 9999;
}

.clearing-blackout .clearing-close {
  text-decoration: none;
  color: white;
  cursor: pointer;
}

.clearing-main-prev > span, .clearing-main-next > span {
  border: none;
  cursor: pointer;
}
.clearing-main-prev > span:after, .clearing-main-next > span:after {
  content: "\f105";
  font-family: "FontAwesome";
  font-size: 1.92rem;
  color: white;
}

.clearing-main-prev > span:after {
  content: "\f104";
}

.thumb-list-container .clearing-blackout .clearing-thumbs li img, .thumb-list-container .clearing-blackout [data-clearing] li img {
  border: none !important;
  border-radius: 0 !important;
}

@media only screen and (min-width: 641px) {
  .clearing-assembled .clearing-container .visible-img {
    background: none;
  }
  .clearing-assembled .clearing-container .carousel {
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid #343C48;
  }
}
#pagination {
  height: auto;
  padding: 0;
  margin: 0 0 2rem;
}
#pagination ul.pagination, #pagination ul.ais-Pagination-list {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
  font-size: 0;
}
#pagination ul.pagination li, #pagination ul.ais-Pagination-list li {
  width: 2.56rem;
  height: 2.56rem;
  line-height: 2.56rem;
  margin: 0;
  padding: 0;
  text-align: center;
  display: inline-block;
}
#pagination ul.pagination li.ais-Pagination-item--disabled, #pagination ul.ais-Pagination-list li.ais-Pagination-item--disabled {
  display: none;
}
#pagination ul.pagination li a, #pagination ul.pagination li .ais-Pagination-link, #pagination ul.ais-Pagination-list li a, #pagination ul.ais-Pagination-list li .ais-Pagination-link {
  display: block;
  width: 2.56rem;
  height: 2.56rem;
  line-height: 2.56rem;
  font-size: 1.12rem;
  padding: 0;
  color: #343C48;
  background-color: white;
  border: 1px solid #e3e3e3;
  text-align: center;
}
#pagination ul.pagination li a.pagination-next, #pagination ul.pagination li a.pagination-prev, #pagination ul.pagination li .ais-Pagination-link.pagination-next, #pagination ul.pagination li .ais-Pagination-link.pagination-prev, #pagination ul.ais-Pagination-list li a.pagination-next, #pagination ul.ais-Pagination-list li a.pagination-prev, #pagination ul.ais-Pagination-list li .ais-Pagination-link.pagination-next, #pagination ul.ais-Pagination-list li .ais-Pagination-link.pagination-prev {
  position: relative;
  top: -1px;
}
#pagination ul.pagination li a.pagination-next:before, #pagination ul.pagination li a.pagination-prev:before, #pagination ul.pagination li .ais-Pagination-link.pagination-next:before, #pagination ul.pagination li .ais-Pagination-link.pagination-prev:before, #pagination ul.ais-Pagination-list li a.pagination-next:before, #pagination ul.ais-Pagination-list li a.pagination-prev:before, #pagination ul.ais-Pagination-list li .ais-Pagination-link.pagination-next:before, #pagination ul.ais-Pagination-list li .ais-Pagination-link.pagination-prev:before {
  font-family: "FontAwesome";
  content: "\f105";
  font-size: 1rem;
}
#pagination ul.pagination li a.pagination-prev:before, #pagination ul.pagination li .ais-Pagination-link.pagination-prev:before, #pagination ul.ais-Pagination-list li a.pagination-prev:before, #pagination ul.ais-Pagination-list li .ais-Pagination-link.pagination-prev:before {
  content: "\f104";
}
#pagination ul.pagination li a:hover, #pagination ul.pagination li .ais-Pagination-link:hover, #pagination ul.ais-Pagination-list li a:hover, #pagination ul.ais-Pagination-list li .ais-Pagination-link:hover {
  text-decoration: none !important;
}
#pagination ul.pagination li.page.gap, #pagination ul.ais-Pagination-list li.page.gap {
  margin: 0 0.16rem;
}
#pagination ul.pagination li.current a, #pagination ul.pagination li.ais-Pagination-item--selected a, #pagination ul.ais-Pagination-list li.current a, #pagination ul.ais-Pagination-list li.ais-Pagination-item--selected a {
  background: #0684d7;
  color: white;
  border-color: #0684d7;
}
#pagination ul.pagination li + li > a, #pagination ul.ais-Pagination-list li + li > a {
  border-left: none !important;
}
#pagination ul.pagination li:first-child > a, #pagination ul.ais-Pagination-list li:first-child > a {
  border-top-left-radius: 1px;
  border-bottom-left-radius: 1px;
}
#pagination ul.pagination li:last-child > a, #pagination ul.ais-Pagination-list li:last-child > a {
  border-top-right-radius: 1px;
  border-bottom-right-radius: 1px;
}

.progress {
  height: 1.44rem;
  margin-top: 0.24rem;
  background: #e6e9eb;
  border: 1px solid #585f69;
  padding: 0;
}
.progress .meter {
  background: #ef7c22;
  position: relative;
  height: 100%;
}
.progress .meter[style*="width: 96"] .label, .progress .meter[style*="width: 97"] .label, .progress .meter[style*="width: 98"] .label, .progress .meter[style*="width: 99"] .label, .progress .meter[style*="width: 100%"] .label {
  transform: translate(0, 0);
  text-align: right;
  border-radius: 4px 4px 0 4px;
}
.progress .meter[style*="width: 96"] .label:before, .progress .meter[style*="width: 97"] .label:before, .progress .meter[style*="width: 98"] .label:before, .progress .meter[style*="width: 99"] .label:before, .progress .meter[style*="width: 100%"] .label:before {
  left: auto;
  right: 0;
  border-right: 0;
}
.progress .meter[style*="width: 0"] .label, .progress .meter[style*="width: 1%"] .label, .progress .meter[style*="width: 2%"] .label, .progress .meter[style*="width: 3%"] .label, .progress .meter[style*="width: 4%"] .label {
  transform: translate(100%, 0);
  text-align: right;
  border-radius: 4px 4px 4px 0;
  white-space: nowrap;
}
.progress .meter[style*="width: 0"] .label:before, .progress .meter[style*="width: 1%"] .label:before, .progress .meter[style*="width: 2%"] .label:before, .progress .meter[style*="width: 3%"] .label:before, .progress .meter[style*="width: 4%"] .label:before {
  right: auto;
  left: 0;
  border-left: 0;
}
.progress.extended {
  border: 0 none;
  height: 2.56rem;
  margin-top: 6.4rem;
}
.progress.poor .meter {
  background: #EF452F;
}
.progress.good .meter {
  background: #0684d7;
}
.progress.great .meter {
  background: #00a57a;
}
.progress .label {
  position: absolute;
  right: 0;
  bottom: 100%;
  background: #343C48;
  color: #fff;
  margin-bottom: 1.6rem;
  padding: 0.8rem 2rem;
  transform: translate(50%, 0);
  border-radius: 4px;
  white-space: nowrap;
}
.progress .label:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  z-index: 1;
  bottom: -6px;
  top: auto;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 0;
  border-top: 6px solid #343C48;
}

.progress-ruler {
  margin-top: 0.8rem;
  height: 1.6rem;
  position: relative;
}
.progress-ruler b {
  position: absolute;
  font-size: 1.12rem;
}

.progress-days {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.progress-days .date {
  background: #e5f8f3;
  color: inherit;
  margin-bottom: 1.6rem;
  padding: 0.8rem 2rem;
  position: relative;
  font-size: 1.12rem;
}
.progress-days .date.end-date {
  background-color: #ffdddd;
}
.progress-days .date b {
  margin-left: 0.8rem;
}
.progress-days .date:first-child:before {
  left: 0;
  right: auto;
  border-left: 0 solid transparent;
  border-right: 13px solid transparent;
  border-bottom: 10px solid #e5f8f3;
}
.progress-days .date:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  right: 0;
  left: auto;
  margin-left: auto;
  margin-right: auto;
  border-left: 13px solid transparent;
  border-right: 0 solid transparent;
  border-top: 0;
  border-bottom: 10px solid #ffdddd;
}

.nagger h6 {
  display: inline-block;
  padding-bottom: 0.88rem;
  margin-right: 0.96rem;
  font-weight: 700;
  color: #343C48;
}
.nagger h6:before {
  content: "!";
  display: inline-block;
  position: relative;
  top: -0.096rem;
  margin-right: 0.56rem;
  width: 1.92rem;
  height: 1.92rem;
  border-radius: 0.32rem;
  background: #EF452F;
  text-align: center;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.92rem;
}
.nagger ul.nagger-steps {
  display: inline-block;
  margin: 0;
}
.nagger ul.nagger-steps li {
  list-style-type: none;
  display: inline-block;
  margin-right: 0.96rem;
  padding-left: 0;
}
.nagger ul.nagger-steps li a:before {
  display: inline-block;
  position: relative;
  top: -0.096rem;
  margin-right: 0.48rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 100%;
  background: #585f69;
  text-align: center;
  color: white;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.6rem;
}
.nagger ul.nagger-steps li:first-child a:before {
  content: "1";
}
.nagger ul.nagger-steps li:nth-child(2) a:before {
  content: "2";
}
.nagger ul.nagger-steps li:nth-child(3) a:before {
  content: "3";
}
.nagger ul.nagger-steps li:nth-child(4) a:before {
  content: "4";
}
.nagger ul.nagger-steps li:nth-child(5) a:before {
  content: "5";
}
.nagger ul.nagger-steps li:nth-child(6) a:before {
  content: "6";
}
.nagger ul.nagger-steps li:nth-child(7) a:before {
  content: "7";
}
.nagger ul.nagger-steps li:nth-child(8) a:before {
  content: "8";
}
.nagger ul.nagger-steps li:nth-child(9) a:before {
  content: "9";
}
.nagger ul.nagger-steps li:last-child {
  margin-right: 0;
}

.ui-slider {
  padding-right: 0.24rem;
  top: -0.32rem;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  background-color: transparent;
}

.ui-slider .noUi-base {
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  height: 2px;
  background-color: #cdd2d6;
  margin-top: 10px;
}

.ui-slider .noUi-base .noUi-connect {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #35A2E5;
  background: #35a2e5;
}

.ui-slider .noUi-base .noUi-background {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #cdd2d6;
}

.noUi-background {
  background-color: transparent !important;
  box-shadow: none !important;
}

.noUi-origin.noUi-background {
  background-color: #cdd2d6 !important;
}

.noUi-target {
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

.ui-slider .noUi-base .noUi-handle {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 2px solid #0dcdbd;
  background: #35A2E5;
  border-color: #35A2E5;
  cursor: pointer;
  height: 16px;
  width: 16px;
  left: 0px;
  top: -7px;
}

.ui-slider .noUi-base .noUi-handle:before, .ui-slider .noUi-base .noUi-handle:after {
  display: none;
}

.ui-slider .noUi-base .noUi-handle:hover, .ui-slider .noUi-base .noUi-handle.noUi-active {
  -moz-box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 0px 0px 4px rgba(0, 0, 0, 0.07);
}

.ui-slider .noUi-base .noUi-handle.noUi-handle-upper {
  left: -10px;
}

.ui-slider .values {
  padding-top: 4px;
  font-size: 1.25rem;
  width: 100%;
  position: absolute;
  left: 0px;
  top: 10px;
}

.ui-slider .values input {
  background-color: transparent;
  border: none;
  font-size: 1.15rem;
  color: #343C48;
  width: 49%;
}

.ui-slider .values input:first-child {
  float: left;
}

.ui-slider .values input:last-child {
  float: right;
  text-align: right;
}

.has-tip:not(.button-tip) {
  border-bottom-color: #585f69;
}
.has-tip:not(.button-tip):hover {
  color: inherit;
  cursor: inherit;
  border-bottom-color: #0684d7;
}
.has-tip.noborder:hover {
  border: none;
}

.tooltip {
  font-size: red;
  font-weight: 700;
  line-height: 1.68rem;
  color: #343C48;
  border-radius: 1px;
  padding: 0.4rem 0.8rem;
  width: auto !important;
  max-width: 19.2rem;
  background: #fff9e1;
  box-shadow: 0px 2px 3px 0px rgba(16, 26, 40, 0.2);
}
.tooltip ul {
  margin-bottom: 0;
  padding-bottom: 0;
}
.tooltip.tip-right {
  margin-top: 3.6rem;
  margin-right: 1.6rem;
}
.tooltip.tip-left {
  margin-top: 3.6rem;
  margin-left: 1.6rem;
}
.tooltip:before {
  font-weight: normal;
}

.button.has-tip:not(.button-tip),
button.has-tip:not(.button-tip),
input.has-tip:not(.button-tip),
select.has-tip:not(.button-tip),
textarea.has-tip:not(.button-tip),
i.has-tip:not(.button-tip),
.has-tip:not(.button-tip) {
  border-bottom: none;
}
.button.has-tip:not(.button-tip):hover,
button.has-tip:not(.button-tip):hover,
input.has-tip:not(.button-tip):hover,
select.has-tip:not(.button-tip):hover,
textarea.has-tip:not(.button-tip):hover,
i.has-tip:not(.button-tip):hover,
.has-tip:not(.button-tip):hover {
  border-bottom: none;
}

i.has-tip:hover {
  color: #ef7c22;
}

/* PowerTip Plugin */
#powerTip {
  background-color: #343C48;
  border-radius: 1px;
  display: none;
  padding: 0.8rem 1.2rem;
  position: absolute;
  z-index: 1000;
  border: none;
  text-align: left;
  max-width: 38.4rem;
  font-size: 1.15rem;
  line-height: 1.6rem;
  color: white;
  z-index: 10000;
  -webkit-box-shadow: 0px 2px 0px rgba(16, 26, 40, 0.03);
  box-shadow: 0px 2px 0px rgba(16, 26, 40, 0.03);
}
#powerTip p, #powerTip ul, #powerTip ol, #powerTip dl, #powerTip li, #powerTip dd, #powerTip span, #powerTip div {
  font-size: 1.15rem;
  line-height: 1.6rem;
}
#powerTip a {
  color: #fff;
  text-decoration: underline;
}
#powerTip:before, #powerTip:after {
  content: "";
  position: absolute;
}
#powerTip.n:before, #powerTip.s:before {
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  left: 50%;
  margin-left: -6px;
  z-index: 501;
}
#powerTip.n:after, #powerTip.s:after {
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  left: 50%;
  margin-left: -7px;
  z-index: 500;
}
#powerTip.e:before, #powerTip.w:before {
  border-bottom: 6px solid transparent;
  border-top: 6px solid transparent;
  margin-top: -6px;
  top: 50%;
  z-index: 501;
}
#powerTip.e:after, #powerTip.w:after {
  border-bottom: 7px solid transparent;
  border-top: 7px solid transparent;
  margin-top: -7px;
  top: 50%;
  z-index: 500;
}
#powerTip.n:before {
  border-top: 10px solid #343C48;
  bottom: -10px;
}
#powerTip.n:after {
  border-top: 10px solid rgba(75, 75, 75, 0.3);
  bottom: -10px;
}
#powerTip.e:before {
  border-right: 10px solid #343C48;
  left: -10px;
}
#powerTip.e:after {
  border-right: 10px solid rgba(75, 75, 75, 0.3);
  left: -10px;
}
#powerTip.s:before {
  border-bottom: 10px solid #343C48;
  top: -10px;
}
#powerTip.s:after {
  border-bottom: 10px solid rgba(75, 75, 75, 0.3);
  top: -10px;
}
#powerTip.w:before {
  border-left: 10px solid #343C48;
  right: -10px;
}
#powerTip.w:after {
  border-left: 10px solid rgba(75, 75, 75, 0.3);
  right: -10px;
}
#powerTip.ne:before, #powerTip.se:before {
  border-right: 10px solid transparent;
  border-left: 0;
  left: 11px;
  z-index: 501;
}
#powerTip.ne:after, #powerTip.se:after {
  border-right: 10px solid transparent;
  border-left: 1px solid rgba(75, 75, 75, 0.3);
  left: 10px;
  z-index: 500;
}
#powerTip.nw:before, #powerTip.sw:before {
  border-left: 10px solid transparent;
  border-right: 0;
  right: 10px;
  z-index: 501;
}
#powerTip.nw:after, #powerTip.sw:after {
  border-left: 10px solid transparent;
  border-right: 1px solid rgba(75, 75, 75, 0.3);
  right: 11px;
}
#powerTip.ne:before, #powerTip.nw:before {
  border-top: 10px solid #343C48;
  bottom: -10px;
  z-index: 501;
}
#powerTip.ne:after, #powerTip.nw:after {
  border-top: 10px solid rgba(75, 75, 75, 0.3);
  bottom: -10px;
  z-index: 500;
}
#powerTip.se:before, #powerTip.sw:before {
  border-bottom: 10px solid #343C48;
  top: -10px;
}
#powerTip.se:after, #powerTip.sw:after {
  border-bottom: 10px solid rgba(75, 75, 75, 0.3);
  top: -10px;
}
#powerTip.nw-alt:before, #powerTip.ne-alt:before, #powerTip.sw-alt:before, #powerTip.se-alt:before {
  border-top: 10px solid #fff9e1;
  bottom: -10px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  left: 10px;
}
#powerTip.ne-alt:before {
  left: auto;
  right: 10px;
}
#powerTip.sw-alt:before {
  border-top: none;
  border-bottom: 10px solid #fff9e1;
  bottom: auto;
  top: -10px;
}
#powerTip.se-alt:before {
  border-top: none;
  border-bottom: 10px solid #fff9e1;
  bottom: auto;
  top: -10px;
  left: auto;
  right: 10px;
}
#powerTip.tip-info {
  background-color: #fff9e1;
  border: 1px solid #e6e9eb;
  color: #343C48;
}
#powerTip.tip-info a {
  color: #0684d7;
  text-decoration: none;
}
#powerTip.tip-info a:hover {
  text-decoration: underline;
}
#powerTip.tip-info.n:before {
  border-top-color: #fff9e1;
}
#powerTip.tip-info.n:after {
  border-top-color: #6c727a;
}
#powerTip.tip-info.e:before {
  border-right-color: #fff9e1;
}
#powerTip.tip-info.e:after {
  border-right-color: #6c727a;
}
#powerTip.tip-info.s:before {
  border-bottom-color: #fff9e1;
}
#powerTip.tip-info.s:after {
  border-bottom-color: #6c727a;
}
#powerTip.tip-info.w:before {
  border-left-color: #fff9e1;
}
#powerTip.tip-info.w:after {
  border-left-color: #6c727a;
}
#powerTip.tip-info.nw:after {
  border-top: 10px solid #6c727a !important;
}
#powerTip.tip-info.nw:before {
  border-top-color: #fff9e1;
}
#powerTip.tip-info.ne:before {
  border-top: 10px solid #fff9e1;
}
#powerTip.tip-info.ne:after {
  border-top: 10px solid #6c727a;
}
#powerTip.tip-warning {
  background-color: #ffdddd;
  border: 1px solid #d1d2d3;
  color: #343C48;
}
#powerTip.tip-warning a {
  color: #0684d7;
  text-decoration: none;
}
#powerTip.tip-warning a:hover {
  text-decoration: underline;
}
#powerTip.tip-warning.n:before {
  border-top-color: #ffdddd;
}
#powerTip.tip-warning.n:after {
  border-top-color: #EF452F;
}
#powerTip.tip-warning.e:before {
  border-right-color: #ffdddd;
}
#powerTip.tip-warning.e:after {
  border-right-color: #EF452F;
}
#powerTip.tip-warning.s:before {
  border-bottom-color: #ffdddd;
}
#powerTip.tip-warning.s:after {
  border-bottom-color: #EF452F;
}
#powerTip.tip-warning.w:before {
  border-left-color: #ffdddd;
}
#powerTip.tip-warning.w:after {
  border-left-color: #EF452F;
}
#powerTip.tip-warning.nw:after {
  border-top: 10px solid #EF452F !important;
}
#powerTip.tip-warning.nw:before {
  border-top-color: #ffdddd;
}

.vendor-viewer .sidebar-wrapper, .vendor-viewer .content-wrapper {
  margin-top: 0 !important;
}
.vendor-viewer .table-scroll {
  max-height: calc(100vh - 115.2rem);
}
.vendor-viewer .table-scroll td a:not(.disabled) {
  color: #343C48;
  text-decoration: underline;
}
.vendor-viewer .content-wrapper {
  height: calc(100vh - 27.2rem) !important;
}
.vendor-viewer .content-wrapper .placeholder {
  text-align: center;
  color: #585f69;
}
.vendor-viewer .content-wrapper .placeholder i {
  font-size: 3.2rem;
  margin-bottom: 1.6rem;
  color: #585f69;
}
.vendor-viewer .button.micro.clear {
  color: #343C48;
  margin-top: 0.8rem;
}
.vendor-viewer .button.micro.clear i:before {
  color: inherit;
}

ul.dot {
  padding-left: 1.6rem;
  margin-top: 0;
}

ul.task-list {
  list-style: none;
  margin-top: 0;
  padding-left: 0;
}
ul.task-list.view-all ul {
  display: list-item !important;
}
ul.task-list li {
  margin: 0 0 0.5rem;
}
ul.task-list li label {
  font-weight: normal;
  color: #101a28;
  font-size: 1.25rem;
}
ul.task-list li.incomplete > .custom-checkbox .checkbox {
  border-color: #EF452F;
}
ul.task-list li.incomplete > .custom-checkbox label {
  color: #EF452F;
  font-weight: normal;
}
ul.task-list li.complete > .custom-checkbox .checkbox {
  border: 1px solid #0684d7;
  background: #0684d7;
}
ul.task-list li.complete > .custom-checkbox .checkbox:before {
  content: "\f00c";
  font-family: "FontAwesome";
  font-size: 9px;
  line-height: 13px;
}
ul.task-list li.complete > .custom-checkbox .checkbox {
  background-color: #8A8F97;
  border-color: #8A8F97;
}
ul.task-list li.complete > .custom-checkbox label {
  text-decoration: line-through;
}
ul.task-list li.complete > ul {
  display: none;
}
ul.task-list li.inaccessible > .custom-checkbox {
  opacity: 0.6;
}
ul.task-list li.inaccessible > .custom-checkbox .checkbox {
  background-color: #343C48;
  border-color: #343C48;
}
ul.task-list li.inaccessible > ul {
  display: none;
}
ul.task-list > li.complete .custom-checkbox .checkbox {
  border: 1px solid #0684d7;
  background: #0684d7;
}
ul.task-list > li.complete .custom-checkbox .checkbox:before {
  content: "\f00c";
  font-family: "FontAwesome";
  font-size: 9px;
  line-height: 13px;
}
ul.task-list > li.complete .custom-checkbox .checkbox {
  background-color: #343C48;
  border-color: #343C48;
}
ul.task-list > li.complete .custom-checkbox label {
  text-decoration: line-through;
  color: inherit;
}
ul.task-list > li.complete ul {
  display: none;
}
ul.task-list > li.inaccessible .custom-checkbox {
  opacity: 0.6;
}
ul.task-list > li.inaccessible .custom-checkbox .checkbox {
  background-color: #585f69;
  border-color: #585f69;
}
ul.task-list > li.inaccessible .custom-checkbox label {
  color: inherit;
}
ul.task-list > li.inaccessible ul {
  display: none;
}
ul.task-list label a {
  color: inherit;
}
ul.task-list ul {
  list-style: none;
  margin: 0.56rem 0 0 2rem;
  padding-left: 0;
}

.notification-note {
  display: inline-block;
  background: #d1d2d3;
  padding: 0.16rem 0.8rem;
  border-radius: 1px;
  font-size: 0.96rem;
  font-weight: normal;
  text-transform: capitalize;
  line-height: 1.5;
  text-decoration: none;
  cursor: help !important;
}

ul.notifications {
  margin: 0 0 1.6rem;
  word-break: break-word;
}
ul.notifications.levels-down {
  margin-top: 0.8rem;
  margin-left: 0.56rem;
}
ul.notifications.levels-down li + li {
  margin-top: 0.8rem;
}
ul.notifications .notification-date {
  font-weight: 300;
  font-size: 1.15rem;
  margin-top: 0.24rem;
}
ul.notifications .data-item > span + span:before {
  content: "-";
  margin-left: 1rem;
  margin-right: 1rem;
}
ul.notifications .title, ul.notifications .event {
  font-size: 1.25rem;
  color: #343C48;
  font-weight: 300;
}
ul.notifications .title p, ul.notifications .event p {
  margin: 0 0 0.4rem;
}
ul.notifications .title p {
  font-weight: bold;
  font-size: 1.25rem;
  margin: 0;
}
ul.notifications .data-list {
  padding: 0;
  margin-top: 0;
}
ul.notifications a {
  font-weight: normal;
  color: inherit;
  word-wrap: anywhere;
  word-break: break-word;
}
ul.notifications.view-all > li {
  display: list-item !important;
}
ul.notifications.limited > li:nth-child(-n+5) {
  display: list-item;
}
ul.notifications.limited > li {
  display: none;
}
ul.notifications.levels-down > li {
  list-style: none;
  position: relative;
}
ul.notifications.levels-down > li:before {
  content: "";
  height: 0.65rem;
  width: 0.75rem;
  display: inline-block;
  border-left: 1px solid #bec0c4;
  border-bottom: 1px solid #bec0c4;
  margin: 0.25rem 1rem 1.25rem 0.25rem;
  position: absolute;
  left: -2rem;
}

.version-changes div {
  margin: 0.4rem 0;
  font-size: 1.25rem;
}
.version-changes div .pin.small {
  vertical-align: middle;
  margin-right: 0.24rem;
  width: 12px;
  height: 12px;
}
.version-changes div span:first-child {
  margin-right: 0.24rem;
}
.version-changes div span + span {
  font-weight: 300;
}
.version-changes div a {
  color: #0684d7;
}

/* ==================================================== */
/* ----------------- Css For IE Only ------------------ */
/* ==================================================== */
@media screen and (min-width: 0\0 ) {
  .nagger h6:before {
    padding-top: 0.96rem;
  }
  .nagger ul.nagger-steps li a:before {
    padding-top: 0.8rem;
  }
  .pt-hint:before {
    display: block;
    position: relative;
    top: 0.8rem;
  }
  .panel-wrapper#profile-panel-2 .content-container.profile-tabs {
    position: relative;
  }
  .panel-wrapper#profile-panel-2 .content-container.profile-tabs ul li.active a {
    position: relative;
  }
  .panel-wrapper#profile-panel-2 .content-container.profile-tabs ul li.active a:before {
    top: 4.32rem !important;
  }
  .nag-pill-list .columns .nag-pill.done {
    pointer-events: none;
  }
  .nag-pill-list .columns .nag-pill.done i:after {
    padding-top: 0.96rem;
  }
}
.has-hidden-content a.toggle-hidden-content-btn {
  text-decoration: none;
}
.has-hidden-content a.toggle-hidden-content-btn .more {
  display: inline-block;
}
.has-hidden-content a.toggle-hidden-content-btn .less {
  display: none;
}
.has-hidden-content a.toggle-hidden-content-btn.show-less .more {
  display: none;
}
.has-hidden-content a.toggle-hidden-content-btn.show-less .less {
  display: inline-block;
}
.has-hidden-content.disabled a.toggle-hidden-content-btn, .has-hidden-content.expanded a.toggle-hidden-content-btn {
  display: none;
}
.has-hidden-content.disabled .hidden-content, .has-hidden-content.expanded .hidden-content {
  display: block !important;
}
.has-hidden-content.enabled a.toggle-hidden-content-btn, .has-hidden-content.collapsed a.toggle-hidden-content-btn {
  display: inline-block;
}
.has-hidden-content.enabled .hidden-content, .has-hidden-content.collapsed .hidden-content {
  display: none;
}
.has-hidden-content.enabled .expand-handle i, .has-hidden-content.collapsed .expand-handle i {
  display: none;
}
.has-hidden-content.enabled .expand-box, .has-hidden-content.collapsed .expand-box {
  display: block !important;
}
.has-hidden-content.disabled.collapsed a.toggle-hidden-content-btn {
  display: none;
}

.visible-767 {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .medium-24 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media only screen and (max-width: 768px) {
  .stack-768 {
    padding: 0 !important;
    width: 100%;
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  .columns.stack-768 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 1.6rem !important;
    width: 100%;
  }
}

@media only screen and (max-width: 981px) {
  .stack-981 {
    padding: 0 !important;
    width: 100% !important;
  }
}

@media only screen and (max-width: 1024px) {
  .stack-1024 {
    padding: 0 !important;
    width: 100%;
  }
}

@media only screen and (max-width: 1280px) {
  .stack-1280 {
    padding: 0 !important;
    width: 100%;
  }
}

@media only screen and (max-width: 981px) {
  .columns.stack-981 {
    padding: 0 !important;
    margin-bottom: 1.6rem !important;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .panel-wrapper#featured-projects-panel-1 .row.section-header {
    width: 100%;
  }
  .panel-wrapper#featured-projects-panel-1 #message {
    width: 100%;
    text-align: center;
  }
  .panel-wrapper#featured-projects-panel-1 #projects-map-canvas .map {
    display: none;
  }
  .panel-wrapper#featured-projects-panel-1 #projects-map-canvas .project-filters-sidebar {
    width: 100%;
    height: auto;
  }
  .panel-wrapper#featured-projects-panel-1 #projects-map-canvas .project-filters-sidebar .sidebar-close-btn {
    display: none;
  }
  .visible-767 {
    display: block;
    visibility: visible;
  }
  .hidden-767 {
    display: none !important;
    visibility: hidden;
  }
}
@media only screen and (max-width: 640px) {
  .hide-for-mobile {
    display: none;
  }
}

@media only screen and (max-width: 1024px) {
  .hide-for-tablet {
    display: none;
  }
}

/* min-width 641px & max-width 1024  ===/ TABLETS /===  */
@media only screen and (min-width: 641px) and (max-width: 1024px) {
  #office-details .rolldown {
    min-width: 16rem;
  }
}
/* min-width 641px & max-width 1024  ===/ TABLETS /===  */
@media only screen and (min-width: 641px) and (max-width: 1024px) {
  .no-bpad-for-medium-screen-only {
    padding-bottom: 0 !important;
  }
  .no-lpad-for-medium-only {
    padding-left: 0 !important;
  }
  .nopadding-for-medium-screen-only {
    padding: 0 !important;
  }
  .medium-24.columns {
    padding: 0 0 1.6rem 0;
  }
}
/* max-width 640  ===/ MOBILE /===  */
@media only screen and (max-width: 640px) {
  .nomargin-for-small-only {
    margin: 0;
  }
  .small-24.columns {
    padding: 0 0 0.8rem 0;
  }
  .no-bpad-for-small-only {
    padding-bottom: 0 !important;
  }
  .no-lpad-for-small-only {
    padding-left: 0 !important;
  }
  .nopadding-for-small-only {
    padding: 0 !important;
  }
  .bpad-for-small-only {
    padding-bottom: 0.8rem !important;
  }
}
/* min-width 1025px */
@media only screen and (min-width: 1025px) {
  .hpad-for-large-up {
    padding-left: 1.6rem !important;
    padding-right: 1.6rem !important;
  }
}
#keyEmployeeModal .avatar img {
  /* max-width 640  ===/ MOBILE /===  */
}
@media only screen and (max-width: 640px) {
  #keyEmployeeModal .avatar img {
    max-width: 120px;
  }
}
#keyEmployeeModal .avatar img {
  /* min-width 641px & max-width 1024  ===/ TABLETS /===  */
}
@media only screen and (min-width: 641px) and (max-width: 1024px) {
  #keyEmployeeModal .avatar img {
    max-width: 120px;
  }
}

@media (max-width: 1024px) {
  .nopadding-for-medium {
    padding: 0 !important;
  }
}
html body {
  padding-top: 4.48rem;
}

/* --------------------------- */
/* ***** MAIN CONTAINERS ***** */
/* --------------------------- */
.panel-wrapper {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 2rem;
}
@media only screen and (max-width: 1024px) {
  .panel-wrapper {
    min-width: 0;
    padding: 2rem;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 768px) {
  .panel-wrapper {
    padding: 1.5rem;
  }
}
.panel-wrapper {
  overflow-x: hidden;
}
.panel-wrapper .search-container, .panel-wrapper .form-container,
.panel-wrapper .row.content-container, .panel-wrapper .row.search-container, .panel-wrapper .row.form-container,
.panel-wrapper .nomargin.content-container, .panel-wrapper .nomargin.search-container, .panel-wrapper .nomargin.form-container {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto !important;
  text-align: left;
  overflow: visible;
  max-width: none;
}
.panel-wrapper .content-container {
  margin: 0 auto;
}
.panel-wrapper.app {
  overflow-x: visible;
}
.panel-wrapper#dashboard {
  padding-right: 1rem;
}

@media (min-width: 1024px) {
  .body-content.full-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
  }
  .body-content.full-height > .actions-bar {
    flex: 0 0 auto;
  }
  .body-content.full-height > .actions-bar + .ag-fresh.with-pagination {
    max-height: calc(100% - 10.88rem) !important;
  }
  .body-content.full-height > .actions-bar + .ag-fresh.with-pagination + #pagination {
    flex: 0 0 auto;
  }
  .body-content.full-height .objects-grid .objects-header {
    position: relative;
    width: inherit;
  }
  .body-content.full-height .objects-grid .objects-header .objects-header-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    right: 0;
    height: inherit;
    width: inherit;
  }
  .body-content.full-height .objects-grid .objects-header .objects-header-wrapper .objects-header-fixed {
    position: fixed;
    height: inherit;
    width: inherit;
    z-index: 100;
  }
  .body-content.full-height .position-fixed {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 10;
  }
  .body-content.full-height .position-fixed.actions-bar {
    z-index: 100;
  }
  .body-content.full-height .position-fixed.actions-bar {
    top: 4.48rem;
    height: 4.96rem;
  }
  .body-content.full-height .position-fixed.actions-bar + * {
    margin-top: 4.96rem;
  }
  .body-content.full-height .position-fixed.alert-box {
    top: 4.48rem;
    height: 4rem;
    line-height: 4rem;
    background-color: #EF452F;
    text-align: left;
    color: white;
    font-size: 1.2rem;
    padding: 0 1.84rem;
  }
  .body-content.full-height .position-fixed.alert-box .button {
    margin-left: 0.8rem;
    font-weight: bold;
    color: #EF452F !important;
  }
  .body-content.full-height .position-fixed.alert-box + * {
    margin-top: 4rem;
  }
  .body-content.full-height .position-fixed.alert-box.position-fixed {
    margin-bottom: 0;
  }
  .body-content.full-height .position-fixed.alert-box.position-fixed + * {
    margin-top: 8.96rem;
  }
  .body-content.stretch {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    -webkit-justify-content: stretch;
    -moz-justify-content: stretch;
    justify-content: stretch;
  }
  .body-content.stretch .info-bar {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 1px;
    -moz-box-flex: 0;
    -moz-flex: 0 0 1px;
    -ms-flex: 0 0 1px;
    flex: 0 0 1px;
  }
  .body-content.stretch .info-bar ~ .panel-wrapper {
    height: calc(100vh - 12.88rem);
  }
  .body-content.stretch .info-bar ~ .side-bar {
    top: 12.88rem;
  }
  .body-content.stretch .info-bar.with-extend ~ .side-bar {
    top: 18.88rem !important;
  }
  .body-content.stretch .info-bar.with-extend ~ .panel-wrapper {
    height: calc(100vh - 18.88rem) !important;
  }
  .body-content.stretch .panel-wrapper {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-box-flex: 1;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .body-content.stretch .height-100 {
    height: 100%;
  }
  .body-content.stretch .side-bar {
    position: absolute;
  }
}
.body-content > form {
  margin: 0;
}

body, html {
  height: 100%;
}

.body {
  height: 100%;
}

.scroll-to-body {
  overflow-x: hidden;
}

.panel-wrapper.app .content-container .header-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.panel-wrapper.app .content-container .header-wrapper.auto-height {
  height: auto !important;
}
.panel-wrapper.app .content-container .header-wrapper.auto-height .alert-box {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-box-flex: 0;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin: 0;
}
.panel-wrapper.app .content-container .header-wrapper.auto-height .alert-box.pending-invitations {
  min-height: 4rem;
  line-height: 4rem;
  background-color: #EF452F;
  text-align: left;
  color: white;
  font-size: 1.2rem;
  padding: 0 1.6rem;
}
.panel-wrapper.app .content-container .header-wrapper.auto-height .alert-box.pending-invitations .button {
  margin-left: 0.8rem;
  font-weight: bold;
  color: #101a28 !important;
}
.panel-wrapper.app .content-container .header-wrapper .alert-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 100%;
  -moz-box-flex: 1;
  -moz-flex: 1 1 100%;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
}
.panel-wrapper.app .content-container .header-wrapper .action-bar .button {
  vertical-align: top;
}
.panel-wrapper.app .content-container .header-wrapper .action-bar .inline + .button {
  vertical-align: middle;
}
@media (min-width: 1024px) {
  .panel-wrapper.app .content-container.full-height {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    align-items: stretch;
    height: 100%;
  }
  .panel-wrapper.app .content-container.full-height .header-wrapper {
    height: 8rem;
  }
  .panel-wrapper.app .content-container.full-height .content-wrapper {
    height: 100%;
  }
  .panel-wrapper.app .content-container.full-height .header-wrapper ~ .content-wrapper {
    height: calc(100% - 8rem);
  }
  .panel-wrapper.app .content-container.full-height.big-header .header-wrapper {
    height: 19.2rem;
  }
  .panel-wrapper.app .content-container.full-height.big-header .header-wrapper ~ .content-wrapper {
    height: calc(100% - 19.2rem);
  }
}
.panel-wrapper.app .content-container.side-by-side {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.panel-wrapper.app .content-container.side-by-side.space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.panel-wrapper.app .content-container.side-by-side.fullscreen {
  margin: 0 !important;
  height: 100% !important;
  width: 100%;
}
.panel-wrapper.app .content-container.side-by-side.fullscreen .header-wrapper {
  padding-top: 0;
  height: 4.8rem !important;
  padding: 0 0.8rem;
}
.panel-wrapper.app .content-container.side-by-side.fullscreen .header-wrapper > .document-details, .panel-wrapper.app .content-container.side-by-side.fullscreen .header-wrapper > .action-bar {
  padding: 0;
  margin-top: 0.8rem;
}
.panel-wrapper.app .content-container.side-by-side.fullscreen .header-wrapper > .document-details .button.icon-btn, .panel-wrapper.app .content-container.side-by-side.fullscreen .header-wrapper > .action-bar .button.icon-btn {
  background-color: transparent !important;
  border: none !important;
}
.panel-wrapper.app .content-container.side-by-side.fullscreen .header-wrapper > .document-details .button.icon-btn:before, .panel-wrapper.app .content-container.side-by-side.fullscreen .header-wrapper > .action-bar .button.icon-btn:before {
  color: #e6e9eb;
}
.panel-wrapper.app .content-container.side-by-side.fullscreen .header-wrapper > .document-details .button.icon-btn:hover:before, .panel-wrapper.app .content-container.side-by-side.fullscreen .header-wrapper > .action-bar .button.icon-btn:hover:before {
  color: white;
}
.panel-wrapper.app .content-container.side-by-side.fullscreen .content-wrapper, .panel-wrapper.app .content-container.side-by-side.fullscreen .sidebar-wrapper {
  margin: 0 !important;
  max-width: 100%;
}
.panel-wrapper.app .content-container.side-by-side.fullscreen .content-wrapper {
  height: calc(100% - 4.8rem) !important;
}
.panel-wrapper.app .content-container.side-by-side:not(.fullscreen):not(.search-container) {
  margin-left: -1rem;
  margin-right: -1rem;
}
.panel-wrapper.app .content-container.side-by-side:not(.fullscreen):not(.search-container) > * {
  margin-left: 1rem;
  margin-right: 1rem;
  max-width: calc(100% - 2rem);
}
.panel-wrapper.app .content-container.side-by-side:not(.fullscreen):not(.search-container) .header-wrapper {
  margin-top: -2rem;
  padding-top: 2rem;
  margin-bottom: 1rem;
}
.panel-wrapper.app .content-container.side-by-side .header-wrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 100%;
  -moz-box-flex: 1;
  -moz-flex: 1 1 100%;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
}
.panel-wrapper.app .content-container.side-by-side .header-wrapper > .document-details, .panel-wrapper.app .content-container.side-by-side .header-wrapper > .action-bar {
  padding: 0;
}
.panel-wrapper.app .content-container.side-by-side .content-wrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 1024px) {
  .panel-wrapper.app .content-container.side-by-side .content-wrapper.half {
    width: 50%;
    max-width: calc(50% - 3.2rem) !important;
  }
}
@media (max-width: 1023px) {
  .panel-wrapper.app .content-container.side-by-side .content-wrapper.half + .half {
    margin-top: 1.2rem;
  }
}
.panel-wrapper.app .content-container.side-by-side .content-wrapper .content-wrapper-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .panel-wrapper.app .content-container.side-by-side .content-wrapper .tab-scroll {
    height: calc(100vh - 25.2rem);
    overflow-y: auto;
  }
}
@media (min-width: 1024px) {
  .panel-wrapper.app .content-container.side-by-side .content-wrapper .tab-max-scroll {
    max-height: calc(100vh - 28.48rem);
    min-height: 16rem;
    overflow-y: auto;
  }
}
@media (min-width: 1024px) {
  .panel-wrapper.app .content-container.side-by-side .content-wrapper .content-padding .table-scroll {
    height: calc(100vh - 28.72rem);
  }
}
.panel-wrapper.app .content-container.side-by-side .content-wrapper .content-padding .table-scroll.scroll-to-body {
  height: auto;
}
.panel-wrapper.app .content-container.side-by-side .sidebar-wrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.panel-wrapper.app .content-container.side-by-side .sidebar-wrapper .sidebar-wrapper-content {
  width: inherit;
}
.panel-wrapper.app .content-container.side-by-side .sidebar-wrapper.will-fixed {
  -webkit-box-flex: initial;
  -webkit-flex: initial;
  -moz-box-flex: initial;
  -moz-flex: initial;
  -ms-flex: initial;
  flex: initial;
}
@media (min-width: 1024px) {
  .panel-wrapper.app .content-container.side-by-side .sidebar-wrapper .tab-max-scroll {
    max-height: calc(100vh - 28.48rem);
    min-height: 16rem;
    overflow-y: auto;
  }
}
@media (min-width: 1024px) {
  .panel-wrapper.app .content-container.side-by-side .sidebar-wrapper .sidebar-wrapper-content.side-fixed {
    position: fixed;
    top: calc(4.48rem + 10px);
  }
}
@media (min-width: 1024px) {
  .panel-wrapper.app .content-container.side-by-side:not(.collapse).sidebar-1-4 .content-wrapper {
    width: calc(100% - 400px - 6rem);
  }
}
@media (min-width: 1900px) {
  .panel-wrapper.app .content-container.side-by-side:not(.collapse).sidebar-1-4 .content-wrapper {
    width: calc(100% - 475px - 6rem);
  }
}
@media (min-width: 2300px) {
  .panel-wrapper.app .content-container.side-by-side:not(.collapse).sidebar-1-4 .content-wrapper {
    width: calc(100% - 550px - 6rem);
  }
}
@media (min-width: 1024px) {
  .panel-wrapper.app .content-container.side-by-side:not(.collapse).sidebar-1-4 .sidebar-wrapper {
    width: 400px;
  }
}
@media (min-width: 1900px) {
  .panel-wrapper.app .content-container.side-by-side:not(.collapse).sidebar-1-4 .sidebar-wrapper {
    width: 475px;
  }
}
@media (min-width: 2300px) {
  .panel-wrapper.app .content-container.side-by-side:not(.collapse).sidebar-1-4 .sidebar-wrapper {
    width: 550px;
  }
}
.panel-wrapper.app .content-container.side-by-side:not(.collapse).sidebar-1-4 .sidebar-wrapper .window.section-tabs > .tabs {
  overflow: hidden;
}
.panel-wrapper.app .content-container.side-by-side:not(.collapse).sidebar-1-4 .sidebar-wrapper .window.section-tabs > .tabs .tab-title {
  flex-basis: auto;
  flex-shrink: 1;
  overflow: hidden;
  min-width: 80px;
}
.panel-wrapper.app .content-container.side-by-side:not(.collapse).sidebar-1-4 .sidebar-wrapper .window.section-tabs > .tabs .tab-title a {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .panel-wrapper.app .content-container.side-by-side:not(.collapse).sidebar-wider .content-wrapper {
    width: calc(100% - 39rem);
  }
}
@media (min-width: 1024px) {
  .panel-wrapper.app .content-container.side-by-side:not(.collapse).sidebar-wider .sidebar-wrapper {
    width: 33rem;
  }
}
@media (min-width: 1024px) {
  .panel-wrapper.app .content-container.side-by-side:not(.collapse) .content-wrapper {
    width: calc(100% - 39rem);
  }
}
@media (min-width: 1024px) {
  .panel-wrapper.app .content-container.side-by-side:not(.collapse) .sidebar-wrapper {
    width: 33rem;
  }
}
.panel-wrapper.app .content-container.side-by-side:not(.collapse) .sidebar-wrapper.with-auto-fill {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.panel-wrapper.app .content-container.side-by-side:not(.collapse) .sidebar-wrapper.with-auto-fill > div {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-box-flex: 0;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.panel-wrapper.app .content-container.side-by-side:not(.collapse) .sidebar-wrapper.with-auto-fill > .auto-fill {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.panel-wrapper.app .content-container.side-by-side:not(.collapse) .sidebar-wrapper.with-auto-fill > .auto-fill.with-map {
  min-height: 19.2rem;
}
.panel-wrapper.app .content-container.side-by-side.collapse .sidebar-wrapper {
  display: none;
}
@media (max-width: 1023px) {
  .panel-wrapper.app .content-container.side-by-side {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
  }
  .panel-wrapper.app .content-container.side-by-side .header-wrapper {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -moz-order: -1;
    -ms-flex-order: -1;
    order: -1;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-box-flex: 0;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .panel-wrapper.app .content-container.side-by-side .sidebar-wrapper {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-order: 1;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -moz-box-flex: 0;
    -moz-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-bottom: 1.6rem;
  }
  .panel-wrapper.app .content-container.side-by-side .sidebar-wrapper .section:last-of-type {
    margin-bottom: 0;
  }
  .panel-wrapper.app .content-container.side-by-side .content-wrapper {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
}

.info-bar.with-extend ~ .side-bar:before {
  height: calc(100vh - 18.88rem);
}
.info-bar ~ .side-bar:before {
  height: calc(100vh - 12.88rem);
}

.side-bar {
  background-color: #d1d2d3;
  width: 8.4rem;
  position: absolute;
  z-index: 10;
}
.side-bar ~ #footer {
  position: relative;
  z-index: 11;
}
.side-bar:before {
  content: "";
  width: 8.4rem;
  height: 100%;
  position: absolute;
  background-color: inherit;
  z-index: 0;
  left: 0;
  right: 0;
  top: 0;
}
.side-bar ul, .side-bar li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}
.side-bar ul {
  padding: 0;
  position: relative;
  z-index: 1;
}
.side-bar li {
  padding: 0;
}
.side-bar a {
  position: relative;
  height: 6.4rem;
  padding: 1.28rem 0;
  display: block;
  color: #585f69;
  overflow: hidden;
  -webkit-transition: width 0.2s ease-in-out 0.2s;
  -moz-transition: width 0.2s ease-in-out 0.2s;
  -o-transition: width 0.2s ease-in-out 0.2s;
  transition: width 0.2s ease-in-out 0.2s;
}
.side-bar a i {
  color: inherit;
  margin: 0;
  display: block;
  text-align: center;
}
.side-bar a span {
  display: block;
  font-size: 0.88rem;
  text-transform: uppercase;
  color: inherit;
  text-align: center;
  padding-top: 5px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.side-bar a.disabled, .side-bar a:disabled {
  color: #bec0c4;
  pointer-events: none;
}
.side-bar a.active {
  background-color: #0684d7;
  color: white !important;
}
.side-bar a.active i {
  margin: 0;
}
.side-bar a.active span {
  background-color: #0684d7 !important;
}
.side-bar a:hover, .side-bar a:focus, .side-bar a:active {
  text-decoration: none !important;
}
.side-bar a:hover:not(.active), .side-bar a:focus:not(.active), .side-bar a:active:not(.active) {
  background-color: #d1d2d3;
  color: #101a28 !important;
}
.side-bar a i {
  font-size: 2.4rem;
}
.side-bar + .alert-box.relative {
  width: auto;
  margin: 0 2rem 0 calc(2rem + 8.4rem);
}
.side-bar + *:not(.reveal-modal):not(.alert-box), .side-bar ~ .panel-wrapper.app {
  margin-left: 8.4rem;
  overflow: visible;
  position: relative;
  width: auto;
}
.side-bar + *:not(.reveal-modal):not(.alert-box).panel-wrapper.app, .side-bar ~ .panel-wrapper.app.panel-wrapper.app {
  min-width: 0;
}
.side-bar + *:not(.reveal-modal):not(.alert-box) > *:after, .side-bar ~ .panel-wrapper.app > *:after {
  clear: both;
  display: table;
  content: "";
}
.side-bar + *:not(.reveal-modal):not(.alert-box):after, .side-bar ~ .panel-wrapper.app:after {
  background-color: #d1d2d3;
  width: 8.4rem;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -8.4rem;
  height: 100%;
}

body.sidebar-fixed .side-bar {
  position: fixed !important;
  height: calc(100vh - 12.88rem);
  overflow-y: auto;
  overflow-x: hidden;
}
body.sidebar-fixed .info-bar.with-extend ~ .side-bar {
  height: calc(100vh - 18.88rem);
}
body.sidebar-fixed .info-side {
  position: fixed;
}
body.sidebar-fixed .scroll-mock ~ .body .side-bar ul {
  margin-bottom: 17px;
}

#evaluations {
  clear: both;
}
#evaluations .header .dropdown, #evaluations .content .dropdown {
  position: relative;
}
#evaluations .header, #evaluations .content {
  padding: 0;
}
#evaluations .submit-evaluation {
  padding-top: 0.8rem;
  margin: 0;
}
#evaluations .data-list {
  font-size: 1.12rem;
  font-weight: 200;
  padding-bottom: 0;
}
#evaluations .section-body {
  display: table;
  width: 100%;
  padding-top: 0.8rem;
  border-bottom: 1px solid #cdd2d6;
}
#evaluations .section-body:empty {
  display: none;
}
#evaluations .section-body > * {
  display: table-row;
}
#evaluations .section-body > * > * {
  height: 35px;
  vertical-align: middle;
  display: table-cell;
  border-top: 1px solid #cdd2d6;
  padding-left: 0.8rem;
  border-left: 1px solid #cdd2d6;
  vertical-align: middle;
}
#evaluations .section-body > * > * + * {
  text-align: right;
  padding-left: 0;
  padding-right: 0.32rem;
  border-right: 1px solid #cdd2d6;
  border-left: 0;
  font-weight: bold;
}
#evaluations .evaluation .summary {
  min-height: 75px;
  padding: 0;
  padding-bottom: 1.6rem;
  position: relative;
}
#evaluations .evaluation .summary .data-list {
  margin-right: 80px;
}
#evaluations .evaluation .summary .score {
  position: absolute;
  border: 1px solid #6c727a;
  top: 0.8rem;
  right: 0;
  border-radius: 3px;
  text-align: center;
  padding: 0.48rem 0;
  width: 70px;
  text-align: center;
}
#evaluations .evaluation .summary .score .head {
  font-weight: 300;
  font-size: 0.96rem;
}
#evaluations .evaluation .summary .score .total-score {
  font-size: 1.92rem;
  line-height: 1.92rem;
  color: #585f69;
  font-weight: bold;
}
#evaluations .evaluation .section {
  padding: 0 1.6rem 0.8rem;
  margin: -1px -1.6rem 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}
#evaluations .evaluation .section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
#evaluations .evaluation .section:first-child {
  border-top: 1px solid #cdd2d6;
}
#evaluations .evaluation .section .section-head {
  font-weight: bold;
  padding-top: 0.8rem;
  margin-right: 80px;
}
#evaluations .evaluation .section .section-head i.pti {
  margin-left: 0;
}
#evaluations .evaluation .section .section-head .text {
  padding-left: 0.8rem;
  display: inline;
}
#evaluations .evaluation .section .section-score {
  position: absolute;
  border: 1px solid #6c727a !important;
  top: 0.8rem;
  right: 1.6rem;
  border: 1px solid;
  border-radius: 3px;
  text-align: center;
  padding: 0 0.32rem;
  font-weight: bold;
  min-width: 70px;
  text-align: center;
  font-size: 1.36rem;
  line-height: 1.92rem;
}
#evaluations .evaluation .section .item-row:hover {
  background-color: #e9f5fc;
}
#evaluations .evaluation .section .item-row .item-action {
  padding-right: 0.8rem;
}
#evaluations .evaluation .section .item-row .item-action select {
  margin: 0;
  width: 50px;
}
#evaluations .evaluation .section .item-row .item-action .input-switcher, #evaluations .evaluation .section .item-row .item-action select {
  margin-right: -0.32rem;
}

.actions-bar {
  background-color: #175894;
  padding: 1.5rem 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.actions-bar .view-mode a.board i.pti {
  transform: rotate(-90deg) scaleY(1.2);
}
.actions-bar .view-mode a.board i.pti:before {
  right: 2px;
  top: 0;
}
.actions-bar .view-mode a.active i.pti, .actions-bar .view-mode a:hover i.pti {
  color: #fff;
}
.actions-bar .actions {
  white-space: nowrap;
}
.actions-bar .actions > * {
  vertical-align: top;
}
.actions-bar .actions > *.icon-btn {
  top: 0;
}
.actions-bar .actions input, .actions-bar .actions .button {
  margin-bottom: 0;
  display: inline-block;
  border-color: transparent;
}
.actions-bar .actions input.search, .actions-bar .actions .button.search {
  width: 24rem;
}
.actions-bar .actions .algolia-autocomplete {
  position: static !important;
  display: inline-block;
}
.actions-bar .actions .algolia-autocomplete .aa-dropdown-menu {
  width: auto;
  min-width: 300px;
  top: calc(100% + 1px) !important;
}
.actions-bar .actions .algolia-autocomplete .aa-dropdown-menu .aa-suggestion {
  padding: 0.56rem;
}
.actions-bar .actions .algolia-autocomplete .aa-dropdown-menu .aa-suggestion .object-thumb {
  margin-left: 0;
}
.actions-bar .actions .algolia-autocomplete .aa-dropdown-menu .aa-suggestion .status-label {
  font-size: 0.8rem;
}
.actions-bar .actions .keyword-search i.pti.pt-search {
  right: 0;
  top: 1.12rem;
  font-size: 1.3rem;
}
.actions-bar #custom-filters {
  width: 35.2rem;
}
.actions-bar #custom-filters ul .custom-filter-scroll {
  max-height: 14.4rem;
  overflow: auto;
}
.actions-bar #custom-filters ul li {
  font-size: 1.25rem;
}
.actions-bar #custom-filters ul li a {
  padding: 0 1rem 0 4rem;
  position: relative;
  height: 3.2rem;
  line-height: 3.2rem;
}
.actions-bar #custom-filters ul li a:before {
  font-family: "FontAwesome";
  font-size: 1.3rem;
  position: absolute;
  top: auto;
  left: 1.5rem;
  color: #585f69;
}
.actions-bar #custom-filters ul li a.all-users:before {
  font-size: 1.5rem;
  color: #585f69;
  content: "\f0c0";
}
.actions-bar #custom-filters ul li a.private:before {
  content: "\f023";
}
.actions-bar #custom-filters ul li a.public:before {
  content: "\f13e";
}
.actions-bar #custom-filters ul li a .avatar {
  position: absolute;
  top: 0.48rem;
  left: 0.96rem;
  height: 2.24rem;
  width: 2.24rem;
}
.actions-bar #custom-filters ul li a .avatar .initials {
  font-size: 1.15rem;
}
.actions-bar #custom-filters ul.saved-filters a {
  display: inline-block;
}
.actions-bar #custom-filters ul.saved-filters a.edit-filter {
  padding: 0;
  width: 10%;
  border-left: none;
  color: #0684d7;
}
.actions-bar #custom-filters ul.saved-filters a.edit-filter:before {
  display: block;
  content: "";
  height: 3.2rem;
  left: -3px;
  width: 3px;
}
.actions-bar #custom-filters ul.saved-filters a.edit-filter:hover {
  text-decoration: underline !important;
}
.actions-bar #custom-filters ul.saved-filters a:first-child {
  width: 90%;
  padding-left: 3.04rem;
  border-right: none;
}
.actions-bar #custom-filters ul.saved-filters a.create-filter {
  display: block;
  width: 100%;
  font-weight: bold;
  color: #0684d7;
  font-size: 1.25rem;
}
.actions-bar #custom-filters ul.saved-filters a.create-filter:before {
  color: #0684d7;
  content: "\f067";
  font-size: 1.15rem;
}
.actions-bar #custom-filters ul.saved-filters a.create-filter:hover {
  background-color: #0684d7 !important;
  color: white;
}
.actions-bar #custom-filters ul.saved-filters a.create-filter:hover:before {
  color: white;
}
.actions-bar #custom-filters ul.saved-filters a.selected + a.edit-filter {
  background-color: #e9f5fc;
}
.actions-bar #custom-filters ul.saved-filters a.selected + a.edit-filter:before {
  background-color: #e9f5fc;
}
.actions-bar #custom-filters ul.saved-filters li:hover a:not(.selected) + a.edit-filter:before {
  background-color: #e9f5fc;
}
.actions-bar h2 {
  color: #fff;
  padding: 0;
  font-weight: normal;
  font-size: 1.92rem;
}
.actions-bar h2 i {
  color: inherit;
  font-size: 2.24rem;
  margin-right: 0.8rem;
}
.actions-bar.gray {
  background-color: #585f69;
}
.actions-bar.gray a {
  color: #fff;
  display: inline-block;
}
.actions-bar.gray {
  padding: 0;
}
.actions-bar.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  text-align: center;
}
@media only screen and (min-width: 1025px) {
  .actions-bar.workplace-nav {
    position: fixed;
    top: 4.48rem;
    width: 100%;
    z-index: 999;
  }
  .actions-bar.workplace-nav ~ .panel-wrapper {
    margin-top: 5.12rem;
  }
}
.actions-bar.workplace-nav {
  background-color: white;
  border-bottom: 1px solid #d1d2d3;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  text-align: center;
  padding: 0;
}
@media only screen and (max-width: 540px) {
  .actions-bar.workplace-nav:not(.f-dropdown) {
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    -webkit-justify-content: left;
    -moz-justify-content: left;
    justify-content: left;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-right: 2.4rem;
  }
  .actions-bar.workplace-nav:not(.f-dropdown) a {
    padding-left: 1.6rem !important;
    padding-right: 1.6rem !important;
    white-space: nowrap;
    margin: 0;
  }
  .actions-bar.workplace-nav:not(.f-dropdown) a.active:after {
    bottom: 0;
  }
  .actions-bar.workplace-nav:not(.f-dropdown) .f-dropdown.content.dark {
    position: fixed !important;
    top: 11.36rem !important;
  }
}
.actions-bar.workplace-nav.f-dropdown {
  left: 0 !important;
  right: 0 !important;
  top: 4.8rem !important;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  z-index: 1005;
  box-shadow: 0px 2px 3px 0px rgba(16, 26, 40, 0.2);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.actions-bar.workplace-nav.f-dropdown:before, .actions-bar.workplace-nav.f-dropdown:after {
  display: none;
}
@media only screen and (min-width: 1025px) {
  .actions-bar.workplace-nav.f-dropdown {
    position: fixed !important;
  }
}
@media only screen and (max-width: 1024px) {
  .actions-bar.workplace-nav.f-dropdown {
    position: static !important;
  }
  .actions-bar.workplace-nav.f-dropdown.opened {
    display: block !important;
  }
  .actions-bar.workplace-nav.f-dropdown.open {
    display: none;
  }
  .actions-bar.workplace-nav.f-dropdown a {
    display: block;
    margin: 0 !important;
    text-align: left;
    height: 4.8rem !important;
    line-height: 4.8rem !important;
    padding: 0 1.2rem !important;
  }
  .actions-bar.workplace-nav.f-dropdown a:not(.active) {
    border-top: 1px solid #d1d2d3;
  }
}
.actions-bar.workplace-nav > a, .actions-bar.workplace-nav > span > a {
  display: inline-block;
  padding: 1.5rem 0.5rem !important;
  color: #6c727a;
  font-size: 1rem !important;
  text-transform: uppercase;
  position: relative;
  margin: 0 1rem;
  background-color: transparent !important;
  line-height: 1.92rem !important;
  font-weight: bold;
  text-decoration: none;
}
.actions-bar.workplace-nav > a.active, .actions-bar.workplace-nav > span > a.active {
  color: #343C48;
  font-weight: bold;
}
.actions-bar.workplace-nav > a.active:after, .actions-bar.workplace-nav > span > a.active:after {
  content: "" !important;
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: #585f69 !important;
  border-top-left-radius: 1px;
  border-top-right-radius: 1px;
}
.actions-bar.workplace-nav > a:not(.active):hover, .actions-bar.workplace-nav > a:not(.active):focus, .actions-bar.workplace-nav > a:not(.active):active, .actions-bar.workplace-nav > span > a:not(.active):hover, .actions-bar.workplace-nav > span > a:not(.active):focus, .actions-bar.workplace-nav > span > a:not(.active):active {
  color: #343C48;
}
.actions-bar.workplace-nav > span {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.actions-bar.workplace-nav > span .has-dropdown:hover {
  opacity: 1;
  text-decoration: underline;
}
.actions-bar.workplace-nav .has-dropdown + .f-dropdown {
  top: 5.56rem !important;
}
.actions-bar .has-dropdown {
  cursor: pointer;
}
.actions-bar .has-dropdown + .f-dropdown {
  left: -200px !important;
  right: -200px !important;
  top: 40px !important;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}
.actions-bar .f-dropdown.content.dark {
  padding: 0;
  box-shadow: 0px 2px 0px rgba(16, 26, 40, 0.03);
  background: #101a28;
  border: none;
  text-align: left;
  z-index: 550;
  border-bottom-left-radius: 1px;
  border-bottom-right-radius: 1px;
}
.actions-bar .f-dropdown.content.dark.open:before, .actions-bar .f-dropdown.content.dark.opne:after {
  display: block !important;
  right: 0;
  left: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
  border-bottom-color: #101a28;
}
.actions-bar .f-dropdown.content.dark ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.actions-bar .f-dropdown.content.dark ul li {
  float: none;
  display: block;
  border-top: 1px solid #343C48;
  padding: 0;
}
.actions-bar .f-dropdown.content.dark ul li:first-child {
  border-top: none;
}
.actions-bar .f-dropdown.content.dark ul li:first-child:before, .actions-bar .f-dropdown.content.dark ul li:first-child:after {
  display: none !important;
}
.actions-bar .f-dropdown.content.dark ul li a {
  color: #e6e9eb;
  text-align: left;
  font-size: 1.15rem;
  font-weight: 400;
  height: 4rem;
  line-height: 4.16rem !important;
  background-color: #101a28;
  padding: 0 0 0 1.2rem;
  position: relative;
  display: block;
}
.actions-bar .f-dropdown.content.dark ul li:hover a {
  background-color: #343C48;
  color: white;
}

@media only screen and (min-width: 1025px) {
  #trialbar + .top-bar .actions-bar.workplace-nav {
    top: 8.16rem !important;
  }
}

/* ------------------------------ */
/* ***** DROPDOWN OVERRIDES ***** */
/* ------------------------------ */
.f-dropdown .selected {
  position: relative;
  background-color: #e9f5fc !important;
  font-weight: bold;
}

.f-dropdown > li > a:not(.selected):not(.visibility-public):not(.visibility-private):not(.visibility-restricted):not(.visibility-exclusive):before, .f-dropdown > li > a:not(.selected):not(.visibility-public):not(.visibility-private):not(.visibility-restricted):not(.visibility-exclusive):after {
  display: block;
  clear: both;
  content: "";
}
.f-dropdown li a.disabled {
  color: #585f69;
  cursor: default;
}

ul.f-dropdown {
  margin-top: -2px;
  z-index: 550;
  border: 1px solid #d1d2d3;
  box-shadow: 0px 2px 3px 0px rgba(16, 26, 40, 0.2);
  max-width: 100%;
  padding-left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0.24rem;
  border-bottom-left-radius: 0.24rem;
}
ul.f-dropdown.counts {
  counter-reset: drop-section;
  counter-reset: drop-sub-section;
}
ul.f-dropdown.counts li:not(.group) {
  counter-increment: drop-sub-section;
}
ul.f-dropdown.counts li:not(.group) a:before {
  content: counter(drop-section) "." counter(drop-sub-section);
}
ul.f-dropdown.counts li.group {
  counter-increment: drop-section;
  counter-reset: drop-sub-section;
}
ul.f-dropdown.counts li.group a {
  font-weight: bold;
  background-color: #e6e9eb;
}
ul.f-dropdown.counts li.group a:before {
  content: counter(drop-section);
}
ul.f-dropdown.counts li a {
  padding-left: 40px;
  position: relative;
  font-size: 1.12rem;
}
ul.f-dropdown.counts li a:before {
  position: absolute;
  top: 0.6em;
  left: 0.8em;
  width: 40px;
  text-align: left;
  line-height: 1em;
}
ul.f-dropdown li {
  display: block;
  border-bottom: 1px solid #d1d2d3;
  padding: 0;
}
ul.f-dropdown li a:not(.clickable), ul.f-dropdown li .anchor {
  color: #585f69;
  text-align: left;
  font-size: 1.15rem;
  font-weight: 400;
  background-color: #fff;
  text-decoration: none !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
ul.f-dropdown li a:not(.clickable) i.pti:first-child, ul.f-dropdown li .anchor i.pti:first-child {
  margin-left: 0;
  margin-right: 0.4rem;
  font-size: 1.12rem;
}
ul.f-dropdown li a:not(.clickable).selected span, ul.f-dropdown li .anchor.selected span {
  font-size: inherit;
  color: #343C48 !important;
  font-weight: 700;
}
ul.f-dropdown li a:not(.clickable).selected a, ul.f-dropdown li a:not(.clickable).selected a:hover, ul.f-dropdown li .anchor.selected a, ul.f-dropdown li .anchor.selected a:hover {
  background-color: inherit !important;
}
ul.f-dropdown li a:not(.clickable):hover, ul.f-dropdown li .anchor:hover {
  color: #343C48;
  background-color: #e9f5fc;
}
ul.f-dropdown li a.disabled {
  color: #bec0c4;
  cursor: default;
}
ul.f-dropdown li a.disabled:hover {
  color: #bec0c4;
}
ul.f-dropdown li .anchor {
  line-height: 35px;
  padding: 0 0.8rem;
}
ul.f-dropdown li .anchor > a {
  display: inline;
  padding: 0;
  background: inherit;
  line-height: normal;
}
ul.f-dropdown li .anchor > a.edit {
  float: right;
  line-height: 35px;
  color: #6c727a !important;
}
ul.f-dropdown li .anchor > a.edit span {
  color: #6c727a !important;
}
ul.f-dropdown li .anchor:hover > a {
  color: #343C48;
}
ul.f-dropdown li .anchor:hover > a.edit {
  color: #0684d7 !important;
}
ul.f-dropdown li .anchor:hover > a.edit span {
  color: #0684d7 !important;
}
ul.f-dropdown li:last-child {
  border: none;
}
ul.f-dropdown.inverted li a {
  background-color: #d1d2d3;
}
ul.f-dropdown.inverted li:hover a {
  background-color: #fff;
}
ul.f-dropdown.wrap li, ul.f-dropdown.wrap a, ul.f-dropdown.wrap .anchor {
  overflow: visible !important;
  white-space: normal !important;
}
ul.f-dropdown {
  /* remove carret */
}
ul.f-dropdown:before {
  border-color: transparent transparent #343C48 transparent;
  left: 51px;
  display: none;
}
ul.f-dropdown:after {
  left: 50px;
  display: none;
}

.f-dropdown.dark-content {
  background: #101a28;
  border: none;
  padding: 2rem;
  border-radius: 1px;
  box-shadow: 0px 2px 3px 0px rgba(16, 26, 40, 0.2);
  margin-top: -0.8rem;
}
.f-dropdown.dark-content .f-dropdown-content {
  color: #fff;
}
.f-dropdown.dark-content:before {
  border-color: transparent transparent #101a28 transparent;
}
.f-dropdown.dark-content .markdown li {
  cursor: default;
}
.f-dropdown.dark-content .markdown li:hover {
  background-color: transparent;
}
.f-dropdown.dark {
  background: #101a28;
  border: none;
  padding: 2rem;
  border-radius: 1px;
  box-shadow: 1px 3px 3px 0 rgba(0, 0, 0, 0.15);
  margin-top: -0.8rem;
}
.f-dropdown.dark p, .f-dropdown.dark ul, .f-dropdown.dark ol, .f-dropdown.dark dl, .f-dropdown.dark li, .f-dropdown.dark dd, .f-dropdown.dark span, .f-dropdown.dark div {
  color: #fff !important;
}
.f-dropdown.dark:before {
  border-color: transparent transparent #101a28 transparent;
}
.f-dropdown.dark.drop-left {
  margin-right: 0.8rem;
}
.f-dropdown.dark.drop-left:before {
  border-color: transparent transparent transparent #101a28;
}
.f-dropdown.dark.drop-right {
  margin-left: 0.8rem;
}
.f-dropdown.dark.drop-right:before {
  border-color: transparent #101a28 transparent transparent;
}
.f-dropdown.light-labels {
  width: auto;
  max-width: 100vw;
  min-width: 600px;
  left: 0 !important;
  right: auto !important;
}
.f-dropdown.light-labels.light-labels-short {
  min-width: 0;
}
.f-dropdown.light-labels.light-labels-short .anchor {
  white-space: nowrap;
}
.f-dropdown.light-labels .light-labels-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: white;
  padding: 0.8rem 0.8rem 1.6rem;
}
.f-dropdown.light-labels .light-labels-wrapper > * {
  width: 50%;
  padding: 1.6rem 2.4rem;
}
@media only screen and (max-width: 1024px) {
  .f-dropdown.light-labels .light-labels-wrapper > * {
    padding: 0;
  }
}
.f-dropdown.light-labels .light-labels-wrapper > *:first-child li {
  padding-right: 0.8rem;
}
.f-dropdown.light-labels .light-labels-wrapper > * + * li {
  padding-left: 0.8rem;
}
.f-dropdown.light-labels .light-labels-wrapper label {
  font-size: 1.15rem;
  color: #343C48;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 0.25rem;
}
.f-dropdown.light-labels .light-labels-wrapper ul, .f-dropdown.light-labels .light-labels-wrapper a, .f-dropdown.light-labels .light-labels-wrapper li {
  background-color: transparent !important;
  line-height: normal !important;
  padding: 0 !important;
  border: 0 none !important;
  float: none;
  transition: ease-in-out 0.3s;
}
.f-dropdown.light-labels .light-labels-wrapper ul, .f-dropdown.light-labels .light-labels-wrapper li {
  margin: 0 !important;
}
.f-dropdown.light-labels .light-labels-wrapper .anchor, .f-dropdown.light-labels .light-labels-wrapper .p {
  display: block;
  line-height: 1.5;
  padding-right: 1.6rem;
}
.f-dropdown.light-labels .light-labels-wrapper .p {
  color: #101a28;
  font-size: 1.3rem;
  margin: 0;
}
.f-dropdown.light-labels .light-labels-wrapper a.selected:after, .f-dropdown.light-labels .light-labels-wrapper a.selected:before {
  display: none;
}
.f-dropdown.light-labels .light-labels-wrapper a:hover .anchor {
  text-decoration: underline !important;
}
.f-dropdown.light-labels .light-labels-wrapper .anchor {
  font-weight: bold !important;
  font-size: 1.36rem;
  padding: 0.8rem 0 0;
  color: #0684d7 !important;
}
.f-dropdown.light-labels .light-labels-wrapper li:first-child .anchor:only-child {
  padding-top: 0;
}
.f-dropdown.add-tag-list {
  max-width: 24rem !important;
  min-width: 24rem !important;
  margin-top: 0.8rem;
}
.f-dropdown.add-tag-list div {
  display: block;
}
.f-dropdown.add-tag-list .button {
  display: inline-block;
  vertical-align: middle;
}
.f-dropdown.add-tag-list .add-section:hover {
  background: white;
}
.f-dropdown.add-tag-list .add-section form {
  padding: 1rem;
  margin: 0;
}
.f-dropdown.add-tag-list .add-section form .form-control, .f-dropdown.add-tag-list .add-section form .flexible-rolldown {
  margin-bottom: 0.56rem;
}
.f-dropdown.add-tag-list .add-section form .form-actions {
  text-align: right;
  vertical-align: middle;
}
.f-dropdown.add-tag-list .list-section {
  display: block;
  max-height: 170px;
  overflow: auto;
}
.f-dropdown.add-tag-list .list-section .list-item {
  display: block;
  position: relative;
  line-height: 2.64rem;
  padding: 0 0.8rem;
  font-size: 1rem;
}
.f-dropdown.add-tag-list .list-section .list-item.tagged i {
  color: #0684d7 !important;
}
.f-dropdown.add-tag-list .list-section .list-item > span {
  padding-right: 1.6rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}
.f-dropdown.add-tag-list .list-section .list-item + .list-item {
  border-top: 1px solid #cdd2d6;
}
.f-dropdown.add-tag-list .list-section .list-item:hover {
  background-color: #e9f5fc;
}
.f-dropdown.add-tag-list .list-section .list-item:hover i {
  color: #343C48;
}
.f-dropdown.add-tag-list .list-section .list-item i {
  position: absolute;
  right: 0.8rem;
  color: #6c727a;
  height: 1.6rem;
  bottom: 0;
  top: 0;
  font-size: 1.6rem;
  margin: auto;
}
.f-dropdown.add-tag-list .f-dropdown i {
  color: #585f69;
}
.f-dropdown.add-tag-list .create-button {
  line-height: 2.64rem;
  padding: 0 0.8rem;
  font-size: 1rem;
  color: #0684d7;
}
.f-dropdown.add-tag-list .create-button.create {
  display: none;
}
.f-dropdown.add-tag-list .create-button.create + form {
  display: block;
}
.f-dropdown.add-tag-list .create-button + form {
  display: none;
}
.f-dropdown .f-dropdown-header {
  display: block;
  background-color: #e6e9eb;
  color: #343C48;
  line-height: 2.72rem;
  padding: 0 0.8rem;
  font-size: 1rem;
  font-weight: 600;
}
.f-dropdown .f-dropdown-header:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  border-color: transparent transparent white transparent;
  border-bottom-style: solid;
  position: absolute;
  top: -11px;
  left: auto;
  right: 9px;
  z-index: 89;
  border-bottom-color: #fff;
}
.f-dropdown .f-dropdown-header:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 7px;
  border-color: transparent transparent #d1d2d3 transparent;
  border-bottom-style: solid;
  position: absolute;
  top: -14px;
  left: auto;
  right: 8px;
  z-index: 88;
}
.f-dropdown .f-dropdown-header:hover {
  background-color: #e6e9eb;
}
.f-dropdown .flexible-rolldown {
  display: block;
}
.f-dropdown .flexible-rolldown a:not(.button), .f-dropdown .flexible-rolldown li, .f-dropdown .flexible-rolldown ul {
  display: block;
}

.flexible-rolldown {
  display: inline-block;
  position: relative;
}
.flexible-rolldown a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.flexible-rolldown a *:not(i):not(.pti):not(.avatar) {
  display: inline;
}
.flexible-rolldown a.with-avatar {
  padding-left: 0.5rem;
  font-weight: normal !important;
  color: #343C48;
  font-size: 1.04rem !important;
}
.flexible-rolldown.block {
  display: block;
  width: 100%;
}
.flexible-rolldown.block .button.rolldown.pill-btn {
  min-width: 0;
}
.flexible-rolldown.block .button.rolldown {
  display: block;
}
.flexible-rolldown.inline .button {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.flexible-rolldown.inline .button, .flexible-rolldown.inline .f-dropdown {
  min-width: 0;
}
.flexible-rolldown:not(.rolldown-auto) .rolldown {
  width: 100%;
}
.flexible-rolldown:not(.rolldown-auto) .f-dropdown {
  width: 100% !important;
}
.flexible-rolldown:not(.rolldown-auto) .f-dropdown.open {
  left: 0 !important;
}
.flexible-rolldown.rolldown-auto .f-dropdown {
  width: auto;
  max-width: none;
}

.tab-max-scroll[style*=scroll-margin-top] .f-dropdown.fixed {
  margin-top: var(--scroll-margin-top) !important;
}

a i.pti,
a i.pti:before {
  text-decoration: none !important;
}

i.pti {
  font-family: "FontAwesome";
  color: #343C48;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  text-decoration: inherit;
  font-size: 1.5rem;
  margin-left: 0.4rem;
}
i.pti:before {
  font-family: "FontAwesome";
}
i.pti:hover {
  text-decoration: none;
}
i.pti.pt-red {
  color: #EF452F;
}
i.pti.pt-green {
  color: #00a57a;
}
i.pti.infront {
  margin-left: 0;
  margin-right: 0.4rem;
}
i.pti.pti-big {
  font-size: 5.6rem;
  position: relative;
}
i.pti.pti-big.pt-file .pti.pt-settings {
  top: 1.76rem;
}
i.pti.pti-big .pti {
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  font-size: 2.08rem;
  width: 2.08rem;
  height: 2.08rem;
  margin: auto;
}

.prefix .pti {
  cursor: default !important;
  font-size: 1.76rem;
  line-height: 3.12rem;
  color: #585f69;
  margin-left: 0;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
}
.prefix .pti.pt-web {
  font-size: 1.76rem;
}
.prefix .pti:hover {
  color: #343C48;
}

/* FontAwesome */
.pt-arrow-expand:before {
  content: "\f065";
}

.pt-arrow-compress:before {
  content: "\f066";
}

.pt-quote:before {
  content: "\f10e";
}

.pt-prohibited:before {
  content: "\f05e";
}

.pt-pdf:before {
  content: "\f1c1";
}

.pt-excel:before {
  content: "\f1c3";
}

.pt-delete:before {
  content: "\f1f8";
}

.pt-exclamation:before {
  content: "\f12a";
}

.pt-thumbnail:before {
  content: "\f00a";
}

.pt-add:before {
  content: "\f067";
}

.pt-minus:before {
  content: "\f068";
}

.pt-fullscreen:before {
  content: "\f0b2";
}

.pt-repeat:before {
  content: "\f01e";
}

.pt-rotate-left:before {
  content: "\f0e2";
}

.pt-edit:before {
  content: "\f040";
}

.pt-duplicate:before {
  content: "\f08e";
}

.pt-review:before {
  content: "\f044";
}

.pt-random:before {
  content: "\f074";
}

.pt-close:before {
  content: "\f00d";
}

.pt-angle-down:before {
  content: "\f107";
}

.pt-angle-up:before {
  content: "\f106";
}

.pt-angle-left:before {
  content: "\f104";
}

.pt-angle-right:before {
  content: "\f105";
}

.pt-flag:before {
  content: "\f024";
}

.pt-cloud:before {
  content: "\f0c2";
}

.pt-info:before {
  content: "\f05a";
}

.pt-location:before {
  content: "\f041";
}

.pt-settings:before {
  content: "\f013";
}

.pt-downdir:before {
  content: "\f0d7";
}

.pt-left:before {
  content: "\f053";
}

.pt-right:before {
  content: "\f054";
}

.pt-star-f:before {
  content: "\f005";
}

.pt-star-e:before {
  content: "\f006";
}

.pt-trophy:before {
  content: "\f091";
}

.pt-search:before {
  content: "\f002";
}

.pt-search-plus:before {
  content: "\f00e";
}

.pt-right-arrow-thick:before {
  content: "\f054";
}

.pt-left-arrow-thick:before {
  content: "\f053";
}

.pt-right-arrow-thick-2:before {
  content: "\f0da";
}

.pt-left-arrow-thick-2:before {
  content: "\f0d9";
}

.pt-down-arrow-thick:before {
  content: "\f0d7";
}

.pt-up-arrow-thick:before {
  content: "\f0d8";
}

.pt-right-arrow-thin:before {
  content: "\f105";
}

.pt-left-arrow-long:before {
  content: "\f177";
}

.pt-cursor:before {
  content: "\f246";
}

.pt-list:before {
  content: "\f03a";
}

.pt-list-ul:before {
  content: "\f0ca";
}

.pt-list-f:before {
  content: "\f00b";
}

.pt-menu:before {
  content: "\f0c9";
}

.pt-signin:before {
  content: "\f090";
}

.pt-signout:before {
  content: "\f08b";
}

.pt-upload:before {
  content: "\f093";
}

.pt-download:before {
  content: "\f019";
}

.pt-export:before {
  content: "\f064";
}

.pt-share:before {
  content: "\f064";
}

.pt-share-square:before {
  content: "\f045";
}

.pt-find:before {
  content: "\f002";
}

.pt-graph:before {
  content: "\f080";
}

.pt-pie-chart:before {
  content: "\f200";
}

.pt-twitter:before {
  content: "\f081";
}

.pt-facebook:before {
  content: "\f082";
}

.pt-linkedin:before {
  content: "\f08c";
}

.pt-instagram:before {
  content: "\f16d";
}

.pt-phone:before {
  content: "\f095";
}

.pt-print:before {
  content: "\f02f";
}

.pt-hand-stop:before {
  content: "\f256";
}

.pt-mail:before {
  content: "\f003";
}

.pt-web:before {
  content: "\f0ac";
}

.pt-hourglass:before {
  content: "\f250";
}

.pt-user:before {
  content: "\f007";
}

.pt-thumbsup:before {
  content: "\f164";
}

.pt-thumbsdown:before {
  content: "\f165";
}

.pt-plus:before {
  content: "\f067";
}

.pt-plus-circled:before {
  content: "\f055";
}

.pt-plus-squared:before {
  content: "\f0d4";
}

.pt-calendar:before {
  content: "\f133";
}

.pt-align-right:before {
  content: "\f038";
}

.pt-calendar-check:before {
  content: "\f274";
}

.pt-check-circle-o:before {
  content: "\f05d";
}

.pt-task:before {
  content: "\f274";
}

.pt-notification:before {
  content: "\f0f3";
}

.pt-notification-o:before {
  content: "\f0a2";
}

.pt-view:before {
  content: "\f06e";
}

.pt-chart-bar:before {
  content: "\f080";
}

.pt-line-chart:before {
  content: "\f201";
}

.pt-check:before {
  content: "\f00c";
}

.pt-attention:before {
  content: "\f06a";
}

.pt-blocked:before {
  content: "\f05e";
}

.pt-help:before {
  content: "\f059";
}

.pt-archive:before {
  content: "\f187";
}

.pt-cancel:before {
  content: "\f00d";
}

.pt-camera:before {
  content: "\f030";
}

.pt-tools:before {
  content: "\f0ad";
}

.pt-email:before {
  content: "\f003";
}

.pt-lock:before {
  content: "\f023";
}

.pt-unlock:before {
  content: "\f13e";
}

.pt-globe:before {
  content: "\f0ac";
}

.pt-tag:before {
  content: "\f02b";
}

.pt-comment:before {
  content: "\f0e5";
}

.pt-clock:before {
  content: "\f017";
}

.pt-table:before {
  content: "\f0ce";
}

.pt-users:before {
  content: "\f0c0";
}

.pt-file-excel:before {
  content: "\f1c3";
}

.pt-currency:before {
  content: "\f155";
}

.pt-office:before {
  content: "\f041";
}

.pt-grid:before {
  content: "\f009";
}

.pt-document:before {
  content: "\f15c";
}

.pt-clipboard:before {
  content: "\f0ea";
}

.pt-award:before {
  content: "\f091";
}

.pt-layout:before {
  content: "\f125";
}

.pt-lamp:before {
  content: "\f0eb";
}

.pt-newspaper:before {
  content: "\f1ea";
}

.pt-home:before {
  content: "\f015";
}

.pt-wrench:before {
  content: "\f0ad";
}

.pt-docs:before {
  content: "\f0c5";
}

.pt-exchange:before {
  content: "\f0ec";
}

.pt-basket:before {
  content: "\f19c";
}

.pt-play:before {
  content: "\f04b";
}

.pt-square-o:before {
  content: "\f096";
}

.pt-file:before {
  content: "\f15b";
}

.pt-file-o:before {
  content: "\f016";
}

.pt-columns:before {
  content: "\f0db";
}

.pt-user-add:before {
  content: "\f234";
}

.pt-square:before {
  content: "\f0c8";
}

.pt-arrow-down:before {
  content: "\f063";
}

.pt-arrow-circle-left:before {
  content: "\f0a8";
}

.pt-arrow-circle-right:before {
  content: "\f0a9";
}

.pt-arrow-left:before {
  content: "\f060";
}

.pt-arrow-right:before {
  content: "\f061";
}

.pt-arrow-up:before {
  content: "\f062";
}

.pt-arrows-h:before {
  content: "\f07e";
}

.pt-arrows-v:before {
  content: "\f07d";
}

.pt-level-up:before {
  content: "\f148";
}

.pt-alert:before {
  content: "\f071";
}

.pt-building:before {
  content: "\f1ad";
}

.pt-shield:before {
  content: "\f132";
}

.pt-approv:before {
  content: "\f05d";
}

.pt-open-circle:before {
  content: "\f01d";
}

.pt-unpost:before {
  content: "\f190";
}

.pt-reject:before {
  content: "\f05c";
}

.pt-minus-circle:before {
  content: "\f056";
}

.pt-approv-fill:before {
  content: "\f058";
}

.pt-reject-fill:before {
  content: "\f057";
}

.pt-minus-square:before {
  content: "\f146";
}

.pt-plus-square:before {
  content: "\f0fe";
}

.pt-circle:before {
  content: "\f111";
}

.pt-circle-empty:before {
  content: "\f10c";
}

.pt-circle-half:before {
  content: "\f042";
}

.pt-list-alt:before {
  content: "\f022";
}

.pt-directory:before {
  content: "\f0e8";
}

.pt-envelope:before {
  content: "\f0e0";
}

.pt-refresh:before {
  content: "\f021";
}

.pt-chevron-down:before {
  content: "\f078";
}

.pt-filter:before {
  content: "\f0b0";
}

::-webkit-input-placeholder { /* Chrome */
  color: #bec0c4;
}

:-ms-input-placeholder { /* IE 10+ */
  color: #bec0c4;
}

::-moz-placeholder { /* Firefox 19+ */
  color: #bec0c4;
  opacity: 1;
}

:-moz-placeholder { /* Firefox 4 - 18 */
  color: #bec0c4;
  opacity: 1;
}

input[type=checkbox],
input[type=radio] {
  position: relative;
  margin: 0;
}

label > input[type=checkbox],
label > input[type=radio] {
  position: relative;
  margin: 0 0.56rem 0.4rem 0.16rem;
}

.form-description {
  font-weight: 300;
  color: #343C48;
  font-size: 1.25rem;
}

.input-holder {
  padding-bottom: 2rem;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

label {
  font-size: 1.15rem;
  color: #343C48;
  line-height: 1.5;
  font-weight: normal;
  cursor: default;
}
label.inline {
  padding: 0.56rem 0 !important;
}
label.inline.nopadding {
  padding: 0 !important;
}
label.required:after {
  content: " *";
  color: #EF452F;
}
label abbr {
  display: none;
}
label.bold {
  font-weight: bold !important;
}

.intl-tel-input {
  width: 100%;
}

input[type=checkbox] + label,
input[type=radio] + label {
  margin-left: 0.24rem;
  margin-right: 0.8rem;
  cursor: default;
}

.radio label {
  font-weight: inherit;
}

.iti {
  display: block;
  margin-bottom: 1rem;
}

.iti__selected-dial-code {
  font-size: 1.25rem;
}

.iti__flag-container {
  height: 3.6rem;
}

.selected-flag:focus {
  outline: 0 !important;
}

.flag-container {
  top: auto;
  bottom: auto;
  height: 3.6rem;
}

.input.tel {
  margin: 0 !important;
}

.intl-tel-input ul.parsley-errors-list:empty {
  margin-top: 1.6rem !important;
}

.intl-tel-input input[type=text], .intl-tel-input input[type=tel] {
  margin-bottom: 1.6rem !important;
}
.intl-tel-input input[type=text].parsley-error, .intl-tel-input input[type=tel].parsley-error {
  margin-bottom: 0 !important;
}

.jquery-datepicker {
  position: relative;
}

.hasDatepicker, .with-datepicker {
  min-width: 19.2rem;
}
.hasDatepicker + .pt-calendar, .with-datepicker + .pt-calendar {
  position: absolute;
  right: 0.8rem;
  top: 1.04rem;
  pointer-events: none;
  color: #cdd2d6;
}

.columns > .hasDatepicker, .columns > .with-datepicker {
  min-width: 0;
}

input.readonly, input[readonly], textarea.readonly, textarea[readonly], select.readonly, select[readonly] {
  background-color: white !important;
}
input.limit-width, textarea.limit-width, select.limit-width {
  max-width: 86.4rem;
}

.readonly input, .readonly .input,
[readonly] input,
[readonly] .input {
  background-color: white !important;
}

.xsmall-hpad-right .hasDatepicker + .pt-calendar {
  right: 1.2rem;
}

.checkox.inline,
.radio.inline {
  display: inline-block;
  margin-right: 1.6rem;
}
.checkox.inline:last-child,
.radio.inline:last-child {
  margin-right: 0;
}

.align-right input[type=checkbox] + label:last-child,
.align-right input[type=radio] + label:last-child {
  margin-right: 0;
}

.keyword-search {
  display: inline-block;
  position: relative;
}
.keyword-search.block {
  width: 100%;
  display: block;
}
.keyword-search .search-btn i.pti {
  display: block;
  color: #cdd2d6;
}
.keyword-search .not-blank + .search-btn {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 30px;
}
.keyword-search .not-blank + .search-btn i {
  color: #cdd2d6 !important;
  cursor: pointer !important;
}
.keyword-search input {
  margin-bottom: 0;
}
.keyword-search input.long {
  min-width: 22.4rem;
}
.keyword-search input::-ms-clear {
  margin: 0 1.6rem 0 0;
}
.keyword-search i.pti {
  position: absolute;
  right: 0.4rem;
  top: 50%;
  cursor: default;
  font-size: inherit;
  line-height: 0;
  color: #343C48;
  z-index: 2;
  padding: 0.12rem 0.56rem;
  border-radius: 0.32rem;
  display: none;
}
.keyword-search i.pti.pt-close {
  right: 0.56rem;
  cursor: pointer;
}
.keyword-search i.pti.pt-close:before {
  color: #585f69;
  font-family: "FontAwesome";
  content: "\f00d";
}
.keyword-search i.pti.pt-close:hover {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #343C48 !important;
  background: transparent;
}
.keyword-search i.pti.pt-search {
  cursor: default;
  color: #cdd2d6;
}
.keyword-search i.pti.pt-search.active {
  color: #585f69;
  cursor: pointer;
}
.keyword-search i.pti.pt-search.active:hover {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #343C48 !important;
  background: transparent;
}
@media only screen and (min-width: 1025px) {
  .keyword-search > input {
    padding-right: 2.8rem;
  }
  .keyword-search > i.pti {
    display: block;
  }
}

label.custom-radio input {
  position: absolute;
  left: -10000px;
}
label.custom-radio input + span {
  width: 1.36rem;
  height: 1.36rem;
  position: relative;
  vertical-align: middle;
  border: 1px solid #cdd2d6;
  background: #fff;
  border-radius: 0.24rem;
  padding: 0;
  margin: 0;
  top: -1px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  font-weight: normal;
}
label.custom-radio input:checked + span {
  border-color: #0684d7;
  background: #0684d7;
}
label.custom-radio input:checked + span:after {
  content: "\f00c";
  font-family: "FontAwesome";
  font-size: 0.8rem;
  line-height: 1.28rem;
  color: #fff;
  padding: 0;
  margin: 0;
  text-align: center;
  bottom: auto;
  height: 1.36rem;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
}
label.custom-radio span + span {
  font-weight: normal;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.25rem;
}

label.custom-checkbox {
  display: inline;
}
label.custom-checkbox .checkbox + * {
  margin-left: 0.25rem;
}
label.custom-checkbox label {
  display: inline;
  vertical-align: middle;
}
label.custom-checkbox .left + .label {
  margin-left: 20px;
  display: block;
}
label.custom-checkbox .left + .label label {
  vertical-align: top;
  display: block;
  margin-top: 0;
}
label.custom-checkbox .left + .label label + p[class^=pt-] {
  font-weight: normal;
  font-size: 1.12rem;
}
label.custom-checkbox .label p {
  margin: 0.8rem 0 0 0;
}
label.custom-checkbox.bold label {
  font-weight: bold;
}
label.custom-checkbox + label.inline {
  margin-left: 1rem;
  margin-bottom: 0;
  padding: 0 !important;
  vertical-align: middle;
}

.custom-checkbox label,
.checkbox label {
  font-weight: 300;
}

label.disabled {
  color: #585f69;
}

.custom-checkbox label {
  line-height: 1;
  margin: 0;
}
.custom-checkbox label.disabled {
  pointer-events: none;
  color: #585f69;
}
.custom-checkbox label.disabled input {
  pointer-events: none;
}
.custom-checkbox label.disabled .checkbox {
  pointer-events: none;
  background: #f2f5f6 !important;
  border-color: #cdd2d6 !important;
}
.custom-checkbox label.disabled .checkbox:before {
  color: #cdd2d6 !important;
}
.custom-checkbox input {
  left: -99999px !important;
  position: fixed !important;
  visibility: hidden;
}
.custom-checkbox input:checked ~ .checkbox {
  border: 1px solid #0684d7;
  background: #0684d7;
}
.custom-checkbox input:checked ~ .checkbox:before {
  content: "\f00c";
  font-family: "FontAwesome";
  font-size: 9px;
  line-height: 13px;
}
.custom-checkbox input[disabled] ~ .checkbox {
  pointer-events: none;
  background: #f2f5f6 !important;
  border-color: #cdd2d6 !important;
}
.custom-checkbox input[disabled] ~ .checkbox:before {
  color: #cdd2d6 !important;
}
.custom-checkbox input[readonly] ~ .checkbox {
  pointer-events: none;
}
.custom-checkbox .checkbox {
  display: inline-block;
  width: 1.36rem;
  height: 1.36rem;
  position: relative;
  vertical-align: middle;
  border: 1px solid #cdd2d6;
  background: #fff;
  border-radius: 1px;
  padding: 0;
  margin: 0 0.4rem 0 0;
  text-align: center;
  top: -2px;
}
.custom-checkbox .checkbox:hover {
  border-color: #0684d7;
}
.custom-checkbox .checkbox:before {
  content: "";
  display: block;
  color: #fff;
}
.custom-checkbox .checkbox.checked {
  border: 1px solid #0684d7;
  background: #0684d7;
}
.custom-checkbox .checkbox.checked:before {
  content: "\f00c";
  font-family: "FontAwesome";
  font-size: 9px;
  line-height: 13px;
}

.old-form-fix label {
  display: none;
}
.old-form-fix li {
  list-style: none;
}

.error input,
.error input[type=text],
.error input[type=password],
.error input[type=date],
.error input[type=datetime],
.error input[type=datetime-local],
.error input[type=month],
.error input[type=week],
.error input[type=email],
.error input[type=number],
.error input[type=search],
.error input[type=tel],
.error input[type=time],
.error input[type=url],
.error select,
.error textarea,
.error input.readonly[readonly],
.error .select2-search input.select2-input, .error .select2-choice,
.error .selectize-input > input, .error .output {
  border-color: #EF452F !important;
}

.parsley-error .select2-choice {
  border-color: #EF452F !important;
}

input[type=text],
input[type=password],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=month],
input[type=week],
input[type=email],
input[type=number],
input[type=search],
input[type=tel],
input[type=time],
input[type=url],
select,
textarea,
input.readonly[readonly],
.select2-search input.select2-input,
.output {
  -moz-transition: none !important;
  -webkit-transition: none !important;
  -o-transition: all 0 ease-in !important;
  transition: none !important;
  position: relative;
  height: 3.6rem !important;
  line-height: 3.52rem;
  font-size: 1.25rem;
  border-radius: 1px;
  background-color: #fff;
  border-color: #d1d2d3;
  color: #343C48;
  padding: 0 0.8rem;
  box-shadow: none !important;
}
input[type=text].nano,
input[type=password].nano,
input[type=date].nano,
input[type=datetime].nano,
input[type=datetime-local].nano,
input[type=month].nano,
input[type=week].nano,
input[type=email].nano,
input[type=number].nano,
input[type=search].nano,
input[type=tel].nano,
input[type=time].nano,
input[type=url].nano,
select.nano,
textarea.nano,
input.readonly[readonly].nano,
.select2-search input.select2-input.nano,
.output.nano {
  height: 2.48rem !important;
  line-height: 2.4rem !important;
  font-size: 1rem !important;
}
input[type=text]:hover,
input[type=password]:hover,
input[type=date]:hover,
input[type=datetime]:hover,
input[type=datetime-local]:hover,
input[type=month]:hover,
input[type=week]:hover,
input[type=email]:hover,
input[type=number]:hover,
input[type=search]:hover,
input[type=tel]:hover,
input[type=time]:hover,
input[type=url]:hover,
select:hover,
textarea:hover,
input.readonly[readonly]:hover,
.select2-search input.select2-input:hover,
.output:hover {
  border-color: #8A8F97;
  background-color: white;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=date]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=time]:focus,
input[type=url]:focus,
select:focus,
textarea:focus,
input.readonly[readonly]:focus,
.select2-search input.select2-input:focus,
.output:focus {
  background-color: white;
  border-color: #0684d7;
  outline: none;
  box-shadow: none !important;
}
input[type=text]:disabled,
input[type=password]:disabled,
input[type=date]:disabled,
input[type=datetime]:disabled,
input[type=datetime-local]:disabled,
input[type=month]:disabled,
input[type=week]:disabled,
input[type=email]:disabled,
input[type=number]:disabled,
input[type=search]:disabled,
input[type=tel]:disabled,
input[type=time]:disabled,
input[type=url]:disabled,
select:disabled,
textarea:disabled,
input.readonly[readonly]:disabled,
.select2-search input.select2-input:disabled,
.output:disabled {
  box-shadow: none !important;
  background: #f2f5f6 !important;
  color: #bec0c4 !important;
  pointer-events: none !important;
  border-color: #cdd2d6 !important;
}

.output {
  position: relative;
  padding: 0;
  border: 1px solid #d1d2d3;
}
.output input, .output [contenteditable] {
  background-color: transparent !important;
  outline: 0 none;
  border: 0;
  min-width: 6.4rem;
  height: inherit !important;
  line-height: inherit !important;
  cursor: text;
  vertical-align: top;
  text-align: right;
  display: block;
}
.output input.percent:after, .output [contenteditable].percent:after {
  content: "%";
}
.output + span {
  margin-left: 2px;
}
.output.with-control input, .output.with-control [contenteditable] {
  padding-right: 28px;
}
.output .controls {
  border-left: 1px solid #d1d2d3;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 20px;
  height: 100%;
  pointer-events: none;
  background-color: #f2f5f6;
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
}
.output .controls:after {
  content: "";
  top: 0;
  bottom: 0;
  height: 0;
  margin: auto;
  width: 100%;
  position: absolute;
}
.output .controls a {
  margin: 0;
  padding: 0;
  position: absolute;
  cursor: pointer;
  top: 0;
  height: 12px;
  line-height: 12px;
  right: 0;
  width: 20px;
  text-align: center;
  pointer-events: auto;
}
.output .controls a i {
  height: 12px;
  line-height: 12px;
  font-size: 100%;
  width: 20px;
  margin: 0;
  text-align: center;
}
.output .controls a + a {
  bottom: 0;
  top: auto;
}

.selectize-input {
  -moz-transition: none !important;
  -webkit-transition: none !important;
  -o-transition: all 0 ease-in !important;
  transition: none !important;
  position: relative;
  min-height: 3.6rem !important;
  height: auto;
  line-height: 3.52rem;
  font-size: 1.25rem;
  border-radius: 1px;
  background-color: #fff;
  border-color: #d1d2d3;
  color: #343C48;
  padding: 0 0.8rem;
  box-shadow: none !important;
}

.selectize-control.single .selectize-input:after {
  top: 0.16rem !important;
}

.cleditorMain, .CodeMirror {
  border-radius: 1px !important;
  background-color: #fff !important;
  border-color: #d1d2d3 !important;
  margin-bottom: 2rem;
  float: none !important;
}
.cleditorMain.error, .CodeMirror.error {
  margin-bottom: 0;
}
.cleditorMain .editor-preview em, .CodeMirror .editor-preview em {
  font-style: italic;
}

.CodeMirror, .CodeMirror-scroll {
  min-height: 200px;
}

.editor-toolbar {
  padding: 0 0.8rem;
  background: #e6e9eb;
}
.editor-toolbar a {
  line-height: 2.72rem;
  height: 2.72rem;
  width: 2.72rem;
}
.editor-toolbar a:before {
  line-height: 2.72rem;
}
.editor-toolbar a:last-child {
  float: right;
}
.editor-toolbar:after {
  margin-top: 0.24rem;
}
.editor-toolbar:before {
  margin-bottom: 0.24rem;
}

.input.tel {
  margin-bottom: 2rem;
}
.input.tel .intl-tel-input {
  width: 100%;
}

.selectize-control-wrapper.margin-bottom .selectize-control {
  margin-bottom: 2rem;
}

.selectize-control.multi {
  margin-bottom: 2rem;
}
.selectize-control.multi .selectize-dropdown {
  z-index: 1000;
}
.selectize-control.multi .selectize-dropdown [data-selectable], .selectize-control.multi .selectize-dropdown .optgroup-header {
  display: block;
}
.selectize-control.multi.error {
  margin-bottom: 0;
}

.selectize-wrapper {
  display: inline-block;
}
.selectize-wrapper.block {
  display: block;
}
.selectize-wrapper .selectize-control {
  min-width: 16rem;
}
.selectize-wrapper.no-margin .selectize-control {
  margin: 0 !important;
}
.selectize-wrapper.nano:not(.margin-bottom) .selectize-control {
  margin: 0 !important;
}
.selectize-wrapper.nano .selectize-control.multi .selectize-input.has-items input[type=text] {
  height: 2.48rem !important;
  vertical-align: middle;
}
.selectize-wrapper.nano .selectize-control .selectize-dropdown-content > div, .selectize-wrapper.nano .selectize-control .selectize-dropdown-content > span {
  line-height: 1.5 !important;
  font-size: 1rem !important;
  height: 2.48rem;
  padding: 0.25rem 0.5rem;
}
.selectize-wrapper.nano .selectize-control .selectize-input {
  min-height: 2.48rem !important;
  line-height: 2.32rem !important;
  font-size: 1.04rem !important;
  padding-top: 0.08rem !important;
}
.selectize-wrapper.nano .selectize-control .selectize-input:after {
  top: -0.16rem !important;
}
.selectize-wrapper.nano .selectize-control .selectize-input input {
  font-size: inherit !important;
}
.selectize-wrapper.nano .selectize-control .selectize-input .item, .selectize-wrapper.nano .selectize-control .selectize-input span {
  margin: 0.08rem;
  height: 2rem;
  line-height: 1.92rem;
  font-size: 1rem;
}
.selectize-wrapper.nano .selectize-control .selectize-input .item .remove, .selectize-wrapper.nano .selectize-control .selectize-input span .remove {
  padding: 0;
}
.selectize-wrapper.small .selectize-control {
  margin: 0 !important;
}
.selectize-wrapper.small .selectize-control.multi .selectize-input.has-items input[type=text] {
  height: 2.64rem !important;
  vertical-align: middle;
}
.selectize-wrapper.small .selectize-control .selectize-dropdown-content > div, .selectize-wrapper.small .selectize-control .selectize-dropdown-content > span {
  line-height: 1.6 !important;
  font-size: 1rem !important;
  height: 2.64rem;
  padding: 0.25rem 0.5rem;
}
.selectize-wrapper.small .selectize-control .selectize-input {
  min-height: 2.64rem !important;
  line-height: 2.48rem !important;
  font-size: 1.2rem !important;
  padding-top: 0.4rem !important;
}
.selectize-wrapper.small .selectize-control .selectize-input:after {
  top: 0 !important;
}
.selectize-wrapper.small .selectize-control .selectize-input input {
  font-size: inherit !important;
}
.selectize-wrapper.small .selectize-control .selectize-input .item, .selectize-wrapper.small .selectize-control .selectize-input span {
  margin: 0.08rem;
  height: 2.16rem;
  line-height: 2.08rem;
  font-size: 1.15rem;
}
.selectize-wrapper.small .selectize-control .selectize-input .item .remove, .selectize-wrapper.small .selectize-control .selectize-input span .remove {
  padding: 0;
}

.error .cleditorMain, .error .CodeMirror, .error .selectize-control.multi {
  margin-bottom: 0;
}

.columns .selectize-input {
  display: block;
}

span.error,
small.error {
  font-size: 1.2rem !important;
  display: block;
  color: #EF452F !important;
  background: none !important;
  margin: 0.8rem 0 !important;
  font-style: normal !important;
  font-weight: normal !important;
  border-color: #EF452F !important;
  position: relative;
  padding: 0 !important;
}

.error small.error {
  display: block !important;
}

.issues-table .error small.error {
  display: block !important;
}

textarea {
  min-height: 9.6rem !important;
}
textarea.with-validation {
  margin-bottom: 0;
}

select {
  padding: 0 1.6rem 0 0.8rem;
  font-size: 1.15rem !important;
  color: #101a28 !important;
}
select[multiple] {
  height: auto !important;
}

select[disabled],
fieldset[disabled] {
  box-shadow: none;
  background: #e6e9eb;
  color: #585f69;
  pointer-events: none;
}

form .row .row.collapse input {
  border-radius: 0.24rem;
}

span.nano.inline, label.nano.inline {
  height: 2.4rem !important;
  line-height: 2.4rem !important;
  font-size: 1rem !important;
  margin-right: 0.5rem;
  padding: 0 !important;
  margin-bottom: 0;
}

.prefix,
.postfix {
  height: 3.6rem !important;
  overflow: visible;
}

.prefix, span.prefix {
  border-radius: 0.24rem;
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important;
  color: #585f69;
  height: 3.6rem !important;
  line-height: 3.52rem;
  background-color: #f2f5f6;
}
.prefix i, span.prefix i {
  pointer-events: none;
}
.prefix.red-label, span.prefix.red-label {
  border-color: #EF452F;
  background-color: #ffdddd;
  color: #343C48;
}
.prefix.blue-label, span.prefix.blue-label {
  border-color: #0684d7;
  background-color: #e9f5fc;
  color: #343C48;
}
.prefix.green-label, span.prefix.green-label {
  border-color: #00a57a;
  background-color: #e5f8f3;
  color: #343C48;
}
.prefix.yellow-label, span.prefix.yellow-label {
  border-color: #f6ad21;
  background-color: #fff9e1;
  color: #343C48;
}
.prefix.disabled, span.prefix.disabled {
  background: #e6e9eb;
  color: #585f69;
  border-color: #cdd2d6;
  text-shadow: none !important;
}
.prefix.disabled i, span.prefix.disabled i {
  color: #585f69;
  text-shadow: none !important;
}

span.prefix, label.prefix {
  background: none repeat scroll 0 0 rgb(249.9, 249.9, 249.9);
}

.prefixed:not(.no-prefix-for-small-only) {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
  background-color: #fff !important;
}

.prefixed.no-prefix-for-small-only {
  background-color: #fff !important;
  /* min-width 641px */
}
@media only screen and (min-width: 641px) {
  .prefixed.no-prefix-for-small-only {
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
  }
}

button.postfix, .button.postfix {
  border: none;
  outline: none;
  padding: 0 !important;
  width: 100%;
  line-height: 3.2rem;
  border-radius: 1px;
}

.postfixed {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.prefix-select {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  background-color: #f2f5f6;
  border-right: none;
}
.prefix-select:hover {
  border-color: rgb(4.6153846154, 101.5384615385, 165.3846153846) !important;
  background-color: white !important;
}
.prefix-select:focus {
  border-color: rgb(4.6153846154, 101.5384615385, 165.3846153846) !important;
  outline: none;
  background-color: #fff;
  box-shadow: none !important;
}

.file-input-btn {
  position: relative;
  min-height: 3.44rem;
  width: 24rem;
  /* max-width 640  ===/ MOBILE /===  */
}
@media only screen and (max-width: 640px) {
  .file-input-btn {
    width: 100% !important;
  }
}

.file-input-btn label {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center !important;
  display: block;
  background: #0684d7;
  padding: 4rem 0;
  font-weight: 400;
  color: white;
  font-size: 1.3rem;
  line-height: 3.52rem;
  width: 24rem;
  height: 3.44rem;
  cursor: pointer;
  padding: 0 1.6rem !important;
  text-transform: uppercase;
  border-radius: 1px;
  margin-top: 0;
  transition: all 0.4s;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 1px;
}
.file-input-btn label:hover {
  background-color: rgb(0, 114.7866028708, 190.4);
}
.file-input-btn label {
  /* max-width 640  ===/ MOBILE /===  */
}
@media only screen and (max-width: 640px) {
  .file-input-btn label {
    width: 100% !important;
    text-align: center;
  }
}

.file-input-btn input {
  position: absolute;
  display: inline-block;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0.01;
  cursor: pointer;
  min-height: 3.44rem;
}
.file-input-btn input.parsley-error + ul.parsley-errors-list {
  top: 3.52rem;
  position: relative;
}

.file-input-btn input:hover + label,
.file-input-btn input:focus + label {
  background-color: rgb(6.5538461538, 144.1846153846, 234.8461538462);
  color: #fff;
}

.file-input-btn.fileplus {
  width: auto;
  margin-bottom: 0 !important;
}
.file-input-btn.fileplus label.for-file-upload {
  width: 16rem;
  padding-left: 1.04rem !important;
  text-transform: capitalize;
  height: 3.2rem;
  line-height: 3.2rem;
  font-size: 1.25rem;
  background: #585f69;
  /* max-width 640  ===/ MOBILE /===  */
}
@media only screen and (max-width: 640px) {
  .file-input-btn.fileplus label.for-file-upload {
    padding-left: 1.6rem !important;
  }
}
.file-input-btn.fileplus input {
  width: 16rem;
}
.file-input-btn.fileplus i.pti.pt-upload {
  color: white;
  line-height: 3.2rem;
  font-size: 1.76rem;
  margin: 0 0.24rem 0 0;
}
.file-input-btn.fileplus .filename {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: default;
  line-height: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 25.6rem;
  display: inline-block;
  font-weight: 400;
  height: 3.2rem !important;
  font-size: 1.25rem;
  border-radius: 0.32rem;
  background-color: #fff;
  border: 1px solid #6c727a;
  color: #101a28;
  padding: 0.8rem;
  /* max-width 640  ===/ MOBILE /===  */
}
@media only screen and (max-width: 640px) {
  .file-input-btn.fileplus .filename {
    width: calc(100% - 4.8rem);
    margin-top: 3.84rem;
  }
}
.file-input-btn.fileplus ul.parsley-errors-list {
  margin-top: 5.6rem;
  margin-bottom: 0 !important;
}

.prefix, .postfix, input[type=text], input[type=password], input[type=date],
input[type=datetime], input[type=datetime-local], input[type=month], input[type=week],
input[type=email], input[type=number], input[type=search], input[type=tel],
input[type=time], input[type=url], textarea {
  height: 3.2rem;
}

.input-switcher {
  border: 1px solid #cdd2d6;
  display: inline-flex;
  border-radius: 3px;
  width: 60px;
  line-height: 25px;
  height: 25px;
  padding: 0;
  overflow: hidden;
  vertical-align: middle;
  font-weight: normal;
}
.input-switcher input {
  position: fixed !important;
  left: -10000px !important;
}
.input-switcher input:checked + span {
  background-color: #0684d7;
  color: #fff;
}
.input-switcher label {
  width: 50%;
  font-size: 0.96rem;
  display: block !important;
  height: 25px;
  overflow: hidden;
}
.input-switcher span {
  display: block !important;
  text-align: center;
  padding: 0 0.32rem;
  line-height: 25px;
  height: 25px;
  width: 100%;
  background: #fff;
  cursor: pointer;
}

ul.parsley-errors-list {
  padding: 0;
  margin: 0;
  display: block;
  list-style: none;
  position: relative;
}
ul.parsley-errors-list li {
  font-size: 1.2rem !important;
  display: block;
  color: #EF452F !important;
  background: none !important;
  margin: 0.8rem 0 !important;
  font-style: normal !important;
  font-weight: normal !important;
  border-color: #EF452F !important;
  position: relative;
  padding: 0 !important;
}

.parsley-error {
  margin-bottom: 0 !important;
  border-color: #EF452F !important;
}

.field_with_errors span.error {
  color: #343C48;
  background: #EF452F;
  border: 1px solid #d1d2d3;
  margin-top: -0.88rem;
  border-radius: 1px;
  padding: 0.4rem 1.2rem;
  position: relative;
  display: inline-block;
  font-size: 1.5rem;
  font-style: normal;
}
.field_with_errors span.error:before, .field_with_errors span.error:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  border-color: transparent transparent #EF452F transparent;
  border-bottom-style: solid;
  position: absolute;
  top: -1.2rem;
  left: 3.2rem;
  z-index: 99;
}
.field_with_errors span.error:after {
  border: inset 7px;
  border-color: transparent transparent #EF452F transparent;
  top: -1.4rem;
  left: 3.1rem;
  z-index: 98;
}

input[type=text]:-webkit-autofill,
input[type=password]:-webkit-autofill,
input[type=date]:-webkit-autofill,
input[type=datetime]:-webkit-autofill,
input[type=datetime-local]:-webkit-autofill,
input[type=month]:-webkit-autofill,
input[type=week]:-webkit-autofill,
input[type=email]:-webkit-autofill,
input[type=number]:-webkit-autofill,
input[type=search]:-webkit-autofill,
input[type=tel]:-webkit-autofill,
input[type=time]:-webkit-autofill,
input[type=url]:-webkit-autofill,
select:-webkit-autofill,
textarea:-webkit-autofill,
input.readonly[readonly]:-webkit-autofill,
.select2-search input.select2-input:-webkit-autofill, .select2-choice:-webkit-autofill,
.output:-webkit-autofill { /* removes banana yellow background from autofill */
  -webkit-box-shadow: inset 0 0 0px 9999px white !important;
}

.reveal-modal {
  display: none;
  visibility: hidden;
  position: fixed;
  top: 8rem !important;
  border-radius: 0.24rem;
  max-width: 1360px;
  min-width: 0;
  max-height: none;
  padding: 0;
  border: none;
  padding: 0;
  z-index: 1006;
  background: white;
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.1);
  outline: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.reveal-modal#filterModal .modal-body {
  min-height: 152px;
}
.reveal-modal.fullscreen {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 10px !important;
  max-width: 100%;
}
.reveal-modal.fullscreen .modal-body {
  height: calc(100vh - 76px);
  max-height: 100% !important;
  overflow: visible !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  -webkit-justify-content: stretch;
  -moz-justify-content: stretch;
  justify-content: stretch;
}
.reveal-modal.fullscreen .modal-body > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.reveal-modal form,
.reveal-modal form.top-buffer,
.reveal-modal form.bottom-buffer {
  margin: 0 !important;
}
.reveal-modal .panel-wrapper {
  text-align: left;
}
.reveal-modal .modal-divider {
  border-top: 1px solid #cdd2d6;
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-left: -2rem;
  margin-right: -2rem;
}
.reveal-modal .close-reveal-modal {
  color: #0684d7;
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  margin: 0;
}
.reveal-modal .close-reveal-modal:not(.button.pt-green) {
  padding: 0;
}
.reveal-modal .close-reveal-modal.button.pt-green {
  color: #fff;
}
.reveal-modal .close-reveal-modal.link {
  font-size: 1.6rem;
  position: static;
}
.reveal-modal .close-reveal-modal.close-modal {
  position: absolute;
  top: 2rem;
  right: 1.5rem;
  line-height: 1.6rem;
}
.reveal-modal .close-reveal-modal.close-modal:before {
  vertical-align: top;
  line-height: 1.6rem;
  top: 0;
  right: 0;
  font-family: "FontAwesome";
  content: "\f00d";
  color: #343C48;
  position: relative;
  font-size: 1.6rem;
  line-height: 0;
  font-weight: normal;
}
.reveal-modal .close-reveal-modal.close-modal:hover {
  text-decoration: none;
}
.reveal-modal.video-modal .close-modal:before {
  color: white;
}
.reveal-modal .panel-wrapper {
  min-width: 0;
  padding: 0;
}
.reveal-modal .panel-wrapper.modal-header {
  padding: 1.2rem 3rem 1rem 1.5rem;
  background-color: #f2f5f6;
  border-bottom: 1px solid #cdd2d6;
  overflow: visible;
}
.reveal-modal .panel-wrapper.modal-header h1,
.reveal-modal .panel-wrapper.modal-header h2,
.reveal-modal .panel-wrapper.modal-header h3,
.reveal-modal .panel-wrapper.modal-header h4 {
  font-size: 1.5rem;
  padding-bottom: 0;
}
.reveal-modal .panel-wrapper.modal-header p {
  margin: 0.5rem 0 0 0;
  font-size: 1.25rem;
}
.reveal-modal .panel-wrapper.modal-body {
  padding: 2rem;
  max-height: calc(100vh - 25.6rem);
}
@supports (max-height: calc(100vh - 25.6rem)) {
  .reveal-modal .panel-wrapper.modal-body {
    max-height: calc(100vh - 25.6rem);
  }
}
.reveal-modal .panel-wrapper.modal-body {
  max-height: 80vh;
  overflow-y: scroll;
  overflow-x: hidden;
}
.reveal-modal .panel-wrapper.modal-body.overflow-visible {
  overflow: visible;
}
.reveal-modal .panel-wrapper.modal-body.history-modal {
  max-height: calc(100vh - 16rem);
}
.reveal-modal .panel-wrapper.modal-body input.side-border-none {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0.32rem;
  border-bottom-right-radius: 0.32rem;
}
.reveal-modal .panel-wrapper.modal-body ul.f-dropdown.counts {
  max-height: 210px;
  overflow-y: auto;
}
.reveal-modal .panel-wrapper.modal-body .with-modal-footer {
  margin-bottom: 100px;
  position: static;
}
.reveal-modal .panel-wrapper.modal-body .with-modal-footer td {
  position: static;
}
.reveal-modal .panel-wrapper.modal-body .modal-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.reveal-modal .panel-wrapper.modal-body .modal-footer + * {
  margin-bottom: 7.2rem;
}
.reveal-modal .panel-wrapper.modal-footer {
  padding: 1.5rem;
  background-color: #f2f5f6;
  border-top: 1px solid #cdd2d6;
  text-align: right;
  overflow: hidden;
}
.reveal-modal .panel-wrapper.modal-footer button,
.reveal-modal .panel-wrapper.modal-footer .button {
  margin-bottom: 0;
}
.reveal-modal .panel-wrapper.modal-footer .button + .button,
.reveal-modal .panel-wrapper.modal-footer .button + .link,
.reveal-modal .panel-wrapper.modal-footer .link + .button,
.reveal-modal .panel-wrapper.modal-footer .link + .link {
  margin-left: 0.5rem;
}
.reveal-modal.tiny {
  width: 33.33%;
  max-width: 560px;
  min-width: 420px;
}
.reveal-modal#productModal {
  top: 5.6rem !important;
  z-index: 101;
  width: 100% !important;
  max-width: 100% !important;
  box-shadow: none !important;
  padding: 0 !important;
  background: #e6e9eb;
}
.reveal-modal#productModal .close-reveal-modal {
  top: 0 !important;
  font-size: 2.88rem !important;
  line-height: 3.52rem !important;
}
.reveal-modal#productModal .close-reveal-modal:before {
  display: none;
}

.reveal-modal-bg.productOverlay {
  z-index: 100;
  margin-top: 5.6rem;
  background: #e6e9eb;
}

a.close-modal {
  position: absolute;
  top: 2.16rem;
  right: 1.5rem;
}
a.close-modal:before {
  font-family: "FontAwesome";
  content: "\f00d";
  color: #343C48;
  position: relative;
  font-size: 1.6rem;
  line-height: 0;
  font-weight: normal;
  top: 0;
  right: 0;
}
a.close-modal:hover {
  text-decoration: none;
}

.reveal-modal-bg {
  position: fixed;
}

p.confirm-body {
  padding: 0 1rem;
  font-size: 1.5rem;
  word-wrap: break-word;
}

@media only screen and (max-width: 1024px) {
  .reveal-modal {
    position: absolute !important;
    top: 0 !important;
    margin-left: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0;
    max-height: none;
    min-height: 100vh;
    min-width: 100% !important;
    -webkit-overflow-scrolling: touch;
  }
  .reveal-modal#productModal {
    top: 0 !important;
  }
  .reveal-modal.video-modal {
    background-color: rgba(16, 26, 40, 0.3);
  }
  .reveal-modal .panel-wrapper.modal-body {
    padding: 2rem;
    max-height: none;
    overflow: visible;
    padding-bottom: 12.8rem;
  }
  .reveal-modal .panel-wrapper.modal-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
body.modal-visible-overflow.modal-opened {
  overflow: hidden;
}
body.modal-visible-overflow .reveal-modal {
  top: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
  left: 0 !important;
  background: transparent !important;
  width: 100% !important;
  max-width: none !important;
  overflow: auto !important;
}
@media (min-width: 641px) {
  body.modal-visible-overflow .reveal-modal.small .reval-modal-wrapper {
    left: 0;
    margin: 0 auto;
    max-width: 64rem;
    right: 0;
    width: 40%;
  }
}
body.modal-visible-overflow .reveal-modal .reval-modal-wrapper {
  position: absolute;
  margin-top: 8rem !important;
  top: auto;
  border-radius: 0.24rem;
  max-width: 1360px;
  min-width: 0;
  max-height: none;
  padding: 0;
  border: none;
  padding: 0;
  z-index: 1006;
  background: white;
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.1);
  outline: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 1024px) {
  body.modal-visible-overflow .reveal-modal .reval-modal-wrapper {
    position: absolute !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0;
    max-height: none;
    min-height: 100vh;
    min-width: 100% !important;
    -webkit-overflow-scrolling: touch;
  }
}
body.modal-visible-overflow .reveal-modal .reval-modal-wrapper .panel-wrapper.modal-body {
  overflow: visible !important;
  max-height: none;
}

.photo-block-grid {
  display: block;
  padding: 0;
  margin: 0 -1rem;
}
.photo-block-grid:after {
  content: "";
  display: table;
  clear: both;
}
.photo-block-grid > li {
  display: block;
  float: left;
  height: auto;
  padding: 0 1rem 2rem;
}
.photo-block-grid > li {
  list-style: none;
  padding: 0 1rem 2rem;
  width: 50%;
}
.photo-block-grid > li:nth-of-type(1n) {
  clear: none;
}
.photo-block-grid > li:nth-of-type(2n+1) {
  clear: both;
}
@media only screen and (max-width: 480px) {
  .photo-block-grid {
    display: block;
    padding: 0;
    margin: 0 -0.625rem;
  }
  .photo-block-grid:after {
    content: "";
    display: table;
    clear: both;
  }
  .photo-block-grid > li {
    display: block;
    float: left;
    height: auto;
    padding: 0 0.625rem 1.25rem;
  }
  .photo-block-grid > li {
    list-style: none;
    padding: 0 0.625rem 1.25rem;
    width: 50%;
  }
  .photo-block-grid > li:nth-of-type(1n) {
    clear: none;
  }
  .photo-block-grid > li:nth-of-type(2n+1) {
    clear: both;
  }
}
@media only screen and (min-width: 481px) and (max-width: 580px) {
  .photo-block-grid {
    display: block;
    padding: 0;
    margin: 0 -0.625rem;
  }
  .photo-block-grid:after {
    content: "";
    display: table;
    clear: both;
  }
  .photo-block-grid > li {
    display: block;
    float: left;
    height: auto;
    padding: 0 0.625rem 1.25rem;
  }
  .photo-block-grid > li {
    list-style: none;
    padding: 0 0.625rem 1.25rem;
    width: 33.3333333333%;
  }
  .photo-block-grid > li:nth-of-type(1n) {
    clear: none;
  }
  .photo-block-grid > li:nth-of-type(3n+1) {
    clear: both;
  }
}
@media only screen and (min-width: 581px) and (max-width: 768px) {
  .photo-block-grid {
    display: block;
    padding: 0;
    margin: 0 -0.625rem;
  }
  .photo-block-grid:after {
    content: "";
    display: table;
    clear: both;
  }
  .photo-block-grid > li {
    display: block;
    float: left;
    height: auto;
    padding: 0 0.625rem 1.25rem;
  }
  .photo-block-grid > li {
    list-style: none;
    padding: 0 0.625rem 1.25rem;
    width: 33.3333333333%;
  }
  .photo-block-grid > li:nth-of-type(1n) {
    clear: none;
  }
  .photo-block-grid > li:nth-of-type(3n+1) {
    clear: both;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1050px) {
  .photo-block-grid {
    display: block;
    padding: 0;
    margin: 0 -0.625rem;
  }
  .photo-block-grid:after {
    content: "";
    display: table;
    clear: both;
  }
  .photo-block-grid > li {
    display: block;
    float: left;
    height: auto;
    padding: 0 0.625rem 1.25rem;
  }
  .photo-block-grid > li {
    list-style: none;
    padding: 0 0.625rem 1.25rem;
    width: 20%;
  }
  .photo-block-grid > li:nth-of-type(1n) {
    clear: none;
  }
  .photo-block-grid > li:nth-of-type(5n+1) {
    clear: both;
  }
}
@media only screen and (min-width: 1051px) and (max-width: 1280px) {
  .photo-block-grid {
    display: block;
    padding: 0;
    margin: 0 -0.625rem;
  }
  .photo-block-grid:after {
    content: "";
    display: table;
    clear: both;
  }
  .photo-block-grid > li {
    display: block;
    float: left;
    height: auto;
    padding: 0 0.625rem 1.25rem;
  }
  .photo-block-grid > li {
    list-style: none;
    padding: 0 0.625rem 1.25rem;
    width: 20%;
  }
  .photo-block-grid > li:nth-of-type(1n) {
    clear: none;
  }
  .photo-block-grid > li:nth-of-type(5n+1) {
    clear: both;
  }
}
@media only screen and (min-width: 1281px) {
  .photo-block-grid {
    display: block;
    padding: 0;
    margin: 0 -0.625rem;
  }
  .photo-block-grid:after {
    content: "";
    display: table;
    clear: both;
  }
  .photo-block-grid > li {
    display: block;
    float: left;
    height: auto;
    padding: 0 0.625rem 1.25rem;
  }
  .photo-block-grid > li {
    list-style: none;
    padding: 0 0.625rem 1.25rem;
    width: 20%;
  }
  .photo-block-grid > li:nth-of-type(1n) {
    clear: none;
  }
  .photo-block-grid > li:nth-of-type(5n+1) {
    clear: both;
  }
}
@media only screen and (min-width: 1600px) {
  .photo-block-grid {
    display: block;
    padding: 0;
    margin: 0 -0.625rem;
  }
  .photo-block-grid:after {
    content: "";
    display: table;
    clear: both;
  }
  .photo-block-grid > li {
    display: block;
    float: left;
    height: auto;
    padding: 0 0.625rem 1.25rem;
  }
  .photo-block-grid > li {
    list-style: none;
    padding: 0 0.625rem 1.25rem;
    width: 20%;
  }
  .photo-block-grid > li:nth-of-type(1n) {
    clear: none;
  }
  .photo-block-grid > li:nth-of-type(5n+1) {
    clear: both;
  }
}
.photo-block-grid {
  margin: 0 -0.8rem;
}
.photo-block-grid li {
  position: relative;
  min-height: 120px;
}
.photo-block-grid li img {
  width: 100%;
}
.photo-block-grid li.product-photo > .photo-container {
  background: #fff;
  border: 1px solid #6c727a;
}
.photo-block-grid li .main-photo-r {
  display: none;
}
.photo-block-grid li .company_widget_photos_image label {
  display: none;
}
.photo-block-grid li input[type=file] {
  overflow: hidden;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  outline: none;
  background: transparent;
  text-indent: 9999px;
  color: transparent;
  border-radius: 5px;
  margin: 0;
  opacity: 0;
}
.photo-block-grid li .photo-container {
  position: relative;
  height: auto;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  min-height: inherit;
  overflow: hidden;
  text-align: center;
  border-radius: 1px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  background: #0684d7;
}
.photo-block-grid li .photo-container:before {
  content: "";
  display: block;
  padding-top: 100%; /* initial ratio of 1:1*/
}
.photo-block-grid li .photo-container img {
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  width: auto;
  height: auto;
  margin: 0 auto;
}
.photo-block-grid li .photo-container .pti.pt-plus {
  text-align: center;
  display: block;
  color: white;
  font-size: 4.4rem;
  position: relative;
  width: 100%;
  margin: 0;
}
.photo-block-grid li .photo-container .add-files {
  margin: 0 auto;
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
.photo-block-grid li .photo-container .add-files span {
  display: block;
  color: white;
  width: 100%;
  font-weight: bold;
  font-size: 1.76rem;
}
.photo-block-grid li .photo-container {
  /* min-width 641px */
}
@media only screen and (min-width: 641px) {
  .photo-block-grid li .photo-container:not(.upload-product-photo) {
    height: 260px;
  }
}
.photo-block-grid li .photo-container {
  /* max-width 640  ===/ MOBILE /===  */
}
@media only screen and (max-width: 640px) {
  .photo-block-grid li .photo-container .pti.pt-plus {
    font-size: 5.6rem;
  }
}
.photo-block-grid li .photo-container .dummy {
  margin-top: 100%;
}
.photo-block-grid li .photo-container .uploaded-photo-placeholder {
  cursor: pointer;
  display: none;
}
.photo-block-grid li .photo-container .holderImage {
  background-size: cover !important;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.photo-block-grid li .photo-container canvas {
  width: 100%;
  height: 100%;
}
.photo-block-grid li .photo-container .photo-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(128, 128, 128);
  opacity: 0.7;
}
.photo-block-grid li .photo-container .photo-overlay .spinner {
  top: calc(50% - 20px);
}
.photo-block-grid li .photo-container img {
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  width: auto;
  height: auto;
  border-top-right-radius: 1px;
  border-top-left-radius: 1px;
}
.photo-block-grid li .photo-container label.wrapper-label {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
}
.photo-block-grid li .photo-container .edit-controls {
  top: 1.04rem;
  right: 1.12rem;
  left: 1.12rem;
  height: auto;
  position: absolute;
}
.photo-block-grid li .photo-container .edit-controls label.product-main-photo {
  display: none;
  float: left;
  background: #d1d2d3;
  height: 2rem;
  border-radius: 0.24rem;
  color: #343C48;
  font-size: 1.3rem;
  padding: 0 0.4rem !important;
  margin: 0 !important;
  line-height: 2.24rem;
  background: #71CF6C;
  color: white;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
  width: 8rem;
  text-align: center;
  text-transform: uppercase;
  left: -3.2rem;
  position: absolute;
}
.photo-block-grid li .photo-container .edit-controls {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.photo-block-grid li .photo-container .edit-controls i {
  font-size: 1.3rem;
  width: 2.08rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  color: #343C48;
  background: #d1d2d3;
}
.photo-block-grid li .photo-container .edit-controls i:hover {
  color: white;
  background: #ef7c22;
}
.photo-block-grid li .photo-container .edit-controls #requires-confirmation {
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 1px;
  font-weight: 300;
  font-size: 1.15rem;
  background-color: #ffdddd;
  border: 1px solid #d1d2d3;
}
.photo-block-grid li .photo-container .edit-controls .set-as-cover-btn {
  margin-bottom: 0.4rem;
  display: inline-block !important;
  vertical-align: top;
  background: #d1d2d3;
  height: 2rem !important;
  width: auto !important;
  border-radius: 0.24rem;
  color: #343C48;
  font-size: 1.3rem;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  margin-right: 0.4rem;
}
.photo-block-grid li .photo-container .edit-controls .set-as-cover-btn:hover {
  color: white;
  background: #ef7c22;
}
.photo-block-grid li .photo-container .edit-controls .set-as-cover-btn.hidden {
  display: none;
}
.photo-block-grid li .photo-container .edit-controls .set-as-cover-btn .text {
  vertical-align: top;
}
.photo-block-grid li .photo-container .edit-controls .set-as-cover-btn img.loading-indicator {
  vertical-align: top;
  display: none;
  margin-top: 0.16rem;
}
.photo-block-grid li .photo-container a {
  color: #343C48;
  text-decoration: none;
}
.photo-block-grid li.main-photo .photo-container .edit-controls label.product-main-photo {
  display: block;
}
.photo-block-grid li.main-photo .photo-container .edit-controls .set-as-cover-btn {
  display: none !important;
}
.photo-block-grid .hidden {
  display: none;
}

.dropper {
  position: relative;
  text-align: center;
}
.dropper label.file {
  display: none !important;
}
.dropper img.upload-icon {
  max-width: 200px;
  margin-top: 1.6rem;
}
.dropper .drag_drop_text {
  font-size: 1.5rem;
}
.dropper #upload-photo-btn {
  cursor: pointer;
}
.dropper #filesupload_ {
  overflow: hidden;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  outline: none;
  background: transparent;
  text-indent: 9999px;
  color: #fdfdfd;
  border-radius: 5px;
}
.dropper .add_nested_fields {
  display: none;
  font-size: 1.3rem;
}

#upload-photos-form-content {
  position: relative;
}
#upload-photos-form-content .upload-photos-form {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(128, 128, 128);
  opacity: 0.7;
  top: 0;
  left: 0;
}
#upload-photos-form-content .upload-photos-form .spinner {
  top: calc(50% - 20px);
}

@media (max-width: 1024px) {
  .search-container .mobile-filter-toggle-btn {
    margin: 0.25rem 0 1rem;
    white-space: nowrap;
  }
  .search-container .sign-up-to-protenders {
    display: none !important;
  }
  .search-container #mobile-filter-panel {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #f2f5f6;
    border-top: 1px solid #d1d2d3;
    width: 100%;
    max-width: none;
    z-index: 2010;
    padding: 1.6rem;
    display: none;
    margin: auto !important;
  }
  .search-container #mobile-filter-panel > .button {
    flex: 1 1 auto;
  }
  .search-container #mobile-filter-panel > .button:last-child {
    flex: 3 3 auto;
  }
  .search-container.mobile-filter-toggle.toggled #mobile-filter-panel {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .search-container.mobile-filter-toggle.toggled .search-filter-panel {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2000;
  }
  .search-container.mobile-filter-toggle.toggled .search-filter-panel #advanced-search-fixed {
    background-color: #fff;
    z-index: 2002;
    position: fixed;
    padding-top: 1.6rem;
    margin-bottom: 6.88rem;
    top: 0;
    bottom: 0;
    width: 100%;
    right: 0;
    box-shadow: 0px 2px 3px 0px rgba(16, 26, 40, 0.2);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translateZ(0);
  }
  .search-container.mobile-filter-toggle.toggled .search-filter-panel #advanced-search-fixed #search-options .flexible-rolldown {
    margin: 0 1.2rem;
    width: auto;
    display: block;
  }
  .search-container.mobile-filter-toggle.toggled .search-filter-panel #advanced-search-fixed .search-filters {
    border-left: 0 !important;
    border-right: 0 !important;
  }
  .search-container.mobile-filter-toggle .search-filter-panel {
    display: none;
  }
  .search-container.mobile-filter-toggle .search-results-container {
    padding-left: 0;
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .search-container .mobile-filter-toggle-btn,
  .search-container #mobile-filter-panel {
    display: none;
  }
}
@media (max-width: 450px) {
  .search-container .mobile-filter-toggle-btn a:before {
    margin-right: 0;
    font-size: 1.44rem;
  }
  .search-container .mobile-filter-toggle-btn span {
    display: none;
  }
}
.search-container .row .flexible-rolldown {
  width: 100%;
}
.search-container .row .flexible-rolldown a.button.rolldown.pill-btn {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: white !important;
  padding-left: 1.2rem;
  margin-bottom: 1.04rem !important;
}
.search-container .row .flexible-rolldown a.button.rolldown.pill-btn i.pti {
  margin-right: 0.4rem;
}
.search-container .row .flexible-rolldown a.button.rolldown.pill-btn i.pti:before {
  font-size: 1.68rem;
  position: relative;
  top: 0.08rem;
}
.search-container .row .flexible-rolldown a.button.rolldown.pill-btn.micro {
  padding-left: 0.8rem;
}
.search-container .row .flexible-rolldown a.button.rolldown.pill-btn.micro i.pti {
  margin-right: 0.4rem;
}
.search-container .row .flexible-rolldown a.button.rolldown.pill-btn.micro i.pti:before {
  font-size: 1.25rem;
  position: relative;
  top: 0;
}
.search-container .row .flexible-rolldown > ul li .anchor {
  padding: 0;
}
.search-container .row .flexible-rolldown > ul li.saved_search a {
  padding: 0 0.8rem 0 0 !important;
  position: relative;
  height: 3.2rem;
  line-height: 3.2rem;
  font-size: 1.25rem;
}
.search-container .row .flexible-rolldown > ul li.saved_search a.visibility-private, .search-container .row .flexible-rolldown > ul li.saved_search a.visibility-public {
  float: left;
}
.search-container .row .flexible-rolldown > ul li.saved_search a.visibility-private:before, .search-container .row .flexible-rolldown > ul li.saved_search a.visibility-public:before {
  content: "\f002";
  left: 0;
  font-family: "FontAwesome";
  font-size: 1.04rem;
  width: 2.24rem;
  display: inline-block;
  text-align: center;
  top: auto;
  left: auto;
  margin: 0 0 0 0.4rem;
}
.search-container .row .flexible-rolldown > ul li.saved_search a.visibility-private + .edit, .search-container .row .flexible-rolldown > ul li.saved_search a.visibility-public + .edit {
  color: #0684d7 !important;
  font-size: 0.96rem;
}
.search-container .row .flexible-rolldown > ul li.saved_search a.visibility-private + .edit:hover, .search-container .row .flexible-rolldown > ul li.saved_search a.visibility-public + .edit:hover {
  text-decoration: underline !important;
}
.search-container .row .flexible-rolldown > ul li.saved_search a.visibility-private + .edit:before, .search-container .row .flexible-rolldown > ul li.saved_search a.visibility-public + .edit:before {
  font-size: 1.2rem;
  font-family: "FontAwesome";
  color: #6c727a;
  display: inline-block;
  margin: 0 0.8rem 0 0;
  text-align: center;
  top: auto;
  left: auto;
}
.search-container .row .flexible-rolldown > ul li.saved_search a.visibility-private + .edit:before {
  content: "\f007";
  margin: 0 1.04rem 0 0;
}
.search-container .row .flexible-rolldown > ul li.saved_search a.visibility-public + .edit:before {
  content: "\f0c0";
}
.search-container .row .flexible-rolldown > ul li.saved_search:hover a.edit:before {
  color: #343C48;
}
.search-container .row .flexible-rolldown > ul li:not(.saved_search) a {
  padding: 0 0.8rem 0 0 !important;
  position: relative;
  height: 3.2rem;
  line-height: 3.2rem;
  font-size: 1.25rem;
}
.search-container .row .flexible-rolldown > ul li:not(.saved_search) a:before {
  font-family: "FontAwesome";
  content: "\f03a";
  font-size: 1rem;
  width: 2.24rem;
  display: inline-block;
  text-align: center;
  top: auto;
  left: auto;
  margin: 0 0 0 0.4rem;
  color: #343C48;
}
.search-container .row .flexible-rolldown > ul li:not(.saved_search) a.liked_list:before {
  content: "\f004";
  color: #EF452F;
}
.search-container .row .flexible-rolldown > ul li:not(.saved_search) a.all_list:before {
  content: "\f03a";
  color: #343C48;
}
.search-container .row .flexible-rolldown > ul li:not(.saved_search) a.verified_list:before {
  content: "\f164";
  color: #00a57a;
}
.search-container .row .flexible-rolldown > ul li:not(.saved_search) a.bookmarked_list:before {
  content: "\f02e";
  color: #0684d7;
}
.search-container .row .flexible-rolldown > ul li:not(.saved_search) a.pending_list:before {
  content: "\f06a";
  color: #EF452F;
}
.search-container .row .flexible-rolldown > ul li:not(.saved_search) a.requested:before {
  content: "\f0e0";
  color: #6557b9;
}

@media (min-width: 1025px) {
  .search-filter-panel {
    padding-right: 0 !important;
    padding-left: 0;
  }
}

.open .collapseable {
  display: block !important;
}
.open .toggle-more-options-btn .more {
  display: none !important;
}
.open .toggle-more-options-btn .less {
  display: block !important;
}

@media (max-width: 1024px) {
  #advanced-search-fixed {
    margin-top: 0 !important;
  }
}

.search-results-container .projects-listing,
.search-results-container .view-container,
#project-search .projects-listing,
#project-search .view-container {
  width: 100%;
  max-width: none;
}
.search-results-container .projects-listing .row,
.search-results-container .view-container .row,
#project-search .projects-listing .row,
#project-search .view-container .row {
  max-width: none;
  width: 100%;
}
.search-results-container .projects-listing .map-container,
.search-results-container .view-container .map-container,
#project-search .projects-listing .map-container,
#project-search .view-container .map-container {
  width: 100%;
  max-width: none;
}

.content-container.side-by-side.search-container .content-wrapper.search-results-container {
  width: 100%;
  max-width: none;
  min-width: 0;
}

.search-filters {
  background: white;
  border: 1px solid #d1d2d3;
}
.search-filters .filter-block {
  position: relative;
  border-top: 1px solid #e6e9eb;
}
.search-filters .filter-block label {
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: 0;
  word-wrap: break-word;
}
.search-filters .filter-block form {
  height: auto !important;
  font-size: inherit !important;
  margin-bottom: 0 !important;
}
.search-filters .filter-block .hidden-content {
  padding: 0 1.5rem 1rem !important;
}
.search-filters .filter-block .filter-block-title {
  display: block;
  width: 100%;
  padding: 0.5rem 1.5rem;
}
.search-filters .filter-block .filter-block-title span {
  text-transform: uppercase;
  font-size: 1rem;
  color: #343C48;
  font-weight: bold;
}
.search-filters .filter-block .filter-block-title:hover span {
  text-decoration: underline;
}
.search-filters .filter-block #budget .ais-price-ranges--currency {
  display: none;
}
.search-filters .filter-block.keyword-filter {
  border-top: none;
}
.search-filters .filter-block .hasDatepicker {
  margin: 0.24rem 0 0.8rem;
}
.search-filters .filter-block .keyword-search {
  width: 100%;
  display: block;
}
@media only screen and (max-width: 1024px) {
  .search-filters .filter-block .keyword-search i {
    display: none;
  }
}
.search-filters .filter-block #locations .location {
  position: relative;
}
.search-filters .filter-block #locations .location input#location {
  padding-right: 4.4rem !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media only screen and (min-width: 1025px) {
  .search-filters .filter-block #locations .location input#location {
    padding-right: 2.8rem;
  }
}
.search-filters .filter-block #locations .location i.pti.pt-clear-location-term {
  display: none;
  position: absolute;
  top: 0rem;
  right: 2.4rem;
  cursor: pointer;
  font-size: 1.6rem;
  width: 2.4rem;
  height: 3.2rem;
  line-height: 3.2rem;
  margin-left: 0;
  text-align: center;
}
.search-filters .filter-block #locations .location i.pti.pt-clear-location-term:before {
  font-family: "FontAwesome";
  content: "\f00d";
}
.search-filters .filter-block #locations .location i.pti.pt-location {
  margin-left: 0;
  line-height: 3.2rem;
  position: absolute;
  font-size: 1.76rem;
  right: 0;
  top: 0;
  height: 3.2rem;
  width: 3.36rem;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  color: #585f69;
}
@media (max-width: 1023px) {
  .search-filters .filter-block #locations .location i.pti.pt-location {
    display: none;
  }
}
.search-filters .filter-block #locations .location i.pti.pt-location:hover {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #343C48;
}
.search-filters .filter-block .collapseable {
  display: none;
}
.search-filters .filter-block a.toggle-more-options-btn {
  margin-bottom: 0;
  color: #343C48;
}
.search-filters .filter-block a.toggle-more-options-btn .less {
  display: none;
}
.search-filters .filter-block a.toggle-more-options-btn.show-less .more {
  display: none;
}
.search-filters .filter-block a.toggle-more-options-btn.show-less .less {
  display: block;
}
.search-filters .filter-locked .filter-block-title:before {
  font-family: "fontAwesome";
  font-size: 1.3rem;
  color: #585f69;
  position: relative;
  top: 0.12rem;
  margin-right: 0.56rem;
  content: "\f023";
}

.sign-up-to-protenders {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 300px;
  height: auto;
  left: 95%;
  z-index: 0;
  top: -1.44rem;
  border-radius: 1px;
  background-color: #343C48;
  padding: 1.2rem 1.6rem;
}
.sign-up-to-protenders p {
  margin-bottom: 0;
  font-size: 1.25rem;
  line-height: 1.4;
  color: white;
}
.sign-up-to-protenders p a {
  color: white !important;
  font-weight: bold;
}
.sign-up-to-protenders p a:hover {
  text-decoration: underline;
}
.sign-up-to-protenders:after, .sign-up-to-protenders:before {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.sign-up-to-protenders:after {
  border-color: rgba(255, 255, 255, 0);
  border-right-color: #343C48;
  border-width: 10px;
  margin-top: -10px;
}
.sign-up-to-protenders:before {
  border-color: rgba(204, 204, 204, 0);
  border-right-color: transparent;
  border-width: 11px;
  margin-top: -11px;
}

.filter-locked a {
  text-decoration: none;
  pointer-events: none;
}
.filter-locked i.pti.pt-lock {
  font-size: 1.5rem;
  margin-right: 0.24rem;
}
@media only screen and (min-width: 1025px) {
  .filter-locked a {
    pointer-events: all;
  }
  .filter-locked:hover .sign-up-to-protenders {
    transition: all 0.3s ease 0.15s;
    opacity: 1;
    visibility: visible;
    left: 100%;
    z-index: 10;
  }
}

#current-refined-values {
  margin-top: 0.64rem;
  margin-right: 1.5rem;
}
@media only screen and (max-width: 1024px) {
  #current-refined-values {
    flex: 1 1 100%;
  }
}

@media only screen and (max-width: 1024px) {
  .primary-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex: 1 1 100%;
  }
  .primary-header > h2 {
    flex: 1 1 auto;
  }
}
.panel-wrapper .action-bar#search-nav-bar {
  margin-left: auto;
}
@media only screen and (max-width: 640px) {
  .panel-wrapper .action-bar#search-nav-bar.projects-nav-bar {
    width: 100%;
  }
  .panel-wrapper .action-bar#search-nav-bar.projects-nav-bar .view-mode + * {
    margin-left: auto;
  }
  .panel-wrapper .action-bar#search-nav-bar.projects-nav-bar #find-projects-table-view {
    display: none;
  }
  .panel-wrapper .action-bar#search-nav-bar:not(.projects-nav-bar) {
    display: none;
  }
}
.panel-wrapper .search-options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}
.panel-wrapper .search-options #clear-filters,
.panel-wrapper .search-options #save-search {
  flex: 1 1 auto;
}
.panel-wrapper .search-options #clear-filters .button,
.panel-wrapper .search-options #save-search .button {
  white-space: nowrap;
  margin-top: 0.64rem;
  margin-right: 0.4rem;
}
@media only screen and (max-width: 480px) {
  .panel-wrapper .search-options {
    flex: 1 1 100%;
  }
  .panel-wrapper .search-options #clear-filters,
  .panel-wrapper .search-options #save-search {
    margin-right: 0.4rem;
  }
  .panel-wrapper .search-options #clear-filters .button,
  .panel-wrapper .search-options #save-search .button {
    width: 100%;
  }
  .panel-wrapper .search-options #save-search {
    margin-right: 0;
    margin-left: 0.4rem;
  }
}

nav.panel-wrapper.top-bar#header .algolia-autocomplete {
  position: absolute !important;
  text-align: left;
  color: #101a28;
}
nav.panel-wrapper.top-bar#header .sbx-custom__submit::before {
  display: none;
}
nav.panel-wrapper.top-bar#header .sbx-custom__submit:focus {
  outline: 0;
}
nav.panel-wrapper.top-bar#header .sbx-custom__submit svg {
  width: 13px;
  height: 16px;
  vertical-align: middle;
  fill: #cdd2d6;
}
nav.panel-wrapper.top-bar#header .sbx-custom__reset {
  display: none;
  position: absolute !important;
  top: 0.96rem !important;
  right: 33px;
  margin: 0;
  border: 0 !important;
  background: none !important;
  cursor: pointer;
  padding: 0 !important;
  font-size: inherit !important;
  fill: rgba(255, 255, 255, 0.8);
}
nav.panel-wrapper.top-bar#header .sbx-custom__reset:hover {
  background: transparent;
}
nav.panel-wrapper.top-bar#header .sbx-custom__reset:focus {
  outline: 0;
}
nav.panel-wrapper.top-bar#header .sbx-custom__reset svg {
  display: block;
  margin: 4px;
  width: 13px;
  height: 13px;
}
nav.panel-wrapper.top-bar#header .sbx-custom__input:valid ~ .sbx-custom__reset {
  display: block;
  -webkit-animation-name: sbx-reset-in;
  animation-name: sbx-reset-in;
  -webkit-animation-duration: 0.15s;
  animation-duration: 0.15s;
}
nav.panel-wrapper.top-bar#header .algolia-autocomplete .aa-hint {
  color: #585f69;
}
nav.panel-wrapper.top-bar#header .algolia-autocomplete .aa-dropdown-menu {
  top: 4.48rem !important;
  left: auto !important;
  right: 0 !important;
  max-height: calc(100vh - 4.48rem);
  overflow-y: scroll;
  background-color: white;
  border-radius: 1px;
  border: 1px solid #d1d2d3;
  border-top: none;
  color: #101a28;
  width: 40rem;
  padding: 0;
}
nav.panel-wrapper.top-bar#header .algolia-autocomplete .aa-dropdown-menu div:first-child {
  font-size: 1.12rem;
}
@media only screen and (max-width: 1024px) {
  nav.panel-wrapper.top-bar#header .algolia-autocomplete .aa-dropdown-menu {
    height: auto;
    max-width: calc(100vw - 9.6rem) !important;
  }
}
nav.panel-wrapper.top-bar#header .algolia-autocomplete .aa-dropdown-menu .aa-suggestion {
  position: relative;
  border-bottom: 1px solid #d1d2d3;
  padding: 0.56rem 0.8rem 0.56rem 4.96rem;
  min-height: 4.16rem;
  cursor: pointer;
}
nav.panel-wrapper.top-bar#header .algolia-autocomplete .aa-dropdown-menu .aa-suggestion.aa-cursor {
  background-color: #e9f5fc;
}
nav.panel-wrapper.top-bar#header .algolia-autocomplete .aa-dropdown-menu .aa-suggestion em {
  font-weight: bold;
  font-style: normal;
  background: #fff9e1;
}
nav.panel-wrapper.top-bar#header .algolia-autocomplete .category {
  text-align: left;
  background: #e6e9eb;
  padding: 0.8rem;
  line-height: 1;
  font-weight: bold;
  color: #101a28;
  border-bottom: 1px solid #d1d2d3;
}
nav.panel-wrapper.top-bar#header .algolia-autocomplete a.result-name {
  padding: 0.8rem;
  line-height: 1.3;
  font-size: 1.15rem;
  text-decoration: none;
  display: block;
  font-weight: bold;
  color: #101a28 !important;
}
nav.panel-wrapper.top-bar#header .algolia-autocomplete .result-details {
  font-weight: 300;
  font-size: 1.12rem;
  padding-top: 0.4rem;
}
nav.panel-wrapper.top-bar#header .algolia-autocomplete .result-img {
  cursor: default;
  border-radius: 1px;
  position: absolute;
  left: 0.8rem;
  top: 0.8rem;
  width: 4.16rem;
  height: 4.16rem;
  margin: 0;
  overflow: hidden;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  background: white;
  box-shadow: 0 0 1px #585f69;
}
nav.panel-wrapper.top-bar#header .algolia-autocomplete .result-img img {
  width: 100%;
  height: auto;
  border: none;
  margin: 0 auto;
  -webkit-align-self: center;
  align-self: center;
}
nav.panel-wrapper.top-bar#header .algolia-autocomplete .companies .result-img {
  border-radius: 100%;
  border: 2px solid white;
}
nav.panel-wrapper.top-bar#header .sbx-custom {
  display: inline-block;
  position: relative;
  height: 33px;
  white-space: nowrap;
  box-sizing: border-box;
  font-size: 14px;
}
nav.panel-wrapper.top-bar#header .sbx-custom__wrapper {
  width: 100%;
  height: 100%;
}
nav.panel-wrapper.top-bar#header input[type=search].sbx-custom__input {
  position: absolute !important;
  left: auto !important;
  right: 0 !important;
  height: 3.2rem !important;
  margin-top: 0.8rem;
  display: inline-block;
  -webkit-transition: all 0.4s ease !important;
  transition: all 0.4s ease !important;
  border: 0;
  min-width: 20.8rem;
  background-color: #343C48 !important;
  color: #cdd2d6;
  padding: 0 2.8rem 0 0.8rem !important;
  height: 2.4rem;
  border: none !important;
  vertical-align: middle;
  white-space: normal;
  font-size: 1.12rem;
}
@media only screen and (max-width: 1440px) {
  nav.panel-wrapper.top-bar#header input[type=search].sbx-custom__input {
    min-width: 17.6rem !important;
  }
}
@media only screen and (min-width: 1580px) {
  nav.panel-wrapper.top-bar#header input[type=search].sbx-custom__input {
    min-width: 25.6rem !important;
  }
}
nav.panel-wrapper.top-bar#header input[type=search].sbx-custom__input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
nav.panel-wrapper.top-bar#header input[type=search].sbx-custom__input ::-webkit-input-placeholder { /* Chrome */
  color: #bec0c4;
}
nav.panel-wrapper.top-bar#header input[type=search].sbx-custom__input :-ms-input-placeholder { /* IE 10+ */
  color: #bec0c4;
}
nav.panel-wrapper.top-bar#header input[type=search].sbx-custom__input ::-moz-placeholder { /* Firefox 19+ */
  color: #bec0c4;
}
nav.panel-wrapper.top-bar#header input[type=search].sbx-custom__input :-moz-placeholder { /* Firefox 4 - 18 */
  color: #bec0c4;
}
nav.panel-wrapper.top-bar#header .sbx-custom__input::-webkit-search-decoration, nav.panel-wrapper.top-bar#header .sbx-custom__input::-webkit-search-cancel-button, nav.panel-wrapper.top-bar#header .sbx-custom__input::-webkit-search-results-button, nav.panel-wrapper.top-bar#header .sbx-custom__input::-webkit-search-results-decoration {
  display: none;
}
nav.panel-wrapper.top-bar#header .sbx-custom__input:focus, nav.panel-wrapper.top-bar#header .sbx-custom__input:active {
  outline: 0;
  box-shadow: none;
  background: #505050 !important;
}
@media only screen and (max-width: 1024px) {
  nav.panel-wrapper.top-bar#header .sbx-custom__input:focus, nav.panel-wrapper.top-bar#header .sbx-custom__input:active {
    width: calc(100vw - 32rem);
  }
}
nav.panel-wrapper.top-bar#header input[type=search].sbx-custom__input ::-webkit-input-placeholder { /* Chrome */
  color: #6c727a;
}
nav.panel-wrapper.top-bar#header input[type=search].sbx-custom__input :-ms-input-placeholder { /* IE 10+ */
  color: #6c727a;
}
nav.panel-wrapper.top-bar#header input[type=search].sbx-custom__input ::-moz-placeholder { /* Firefox 19+ */
  color: #6c727a;
}
nav.panel-wrapper.top-bar#header input[type=search].sbx-custom__input :-moz-placeholder { /* Firefox 4 - 18 */
  color: #6c727a;
}
nav.panel-wrapper.top-bar#header .sbx-custom__submit {
  position: absolute !important;
  left: auto;
  top: 0.4rem;
  right: 0;
  background-color: transparent !important;
  padding: 0 !important;
  width: 33px !important;
  height: 100% !important;
  color: #6c727a;
  box-shadow: none !important;
  vertical-align: middle !important;
  text-align: center !important;
  font-size: inherit !important;
  cursor: default !important;
  pointer-events: none !important;
}
nav.panel-wrapper.top-bar#header .sbx-custom__submit:hover {
  background: transparent !important;
}
nav.panel-wrapper.top-bar#header .sbx-custom__submit:focus {
  color: #6c727a;
}
nav.panel-wrapper.top-bar#header #quick-search {
  position: absolute;
  z-index: 3;
  right: 17.6rem;
  min-width: 200px;
  text-align: right;
}
@media only screen and (min-width: 1025px) and (max-width: 1140px) {
  nav.panel-wrapper.top-bar#header #quick-search .sbx-custom__input {
    min-width: 12.8rem !important;
  }
}
@media only screen and (max-width: 1024px) {
  nav.panel-wrapper.top-bar#header #quick-search {
    right: 4.8rem !important;
  }
  nav.panel-wrapper.top-bar#header #quick-search .sbx-custom__input {
    width: 24rem;
    max-width: 60vw;
  }
}
@media only screen and (max-width: 1024px) {
  nav.panel-wrapper.top-bar#header nav.panel-wrapper.top-bar#header.logged #quick-search {
    right: 4.8rem !important;
  }
  nav.panel-wrapper.top-bar#header nav.panel-wrapper.top-bar#header.logged #quick-search .sbx-custom__input:focus, nav.panel-wrapper.top-bar#header nav.panel-wrapper.top-bar#header.logged #quick-search .sbx-custom__input:active,
  nav.panel-wrapper.top-bar#header nav.panel-wrapper.top-bar#header.logged #quick-search .algolia-autocomplete .aa-dropdown-menu {
    width: calc(100vw - 33.6rem);
  }
}
@media only screen and (max-width: 1024px) {
  nav.panel-wrapper.top-bar#header nav.panel-wrapper.top-bar#header:not(.logged) #quick-search {
    right: 4.8rem !important;
  }
  nav.panel-wrapper.top-bar#header nav.panel-wrapper.top-bar#header:not(.logged) #quick-search .sbx-custom__input, nav.panel-wrapper.top-bar#header nav.panel-wrapper.top-bar#header:not(.logged) #quick-search .sbx-custom__input:focus, nav.panel-wrapper.top-bar#header nav.panel-wrapper.top-bar#header:not(.logged) #quick-search .sbx-custom__input:active,
  nav.panel-wrapper.top-bar#header nav.panel-wrapper.top-bar#header:not(.logged) #quick-search .algolia-autocomplete .aa-dropdown-menu {
    width: calc(100vw - 33.6rem);
  }
}
@-webkit-keyframes sbx-reset-in {
  0% {
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes sbx-reset-in {
  0% {
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.invitation-status {
  font-weight: bold;
  text-transform: capitalize;
}
.invitation-status.revoked, .invitation-status.withdrawn {
  color: #585f69;
}
.invitation-status.accepted {
  color: #00a57a;
}
.invitation-status.rejected, .invitation-status.revoked, .invitation-status.opted_out {
  color: #EF452F;
}

.bid-status {
  font-weight: bold;
}
.bid-status.submitted {
  color: #00a57a;
}
.bid-status.did_not_submit {
  color: #EF452F;
}

#technical-evaluation-table .mark {
  text-transform: capitalize;
  font-weight: 700;
}
#technical-evaluation-table .mark.good {
  color: #00a57a;
}
#technical-evaluation-table .mark.poor {
  color: #EF452F;
}
#technical-evaluation-table .mark.fair {
  color: #ef7c22;
}
#technical-evaluation-table .note {
  font-weight: normal;
}
#technical-evaluation-table .note.pending {
  font-weight: 700;
}
#technical-evaluation-table .answer em {
  font-style: italic;
}

#tender_evaluation_modal input[type=radio], #technical-evaluation-table input[type=radio] {
  -webkit-appearance: none;
}
#tender_evaluation_modal .evaluation div.button, #technical-evaluation-table .evaluation div.button {
  padding: 0;
  background-color: white;
  color: #6c727a;
  border: 1px solid #6c727a;
  margin: 0 0 0.32rem 0;
}
#tender_evaluation_modal .evaluation div.button label, #technical-evaluation-table .evaluation div.button label {
  margin: 0;
  padding: 0 0.8rem;
  color: #6c727a;
  cursor: pointer;
}
#tender_evaluation_modal .evaluation div.button input, #technical-evaluation-table .evaluation div.button input {
  position: fixed;
  left: -10000px;
}
#tender_evaluation_modal .evaluation div.button:hover, #technical-evaluation-table .evaluation div.button:hover {
  color: #585f69;
  border: 1px solid #585f69;
}
#tender_evaluation_modal .evaluation div.button:hover label, #technical-evaluation-table .evaluation div.button:hover label {
  color: #585f69;
}
#tender_evaluation_modal .evaluation div.button.active.good, #technical-evaluation-table .evaluation div.button.active.good {
  border: 1px solid #00a57a;
}
#tender_evaluation_modal .evaluation div.button.active.good label, #technical-evaluation-table .evaluation div.button.active.good label {
  color: #00a57a;
}
#tender_evaluation_modal .evaluation div.button.active.poor, #technical-evaluation-table .evaluation div.button.active.poor {
  border: 1px solid #EF452F;
}
#tender_evaluation_modal .evaluation div.button.active.poor label, #technical-evaluation-table .evaluation div.button.active.poor label {
  color: #EF452F;
}
#tender_evaluation_modal .evaluation div.button.active.fair, #technical-evaluation-table .evaluation div.button.active.fair {
  border: 1px solid #ef7c22;
}
#tender_evaluation_modal .evaluation div.button.active.fair label, #technical-evaluation-table .evaluation div.button.active.fair label {
  color: #ef7c22;
}

#bid_evaluation_template_form .name-input {
  padding-bottom: 1.6rem;
}
#bid_evaluation_template_form .name-input label {
  display: inline-block;
}
#bid_evaluation_template_form .name-input label span.required {
  color: #EF452F;
  margin: 0 1.6rem 0 0.8rem;
}
#bid_evaluation_template_form .name-input .form-field {
  display: inline-block;
  position: relative;
  width: 32rem;
}
#bid_evaluation_template_form .name-input .form-field #bid-evaluation-template-name {
  width: 100%;
  margin: 0;
}
#bid_evaluation_template_form .name-input .form-field .errors {
  color: #EF452F;
  font-size: 1.2rem;
  position: absolute;
}
#bid_evaluation_template_form #bid-evaluation-template-grid .ag-cell {
  line-height: 3.2rem;
  padding: 0 0.8rem;
}
#bid_evaluation_template_form #bid-evaluation-template-grid .ag-cell select {
  margin-top: 0.48rem !important;
  margin-bottom: 0;
}
#bid_evaluation_template_form #bid-evaluation-template-grid .ag-cell input[type=text] {
  border: none;
  background-color: transparent;
  margin-top: 0.32rem !important;
  margin-bottom: 0;
}

.report-page .row + .document-details {
  margin-top: 1.6rem;
}
.report-page .document-details + .row {
  margin-top: 0.32rem;
}
.report-page .document-details h3 {
  line-height: 2.8rem;
}
.report-page .button.block {
  display: block;
  width: 100%;
}
.report-page form input, .report-page form select {
  margin-bottom: 0;
}

.xls_link {
  text-align: right;
}
