.expander {
  border: 1px solid #ddd;
  border-radius: 2px; }
  .expander .expander-header {
    display: flex;
    align-items: start;
    padding: 8px;
    background-color: #f9f9f9;
    cursor: pointer; }
  .expander .expander-body {
    padding: 10px;
    background-color: #fff; }
  .expander .action-items {
    display: flex;
    gap: 0.5rem;
    margin-left: auto; }
    .expander .action-items .action-item {
      display: inline-flex;
      align-items: center;
      justify-content: center; }
  .expander .expand-icon {
    font-size: 16px !important; }
  .expander i {
    color: #666666;
    display: flex;
    margin: 0 4px;
    font-size: 20px !important;
    cursor: pointer; }
    .expander i:hover {
      color: #364b94; }
.filter-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: left;
  margin-left: 9.5em; }
  .filter-tags .tag {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    width: 6rem;
    padding: 1px 0 0 0;
    font-size: 12px;
    font-weight: normal;
    height: 18px; }
    .filter-tags .tag input[type="checkbox"] {
      display: none; }
    .filter-tags .tag.selected {
      background-color: #3c474b;
      color: white;
      border-color: #3c474b; }
    .filter-tags .tag.selected:hover {
      background-color: #3c474b; }
    .filter-tags .tag:hover {
      background-color: #e0e0e0; }

.tspan {
  font-size: 4px !important; }
.avg-read-time {
  padding: 0.5rem 0 0.5rem 0;
  z-index: 100;
  position: absolute; }
  .avg-read-time .avg-export-link,
  .avg-read-time i {
    color: #364b94;
    cursor: pointer;
    padding: 0 2px 0 2px; }
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000; }
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center; }
  .modal-overlay .modal-content {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
    z-index: 1001;
    width: 500px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 6px; }
    .modal-overlay .modal-content .modal-header, .modal-overlay .modal-content .modal-body {
      margin-bottom: 20px; }
    .modal-overlay .modal-content .modal-header {
      height: 40px;
      font-size: 20px;
      color: #ffffff;
      padding: 10px;
      font-family: 'Roboto';
      background: #364b94;
      font-weight: 300;
      line-height: 0.9;
      letter-spacing: 0.5px; }
      .modal-overlay .modal-content .modal-header .close {
        cursor: pointer;
        color: white;
        font-size: 34px;
        font-weight: bold;
        line-height: 1;
        margin: 0;
        opacity: 0.4;
        text-shadow: none; }
        .modal-overlay .modal-content .modal-header .close:hover {
          color: #ffffff;
          opacity: 1; }
      .modal-overlay .modal-content .modal-header .modal-close-icon {
        font-family: 'Roboto';
        font-weight: 300;
        font-size: 36px;
        display: block;
        line-height: .5;
        color: #fff;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg); }
      .modal-overlay .modal-content .modal-header::before {
        content: " ";
        display: table; }
      .modal-overlay .modal-content .modal-header::after {
        content: " ";
        display: table;
        clear: both; }
.click-copy-link {
  opacity: 0.8; }
  .click-copy-link:hover {
    opacity: 1; }

ul {
  list-style-type: none; }
.custom-select-container {
  position: relative; }
  .custom-select-container .custom-select {
    border: 1px solid #ccc;
    background-color: white;
    padding: 0.5rem;
    cursor: pointer;
    user-select: none; }
    .custom-select-container .custom-select.disabled {
      background-color: #eee;
      pointer-events: none;
      cursor: not-allowed !important; }
      .custom-select-container .custom-select.disabled:hover {
        pointer-events: none;
        cursor: not-allowed !important; }
  .custom-select-container .options-container, .custom-select-container .options-container-dropdown {
    position: absolute;
    left: 0;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    border: 1px solid #ced4da;
    border-top: none;
    border-radius: 0.25rem;
    background-color: white;
    width: 100%;
    top: 35px;
    z-index: 1; }
    .custom-select-container .options-container .option, .custom-select-container .options-container-dropdown .option {
      padding: 0.5rem; }
      .custom-select-container .options-container .option:hover, .custom-select-container .options-container-dropdown .option:hover {
        background-color: #f5f5f5;
        color: #262626; }
      .custom-select-container .options-container .option:hover .check-icon, .custom-select-container .options-container-dropdown .option:hover .check-icon {
        opacity: 0.3; }
      .custom-select-container .options-container .option.selected .check-icon, .custom-select-container .options-container-dropdown .option.selected .check-icon {
        opacity: 1; }
      .custom-select-container .options-container .option .check-icon, .custom-select-container .options-container-dropdown .option .check-icon {
        opacity: 0; }
    .custom-select-container .options-container .form-control, .custom-select-container .options-container-dropdown .form-control {
      border-bottom-right-radius: 4px;
      border-top-right-radius: 4px;
      border-bottom-left-radius: 0;
      border-top-left-radius: 0;
      font-size: 14px; }
    .custom-select-container .options-container .input-group-addon, .custom-select-container .options-container-dropdown .input-group-addon {
      padding: 5px; }
    .custom-select-container .options-container input::placeholder, .custom-select-container .options-container-dropdown input::placeholder {
      color: gainsboro; }
    .custom-select-container .options-container .btn-group-search, .custom-select-container .options-container-dropdown .btn-group-search {
      width: 22px; }
    .custom-select-container .options-container .inline-table-column, .custom-select-container .options-container-dropdown .inline-table-column {
      display: inline-table; }
.string-input {
  padding-top: 10px; }
  .string-input .string-input-tooltip {
    display: inline-block; }
    .string-input .string-input-tooltip .string-input-tooltiptext {
      visibility: hidden;
      font-size: .7em; }
    .string-input .string-input-tooltip:hover .string-input-tooltiptext {
      visibility: visible; }
  .string-input input {
    width: 40em; }
.my-example-react-form {
  background-color: #EBF0F7;
  padding: 5px;
  margin-top: 20px;
  border: solid;
  border-width: 1px;
  width: 80vw; }
@charset "UTF-8";
/*!
 * Bootstrap v3.3.6 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

a:active,
a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

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

td,
th {
  padding: 0; }

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .navbar {
    display: none; }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important; }
  .label {
    border: 1px solid #000; }
  .table {
    border-collapse: collapse !important; }
    .table td,
    .table th {
      background-color: #fff !important; }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important; } }

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url(fonts/glyphicons-halflings-regular.eot);
  src: url(fonts/glyphicons-halflings-regular.eot?#iefix) format("embedded-opentype"), url(fonts/glyphicons-halflings-regular.woff2) format("woff2"), url(fonts/glyphicons-halflings-regular.woff) format("woff"), url(fonts/glyphicons-halflings-regular.ttf) format("truetype"), url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciLz4=#glyphicons_halflingsregular) format("svg"); }

.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.glyphicon-asterisk:before {
  content: "*"; }

.glyphicon-plus:before {
  content: "+"; }

.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20AC"; }

.glyphicon-minus:before {
  content: "\2212"; }

.glyphicon-cloud:before {
  content: "\2601"; }

.glyphicon-envelope:before {
  content: "\2709"; }

.glyphicon-pencil:before {
  content: "\270F"; }

.glyphicon-glass:before {
  content: "\E001"; }

.glyphicon-music:before {
  content: "\E002"; }

.glyphicon-search:before {
  content: "\E003"; }

.glyphicon-heart:before {
  content: "\E005"; }

.glyphicon-star:before {
  content: "\E006"; }

.glyphicon-star-empty:before {
  content: "\E007"; }

.glyphicon-user:before {
  content: "\E008"; }

.glyphicon-film:before {
  content: "\E009"; }

.glyphicon-th-large:before {
  content: "\E010"; }

.glyphicon-th:before {
  content: "\E011"; }

.glyphicon-th-list:before {
  content: "\E012"; }

.glyphicon-ok:before {
  content: "\E013"; }

.glyphicon-remove:before {
  content: "\E014"; }

.glyphicon-zoom-in:before {
  content: "\E015"; }

.glyphicon-zoom-out:before {
  content: "\E016"; }

.glyphicon-off:before {
  content: "\E017"; }

.glyphicon-signal:before {
  content: "\E018"; }

.glyphicon-cog:before {
  content: "\E019"; }

.glyphicon-trash:before {
  content: "\E020"; }

.glyphicon-home:before {
  content: "\E021"; }

.glyphicon-file:before {
  content: "\E022"; }

.glyphicon-time:before {
  content: "\E023"; }

.glyphicon-road:before {
  content: "\E024"; }

.glyphicon-download-alt:before {
  content: "\E025"; }

.glyphicon-download:before {
  content: "\E026"; }

.glyphicon-upload:before {
  content: "\E027"; }

.glyphicon-inbox:before {
  content: "\E028"; }

.glyphicon-play-circle:before {
  content: "\E029"; }

.glyphicon-repeat:before {
  content: "\E030"; }

.glyphicon-refresh:before {
  content: "\E031"; }

.glyphicon-list-alt:before {
  content: "\E032"; }

.glyphicon-lock:before {
  content: "\E033"; }

.glyphicon-flag:before {
  content: "\E034"; }

.glyphicon-headphones:before {
  content: "\E035"; }

.glyphicon-volume-off:before {
  content: "\E036"; }

.glyphicon-volume-down:before {
  content: "\E037"; }

.glyphicon-volume-up:before {
  content: "\E038"; }

.glyphicon-qrcode:before {
  content: "\E039"; }

.glyphicon-barcode:before {
  content: "\E040"; }

.glyphicon-tag:before {
  content: "\E041"; }

.glyphicon-tags:before {
  content: "\E042"; }

.glyphicon-book:before {
  content: "\E043"; }

.glyphicon-bookmark:before {
  content: "\E044"; }

.glyphicon-print:before {
  content: "\E045"; }

.glyphicon-camera:before {
  content: "\E046"; }

.glyphicon-font:before {
  content: "\E047"; }

.glyphicon-bold:before {
  content: "\E048"; }

.glyphicon-italic:before {
  content: "\E049"; }

.glyphicon-text-height:before {
  content: "\E050"; }

.glyphicon-text-width:before {
  content: "\E051"; }

.glyphicon-align-left:before {
  content: "\E052"; }

.glyphicon-align-center:before {
  content: "\E053"; }

.glyphicon-align-right:before {
  content: "\E054"; }

.glyphicon-align-justify:before {
  content: "\E055"; }

.glyphicon-list:before {
  content: "\E056"; }

.glyphicon-indent-left:before {
  content: "\E057"; }

.glyphicon-indent-right:before {
  content: "\E058"; }

.glyphicon-facetime-video:before {
  content: "\E059"; }

.glyphicon-picture:before {
  content: "\E060"; }

.glyphicon-map-marker:before {
  content: "\E062"; }

.glyphicon-adjust:before {
  content: "\E063"; }

.glyphicon-tint:before {
  content: "\E064"; }

.glyphicon-edit:before {
  content: "\E065"; }

.glyphicon-share:before {
  content: "\E066"; }

.glyphicon-check:before {
  content: "\E067"; }

.glyphicon-move:before {
  content: "\E068"; }

.glyphicon-step-backward:before {
  content: "\E069"; }

.glyphicon-fast-backward:before {
  content: "\E070"; }

.glyphicon-backward:before {
  content: "\E071"; }

.glyphicon-play:before {
  content: "\E072"; }

.glyphicon-pause:before {
  content: "\E073"; }

.glyphicon-stop:before {
  content: "\E074"; }

.glyphicon-forward:before {
  content: "\E075"; }

.glyphicon-fast-forward:before {
  content: "\E076"; }

.glyphicon-step-forward:before {
  content: "\E077"; }

.glyphicon-eject:before {
  content: "\E078"; }

.glyphicon-chevron-left:before {
  content: "\E079"; }

.glyphicon-chevron-right:before {
  content: "\E080"; }

.glyphicon-plus-sign:before {
  content: "\E081"; }

.glyphicon-minus-sign:before {
  content: "\E082"; }

.glyphicon-remove-sign:before {
  content: "\E083"; }

.glyphicon-ok-sign:before {
  content: "\E084"; }

.glyphicon-question-sign:before {
  content: "\E085"; }

.glyphicon-info-sign:before {
  content: "\E086"; }

.glyphicon-screenshot:before {
  content: "\E087"; }

.glyphicon-remove-circle:before {
  content: "\E088"; }

.glyphicon-ok-circle:before {
  content: "\E089"; }

.glyphicon-ban-circle:before {
  content: "\E090"; }

.glyphicon-arrow-left:before {
  content: "\E091"; }

.glyphicon-arrow-right:before {
  content: "\E092"; }

.glyphicon-arrow-up:before {
  content: "\E093"; }

.glyphicon-arrow-down:before {
  content: "\E094"; }

.glyphicon-share-alt:before {
  content: "\E095"; }

.glyphicon-resize-full:before {
  content: "\E096"; }

.glyphicon-resize-small:before {
  content: "\E097"; }

.glyphicon-exclamation-sign:before {
  content: "\E101"; }

.glyphicon-gift:before {
  content: "\E102"; }

.glyphicon-leaf:before {
  content: "\E103"; }

.glyphicon-fire:before {
  content: "\E104"; }

.glyphicon-eye-open:before {
  content: "\E105"; }

.glyphicon-eye-close:before {
  content: "\E106"; }

.glyphicon-warning-sign:before {
  content: "\E107"; }

.glyphicon-plane:before {
  content: "\E108"; }

.glyphicon-calendar:before {
  content: "\E109"; }

.glyphicon-random:before {
  content: "\E110"; }

.glyphicon-comment:before {
  content: "\E111"; }

.glyphicon-magnet:before {
  content: "\E112"; }

.glyphicon-chevron-up:before {
  content: "\E113"; }

.glyphicon-chevron-down:before {
  content: "\E114"; }

.glyphicon-retweet:before {
  content: "\E115"; }

.glyphicon-shopping-cart:before {
  content: "\E116"; }

.glyphicon-folder-close:before {
  content: "\E117"; }

.glyphicon-folder-open:before {
  content: "\E118"; }

.glyphicon-resize-vertical:before {
  content: "\E119"; }

.glyphicon-resize-horizontal:before {
  content: "\E120"; }

.glyphicon-hdd:before {
  content: "\E121"; }

.glyphicon-bullhorn:before {
  content: "\E122"; }

.glyphicon-bell:before {
  content: "\E123"; }

.glyphicon-certificate:before {
  content: "\E124"; }

.glyphicon-thumbs-up:before {
  content: "\E125"; }

.glyphicon-thumbs-down:before {
  content: "\E126"; }

.glyphicon-hand-right:before {
  content: "\E127"; }

.glyphicon-hand-left:before {
  content: "\E128"; }

.glyphicon-hand-up:before {
  content: "\E129"; }

.glyphicon-hand-down:before {
  content: "\E130"; }

.glyphicon-circle-arrow-right:before {
  content: "\E131"; }

.glyphicon-circle-arrow-left:before {
  content: "\E132"; }

.glyphicon-circle-arrow-up:before {
  content: "\E133"; }

.glyphicon-circle-arrow-down:before {
  content: "\E134"; }

.glyphicon-globe:before {
  content: "\E135"; }

.glyphicon-wrench:before {
  content: "\E136"; }

.glyphicon-tasks:before {
  content: "\E137"; }

.glyphicon-filter:before {
  content: "\E138"; }

.glyphicon-briefcase:before {
  content: "\E139"; }

.glyphicon-fullscreen:before {
  content: "\E140"; }

.glyphicon-dashboard:before {
  content: "\E141"; }

.glyphicon-paperclip:before {
  content: "\E142"; }

.glyphicon-heart-empty:before {
  content: "\E143"; }

.glyphicon-link:before {
  content: "\E144"; }

.glyphicon-phone:before {
  content: "\E145"; }

.glyphicon-pushpin:before {
  content: "\E146"; }

.glyphicon-usd:before {
  content: "\E148"; }

.glyphicon-gbp:before {
  content: "\E149"; }

.glyphicon-sort:before {
  content: "\E150"; }

.glyphicon-sort-by-alphabet:before {
  content: "\E151"; }

.glyphicon-sort-by-alphabet-alt:before {
  content: "\E152"; }

.glyphicon-sort-by-order:before {
  content: "\E153"; }

.glyphicon-sort-by-order-alt:before {
  content: "\E154"; }

.glyphicon-sort-by-attributes:before {
  content: "\E155"; }

.glyphicon-sort-by-attributes-alt:before {
  content: "\E156"; }

.glyphicon-unchecked:before {
  content: "\E157"; }

.glyphicon-expand:before {
  content: "\E158"; }

.glyphicon-collapse-down:before {
  content: "\E159"; }

.glyphicon-collapse-up:before {
  content: "\E160"; }

.glyphicon-log-in:before {
  content: "\E161"; }

.glyphicon-flash:before {
  content: "\E162"; }

.glyphicon-log-out:before {
  content: "\E163"; }

.glyphicon-new-window:before {
  content: "\E164"; }

.glyphicon-record:before {
  content: "\E165"; }

.glyphicon-save:before {
  content: "\E166"; }

.glyphicon-open:before {
  content: "\E167"; }

.glyphicon-saved:before {
  content: "\E168"; }

.glyphicon-import:before {
  content: "\E169"; }

.glyphicon-export:before {
  content: "\E170"; }

.glyphicon-send:before {
  content: "\E171"; }

.glyphicon-floppy-disk:before {
  content: "\E172"; }

.glyphicon-floppy-saved:before {
  content: "\E173"; }

.glyphicon-floppy-remove:before {
  content: "\E174"; }

.glyphicon-floppy-save:before {
  content: "\E175"; }

.glyphicon-floppy-open:before {
  content: "\E176"; }

.glyphicon-credit-card:before {
  content: "\E177"; }

.glyphicon-transfer:before {
  content: "\E178"; }

.glyphicon-cutlery:before {
  content: "\E179"; }

.glyphicon-header:before {
  content: "\E180"; }

.glyphicon-compressed:before {
  content: "\E181"; }

.glyphicon-earphone:before {
  content: "\E182"; }

.glyphicon-phone-alt:before {
  content: "\E183"; }

.glyphicon-tower:before {
  content: "\E184"; }

.glyphicon-stats:before {
  content: "\E185"; }

.glyphicon-sd-video:before {
  content: "\E186"; }

.glyphicon-hd-video:before {
  content: "\E187"; }

.glyphicon-subtitles:before {
  content: "\E188"; }

.glyphicon-sound-stereo:before {
  content: "\E189"; }

.glyphicon-sound-dolby:before {
  content: "\E190"; }

.glyphicon-sound-5-1:before {
  content: "\E191"; }

.glyphicon-sound-6-1:before {
  content: "\E192"; }

.glyphicon-sound-7-1:before {
  content: "\E193"; }

.glyphicon-copyright-mark:before {
  content: "\E194"; }

.glyphicon-registration-mark:before {
  content: "\E195"; }

.glyphicon-cloud-download:before {
  content: "\E197"; }

.glyphicon-cloud-upload:before {
  content: "\E198"; }

.glyphicon-tree-conifer:before {
  content: "\E199"; }

.glyphicon-tree-deciduous:before {
  content: "\E200"; }

.glyphicon-cd:before {
  content: "\E201"; }

.glyphicon-save-file:before {
  content: "\E202"; }

.glyphicon-open-file:before {
  content: "\E203"; }

.glyphicon-level-up:before {
  content: "\E204"; }

.glyphicon-copy:before {
  content: "\E205"; }

.glyphicon-paste:before {
  content: "\E206"; }

.glyphicon-alert:before {
  content: "\E209"; }

.glyphicon-equalizer:before {
  content: "\E210"; }

.glyphicon-king:before {
  content: "\E211"; }

.glyphicon-queen:before {
  content: "\E212"; }

.glyphicon-pawn:before {
  content: "\E213"; }

.glyphicon-bishop:before {
  content: "\E214"; }

.glyphicon-knight:before {
  content: "\E215"; }

.glyphicon-baby-formula:before {
  content: "\E216"; }

.glyphicon-tent:before {
  content: "\26FA"; }

.glyphicon-blackboard:before {
  content: "\E218"; }

.glyphicon-bed:before {
  content: "\E219"; }

.glyphicon-apple:before {
  content: "\F8FF"; }

.glyphicon-erase:before {
  content: "\E221"; }

.glyphicon-hourglass:before {
  content: "\231B"; }

.glyphicon-lamp:before {
  content: "\E223"; }

.glyphicon-duplicate:before {
  content: "\E224"; }

.glyphicon-piggy-bank:before {
  content: "\E225"; }

.glyphicon-scissors:before {
  content: "\E226"; }

.glyphicon-bitcoin:before {
  content: "\E227"; }

.glyphicon-btc:before {
  content: "\E227"; }

.glyphicon-xbt:before {
  content: "\E227"; }

.glyphicon-yen:before {
  content: "\A5"; }

.glyphicon-jpy:before {
  content: "\A5"; }

.glyphicon-ruble:before {
  content: "\20BD"; }

.glyphicon-rub:before {
  content: "\20BD"; }

.glyphicon-scale:before {
  content: "\E230"; }

.glyphicon-ice-lolly:before {
  content: "\E231"; }

.glyphicon-ice-lolly-tasted:before {
  content: "\E232"; }

.glyphicon-education:before {
  content: "\E233"; }

.glyphicon-option-horizontal:before {
  content: "\E234"; }

.glyphicon-option-vertical:before {
  content: "\E235"; }

.glyphicon-menu-hamburger:before {
  content: "\E236"; }

.glyphicon-modal-window:before {
  content: "\E237"; }

.glyphicon-oil:before {
  content: "\E238"; }

.glyphicon-grain:before {
  content: "\E239"; }

.glyphicon-sunglasses:before {
  content: "\E240"; }

.glyphicon-text-size:before {
  content: "\E241"; }

.glyphicon-text-color:before {
  content: "\E242"; }

.glyphicon-text-background:before {
  content: "\E243"; }

.glyphicon-object-align-top:before {
  content: "\E244"; }

.glyphicon-object-align-bottom:before {
  content: "\E245"; }

.glyphicon-object-align-horizontal:before {
  content: "\E246"; }

.glyphicon-object-align-left:before {
  content: "\E247"; }

.glyphicon-object-align-vertical:before {
  content: "\E248"; }

.glyphicon-object-align-right:before {
  content: "\E249"; }

.glyphicon-triangle-right:before {
  content: "\E250"; }

.glyphicon-triangle-left:before {
  content: "\E251"; }

.glyphicon-triangle-bottom:before {
  content: "\E252"; }

.glyphicon-triangle-top:before {
  content: "\E253"; }

.glyphicon-console:before {
  content: "\E254"; }

.glyphicon-superscript:before {
  content: "\E255"; }

.glyphicon-subscript:before {
  content: "\E256"; }

.glyphicon-menu-left:before {
  content: "\E257"; }

.glyphicon-menu-right:before {
  content: "\E258"; }

.glyphicon-menu-down:before {
  content: "\E259"; }

.glyphicon-menu-up:before {
  content: "\E260"; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent; }

body {
  font-family: "Roboto";
  font-size: 16px;
  line-height: 1.2;
  color: #3c474b;
  background-color: #fff; }

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

a {
  color: #0da668;
  text-decoration: none; }
  a:hover, a:focus {
    color: #e8671a;
    text-decoration: underline; }
  a:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }

figure {
  margin: 0; }

img {
  vertical-align: middle; }

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto; }

.img-rounded {
  border-radius: 5px; }

.img-thumbnail {
  padding: 4px;
  line-height: 1.2;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto; }

.img-circle {
  border-radius: 50%; }

hr {
  margin-top: 19px;
  margin-bottom: 19px;
  border: 0;
  border-top: 1px solid #eeeeee; }

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

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

[role="button"] {
  cursor: pointer; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Roboto", Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
  line-height: 1.1;
  color: inherit; }
  h1 small,
  h1 .small, h2 small,
  h2 .small, h3 small,
  h3 .small, h4 small,
  h4 .small, h5 small,
  h5 .small, h6 small,
  h6 .small,
  .h1 small,
  .h1 .small, .h2 small,
  .h2 .small, .h3 small,
  .h3 .small, .h4 small,
  .h4 .small, .h5 small,
  .h5 .small, .h6 small,
  .h6 .small {
    font-weight: normal;
    line-height: 1;
    color: darkgray; }

h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 19px;
  margin-bottom: 9.5px; }
  h1 small,
  h1 .small, .h1 small,
  .h1 .small,
  h2 small,
  h2 .small, .h2 small,
  .h2 .small,
  h3 small,
  h3 .small, .h3 small,
  .h3 .small {
    font-size: 65%; }

h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 9.5px;
  margin-bottom: 9.5px; }
  h4 small,
  h4 .small, .h4 small,
  .h4 .small,
  h5 small,
  h5 .small, .h5 small,
  .h5 .small,
  h6 small,
  h6 .small, .h6 small,
  .h6 .small {
    font-size: 75%; }

h1, .h1 {
  font-size: 43px; }

h2, .h2 {
  font-size: 24px; }

h3, .h3 {
  font-size: 16px; }

h4, .h4 {
  font-size: 14px; }

h5, .h5 {
  font-size: 12px; }

h6, .h6 {
  font-size: 10px; }

p {
  margin: 0 0 9.5px; }

.lead {
  margin-bottom: 19px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4; }
  @media (min-width: 768px) {
    .lead {
      font-size: 24px; } }

small,
.small {
  font-size: 87%; }

mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em; }

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

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

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

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

.text-nowrap {
  white-space: nowrap; }

.text-lowercase {
  text-transform: lowercase; }

.text-uppercase, .initialism {
  text-transform: uppercase; }

.text-capitalize {
  text-transform: capitalize; }

.text-muted {
  color: gainsboro; }

.text-primary {
  color: #364b94; }

a.text-primary:hover,
a.text-primary:focus {
  color: #28386f; }

.text-success {
  color: #3c763d; }

a.text-success:hover,
a.text-success:focus {
  color: #2b542c; }

.text-info {
  color: #31708f; }

a.text-info:hover,
a.text-info:focus {
  color: #245269; }

.text-warning {
  color: #8a6d3b; }

a.text-warning:hover,
a.text-warning:focus {
  color: #66512c; }

.text-danger {
  color: #a94442; }

a.text-danger:hover,
a.text-danger:focus {
  color: #843534; }

.bg-primary {
  color: #fff; }

.bg-primary {
  background-color: #364b94; }

a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #28386f; }

.bg-success {
  background-color: #dff0d8; }

a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3; }

.bg-info {
  background-color: #d9edf7; }

a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee; }

.bg-warning {
  background-color: #fcf8e3; }

a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5; }

.bg-danger {
  background-color: #f2dede; }

a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9; }

.page-header {
  padding-bottom: 8.5px;
  margin: 38px 0 19px;
  border-bottom: 1px solid #eeeeee; }

ul,
ol {
  margin-top: 0;
  margin-bottom: 9.5px; }
  ul ul,
  ul ol,
  ol ul,
  ol ol {
    margin-bottom: 0; }

.list-unstyled {
  padding-left: 0;
  list-style: none; }

.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px; }
  .list-inline > li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px; }

dl {
  margin-top: 0;
  margin-bottom: 19px; }

dt,
dd {
  line-height: 1.2; }

dt {
  font-weight: bold; }

dd {
  margin-left: 0; }

.dl-horizontal dd:before, .dl-horizontal dd:after {
  content: " ";
  display: table; }

.dl-horizontal dd:after {
  clear: both; }

@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .dl-horizontal dd {
    margin-left: 180px; } }

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted gainsboro; }

.initialism {
  font-size: 90%; }

blockquote {
  padding: 9.5px 19px;
  margin: 0 0 19px;
  font-size: 20px;
  border-left: 5px solid #eeeeee; }
  blockquote p:last-child,
  blockquote ul:last-child,
  blockquote ol:last-child {
    margin-bottom: 0; }
  blockquote footer,
  blockquote small,
  blockquote .small {
    display: block;
    font-size: 80%;
    line-height: 1.2;
    color: gainsboro; }
    blockquote footer:before,
    blockquote small:before,
    blockquote .small:before {
      content: '\2014     \A0'; }

.blockquote-reverse,
blockquote.pull-right,
#ps-guide blockquote.show-code {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right; }
  .blockquote-reverse footer:before,
  .blockquote-reverse small:before,
  .blockquote-reverse .small:before,
  blockquote.pull-right footer:before, #ps-guide blockquote.show-code footer:before,
  blockquote.pull-right small:before, #ps-guide blockquote.show-code small:before,
  blockquote.pull-right .small:before, #ps-guide blockquote.show-code .small:before {
    content: ''; }
  .blockquote-reverse footer:after,
  .blockquote-reverse small:after,
  .blockquote-reverse .small:after,
  blockquote.pull-right footer:after, #ps-guide blockquote.show-code footer:after,
  blockquote.pull-right small:after, #ps-guide blockquote.show-code small:after,
  blockquote.pull-right .small:after, #ps-guide blockquote.show-code .small:after {
    content: '\A0     \2014'; }

address {
  margin-bottom: 19px;
  font-style: normal;
  line-height: 1.2; }

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace; }

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #ae0e1b;
  background-color: #fbfbfb;
  border-radius: 5px; }

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 5px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); }
  kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: bold;
    box-shadow: none; }

pre {
  display: block;
  padding: 9px;
  margin: 0 0 9.5px;
  font-size: 15px;
  line-height: 1.2;
  word-break: break-all;
  word-wrap: break-word;
  color: darkgray;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 5px; }
  pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0; }

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll; }

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }
  .container:before, .container:after {
    content: " ";
    display: table; }
  .container:after {
    clear: both; }
  @media (min-width: 768px) {
    .container {
      width: 750px; } }
  @media (min-width: 992px) {
    .container {
      width: 970px; } }
  @media (min-width: 1200px) {
    .container {
      width: 1170px; } }

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }
  .container-fluid:before, .container-fluid:after {
    content: " ";
    display: table; }
  .container-fluid:after {
    clear: both; }

.row {
  margin-left: -15px;
  margin-right: -15px; }
  .row:before, .row:after {
    content: " ";
    display: table; }
  .row:after {
    clear: both; }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left; }

.col-xs-1 {
  width: 8.33333%; }

.col-xs-2 {
  width: 16.66667%; }

.col-xs-3 {
  width: 25%; }

.col-xs-4 {
  width: 33.33333%; }

.col-xs-5 {
  width: 41.66667%; }

.col-xs-6 {
  width: 50%; }

.col-xs-7 {
  width: 58.33333%; }

.col-xs-8 {
  width: 66.66667%; }

.col-xs-9 {
  width: 75%; }

.col-xs-10 {
  width: 83.33333%; }

.col-xs-11 {
  width: 91.66667%; }

.col-xs-12 {
  width: 100%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-pull-1 {
  right: 8.33333%; }

.col-xs-pull-2 {
  right: 16.66667%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-4 {
  right: 33.33333%; }

.col-xs-pull-5 {
  right: 41.66667%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-7 {
  right: 58.33333%; }

.col-xs-pull-8 {
  right: 66.66667%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-10 {
  right: 83.33333%; }

.col-xs-pull-11 {
  right: 91.66667%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-push-1 {
  left: 8.33333%; }

.col-xs-push-2 {
  left: 16.66667%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-4 {
  left: 33.33333%; }

.col-xs-push-5 {
  left: 41.66667%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-7 {
  left: 58.33333%; }

.col-xs-push-8 {
  left: 66.66667%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-10 {
  left: 83.33333%; }

.col-xs-push-11 {
  left: 91.66667%; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-offset-0 {
  margin-left: 0%; }

.col-xs-offset-1 {
  margin-left: 8.33333%; }

.col-xs-offset-2 {
  margin-left: 16.66667%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-4 {
  margin-left: 33.33333%; }

.col-xs-offset-5 {
  margin-left: 41.66667%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-7 {
  margin-left: 58.33333%; }

.col-xs-offset-8 {
  margin-left: 66.66667%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-10 {
  margin-left: 83.33333%; }

.col-xs-offset-11 {
  margin-left: 91.66667%; }

.col-xs-offset-12 {
  margin-left: 100%; }

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left; }
  .col-sm-1 {
    width: 8.33333%; }
  .col-sm-2 {
    width: 16.66667%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-4 {
    width: 33.33333%; }
  .col-sm-5 {
    width: 41.66667%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-7 {
    width: 58.33333%; }
  .col-sm-8 {
    width: 66.66667%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-10 {
    width: 83.33333%; }
  .col-sm-11 {
    width: 91.66667%; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-pull-1 {
    right: 8.33333%; }
  .col-sm-pull-2 {
    right: 16.66667%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-4 {
    right: 33.33333%; }
  .col-sm-pull-5 {
    right: 41.66667%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-7 {
    right: 58.33333%; }
  .col-sm-pull-8 {
    right: 66.66667%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-10 {
    right: 83.33333%; }
  .col-sm-pull-11 {
    right: 91.66667%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-push-1 {
    left: 8.33333%; }
  .col-sm-push-2 {
    left: 16.66667%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-4 {
    left: 33.33333%; }
  .col-sm-push-5 {
    left: 41.66667%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-7 {
    left: 58.33333%; }
  .col-sm-push-8 {
    left: 66.66667%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-10 {
    left: 83.33333%; }
  .col-sm-push-11 {
    left: 91.66667%; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-offset-0 {
    margin-left: 0%; }
  .col-sm-offset-1 {
    margin-left: 8.33333%; }
  .col-sm-offset-2 {
    margin-left: 16.66667%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-4 {
    margin-left: 33.33333%; }
  .col-sm-offset-5 {
    margin-left: 41.66667%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-7 {
    margin-left: 58.33333%; }
  .col-sm-offset-8 {
    margin-left: 66.66667%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-10 {
    margin-left: 83.33333%; }
  .col-sm-offset-11 {
    margin-left: 91.66667%; }
  .col-sm-offset-12 {
    margin-left: 100%; } }

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left; }
  .col-md-1 {
    width: 8.33333%; }
  .col-md-2 {
    width: 16.66667%; }
  .col-md-3 {
    width: 25%; }
  .col-md-4 {
    width: 33.33333%; }
  .col-md-5 {
    width: 41.66667%; }
  .col-md-6 {
    width: 50%; }
  .col-md-7 {
    width: 58.33333%; }
  .col-md-8 {
    width: 66.66667%; }
  .col-md-9 {
    width: 75%; }
  .col-md-10 {
    width: 83.33333%; }
  .col-md-11 {
    width: 91.66667%; }
  .col-md-12 {
    width: 100%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-pull-1 {
    right: 8.33333%; }
  .col-md-pull-2 {
    right: 16.66667%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-4 {
    right: 33.33333%; }
  .col-md-pull-5 {
    right: 41.66667%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-7 {
    right: 58.33333%; }
  .col-md-pull-8 {
    right: 66.66667%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-10 {
    right: 83.33333%; }
  .col-md-pull-11 {
    right: 91.66667%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-push-1 {
    left: 8.33333%; }
  .col-md-push-2 {
    left: 16.66667%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-4 {
    left: 33.33333%; }
  .col-md-push-5 {
    left: 41.66667%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-7 {
    left: 58.33333%; }
  .col-md-push-8 {
    left: 66.66667%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-10 {
    left: 83.33333%; }
  .col-md-push-11 {
    left: 91.66667%; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-offset-0 {
    margin-left: 0%; }
  .col-md-offset-1 {
    margin-left: 8.33333%; }
  .col-md-offset-2 {
    margin-left: 16.66667%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-4 {
    margin-left: 33.33333%; }
  .col-md-offset-5 {
    margin-left: 41.66667%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-7 {
    margin-left: 58.33333%; }
  .col-md-offset-8 {
    margin-left: 66.66667%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-10 {
    margin-left: 83.33333%; }
  .col-md-offset-11 {
    margin-left: 91.66667%; }
  .col-md-offset-12 {
    margin-left: 100%; } }

@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }
  .col-lg-1 {
    width: 8.33333%; }
  .col-lg-2 {
    width: 16.66667%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-4 {
    width: 33.33333%; }
  .col-lg-5 {
    width: 41.66667%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-7 {
    width: 58.33333%; }
  .col-lg-8 {
    width: 66.66667%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-10 {
    width: 83.33333%; }
  .col-lg-11 {
    width: 91.66667%; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-pull-1 {
    right: 8.33333%; }
  .col-lg-pull-2 {
    right: 16.66667%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-4 {
    right: 33.33333%; }
  .col-lg-pull-5 {
    right: 41.66667%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-7 {
    right: 58.33333%; }
  .col-lg-pull-8 {
    right: 66.66667%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-10 {
    right: 83.33333%; }
  .col-lg-pull-11 {
    right: 91.66667%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-push-1 {
    left: 8.33333%; }
  .col-lg-push-2 {
    left: 16.66667%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-4 {
    left: 33.33333%; }
  .col-lg-push-5 {
    left: 41.66667%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-7 {
    left: 58.33333%; }
  .col-lg-push-8 {
    left: 66.66667%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-10 {
    left: 83.33333%; }
  .col-lg-push-11 {
    left: 91.66667%; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-offset-0 {
    margin-left: 0%; }
  .col-lg-offset-1 {
    margin-left: 8.33333%; }
  .col-lg-offset-2 {
    margin-left: 16.66667%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-4 {
    margin-left: 33.33333%; }
  .col-lg-offset-5 {
    margin-left: 41.66667%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-7 {
    margin-left: 58.33333%; }
  .col-lg-offset-8 {
    margin-left: 66.66667%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-10 {
    margin-left: 83.33333%; }
  .col-lg-offset-11 {
    margin-left: 91.66667%; }
  .col-lg-offset-12 {
    margin-left: 100%; } }

table {
  background-color: transparent; }

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: gainsboro;
  text-align: left; }

th {
  text-align: left; }

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 19px; }
  .table > thead > tr > th,
  .table > thead > tr > td,
  .table > tbody > tr > th,
  .table > tbody > tr > td,
  .table > tfoot > tr > th,
  .table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.2;
    vertical-align: top;
    border-top: 1px solid #ddd; }
  .table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd; }
  .table > caption + thead > tr:first-child > th,
  .table > caption + thead > tr:first-child > td,
  .table > colgroup + thead > tr:first-child > th,
  .table > colgroup + thead > tr:first-child > td,
  .table > thead:first-child > tr:first-child > th,
  .table > thead:first-child > tr:first-child > td {
    border-top: 0; }
  .table > tbody + tbody {
    border-top: 2px solid #ddd; }
  .table .table {
    background-color: #fff; }

.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px; }

.table-bordered {
  border: 1px solid #ddd; }
  .table-bordered > thead > tr > th,
  .table-bordered > thead > tr > td,
  .table-bordered > tbody > tr > th,
  .table-bordered > tbody > tr > td,
  .table-bordered > tfoot > tr > th,
  .table-bordered > tfoot > tr > td {
    border: 1px solid #ddd; }
  .table-bordered > thead > tr > th,
  .table-bordered > thead > tr > td {
    border-bottom-width: 2px; }

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9; }

.table-hover > tbody > tr:hover {
  background-color: #d9edf7; }

table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column; }

table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell; }

.table > thead > tr > td.active,
.table > thead > tr > th.active,
.table > thead > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #d9edf7; }

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #c4e3f3; }

.table > thead > tr > td.success,
.table > thead > tr > th.success,
.table > thead > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8; }

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6; }

.table > thead > tr > td.info,
.table > thead > tr > th.info,
.table > thead > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #d9edf7; }

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3; }

.table > thead > tr > td.warning,
.table > thead > tr > th.warning,
.table > thead > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3; }

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc; }

.table > thead > tr > td.danger,
.table > thead > tr > th.danger,
.table > thead > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede; }

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc; }

.table-responsive {
  overflow-x: auto;
  min-height: 0.01%; }
  @media screen and (max-width: 767px) {
    .table-responsive {
      width: 100%;
      margin-bottom: 14.25px;
      overflow-y: hidden;
      -ms-overflow-style: -ms-autohiding-scrollbar;
      border: 1px solid #ddd; }
      .table-responsive > .table {
        margin-bottom: 0; }
        .table-responsive > .table > thead > tr > th,
        .table-responsive > .table > thead > tr > td,
        .table-responsive > .table > tbody > tr > th,
        .table-responsive > .table > tbody > tr > td,
        .table-responsive > .table > tfoot > tr > th,
        .table-responsive > .table > tfoot > tr > td {
          white-space: nowrap; }
      .table-responsive > .table-bordered {
        border: 0; }
        .table-responsive > .table-bordered > thead > tr > th:first-child,
        .table-responsive > .table-bordered > thead > tr > td:first-child,
        .table-responsive > .table-bordered > tbody > tr > th:first-child,
        .table-responsive > .table-bordered > tbody > tr > td:first-child,
        .table-responsive > .table-bordered > tfoot > tr > th:first-child,
        .table-responsive > .table-bordered > tfoot > tr > td:first-child {
          border-left: 0; }
        .table-responsive > .table-bordered > thead > tr > th:last-child,
        .table-responsive > .table-bordered > thead > tr > td:last-child,
        .table-responsive > .table-bordered > tbody > tr > th:last-child,
        .table-responsive > .table-bordered > tbody > tr > td:last-child,
        .table-responsive > .table-bordered > tfoot > tr > th:last-child,
        .table-responsive > .table-bordered > tfoot > tr > td:last-child {
          border-right: 0; }
        .table-responsive > .table-bordered > tbody > tr:last-child > th,
        .table-responsive > .table-bordered > tbody > tr:last-child > td,
        .table-responsive > .table-bordered > tfoot > tr:last-child > th,
        .table-responsive > .table-bordered > tfoot > tr:last-child > td {
          border-bottom: 0; } }

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0; }

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 19px;
  font-size: 24px;
  line-height: inherit;
  color: darkgray;
  border: 0;
  border-bottom: 1px solid #e5e5e5; }

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold; }

input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal; }

input[type="file"] {
  display: block; }

input[type="range"] {
  display: block;
  width: 100%; }

select[multiple],
select[size] {
  height: auto; }

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

output {
  display: block;
  padding-top: 7px;
  font-size: 16px;
  line-height: 1.2;
  color: #3c474b; }

.form-control {
  display: block;
  width: 100%;
  height: 33px;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.2;
  color: #3c474b;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }
  .form-control:focus {
    border-color: #364b94;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(54, 75, 148, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(54, 75, 148, 0.6); }
  .form-control::-moz-placeholder {
    color: #999;
    opacity: 1; }
  .form-control:-ms-input-placeholder {
    color: #999; }
  .form-control::-webkit-input-placeholder {
    color: #999; }
  .form-control::-ms-expand {
    border: 0;
    background-color: transparent; }
  .form-control[disabled], .form-control[readonly],
  fieldset[disabled] .form-control {
    background-color: #eeeeee;
    opacity: 1; }
  .form-control[disabled],
  fieldset[disabled] .form-control {
    cursor: not-allowed; }

textarea.form-control {
  height: auto; }

input[type="search"] {
  -webkit-appearance: none; }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 33px; }
  input[type="date"].input-sm, .input-group-sm > input[type="date"].form-control,
  .input-group-sm > input[type="date"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="date"].btn,
  .input-group-sm input[type="date"],
  input[type="time"].input-sm,
  .input-group-sm > input[type="time"].form-control,
  .input-group-sm > input[type="time"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="time"].btn,
  .input-group-sm
  input[type="time"],
  input[type="datetime-local"].input-sm,
  .input-group-sm > input[type="datetime-local"].form-control,
  .input-group-sm > input[type="datetime-local"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="datetime-local"].btn,
  .input-group-sm
  input[type="datetime-local"],
  input[type="month"].input-sm,
  .input-group-sm > input[type="month"].form-control,
  .input-group-sm > input[type="month"].input-group-addon,
  .input-group-sm > .input-group-btn > input[type="month"].btn,
  .input-group-sm
  input[type="month"] {
    line-height: 33px; }
  input[type="date"].input-lg, .input-group-lg > input[type="date"].form-control,
  .input-group-lg > input[type="date"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="date"].btn,
  .input-group-lg input[type="date"],
  input[type="time"].input-lg,
  .input-group-lg > input[type="time"].form-control,
  .input-group-lg > input[type="time"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="time"].btn,
  .input-group-lg
  input[type="time"],
  input[type="datetime-local"].input-lg,
  .input-group-lg > input[type="datetime-local"].form-control,
  .input-group-lg > input[type="datetime-local"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="datetime-local"].btn,
  .input-group-lg
  input[type="datetime-local"],
  input[type="month"].input-lg,
  .input-group-lg > input[type="month"].form-control,
  .input-group-lg > input[type="month"].input-group-addon,
  .input-group-lg > .input-group-btn > input[type="month"].btn,
  .input-group-lg
  input[type="month"] {
    line-height: 49px; } }

.form-group {
  margin-bottom: 15px; }

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px; }
  .radio label,
  .checkbox label {
    min-height: 19px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer; }

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9; }

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px; }

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer; }

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px; }

input[type="radio"][disabled], input[type="radio"].disabled,
fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled,
fieldset[disabled]
input[type="checkbox"] {
  cursor: not-allowed; }

.radio-inline.disabled,
fieldset[disabled] .radio-inline,
.checkbox-inline.disabled,
fieldset[disabled]
.checkbox-inline {
  cursor: not-allowed; }

.radio.disabled label,
fieldset[disabled] .radio label,
.checkbox.disabled label,
fieldset[disabled]
.checkbox label {
  cursor: not-allowed; }

.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 35px; }
  .form-control-static.input-lg, .input-group-lg > .form-control-static.form-control,
  .input-group-lg > .form-control-static.input-group-addon,
  .input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control,
  .input-group-sm > .form-control-static.input-group-addon,
  .input-group-sm > .input-group-btn > .form-control-static.btn {
    padding-left: 0;
    padding-right: 0; }

.input-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 33px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 5px; }

select.input-sm, .input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
  height: 33px;
  line-height: 33px; }

textarea.input-sm, .input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn,
select[multiple].input-sm,
.input-group-sm > select[multiple].form-control,
.input-group-sm > select[multiple].input-group-addon,
.input-group-sm > .input-group-btn > select[multiple].btn {
  height: auto; }

.form-group-sm .form-control {
  height: 33px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 5px; }

.form-group-sm select.form-control {
  height: 33px;
  line-height: 33px; }

.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto; }

.form-group-sm .form-control-static {
  height: 33px;
  min-height: 33px;
  padding: 6px 10px;
  font-size: 14px;
  line-height: 1.5; }

.input-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 49px;
  padding: 10px 16px;
  font-size: 20px;
  line-height: 1.33333;
  border-radius: 5px; }

select.input-lg, .input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
  height: 49px;
  line-height: 49px; }

textarea.input-lg, .input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn,
select[multiple].input-lg,
.input-group-lg > select[multiple].form-control,
.input-group-lg > select[multiple].input-group-addon,
.input-group-lg > .input-group-btn > select[multiple].btn {
  height: auto; }

.form-group-lg .form-control {
  height: 49px;
  padding: 10px 16px;
  font-size: 20px;
  line-height: 1.33333;
  border-radius: 5px; }

.form-group-lg select.form-control {
  height: 49px;
  line-height: 49px; }

.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto; }

.form-group-lg .form-control-static {
  height: 49px;
  min-height: 39px;
  padding: 11px 16px;
  font-size: 20px;
  line-height: 1.33333; }

.has-feedback {
  position: relative; }
  .has-feedback .form-control {
    padding-right: 41.25px; }

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 33px;
  height: 33px;
  line-height: 33px;
  text-align: center;
  pointer-events: none; }

.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback,
.input-group-lg > .input-group-addon + .form-control-feedback,
.input-group-lg > .input-group-btn > .btn + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 49px;
  height: 49px;
  line-height: 49px; }

.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback,
.input-group-sm > .input-group-addon + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 33px;
  height: 33px;
  line-height: 33px; }

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d; }

.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-success .form-control:focus {
    border-color: #2b542c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; }

.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8; }

.has-success .form-control-feedback {
  color: #3c763d; }

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b; }

.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-warning .form-control:focus {
    border-color: #66512c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; }

.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3; }

.has-warning .form-control-feedback {
  color: #8a6d3b; }

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442; }

.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-error .form-control:focus {
    border-color: #843534;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; }

.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede; }

.has-error .form-control-feedback {
  color: #a94442; }

.has-feedback label ~ .form-control-feedback {
  top: 24px; }

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0; }

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #768a91; }

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  .form-inline .form-control-static {
    display: inline-block; }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle; }
    .form-inline .input-group .input-group-addon,
    .form-inline .input-group .input-group-btn,
    .form-inline .input-group .form-control {
      width: auto; }
  .form-inline .input-group > .form-control {
    width: 100%; }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
    .form-inline .radio label,
    .form-inline .checkbox label {
      padding-left: 0; }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0; }
  .form-inline .has-feedback .form-control-feedback {
    top: 0; } }

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px; }

.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 26px; }

.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px; }
  .form-horizontal .form-group:before, .form-horizontal .form-group:after {
    content: " ";
    display: table; }
  .form-horizontal .form-group:after {
    clear: both; }

@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px; } }

.form-horizontal .has-feedback .form-control-feedback {
  right: 15px; }

@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 20px; } }

@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 14px; } }

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.2;
  border-radius: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
  .btn:hover, .btn:focus, .btn.focus {
    color: darkgray;
    text-decoration: none; }
  .btn:active, .btn.active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
  .btn.disabled, .btn[disabled],
  fieldset[disabled] .btn {
    cursor: not-allowed;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none; }

a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none; }

.btn-default {
  color: darkgray;
  background-color: #eeeeee;
  border-color: #eeeeee; }
  .btn-default:focus, .btn-default.focus {
    color: darkgray;
    background-color: #d5d5d5;
    border-color: #afafaf; }
  .btn-default:hover {
    color: darkgray;
    background-color: #d5d5d5;
    border-color: #d0d0d0; }
  .btn-default:active, .btn-default.active,
  .open > .btn-default.dropdown-toggle {
    color: darkgray;
    background-color: #d5d5d5;
    border-color: #d0d0d0; }
    .btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus,
    .open > .btn-default.dropdown-toggle:hover,
    .open > .btn-default.dropdown-toggle:focus,
    .open > .btn-default.dropdown-toggle.focus {
      color: darkgray;
      background-color: #c3c3c3;
      border-color: #afafaf; }
  .btn-default:active, .btn-default.active,
  .open > .btn-default.dropdown-toggle {
    background-image: none; }
  .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus,
  fieldset[disabled] .btn-default:hover,
  fieldset[disabled] .btn-default:focus,
  fieldset[disabled] .btn-default.focus {
    background-color: #eeeeee;
    border-color: #eeeeee; }
  .btn-default .badge {
    color: #eeeeee;
    background-color: darkgray; }

.btn-primary {
  color: #fff;
  background-color: #364b94;
  border-color: #364b94; }
  .btn-primary:focus, .btn-primary.focus {
    color: #fff;
    background-color: #28386f;
    border-color: #141c37; }
  .btn-primary:hover {
    color: #fff;
    background-color: #28386f;
    border-color: #263467; }
  .btn-primary:active, .btn-primary.active,
  .open > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #28386f;
    border-color: #263467; }
    .btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus,
    .open > .btn-primary.dropdown-toggle:hover,
    .open > .btn-primary.dropdown-toggle:focus,
    .open > .btn-primary.dropdown-toggle.focus {
      color: #fff;
      background-color: #1f2b54;
      border-color: #141c37; }
  .btn-primary:active, .btn-primary.active,
  .open > .btn-primary.dropdown-toggle {
    background-image: none; }
  .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus,
  fieldset[disabled] .btn-primary:hover,
  fieldset[disabled] .btn-primary:focus,
  fieldset[disabled] .btn-primary.focus {
    background-color: #364b94;
    border-color: #364b94; }
  .btn-primary .badge {
    color: #364b94;
    background-color: #fff; }

.btn-success {
  color: #fff;
  background-color: #0ed957;
  border-color: #0ed957; }
  .btn-success:focus, .btn-success.focus {
    color: #fff;
    background-color: #0ba944;
    border-color: #066127; }
  .btn-success:hover {
    color: #fff;
    background-color: #0ba944;
    border-color: #0aa040; }
  .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #0ba944;
    border-color: #0aa040; }
    .btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus,
    .open > .btn-success.dropdown-toggle:hover,
    .open > .btn-success.dropdown-toggle:focus,
    .open > .btn-success.dropdown-toggle.focus {
      color: #fff;
      background-color: #098836;
      border-color: #066127; }
  .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    background-image: none; }
  .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus,
  fieldset[disabled] .btn-success:hover,
  fieldset[disabled] .btn-success:focus,
  fieldset[disabled] .btn-success.focus {
    background-color: #0ed957;
    border-color: #0ed957; }
  .btn-success .badge {
    color: #0ed957;
    background-color: #fff; }

.btn-info {
  color: #fff;
  background-color: #0475b8;
  border-color: #0475b8; }
  .btn-info:focus, .btn-info.focus {
    color: #fff;
    background-color: #035586;
    border-color: #01263b; }
  .btn-info:hover {
    color: #fff;
    background-color: #035586;
    border-color: #034f7c; }
  .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #035586;
    border-color: #034f7c; }
    .btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus,
    .open > .btn-info.dropdown-toggle:hover,
    .open > .btn-info.dropdown-toggle:focus,
    .open > .btn-info.dropdown-toggle.focus {
      color: #fff;
      background-color: #023f63;
      border-color: #01263b; }
  .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    background-image: none; }
  .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus,
  fieldset[disabled] .btn-info:hover,
  fieldset[disabled] .btn-info:focus,
  fieldset[disabled] .btn-info.focus {
    background-color: #0475b8;
    border-color: #0475b8; }
  .btn-info .badge {
    color: #0475b8;
    background-color: #fff; }

.btn-warning {
  color: #fff;
  background-color: #e8671a;
  border-color: #e8671a; }
  .btn-warning:focus, .btn-warning.focus {
    color: #fff;
    background-color: #bc5213;
    border-color: #77340c; }
  .btn-warning:hover {
    color: #fff;
    background-color: #bc5213;
    border-color: #b34e12; }
  .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #bc5213;
    border-color: #b34e12; }
    .btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus,
    .open > .btn-warning.dropdown-toggle:hover,
    .open > .btn-warning.dropdown-toggle:focus,
    .open > .btn-warning.dropdown-toggle.focus {
      color: #fff;
      background-color: #9c4410;
      border-color: #77340c; }
  .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    background-image: none; }
  .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus,
  fieldset[disabled] .btn-warning:hover,
  fieldset[disabled] .btn-warning:focus,
  fieldset[disabled] .btn-warning.focus {
    background-color: #e8671a;
    border-color: #e8671a; }
  .btn-warning .badge {
    color: #e8671a;
    background-color: #fff; }

.btn-danger {
  color: #fff;
  background-color: #ed1b2d;
  border-color: #ed1b2d; }
  .btn-danger:focus, .btn-danger.focus {
    color: #fff;
    background-color: #c5101f;
    border-color: #7f0a14; }
  .btn-danger:hover {
    color: #fff;
    background-color: #c5101f;
    border-color: #bc0f1e; }
  .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #c5101f;
    border-color: #bc0f1e; }
    .btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus,
    .open > .btn-danger.dropdown-toggle:hover,
    .open > .btn-danger.dropdown-toggle:focus,
    .open > .btn-danger.dropdown-toggle.focus {
      color: #fff;
      background-color: #a40d1a;
      border-color: #7f0a14; }
  .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    background-image: none; }
  .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus,
  fieldset[disabled] .btn-danger:hover,
  fieldset[disabled] .btn-danger:focus,
  fieldset[disabled] .btn-danger.focus {
    background-color: #ed1b2d;
    border-color: #ed1b2d; }
  .btn-danger .badge {
    color: #ed1b2d;
    background-color: #fff; }

.btn-link {
  color: #0da668;
  font-weight: normal;
  border-radius: 0; }
  .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled],
  fieldset[disabled] .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
    border-color: transparent; }
  .btn-link:hover, .btn-link:focus {
    color: #e8671a;
    text-decoration: underline;
    background-color: transparent; }
  .btn-link[disabled]:hover, .btn-link[disabled]:focus,
  fieldset[disabled] .btn-link:hover,
  fieldset[disabled] .btn-link:focus {
    color: gainsboro;
    text-decoration: none; }

.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 20px;
  line-height: 1.33333;
  border-radius: 5px; }

.btn-sm, .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 5px; }

.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 5px; }

.btn-block {
  display: block;
  width: 100%; }

.btn-block + .btn-block {
  margin-top: 5px; }

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%; }

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear; }
  .fade.in {
    opacity: 1; }

.collapse {
  display: none; }
  .collapse.in {
    display: block; }

tr.collapse.in {
  display: table-row; }

tbody.collapse.in {
  display: table-row-group; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease; }

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent; }

.dropup,
.dropdown {
  position: relative; }

.dropdown-toggle:focus {
  outline: 0; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 16px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box; }
  .dropdown-menu.pull-right, #ps-guide .dropdown-menu.show-code {
    right: 0;
    left: auto; }
  .dropdown-menu .divider {
    height: 1px;
    margin: 8.5px 0;
    overflow: hidden;
    background-color: #e5e5e5; }
  .dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.2;
    color: darkgray;
    white-space: nowrap; }

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #9d9d9d;
  background-color: #f5f5f5; }

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #364b94; }

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: gainsboro; }

.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed; }

.open > .dropdown-menu {
  display: block; }

.open > a {
  outline: 0; }

.dropdown-menu-right {
  left: auto;
  right: 0; }

.dropdown-menu-left {
  left: 0;
  right: auto; }

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 14px;
  line-height: 1.2;
  color: gainsboro;
  white-space: nowrap; }

.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990; }

.pull-right > .dropdown-menu, #ps-guide .show-code > .dropdown-menu {
  right: 0;
  left: auto; }

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: ""; }

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px; }

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto; }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto; } }

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle; }
  .btn-group > .btn,
  .btn-group-vertical > .btn {
    position: relative;
    float: left; }
    .btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
    .btn-group-vertical > .btn:hover,
    .btn-group-vertical > .btn:focus,
    .btn-group-vertical > .btn:active,
    .btn-group-vertical > .btn.active {
      z-index: 2; }

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px; }

.btn-toolbar {
  margin-left: -5px; }
  .btn-toolbar:before, .btn-toolbar:after {
    content: " ";
    display: table; }
  .btn-toolbar:after {
    clear: both; }
  .btn-toolbar .btn,
  .btn-toolbar .btn-group,
  .btn-toolbar .input-group {
    float: left; }
  .btn-toolbar > .btn,
  .btn-toolbar > .btn-group,
  .btn-toolbar > .input-group {
    margin-left: 5px; }

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0; }

.btn-group > .btn:first-child {
  margin-left: 0; }
  .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0; }

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group > .btn-group {
  float: left; }

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0; }

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0; }

.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px; }

.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px; }

.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
  .btn-group.open .dropdown-toggle.btn-link {
    -webkit-box-shadow: none;
    box-shadow: none; }

.btn .caret {
  margin-left: 0; }

.btn-lg .caret, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0; }

.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px; }

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%; }

.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  content: " ";
  display: table; }

.btn-group-vertical > .btn-group:after {
  clear: both; }

.btn-group-vertical > .btn-group > .btn {
  float: none; }

.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0; }

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0; }

.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px; }

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0; }

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate; }
  .btn-group-justified > .btn,
  .btn-group-justified > .btn-group {
    float: none;
    display: table-cell;
    width: 1%; }
  .btn-group-justified > .btn-group .btn {
    width: 100%; }
  .btn-group-justified > .btn-group .dropdown-menu {
    left: auto; }

[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none; }

.input-group {
  position: relative;
  display: table;
  border-collapse: separate; }
  .input-group[class*="col-"] {
    float: none;
    padding-left: 0;
    padding-right: 0; }
  .input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0; }
    .input-group .form-control:focus {
      z-index: 3; }

.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell; }
  .input-group-addon:not(:first-child):not(:last-child),
  .input-group-btn:not(:first-child):not(:last-child),
  .input-group .form-control:not(:first-child):not(:last-child) {
    border-radius: 0; }

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle; }

.input-group-addon {
  padding: 6px 12px;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  color: #3c474b;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 5px; }
  .input-group-addon.input-sm,
  .input-group-sm > .input-group-addon,
  .input-group-sm > .input-group-btn > .input-group-addon.btn {
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px; }
  .input-group-addon.input-lg,
  .input-group-lg > .input-group-addon,
  .input-group-lg > .input-group-btn > .input-group-addon.btn {
    padding: 10px 16px;
    font-size: 20px;
    border-radius: 5px; }
  .input-group-addon input[type="radio"],
  .input-group-addon input[type="checkbox"] {
    margin-top: 0; }

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.input-group-addon:first-child {
  border-right: 0; }

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.input-group-addon:last-child {
  border-left: 0; }

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap; }
  .input-group-btn > .btn {
    position: relative; }
    .input-group-btn > .btn + .btn {
      margin-left: -1px; }
    .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
      z-index: 2; }
  .input-group-btn:first-child > .btn,
  .input-group-btn:first-child > .btn-group {
    margin-right: -1px; }
  .input-group-btn:last-child > .btn,
  .input-group-btn:last-child > .btn-group {
    z-index: 2;
    margin-left: -1px; }

.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none; }
  .nav:before, .nav:after {
    content: " ";
    display: table; }
  .nav:after {
    clear: both; }
  .nav > li {
    position: relative;
    display: block; }
    .nav > li > a {
      position: relative;
      display: block;
      padding: 10px 15px; }
      .nav > li > a:hover, .nav > li > a:focus {
        text-decoration: none;
        background-color: #eeeeee; }
    .nav > li.disabled > a {
      color: gainsboro; }
      .nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
        color: gainsboro;
        text-decoration: none;
        background-color: transparent;
        cursor: not-allowed; }
  .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    background-color: #eeeeee;
    border-color: #0da668; }
  .nav .nav-divider {
    height: 1px;
    margin: 8.5px 0;
    overflow: hidden;
    background-color: #e5e5e5; }
  .nav > li > a > img {
    max-width: none; }

.nav-tabs {
  border-bottom: 1px solid #ddd; }
  .nav-tabs > li {
    float: left;
    margin-bottom: -1px; }
    .nav-tabs > li > a {
      margin-right: 2px;
      line-height: 1.2;
      border: 1px solid transparent;
      border-radius: 5px 5px 0 0; }
      .nav-tabs > li > a:hover {
        border-color: #eeeeee #eeeeee #ddd; }
    .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
      color: #3c474b;
      background-color: #fff;
      border: 1px solid #ddd;
      border-bottom-color: transparent;
      cursor: default; }

.nav-pills > li {
  float: left; }
  .nav-pills > li > a {
    border-radius: 5px; }
  .nav-pills > li + li {
    margin-left: 2px; }
  .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    color: #fff;
    background-color: #364b94; }

.nav-stacked > li {
  float: none; }
  .nav-stacked > li + li {
    margin-top: 2px;
    margin-left: 0; }

.nav-justified, .nav-tabs.nav-justified {
  width: 100%; }
  .nav-justified > li, .nav-tabs.nav-justified > li {
    float: none; }
    .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
      text-align: center;
      margin-bottom: 5px; }
  .nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto; }
  @media (min-width: 768px) {
    .nav-justified > li, .nav-tabs.nav-justified > li {
      display: table-cell;
      width: 1%; }
      .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
        margin-bottom: 0; } }

.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0; }
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 5px; }
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #ddd; }
  @media (min-width: 768px) {
    .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
      border-bottom: 1px solid #ddd;
      border-radius: 5px 5px 0 0; }
    .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
    .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus {
      border-bottom-color: #fff; } }

.tab-content > .tab-pane {
  display: none; }

.tab-content > .active {
  display: block; }

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.navbar {
  position: relative;
  min-height: 84px;
  margin-bottom: 19px;
  border: 1px solid transparent; }
  .navbar:before, .navbar:after {
    content: " ";
    display: table; }
  .navbar:after {
    clear: both; }
  @media (min-width: 768px) {
    .navbar {
      border-radius: 5px; } }

.navbar-header:before, .navbar-header:after {
  content: " ";
  display: table; }

.navbar-header:after {
  clear: both; }

@media (min-width: 768px) {
  .navbar-header {
    float: left; } }

.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch; }
  .navbar-collapse:before, .navbar-collapse:after {
    content: " ";
    display: table; }
  .navbar-collapse:after {
    clear: both; }
  .navbar-collapse.in {
    overflow-y: auto; }
  @media (min-width: 768px) {
    .navbar-collapse {
      width: auto;
      border-top: 0;
      box-shadow: none; }
      .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important; }
      .navbar-collapse.in {
        overflow-y: visible; }
      .navbar-fixed-top .navbar-collapse,
      .navbar-static-top .navbar-collapse,
      .navbar-fixed-bottom .navbar-collapse {
        padding-left: 0;
        padding-right: 0; } }

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px; }
  @media (max-device-width: 480px) and (orientation: landscape) {
    .navbar-fixed-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
      max-height: 200px; } }

.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px; }
  @media (min-width: 768px) {
    .container > .navbar-header,
    .container > .navbar-collapse,
    .container-fluid > .navbar-header,
    .container-fluid > .navbar-collapse {
      margin-right: 0;
      margin-left: 0; } }

.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px; }
  @media (min-width: 768px) {
    .navbar-static-top {
      border-radius: 0; } }

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030; }
  @media (min-width: 768px) {
    .navbar-fixed-top,
    .navbar-fixed-bottom {
      border-radius: 0; } }

.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px; }

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0; }

.navbar-brand {
  float: left;
  padding: 32.5px 15px;
  font-size: 20px;
  line-height: 19px;
  height: 84px; }
  .navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none; }
  .navbar-brand > img {
    display: block; }
  @media (min-width: 768px) {
    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
      margin-left: -15px; } }

.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 25px;
  margin-bottom: 25px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 5px; }
  .navbar-toggle:focus {
    outline: 0; }
  .navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px; }
  .navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px; }
  @media (min-width: 768px) {
    .navbar-toggle {
      display: none; } }

.navbar-nav {
  margin: 16.25px -15px; }
  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 19px; }
  @media (max-width: 767px) {
    .navbar-nav .open .dropdown-menu {
      position: static;
      float: none;
      width: auto;
      margin-top: 0;
      background-color: transparent;
      border: 0;
      box-shadow: none; }
      .navbar-nav .open .dropdown-menu > li > a,
      .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 25px; }
      .navbar-nav .open .dropdown-menu > li > a {
        line-height: 19px; }
        .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
          background-image: none; } }
  @media (min-width: 768px) {
    .navbar-nav {
      float: left;
      margin: 0; }
      .navbar-nav > li {
        float: left; }
        .navbar-nav > li > a {
          padding-top: 32.5px;
          padding-bottom: 32.5px; } }

.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 25.5px;
  margin-bottom: 25.5px; }
  @media (min-width: 768px) {
    .navbar-form .form-group {
      display: inline-block;
      margin-bottom: 0;
      vertical-align: middle; }
    .navbar-form .form-control {
      display: inline-block;
      width: auto;
      vertical-align: middle; }
    .navbar-form .form-control-static {
      display: inline-block; }
    .navbar-form .input-group {
      display: inline-table;
      vertical-align: middle; }
      .navbar-form .input-group .input-group-addon,
      .navbar-form .input-group .input-group-btn,
      .navbar-form .input-group .form-control {
        width: auto; }
    .navbar-form .input-group > .form-control {
      width: 100%; }
    .navbar-form .control-label {
      margin-bottom: 0;
      vertical-align: middle; }
    .navbar-form .radio,
    .navbar-form .checkbox {
      display: inline-block;
      margin-top: 0;
      margin-bottom: 0;
      vertical-align: middle; }
      .navbar-form .radio label,
      .navbar-form .checkbox label {
        padding-left: 0; }
    .navbar-form .radio input[type="radio"],
    .navbar-form .checkbox input[type="checkbox"] {
      position: relative;
      margin-left: 0; }
    .navbar-form .has-feedback .form-control-feedback {
      top: 0; } }
  @media (max-width: 767px) {
    .navbar-form .form-group {
      margin-bottom: 5px; }
      .navbar-form .form-group:last-child {
        margin-bottom: 0; } }
  @media (min-width: 768px) {
    .navbar-form {
      width: auto;
      border: 0;
      margin-left: 0;
      margin-right: 0;
      padding-top: 0;
      padding-bottom: 0;
      -webkit-box-shadow: none;
      box-shadow: none; } }

.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.navbar-btn {
  margin-top: 25.5px;
  margin-bottom: 25.5px; }
  .navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
    margin-top: 25.5px;
    margin-bottom: 25.5px; }
  .navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
    margin-top: 31px;
    margin-bottom: 31px; }

.navbar-text {
  margin-top: 32.5px;
  margin-bottom: 32.5px; }
  @media (min-width: 768px) {
    .navbar-text {
      float: left;
      margin-left: 15px;
      margin-right: 15px; } }

@media (min-width: 768px) {
  .navbar-left {
    float: left !important; }
  .navbar-right {
    float: right !important;
    margin-right: -15px; }
    .navbar-right ~ .navbar-right {
      margin-right: 0; } }

.navbar-default {
  background-color: #fff;
  border-color: #eeeeee; }
  .navbar-default .navbar-brand {
    color: #777; }
    .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
      color: #5e5e5e;
      background-color: transparent; }
  .navbar-default .navbar-text {
    color: #777; }
  .navbar-default .navbar-nav > li > a {
    color: #777; }
    .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
      color: #333;
      background-color: transparent; }
  .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
    color: #555;
    background-color: #eeeeee; }
  .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
    color: #ccc;
    background-color: transparent; }
  .navbar-default .navbar-toggle {
    border-color: transparent; }
    .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
      background-color: #eeeeee; }
    .navbar-default .navbar-toggle .icon-bar {
      background-color: #888; }
  .navbar-default .navbar-collapse,
  .navbar-default .navbar-form {
    border-color: #eeeeee; }
  .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
    background-color: #eeeeee;
    color: #555; }
  @media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
      color: #777; }
      .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #333;
        background-color: transparent; }
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
      color: #555;
      background-color: #eeeeee; }
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
      color: #ccc;
      background-color: transparent; } }
  .navbar-default .navbar-link {
    color: #777; }
    .navbar-default .navbar-link:hover {
      color: #333; }
  .navbar-default .btn-link {
    color: #777; }
    .navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
      color: #333; }
    .navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus,
    fieldset[disabled] .navbar-default .btn-link:hover,
    fieldset[disabled] .navbar-default .btn-link:focus {
      color: #ccc; }

.navbar-inverse {
  background-color: #364b94;
  border-color: #28386f; }
  .navbar-inverse .navbar-brand {
    color: white; }
    .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
      color: #fff;
      background-color: transparent; }
  .navbar-inverse .navbar-text {
    color: white; }
  .navbar-inverse .navbar-nav > li > a {
    color: white; }
    .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
      color: #fff;
      background-color: transparent; }
  .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
    color: #fff;
    background-color: #28386f; }
  .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
    color: #444;
    background-color: transparent; }
  .navbar-inverse .navbar-toggle {
    border-color: transparent; }
    .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
      background-color: #28386f; }
    .navbar-inverse .navbar-toggle .icon-bar {
      background-color: #fff; }
  .navbar-inverse .navbar-collapse,
  .navbar-inverse .navbar-form {
    border-color: #2c3e7a; }
  .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
    background-color: #28386f;
    color: #fff; }
  @media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
      border-color: #28386f; }
    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
      background-color: #28386f; }
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
      color: white; }
      .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #fff;
        background-color: transparent; }
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
      color: #fff;
      background-color: #28386f; }
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
      color: #444;
      background-color: transparent; } }
  .navbar-inverse .navbar-link {
    color: white; }
    .navbar-inverse .navbar-link:hover {
      color: #fff; }
  .navbar-inverse .btn-link {
    color: white; }
    .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
      color: #fff; }
    .navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus,
    fieldset[disabled] .navbar-inverse .btn-link:hover,
    fieldset[disabled] .navbar-inverse .btn-link:focus {
      color: #444; }

.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 19px;
  list-style: none;
  background-color: transparent;
  border-radius: 5px; }
  .breadcrumb > li {
    display: inline-block; }
    .breadcrumb > li + li:before {
      content: ">\A0";
      padding: 0 5px;
      color: gainsboro; }
  .breadcrumb > .active {
    color: darkgray; }

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 19px 0;
  border-radius: 5px; }
  .pagination > li {
    display: inline; }
    .pagination > li > a,
    .pagination > li > span {
      position: relative;
      float: left;
      padding: 6px 12px;
      line-height: 1.2;
      text-decoration: none;
      color: #3c474b;
      background-color: #fff;
      border: 1px solid transparent;
      margin-left: -1px; }
    .pagination > li:first-child > a,
    .pagination > li:first-child > span {
      margin-left: 0;
      border-bottom-left-radius: 5px;
      border-top-left-radius: 5px; }
    .pagination > li:last-child > a,
    .pagination > li:last-child > span {
      border-bottom-right-radius: 5px;
      border-top-right-radius: 5px; }
  .pagination > li > a:hover, .pagination > li > a:focus,
  .pagination > li > span:hover,
  .pagination > li > span:focus {
    z-index: 2;
    color: #364b94;
    background-color: #fff;
    border-color: transparent; }
  .pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
  .pagination > .active > span,
  .pagination > .active > span:hover,
  .pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    background-color: #364b94;
    border-color: transparent;
    cursor: default; }
  .pagination > .disabled > span,
  .pagination > .disabled > span:hover,
  .pagination > .disabled > span:focus,
  .pagination > .disabled > a,
  .pagination > .disabled > a:hover,
  .pagination > .disabled > a:focus {
    color: gainsboro;
    background-color: #fff;
    border-color: transparent;
    cursor: not-allowed; }

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 20px;
  line-height: 1.33333; }

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px; }

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px; }

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.5; }

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px; }

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px; }

.pager {
  padding-left: 0;
  margin: 19px 0;
  list-style: none;
  text-align: center; }
  .pager:before, .pager:after {
    content: " ";
    display: table; }
  .pager:after {
    clear: both; }
  .pager li {
    display: inline; }
    .pager li > a,
    .pager li > span {
      display: inline-block;
      padding: 5px 14px;
      background-color: #fff;
      border: 1px solid transparent;
      border-radius: 15px; }
    .pager li > a:hover,
    .pager li > a:focus {
      text-decoration: none;
      background-color: #fff; }
  .pager .next > a,
  .pager .next > span {
    float: right; }
  .pager .previous > a,
  .pager .previous > span {
    float: left; }
  .pager .disabled > a,
  .pager .disabled > a:hover,
  .pager .disabled > a:focus,
  .pager .disabled > span {
    color: gainsboro;
    background-color: #fff;
    cursor: not-allowed; }

.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em; }
  .label:empty {
    display: none; }
  .btn .label {
    position: relative;
    top: -1px; }

a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

.label-default {
  background-color: gainsboro; }
  .label-default[href]:hover, .label-default[href]:focus {
    background-color: #c3c3c3; }

.label-primary {
  background-color: #364b94; }
  .label-primary[href]:hover, .label-primary[href]:focus {
    background-color: #28386f; }

.label-success {
  background-color: #0ed957; }
  .label-success[href]:hover, .label-success[href]:focus {
    background-color: #0ba944; }

.label-info {
  background-color: #0475b8; }
  .label-info[href]:hover, .label-info[href]:focus {
    background-color: #035586; }

.label-warning {
  background-color: #e8671a; }
  .label-warning[href]:hover, .label-warning[href]:focus {
    background-color: #bc5213; }

.label-danger {
  background-color: #ed1b2d; }
  .label-danger[href]:hover, .label-danger[href]:focus {
    background-color: #c5101f; }

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #364b94;
  border-radius: 10px; }
  .badge:empty {
    display: none; }
  .btn .badge {
    position: relative;
    top: -1px; }
  .btn-xs .badge, .btn-group-xs > .btn .badge,
  .btn-group-xs > .btn .badge {
    top: 0;
    padding: 1px 5px; }
  .list-group-item.active > .badge,
  .nav-pills > .active > a > .badge {
    color: #0da668;
    background-color: #fff; }
  .list-group-item > .badge {
    float: right; }
  .list-group-item > .badge + .badge {
    margin-right: 5px; }
  .nav-pills > li > a > .badge {
    margin-left: 3px; }

a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

.jumbotron {
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  color: inherit;
  background-color: transparent; }
  .jumbotron h1,
  .jumbotron .h1 {
    color: inherit; }
  .jumbotron p {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 200; }
  .jumbotron > hr {
    border-top-color: transparent; }
  .container .jumbotron,
  .container-fluid .jumbotron {
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px; }
  .jumbotron .container {
    max-width: 100%; }
  @media screen and (min-width: 768px) {
    .jumbotron {
      padding-top: 64px;
      padding-bottom: 64px; }
      .container .jumbotron,
      .container-fluid .jumbotron {
        padding-left: 80px;
        padding-right: 80px; }
      .jumbotron h1,
      .jumbotron .h1 {
        font-size: 52px; } }

.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 19px;
  line-height: 1.2;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out; }
  .thumbnail > img,
  .thumbnail a > img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto; }
  .thumbnail .caption {
    padding: 9px;
    color: #3c474b; }

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #0da668; }

.alert {
  padding: 15px;
  margin-bottom: 19px;
  border: 1px solid transparent;
  border-radius: 5px; }
  .alert h4 {
    margin-top: 0;
    color: inherit; }
  .alert .alert-link {
    font-weight: bold; }
  .alert > p,
  .alert > ul {
    margin-bottom: 0; }
  .alert > p + p {
    margin-top: 5px; }

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px; }
  .alert-dismissable .close,
  .alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit; }

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d; }
  .alert-success hr {
    border-top-color: #c9e2b3; }
  .alert-success .alert-link {
    color: #2b542c; }

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f; }
  .alert-info hr {
    border-top-color: #a6e1ec; }
  .alert-info .alert-link {
    color: #245269; }

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b; }
  .alert-warning hr {
    border-top-color: #f7e1b5; }
  .alert-warning .alert-link {
    color: #66512c; }

.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442; }
  .alert-danger hr {
    border-top-color: #e4b9c0; }
  .alert-danger .alert-link {
    color: #843534; }

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

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

.progress {
  overflow: hidden;
  height: 19px;
  margin-bottom: 19px;
  background-color: #fbfbfb;
  border-radius: 24px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }

.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 14px;
  line-height: 19px;
  color: #fff;
  text-align: center;
  background-color: #3c464a;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease; }

.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px; }

.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite; }

.progress-bar-success {
  background-color: #0ed957; }
  .progress-striped .progress-bar-success {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-info {
  background-color: #0475b8; }
  .progress-striped .progress-bar-info {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-warning {
  background-color: #e8671a; }
  .progress-striped .progress-bar-warning {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-danger {
  background-color: #ed1b2d; }
  .progress-striped .progress-bar-danger {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.media {
  margin-top: 15px; }
  .media:first-child {
    margin-top: 0; }

.media,
.media-body {
  zoom: 1;
  overflow: hidden; }

.media-body {
  width: 10000px; }

.media-object {
  display: block; }
  .media-object.img-thumbnail {
    max-width: none; }

.media-right,
.media > .pull-right, #ps-guide
.media > .show-code {
  padding-left: 10px; }

.media-left,
.media > .pull-left, .navbar .navbar-header .navbar-brand
.media > .brand, #ps-guide .navbar
.media > .app-title {
  padding-right: 10px; }

.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top; }

.media-middle {
  vertical-align: middle; }

.media-bottom {
  vertical-align: bottom; }

.media-heading {
  margin-top: 0;
  margin-bottom: 5px; }

.media-list {
  padding-left: 0;
  list-style: none; }

.list-group {
  margin-bottom: 20px;
  padding-left: 0; }

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd; }
  .list-group-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0; }
  .list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }

a.list-group-item,
button.list-group-item {
  color: inherit; }
  a.list-group-item .list-group-item-heading,
  button.list-group-item .list-group-item-heading {
    color: inherit; }
  a.list-group-item:hover, a.list-group-item:focus,
  button.list-group-item:hover,
  button.list-group-item:focus {
    text-decoration: none;
    color: inherit;
    background-color: #d9edf7; }

button.list-group-item {
  width: 100%;
  text-align: left; }

.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
  background-color: #eeeeee;
  color: gainsboro;
  cursor: not-allowed; }
  .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
    color: inherit; }
  .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
    color: gainsboro; }

.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  z-index: 2;
  color: inherit;
  background-color: inherit;
  border-color: #ddd; }
  .list-group-item.active .list-group-item-heading,
  .list-group-item.active .list-group-item-heading > small,
  .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
  .list-group-item.active:hover .list-group-item-heading > small,
  .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
  .list-group-item.active:focus .list-group-item-heading > small,
  .list-group-item.active:focus .list-group-item-heading > .small {
    color: inherit; }
  .list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
    color: inherit; }

.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8; }

a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d; }
  a.list-group-item-success .list-group-item-heading,
  button.list-group-item-success .list-group-item-heading {
    color: inherit; }
  a.list-group-item-success:hover, a.list-group-item-success:focus,
  button.list-group-item-success:hover,
  button.list-group-item-success:focus {
    color: #3c763d;
    background-color: #d0e9c6; }
  a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
  button.list-group-item-success.active,
  button.list-group-item-success.active:hover,
  button.list-group-item-success.active:focus {
    color: #fff;
    background-color: #3c763d;
    border-color: #3c763d; }

.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7; }

a.list-group-item-info,
button.list-group-item-info {
  color: #31708f; }
  a.list-group-item-info .list-group-item-heading,
  button.list-group-item-info .list-group-item-heading {
    color: inherit; }
  a.list-group-item-info:hover, a.list-group-item-info:focus,
  button.list-group-item-info:hover,
  button.list-group-item-info:focus {
    color: #31708f;
    background-color: #c4e3f3; }
  a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
  button.list-group-item-info.active,
  button.list-group-item-info.active:hover,
  button.list-group-item-info.active:focus {
    color: #fff;
    background-color: #31708f;
    border-color: #31708f; }

.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3; }

a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b; }
  a.list-group-item-warning .list-group-item-heading,
  button.list-group-item-warning .list-group-item-heading {
    color: inherit; }
  a.list-group-item-warning:hover, a.list-group-item-warning:focus,
  button.list-group-item-warning:hover,
  button.list-group-item-warning:focus {
    color: #8a6d3b;
    background-color: #faf2cc; }
  a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
  button.list-group-item-warning.active,
  button.list-group-item-warning.active:hover,
  button.list-group-item-warning.active:focus {
    color: #fff;
    background-color: #8a6d3b;
    border-color: #8a6d3b; }

.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede; }

a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442; }
  a.list-group-item-danger .list-group-item-heading,
  button.list-group-item-danger .list-group-item-heading {
    color: inherit; }
  a.list-group-item-danger:hover, a.list-group-item-danger:focus,
  button.list-group-item-danger:hover,
  button.list-group-item-danger:focus {
    color: #a94442;
    background-color: #ebcccc; }
  a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
  button.list-group-item-danger.active,
  button.list-group-item-danger.active:hover,
  button.list-group-item-danger.active:focus {
    color: #fff;
    background-color: #a94442;
    border-color: #a94442; }

.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px; }

.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3; }

.panel {
  margin-bottom: 19px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 0px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }

.panel-body {
  padding: 15px; }
  .panel-body:before, .panel-body:after {
    content: " ";
    display: table; }
  .panel-body:after {
    clear: both; }

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: -1px;
  border-top-left-radius: -1px; }
  .panel-heading > .dropdown .dropdown-toggle {
    color: inherit; }

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  color: inherit; }
  .panel-title > a,
  .panel-title > small,
  .panel-title > .small,
  .panel-title > small > a,
  .panel-title > .small > a {
    color: inherit; }

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: -1px;
  border-bottom-left-radius: -1px; }

.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0; }
  .panel > .list-group .list-group-item,
  .panel > .panel-collapse > .list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0; }
  .panel > .list-group:first-child .list-group-item:first-child,
  .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
    border-top: 0;
    border-top-right-radius: -1px;
    border-top-left-radius: -1px; }
  .panel > .list-group:last-child .list-group-item:last-child,
  .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
    border-bottom: 0;
    border-bottom-right-radius: -1px;
    border-bottom-left-radius: -1px; }

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0; }

.list-group + .panel-footer {
  border-top-width: 0; }

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0; }
  .panel > .table caption,
  .panel > .table-responsive > .table caption,
  .panel > .panel-collapse > .table caption {
    padding-left: 15px;
    padding-right: 15px; }

.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: -1px;
  border-top-left-radius: -1px; }
  .panel > .table:first-child > thead:first-child > tr:first-child,
  .panel > .table:first-child > tbody:first-child > tr:first-child,
  .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
  .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
    border-top-left-radius: -1px;
    border-top-right-radius: -1px; }
    .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
    .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
      border-top-left-radius: -1px; }
    .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
    .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
      border-top-right-radius: -1px; }

.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: -1px;
  border-bottom-left-radius: -1px; }
  .panel > .table:last-child > tbody:last-child > tr:last-child,
  .panel > .table:last-child > tfoot:last-child > tr:last-child,
  .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
  .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
    border-bottom-left-radius: -1px;
    border-bottom-right-radius: -1px; }
    .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
    .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
      border-bottom-left-radius: -1px; }
    .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
    .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
      border-bottom-right-radius: -1px; }

.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd; }

.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0; }

.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0; }
  .panel > .table-bordered > thead > tr > th:first-child,
  .panel > .table-bordered > thead > tr > td:first-child,
  .panel > .table-bordered > tbody > tr > th:first-child,
  .panel > .table-bordered > tbody > tr > td:first-child,
  .panel > .table-bordered > tfoot > tr > th:first-child,
  .panel > .table-bordered > tfoot > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
  .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0; }
  .panel > .table-bordered > thead > tr > th:last-child,
  .panel > .table-bordered > thead > tr > td:last-child,
  .panel > .table-bordered > tbody > tr > th:last-child,
  .panel > .table-bordered > tbody > tr > td:last-child,
  .panel > .table-bordered > tfoot > tr > th:last-child,
  .panel > .table-bordered > tfoot > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
  .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0; }
  .panel > .table-bordered > thead > tr:first-child > td,
  .panel > .table-bordered > thead > tr:first-child > th,
  .panel > .table-bordered > tbody > tr:first-child > td,
  .panel > .table-bordered > tbody > tr:first-child > th,
  .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
  .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
  .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
  .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
    border-bottom: 0; }
  .panel > .table-bordered > tbody > tr:last-child > td,
  .panel > .table-bordered > tbody > tr:last-child > th,
  .panel > .table-bordered > tfoot > tr:last-child > td,
  .panel > .table-bordered > tfoot > tr:last-child > th,
  .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
  .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: 0; }

.panel > .table-responsive {
  border: 0;
  margin-bottom: 0; }

.panel-group {
  margin-bottom: 19px; }
  .panel-group .panel {
    margin-bottom: 0;
    border-radius: 0px; }
    .panel-group .panel + .panel {
      margin-top: 5px; }
  .panel-group .panel-heading {
    border-bottom: 0; }
    .panel-group .panel-heading + .panel-collapse > .panel-body,
    .panel-group .panel-heading + .panel-collapse > .list-group {
      border-top: 1px solid #ddd; }
  .panel-group .panel-footer {
    border-top: 0; }
    .panel-group .panel-footer + .panel-collapse .panel-body {
      border-bottom: 1px solid #ddd; }

.panel-default {
  border-color: #ddd; }
  .panel-default > .panel-heading {
    color: darkgray;
    background-color: #f5f5f5;
    border-color: #ddd; }
    .panel-default > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #ddd; }
    .panel-default > .panel-heading .badge {
      color: #f5f5f5;
      background-color: darkgray; }
  .panel-default > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ddd; }

.panel-primary {
  border-color: #364b94; }
  .panel-primary > .panel-heading {
    color: #fff;
    background-color: #364b94;
    border-color: #364b94; }
    .panel-primary > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #364b94; }
    .panel-primary > .panel-heading .badge {
      color: #364b94;
      background-color: #fff; }
  .panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #364b94; }

.panel-success {
  border-color: #d6e9c6; }
  .panel-success > .panel-heading {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6; }
    .panel-success > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #d6e9c6; }
    .panel-success > .panel-heading .badge {
      color: #dff0d8;
      background-color: #3c763d; }
  .panel-success > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #d6e9c6; }

.panel-info {
  border-color: #bce8f1; }
  .panel-info > .panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1; }
    .panel-info > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #bce8f1; }
    .panel-info > .panel-heading .badge {
      color: #d9edf7;
      background-color: #31708f; }
  .panel-info > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #bce8f1; }

.panel-warning {
  border-color: #faebcc; }
  .panel-warning > .panel-heading {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc; }
    .panel-warning > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #faebcc; }
    .panel-warning > .panel-heading .badge {
      color: #fcf8e3;
      background-color: #8a6d3b; }
  .panel-warning > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #faebcc; }

.panel-danger {
  border-color: #ebccd1; }
  .panel-danger > .panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1; }
    .panel-danger > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #ebccd1; }
    .panel-danger > .panel-heading .badge {
      color: #f2dede;
      background-color: #a94442; }
  .panel-danger > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ebccd1; }

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden; }
  .embed-responsive .embed-responsive-item,
  .embed-responsive iframe,
  .embed-responsive embed,
  .embed-responsive object,
  .embed-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0; }

.embed-responsive-16by9 {
  padding-bottom: 56.25%; }

.embed-responsive-4by3 {
  padding-bottom: 75%; }

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); }
  .well blockquote {
    border-color: #ddd;
    border-color: rgba(0, 0, 0, 0.15); }

.well-lg {
  padding: 24px;
  border-radius: 5px; }

.well-sm {
  padding: 9px;
  border-radius: 5px; }

.close {
  float: right;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20); }
  .close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.5;
    filter: alpha(opacity=50); }

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none; }

.modal-open {
  overflow: hidden; }

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0; }
  .modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out; }
  .modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0); }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #fbfbfb;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000; }
  .modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0); }
  .modal-backdrop.in {
    opacity: 0.75;
    filter: alpha(opacity=75); }

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #fbfbfb; }
  .modal-header:before, .modal-header:after {
    content: " ";
    display: table; }
  .modal-header:after {
    clear: both; }

.modal-header .close {
  margin-top: -2px; }

.modal-title {
  margin: 0;
  line-height: 1.2; }

.modal-body {
  position: relative;
  padding: 15px; }

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #fbfbfb; }
  .modal-footer:before, .modal-footer:after {
    content: " ";
    display: table; }
  .modal-footer:after {
    clear: both; }
  .modal-footer .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0; }
  .modal-footer .btn-group .btn + .btn {
    margin-left: -1px; }
  .modal-footer .btn-block + .btn-block {
    margin-left: 0; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto; }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
  .modal-sm {
    width: 300px; } }

@media (min-width: 992px) {
  .modal-lg {
    width: 900px; } }

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.2;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 14px;
  opacity: 0;
  filter: alpha(opacity=0); }
  .tooltip.in {
    opacity: 0.9;
    filter: alpha(opacity=90); }
  .tooltip.top {
    margin-top: -3px;
    padding: 5px 0; }
  .tooltip.right {
    margin-left: 3px;
    padding: 0 5px; }
  .tooltip.bottom {
    margin-top: 3px;
    padding: 5px 0; }
  .tooltip.left {
    margin-left: -3px;
    padding: 0 5px; }

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 5px; }

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000; }

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000; }

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000; }

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000; }

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.2;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 16px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }
  .popover.top {
    margin-top: -10px; }
  .popover.right {
    margin-left: 10px; }
  .popover.bottom {
    margin-top: 10px; }
  .popover.left {
    margin-left: -10px; }

.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 16px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 4px 4px 0 0; }

.popover-content {
  padding: 9px 14px; }

.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid; }

.popover > .arrow {
  border-width: 11px; }

.popover > .arrow:after {
  border-width: 10px;
  content: ""; }

.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px; }
  .popover.top > .arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: #fff; }

.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25); }
  .popover.right > .arrow:after {
    content: " ";
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: #fff; }

.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px; }
  .popover.bottom > .arrow:after {
    content: " ";
    top: 1px;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: #fff; }

.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25); }
  .popover.left > .arrow:after {
    content: " ";
    right: 1px;
    border-right-width: 0;
    border-left-color: #fff;
    bottom: -10px; }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%; }
  .carousel-inner > .item {
    display: none;
    position: relative;
    -webkit-transition: 0.6s ease-in-out left;
    -o-transition: 0.6s ease-in-out left;
    transition: 0.6s ease-in-out left; }
    .carousel-inner > .item > img,
    .carousel-inner > .item > a > img {
      display: block;
      max-width: 100%;
      height: auto;
      line-height: 1; }
    @media all and (transform-3d), (-webkit-transform-3d) {
      .carousel-inner > .item {
        -webkit-transition: -webkit-transform 0.6s ease-in-out;
        -moz-transition: -moz-transform 0.6s ease-in-out;
        -o-transition: -o-transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        -moz-perspective: 1000px;
        perspective: 1000px; }
        .carousel-inner > .item.next, .carousel-inner > .item.active.right {
          -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
          -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
          left: 0; }
        .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
          -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
          left: 0; } }
  .carousel-inner > .active,
  .carousel-inner > .next,
  .carousel-inner > .prev {
    display: block; }
  .carousel-inner > .active {
    left: 0; }
  .carousel-inner > .next,
  .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%; }
  .carousel-inner > .next {
    left: 100%; }
  .carousel-inner > .prev {
    left: -100%; }
  .carousel-inner > .next.left,
  .carousel-inner > .prev.right {
    left: 0; }
  .carousel-inner > .active.left {
    left: -100%; }
  .carousel-inner > .active.right {
    left: 100%; }

.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: transparent; }
  .carousel-control.left {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); }
  .carousel-control.right {
    left: auto;
    right: 0;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); }
  .carousel-control:hover, .carousel-control:focus {
    outline: 0;
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    filter: alpha(opacity=90); }
  .carousel-control .icon-prev,
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    z-index: 5;
    display: inline-block; }
  .carousel-control .icon-prev,
  .carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px; }
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px; }
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 20px;
    height: 20px;
    line-height: 1;
    font-family: serif; }
  .carousel-control .icon-prev:before {
    content: '\2039'; }
  .carousel-control .icon-next:before {
    content: '\203A'; }

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center; }
  .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #fff;
    border-radius: 10px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: transparent; }
  .carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #fff; }

.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  .carousel-caption .btn {
    text-shadow: none; }

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px; }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px; }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px; }
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px; }
  .carousel-indicators {
    bottom: 20px; } }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.pull-right, #ps-guide .show-code {
  float: right !important; }

.pull-left, .navbar .navbar-header .navbar-brand .brand, #ps-guide .navbar .app-title {
  float: left !important; }

.hide {
  display: none !important; }

.show {
  display: block !important; }

.invisible {
  visibility: hidden; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.hidden {
  display: none !important; }

.affix {
  position: fixed; }

@-ms-viewport {
  width: device-width; }

.visible-xs {
  display: none !important; }

.visible-sm {
  display: none !important; }

.visible-md {
  display: none !important; }

.visible-lg {
  display: none !important; }

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important; }

@media (max-width: 767px) {
  .visible-xs {
    display: block !important; }
  table.visible-xs {
    display: table !important; }
  tr.visible-xs {
    display: table-row !important; }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important; } }

@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important; } }

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important; } }

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important; }
  table.visible-sm {
    display: table !important; }
  tr.visible-sm {
    display: table-row !important; }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important; }
  table.visible-md {
    display: table !important; }
  tr.visible-md {
    display: table-row !important; }
  th.visible-md,
  td.visible-md {
    display: table-cell !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important; }
  table.visible-lg {
    display: table !important; }
  tr.visible-lg {
    display: table-row !important; }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important; } }

@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important; } }

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important; } }

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important; } }

.visible-print {
  display: none !important; }

@media print {
  .visible-print {
    display: block !important; }
  table.visible-print {
    display: table !important; }
  tr.visible-print {
    display: table-row !important; }
  th.visible-print,
  td.visible-print {
    display: table-cell !important; } }

.visible-print-block {
  display: none !important; }
  @media print {
    .visible-print-block {
      display: block !important; } }

.visible-print-inline {
  display: none !important; }
  @media print {
    .visible-print-inline {
      display: inline !important; } }

.visible-print-inline-block {
  display: none !important; }
  @media print {
    .visible-print-inline-block {
      display: inline-block !important; } }

@media print {
  .hidden-print {
    display: none !important; } }

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url(fonts/fontawesome-webfont.eot);
  src: url(fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format("embedded-opentype"), url(fonts/fontawesome-webfont.woff2) format("woff2"), url(fonts/fontawesome-webfont.woff) format("woff"), url(fonts/fontawesome-webfont.ttf) format("truetype"), url(data:image/svg+xml;base64,PHN2Zy8+#fontawesomeregular) format("svg");
  font-weight: normal;
  font-style: normal; }

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -15%; }

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

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

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

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

.fa-fw {
  width: 1.28571em;
  text-align: center; }

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

.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  top: 0.14286em;
  text-align: center; }
  .fa-li.fa-lg {
    left: -1.85714em; }

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em; }

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

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

.fa.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right {
  margin-left: .3em; }

/* Deprecated as of 4.4.0 */
.pull-right, #ps-guide .show-code {
  float: right; }

.pull-left, .navbar .navbar-header .navbar-brand .brand, #ps-guide .navbar .app-title {
  float: left; }

.fa.pull-left, .navbar .navbar-header .navbar-brand .fa.brand, #ps-guide .navbar .fa.app-title {
  margin-right: .3em; }

.fa.pull-right, #ps-guide .fa.show-code {
  margin-left: .3em; }

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

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

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

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

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }

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

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

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

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

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

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

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

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

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

.fa-inverse {
  color: #fff; }

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

.fa-music:before {
  content: "\F001"; }

.fa-search:before {
  content: "\F002"; }

.fa-envelope-o:before {
  content: "\F003"; }

.fa-heart:before {
  content: "\F004"; }

.fa-star:before {
  content: "\F005"; }

.fa-star-o:before {
  content: "\F006"; }

.fa-user:before {
  content: "\F007"; }

.fa-film:before {
  content: "\F008"; }

.fa-th-large:before {
  content: "\F009"; }

.fa-th:before {
  content: "\F00A"; }

.fa-th-list:before {
  content: "\F00B"; }

.fa-check:before {
  content: "\F00C"; }

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\F00D"; }

.fa-search-plus:before {
  content: "\F00E"; }

.fa-search-minus:before {
  content: "\F010"; }

.fa-power-off:before {
  content: "\F011"; }

.fa-signal:before {
  content: "\F012"; }

.fa-gear:before,
.fa-cog:before {
  content: "\F013"; }

.fa-trash-o:before {
  content: "\F014"; }

.fa-home:before {
  content: "\F015"; }

.fa-file-o:before {
  content: "\F016"; }

.fa-clock-o:before {
  content: "\F017"; }

.fa-road:before {
  content: "\F018"; }

.fa-download:before {
  content: "\F019"; }

.fa-arrow-circle-o-down:before {
  content: "\F01A"; }

.fa-arrow-circle-o-up:before {
  content: "\F01B"; }

.fa-inbox:before {
  content: "\F01C"; }

.fa-play-circle-o:before {
  content: "\F01D"; }

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\F01E"; }

.fa-refresh:before {
  content: "\F021"; }

.fa-list-alt:before {
  content: "\F022"; }

.fa-lock:before {
  content: "\F023"; }

.fa-flag:before {
  content: "\F024"; }

.fa-headphones:before {
  content: "\F025"; }

.fa-volume-off:before {
  content: "\F026"; }

.fa-volume-down:before {
  content: "\F027"; }

.fa-volume-up:before {
  content: "\F028"; }

.fa-qrcode:before {
  content: "\F029"; }

.fa-barcode:before {
  content: "\F02A"; }

.fa-tag:before {
  content: "\F02B"; }

.fa-tags:before {
  content: "\F02C"; }

.fa-book:before {
  content: "\F02D"; }

.fa-bookmark:before {
  content: "\F02E"; }

.fa-print:before {
  content: "\F02F"; }

.fa-camera:before {
  content: "\F030"; }

.fa-font:before {
  content: "\F031"; }

.fa-bold:before {
  content: "\F032"; }

.fa-italic:before {
  content: "\F033"; }

.fa-text-height:before {
  content: "\F034"; }

.fa-text-width:before {
  content: "\F035"; }

.fa-align-left:before {
  content: "\F036"; }

.fa-align-center:before {
  content: "\F037"; }

.fa-align-right:before {
  content: "\F038"; }

.fa-align-justify:before {
  content: "\F039"; }

.fa-list:before {
  content: "\F03A"; }

.fa-dedent:before,
.fa-outdent:before {
  content: "\F03B"; }

.fa-indent:before {
  content: "\F03C"; }

.fa-video-camera:before {
  content: "\F03D"; }

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\F03E"; }

.fa-pencil:before {
  content: "\F040"; }

.fa-map-marker:before {
  content: "\F041"; }

.fa-adjust:before {
  content: "\F042"; }

.fa-tint:before {
  content: "\F043"; }

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\F044"; }

.fa-share-square-o:before {
  content: "\F045"; }

.fa-check-square-o:before {
  content: "\F046"; }

.fa-arrows:before {
  content: "\F047"; }

.fa-step-backward:before {
  content: "\F048"; }

.fa-fast-backward:before {
  content: "\F049"; }

.fa-backward:before {
  content: "\F04A"; }

.fa-play:before {
  content: "\F04B"; }

.fa-pause:before {
  content: "\F04C"; }

.fa-stop:before {
  content: "\F04D"; }

.fa-forward:before {
  content: "\F04E"; }

.fa-fast-forward:before {
  content: "\F050"; }

.fa-step-forward:before {
  content: "\F051"; }

.fa-eject:before {
  content: "\F052"; }

.fa-chevron-left:before {
  content: "\F053"; }

.fa-chevron-right:before {
  content: "\F054"; }

.fa-plus-circle:before {
  content: "\F055"; }

.fa-minus-circle:before {
  content: "\F056"; }

.fa-times-circle:before {
  content: "\F057"; }

.fa-check-circle:before {
  content: "\F058"; }

.fa-question-circle:before {
  content: "\F059"; }

.fa-info-circle:before {
  content: "\F05A"; }

.fa-crosshairs:before {
  content: "\F05B"; }

.fa-times-circle-o:before {
  content: "\F05C"; }

.fa-check-circle-o:before {
  content: "\F05D"; }

.fa-ban:before {
  content: "\F05E"; }

.fa-arrow-left:before {
  content: "\F060"; }

.fa-arrow-right:before {
  content: "\F061"; }

.fa-arrow-up:before {
  content: "\F062"; }

.fa-arrow-down:before {
  content: "\F063"; }

.fa-mail-forward:before,
.fa-share:before {
  content: "\F064"; }

.fa-expand:before {
  content: "\F065"; }

.fa-compress:before {
  content: "\F066"; }

.fa-plus:before {
  content: "\F067"; }

.fa-minus:before {
  content: "\F068"; }

.fa-asterisk:before {
  content: "\F069"; }

.fa-exclamation-circle:before {
  content: "\F06A"; }

.fa-gift:before {
  content: "\F06B"; }

.fa-leaf:before {
  content: "\F06C"; }

.fa-fire:before {
  content: "\F06D"; }

.fa-eye:before {
  content: "\F06E"; }

.fa-eye-slash:before {
  content: "\F070"; }

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\F071"; }

.fa-plane:before {
  content: "\F072"; }

.fa-calendar:before {
  content: "\F073"; }

.fa-random:before {
  content: "\F074"; }

.fa-comment:before {
  content: "\F075"; }

.fa-magnet:before {
  content: "\F076"; }

.fa-chevron-up:before {
  content: "\F077"; }

.fa-chevron-down:before {
  content: "\F078"; }

.fa-retweet:before {
  content: "\F079"; }

.fa-shopping-cart:before {
  content: "\F07A"; }

.fa-folder:before {
  content: "\F07B"; }

.fa-folder-open:before {
  content: "\F07C"; }

.fa-arrows-v:before {
  content: "\F07D"; }

.fa-arrows-h:before {
  content: "\F07E"; }

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\F080"; }

.fa-twitter-square:before {
  content: "\F081"; }

.fa-facebook-square:before {
  content: "\F082"; }

.fa-camera-retro:before {
  content: "\F083"; }

.fa-key:before {
  content: "\F084"; }

.fa-gears:before,
.fa-cogs:before {
  content: "\F085"; }

.fa-comments:before {
  content: "\F086"; }

.fa-thumbs-o-up:before {
  content: "\F087"; }

.fa-thumbs-o-down:before {
  content: "\F088"; }

.fa-star-half:before {
  content: "\F089"; }

.fa-heart-o:before {
  content: "\F08A"; }

.fa-sign-out:before {
  content: "\F08B"; }

.fa-linkedin-square:before {
  content: "\F08C"; }

.fa-thumb-tack:before {
  content: "\F08D"; }

.fa-external-link:before {
  content: "\F08E"; }

.fa-sign-in:before {
  content: "\F090"; }

.fa-trophy:before {
  content: "\F091"; }

.fa-github-square:before {
  content: "\F092"; }

.fa-upload:before {
  content: "\F093"; }

.fa-lemon-o:before {
  content: "\F094"; }

.fa-phone:before {
  content: "\F095"; }

.fa-square-o:before {
  content: "\F096"; }

.fa-bookmark-o:before {
  content: "\F097"; }

.fa-phone-square:before {
  content: "\F098"; }

.fa-twitter:before {
  content: "\F099"; }

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\F09A"; }

.fa-github:before {
  content: "\F09B"; }

.fa-unlock:before {
  content: "\F09C"; }

.fa-credit-card:before {
  content: "\F09D"; }

.fa-feed:before,
.fa-rss:before {
  content: "\F09E"; }

.fa-hdd-o:before {
  content: "\F0A0"; }

.fa-bullhorn:before {
  content: "\F0A1"; }

.fa-bell:before {
  content: "\F0F3"; }

.fa-certificate:before {
  content: "\F0A3"; }

.fa-hand-o-right:before {
  content: "\F0A4"; }

.fa-hand-o-left:before {
  content: "\F0A5"; }

.fa-hand-o-up:before {
  content: "\F0A6"; }

.fa-hand-o-down:before {
  content: "\F0A7"; }

.fa-arrow-circle-left:before {
  content: "\F0A8"; }

.fa-arrow-circle-right:before {
  content: "\F0A9"; }

.fa-arrow-circle-up:before {
  content: "\F0AA"; }

.fa-arrow-circle-down:before {
  content: "\F0AB"; }

.fa-globe:before {
  content: "\F0AC"; }

.fa-wrench:before {
  content: "\F0AD"; }

.fa-tasks:before {
  content: "\F0AE"; }

.fa-filter:before {
  content: "\F0B0"; }

.fa-briefcase:before {
  content: "\F0B1"; }

.fa-arrows-alt:before {
  content: "\F0B2"; }

.fa-group:before,
.fa-users:before {
  content: "\F0C0"; }

.fa-chain:before,
.fa-link:before {
  content: "\F0C1"; }

.fa-cloud:before {
  content: "\F0C2"; }

.fa-flask:before {
  content: "\F0C3"; }

.fa-cut:before,
.fa-scissors:before {
  content: "\F0C4"; }

.fa-copy:before,
.fa-files-o:before {
  content: "\F0C5"; }

.fa-paperclip:before {
  content: "\F0C6"; }

.fa-save:before,
.fa-floppy-o:before {
  content: "\F0C7"; }

.fa-square:before {
  content: "\F0C8"; }

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\F0C9"; }

.fa-list-ul:before {
  content: "\F0CA"; }

.fa-list-ol:before {
  content: "\F0CB"; }

.fa-strikethrough:before {
  content: "\F0CC"; }

.fa-underline:before {
  content: "\F0CD"; }

.fa-table:before {
  content: "\F0CE"; }

.fa-magic:before {
  content: "\F0D0"; }

.fa-truck:before {
  content: "\F0D1"; }

.fa-pinterest:before {
  content: "\F0D2"; }

.fa-pinterest-square:before {
  content: "\F0D3"; }

.fa-google-plus-square:before {
  content: "\F0D4"; }

.fa-google-plus:before {
  content: "\F0D5"; }

.fa-money:before {
  content: "\F0D6"; }

.fa-caret-down:before {
  content: "\F0D7"; }

.fa-caret-up:before {
  content: "\F0D8"; }

.fa-caret-left:before {
  content: "\F0D9"; }

.fa-caret-right:before {
  content: "\F0DA"; }

.fa-columns:before {
  content: "\F0DB"; }

.fa-unsorted:before,
.fa-sort:before {
  content: "\F0DC"; }

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\F0DD"; }

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\F0DE"; }

.fa-envelope:before {
  content: "\F0E0"; }

.fa-linkedin:before {
  content: "\F0E1"; }

.fa-rotate-left:before,
.fa-undo:before {
  content: "\F0E2"; }

.fa-legal:before,
.fa-gavel:before {
  content: "\F0E3"; }

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\F0E4"; }

.fa-comment-o:before {
  content: "\F0E5"; }

.fa-comments-o:before {
  content: "\F0E6"; }

.fa-flash:before,
.fa-bolt:before {
  content: "\F0E7"; }

.fa-sitemap:before {
  content: "\F0E8"; }

.fa-umbrella:before {
  content: "\F0E9"; }

.fa-paste:before,
.fa-clipboard:before {
  content: "\F0EA"; }

.fa-lightbulb-o:before {
  content: "\F0EB"; }

.fa-exchange:before {
  content: "\F0EC"; }

.fa-cloud-download:before {
  content: "\F0ED"; }

.fa-cloud-upload:before {
  content: "\F0EE"; }

.fa-user-md:before {
  content: "\F0F0"; }

.fa-stethoscope:before {
  content: "\F0F1"; }

.fa-suitcase:before {
  content: "\F0F2"; }

.fa-bell-o:before {
  content: "\F0A2"; }

.fa-coffee:before {
  content: "\F0F4"; }

.fa-cutlery:before {
  content: "\F0F5"; }

.fa-file-text-o:before {
  content: "\F0F6"; }

.fa-building-o:before {
  content: "\F0F7"; }

.fa-hospital-o:before {
  content: "\F0F8"; }

.fa-ambulance:before {
  content: "\F0F9"; }

.fa-medkit:before {
  content: "\F0FA"; }

.fa-fighter-jet:before {
  content: "\F0FB"; }

.fa-beer:before {
  content: "\F0FC"; }

.fa-h-square:before {
  content: "\F0FD"; }

.fa-plus-square:before {
  content: "\F0FE"; }

.fa-angle-double-left:before {
  content: "\F100"; }

.fa-angle-double-right:before {
  content: "\F101"; }

.fa-angle-double-up:before {
  content: "\F102"; }

.fa-angle-double-down:before {
  content: "\F103"; }

.fa-angle-left:before {
  content: "\F104"; }

.fa-angle-right:before {
  content: "\F105"; }

.fa-angle-up:before {
  content: "\F106"; }

.fa-angle-down:before {
  content: "\F107"; }

.fa-desktop:before {
  content: "\F108"; }

.fa-laptop:before {
  content: "\F109"; }

.fa-tablet:before {
  content: "\F10A"; }

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\F10B"; }

.fa-circle-o:before {
  content: "\F10C"; }

.fa-quote-left:before {
  content: "\F10D"; }

.fa-quote-right:before {
  content: "\F10E"; }

.fa-spinner:before {
  content: "\F110"; }

.fa-circle:before {
  content: "\F111"; }

.fa-mail-reply:before,
.fa-reply:before {
  content: "\F112"; }

.fa-github-alt:before {
  content: "\F113"; }

.fa-folder-o:before {
  content: "\F114"; }

.fa-folder-open-o:before {
  content: "\F115"; }

.fa-smile-o:before {
  content: "\F118"; }

.fa-frown-o:before {
  content: "\F119"; }

.fa-meh-o:before {
  content: "\F11A"; }

.fa-gamepad:before {
  content: "\F11B"; }

.fa-keyboard-o:before {
  content: "\F11C"; }

.fa-flag-o:before {
  content: "\F11D"; }

.fa-flag-checkered:before {
  content: "\F11E"; }

.fa-terminal:before {
  content: "\F120"; }

.fa-code:before {
  content: "\F121"; }

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\F122"; }

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\F123"; }

.fa-location-arrow:before {
  content: "\F124"; }

.fa-crop:before {
  content: "\F125"; }

.fa-code-fork:before {
  content: "\F126"; }

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\F127"; }

.fa-question:before {
  content: "\F128"; }

.fa-info:before {
  content: "\F129"; }

.fa-exclamation:before {
  content: "\F12A"; }

.fa-superscript:before {
  content: "\F12B"; }

.fa-subscript:before {
  content: "\F12C"; }

.fa-eraser:before {
  content: "\F12D"; }

.fa-puzzle-piece:before {
  content: "\F12E"; }

.fa-microphone:before {
  content: "\F130"; }

.fa-microphone-slash:before {
  content: "\F131"; }

.fa-shield:before {
  content: "\F132"; }

.fa-calendar-o:before {
  content: "\F133"; }

.fa-fire-extinguisher:before {
  content: "\F134"; }

.fa-rocket:before {
  content: "\F135"; }

.fa-maxcdn:before {
  content: "\F136"; }

.fa-chevron-circle-left:before {
  content: "\F137"; }

.fa-chevron-circle-right:before {
  content: "\F138"; }

.fa-chevron-circle-up:before {
  content: "\F139"; }

.fa-chevron-circle-down:before {
  content: "\F13A"; }

.fa-html5:before {
  content: "\F13B"; }

.fa-css3:before {
  content: "\F13C"; }

.fa-anchor:before {
  content: "\F13D"; }

.fa-unlock-alt:before {
  content: "\F13E"; }

.fa-bullseye:before {
  content: "\F140"; }

.fa-ellipsis-h:before {
  content: "\F141"; }

.fa-ellipsis-v:before {
  content: "\F142"; }

.fa-rss-square:before {
  content: "\F143"; }

.fa-play-circle:before {
  content: "\F144"; }

.fa-ticket:before {
  content: "\F145"; }

.fa-minus-square:before {
  content: "\F146"; }

.fa-minus-square-o:before {
  content: "\F147"; }

.fa-level-up:before {
  content: "\F148"; }

.fa-level-down:before {
  content: "\F149"; }

.fa-check-square:before {
  content: "\F14A"; }

.fa-pencil-square:before {
  content: "\F14B"; }

.fa-external-link-square:before {
  content: "\F14C"; }

.fa-share-square:before {
  content: "\F14D"; }

.fa-compass:before {
  content: "\F14E"; }

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\F150"; }

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\F151"; }

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\F152"; }

.fa-euro:before,
.fa-eur:before {
  content: "\F153"; }

.fa-gbp:before {
  content: "\F154"; }

.fa-dollar:before,
.fa-usd:before {
  content: "\F155"; }

.fa-rupee:before,
.fa-inr:before {
  content: "\F156"; }

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\F157"; }

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\F158"; }

.fa-won:before,
.fa-krw:before {
  content: "\F159"; }

.fa-bitcoin:before,
.fa-btc:before {
  content: "\F15A"; }

.fa-file:before {
  content: "\F15B"; }

.fa-file-text:before {
  content: "\F15C"; }

.fa-sort-alpha-asc:before {
  content: "\F15D"; }

.fa-sort-alpha-desc:before {
  content: "\F15E"; }

.fa-sort-amount-asc:before {
  content: "\F160"; }

.fa-sort-amount-desc:before {
  content: "\F161"; }

.fa-sort-numeric-asc:before {
  content: "\F162"; }

.fa-sort-numeric-desc:before {
  content: "\F163"; }

.fa-thumbs-up:before {
  content: "\F164"; }

.fa-thumbs-down:before {
  content: "\F165"; }

.fa-youtube-square:before {
  content: "\F166"; }

.fa-youtube:before {
  content: "\F167"; }

.fa-xing:before {
  content: "\F168"; }

.fa-xing-square:before {
  content: "\F169"; }

.fa-youtube-play:before {
  content: "\F16A"; }

.fa-dropbox:before {
  content: "\F16B"; }

.fa-stack-overflow:before {
  content: "\F16C"; }

.fa-instagram:before {
  content: "\F16D"; }

.fa-flickr:before {
  content: "\F16E"; }

.fa-adn:before {
  content: "\F170"; }

.fa-bitbucket:before {
  content: "\F171"; }

.fa-bitbucket-square:before {
  content: "\F172"; }

.fa-tumblr:before {
  content: "\F173"; }

.fa-tumblr-square:before {
  content: "\F174"; }

.fa-long-arrow-down:before {
  content: "\F175"; }

.fa-long-arrow-up:before {
  content: "\F176"; }

.fa-long-arrow-left:before {
  content: "\F177"; }

.fa-long-arrow-right:before {
  content: "\F178"; }

.fa-apple:before {
  content: "\F179"; }

.fa-windows:before {
  content: "\F17A"; }

.fa-android:before {
  content: "\F17B"; }

.fa-linux:before {
  content: "\F17C"; }

.fa-dribbble:before {
  content: "\F17D"; }

.fa-skype:before {
  content: "\F17E"; }

.fa-foursquare:before {
  content: "\F180"; }

.fa-trello:before {
  content: "\F181"; }

.fa-female:before {
  content: "\F182"; }

.fa-male:before {
  content: "\F183"; }

.fa-gittip:before,
.fa-gratipay:before {
  content: "\F184"; }

.fa-sun-o:before {
  content: "\F185"; }

.fa-moon-o:before {
  content: "\F186"; }

.fa-archive:before {
  content: "\F187"; }

.fa-bug:before {
  content: "\F188"; }

.fa-vk:before {
  content: "\F189"; }

.fa-weibo:before {
  content: "\F18A"; }

.fa-renren:before {
  content: "\F18B"; }

.fa-pagelines:before {
  content: "\F18C"; }

.fa-stack-exchange:before {
  content: "\F18D"; }

.fa-arrow-circle-o-right:before {
  content: "\F18E"; }

.fa-arrow-circle-o-left:before {
  content: "\F190"; }

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\F191"; }

.fa-dot-circle-o:before {
  content: "\F192"; }

.fa-wheelchair:before {
  content: "\F193"; }

.fa-vimeo-square:before {
  content: "\F194"; }

.fa-turkish-lira:before,
.fa-try:before {
  content: "\F195"; }

.fa-plus-square-o:before {
  content: "\F196"; }

.fa-space-shuttle:before {
  content: "\F197"; }

.fa-slack:before {
  content: "\F198"; }

.fa-envelope-square:before {
  content: "\F199"; }

.fa-wordpress:before {
  content: "\F19A"; }

.fa-openid:before {
  content: "\F19B"; }

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\F19C"; }

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\F19D"; }

.fa-yahoo:before {
  content: "\F19E"; }

.fa-google:before {
  content: "\F1A0"; }

.fa-reddit:before {
  content: "\F1A1"; }

.fa-reddit-square:before {
  content: "\F1A2"; }

.fa-stumbleupon-circle:before {
  content: "\F1A3"; }

.fa-stumbleupon:before {
  content: "\F1A4"; }

.fa-delicious:before {
  content: "\F1A5"; }

.fa-digg:before {
  content: "\F1A6"; }

.fa-pied-piper-pp:before {
  content: "\F1A7"; }

.fa-pied-piper-alt:before {
  content: "\F1A8"; }

.fa-drupal:before {
  content: "\F1A9"; }

.fa-joomla:before {
  content: "\F1AA"; }

.fa-language:before {
  content: "\F1AB"; }

.fa-fax:before {
  content: "\F1AC"; }

.fa-building:before {
  content: "\F1AD"; }

.fa-child:before {
  content: "\F1AE"; }

.fa-paw:before {
  content: "\F1B0"; }

.fa-spoon:before {
  content: "\F1B1"; }

.fa-cube:before {
  content: "\F1B2"; }

.fa-cubes:before {
  content: "\F1B3"; }

.fa-behance:before {
  content: "\F1B4"; }

.fa-behance-square:before {
  content: "\F1B5"; }

.fa-steam:before {
  content: "\F1B6"; }

.fa-steam-square:before {
  content: "\F1B7"; }

.fa-recycle:before {
  content: "\F1B8"; }

.fa-automobile:before,
.fa-car:before {
  content: "\F1B9"; }

.fa-cab:before,
.fa-taxi:before {
  content: "\F1BA"; }

.fa-tree:before {
  content: "\F1BB"; }

.fa-spotify:before {
  content: "\F1BC"; }

.fa-deviantart:before {
  content: "\F1BD"; }

.fa-soundcloud:before {
  content: "\F1BE"; }

.fa-database:before {
  content: "\F1C0"; }

.fa-file-pdf-o:before {
  content: "\F1C1"; }

.fa-file-word-o:before {
  content: "\F1C2"; }

.fa-file-excel-o:before {
  content: "\F1C3"; }

.fa-file-powerpoint-o:before {
  content: "\F1C4"; }

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\F1C5"; }

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\F1C6"; }

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\F1C7"; }

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\F1C8"; }

.fa-file-code-o:before {
  content: "\F1C9"; }

.fa-vine:before {
  content: "\F1CA"; }

.fa-codepen:before {
  content: "\F1CB"; }

.fa-jsfiddle:before {
  content: "\F1CC"; }

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\F1CD"; }

.fa-circle-o-notch:before {
  content: "\F1CE"; }

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\F1D0"; }

.fa-ge:before,
.fa-empire:before {
  content: "\F1D1"; }

.fa-git-square:before {
  content: "\F1D2"; }

.fa-git:before {
  content: "\F1D3"; }

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\F1D4"; }

.fa-tencent-weibo:before {
  content: "\F1D5"; }

.fa-qq:before {
  content: "\F1D6"; }

.fa-wechat:before,
.fa-weixin:before {
  content: "\F1D7"; }

.fa-send:before,
.fa-paper-plane:before {
  content: "\F1D8"; }

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\F1D9"; }

.fa-history:before {
  content: "\F1DA"; }

.fa-circle-thin:before {
  content: "\F1DB"; }

.fa-header:before {
  content: "\F1DC"; }

.fa-paragraph:before {
  content: "\F1DD"; }

.fa-sliders:before {
  content: "\F1DE"; }

.fa-share-alt:before {
  content: "\F1E0"; }

.fa-share-alt-square:before {
  content: "\F1E1"; }

.fa-bomb:before {
  content: "\F1E2"; }

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\F1E3"; }

.fa-tty:before {
  content: "\F1E4"; }

.fa-binoculars:before {
  content: "\F1E5"; }

.fa-plug:before {
  content: "\F1E6"; }

.fa-slideshare:before {
  content: "\F1E7"; }

.fa-twitch:before {
  content: "\F1E8"; }

.fa-yelp:before {
  content: "\F1E9"; }

.fa-newspaper-o:before {
  content: "\F1EA"; }

.fa-wifi:before {
  content: "\F1EB"; }

.fa-calculator:before {
  content: "\F1EC"; }

.fa-paypal:before {
  content: "\F1ED"; }

.fa-google-wallet:before {
  content: "\F1EE"; }

.fa-cc-visa:before {
  content: "\F1F0"; }

.fa-cc-mastercard:before {
  content: "\F1F1"; }

.fa-cc-discover:before {
  content: "\F1F2"; }

.fa-cc-amex:before {
  content: "\F1F3"; }

.fa-cc-paypal:before {
  content: "\F1F4"; }

.fa-cc-stripe:before {
  content: "\F1F5"; }

.fa-bell-slash:before {
  content: "\F1F6"; }

.fa-bell-slash-o:before {
  content: "\F1F7"; }

.fa-trash:before {
  content: "\F1F8"; }

.fa-copyright:before {
  content: "\F1F9"; }

.fa-at:before {
  content: "\F1FA"; }

.fa-eyedropper:before {
  content: "\F1FB"; }

.fa-paint-brush:before {
  content: "\F1FC"; }

.fa-birthday-cake:before {
  content: "\F1FD"; }

.fa-area-chart:before {
  content: "\F1FE"; }

.fa-pie-chart:before {
  content: "\F200"; }

.fa-line-chart:before {
  content: "\F201"; }

.fa-lastfm:before {
  content: "\F202"; }

.fa-lastfm-square:before {
  content: "\F203"; }

.fa-toggle-off:before {
  content: "\F204"; }

.fa-toggle-on:before {
  content: "\F205"; }

.fa-bicycle:before {
  content: "\F206"; }

.fa-bus:before {
  content: "\F207"; }

.fa-ioxhost:before {
  content: "\F208"; }

.fa-angellist:before {
  content: "\F209"; }

.fa-cc:before {
  content: "\F20A"; }

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\F20B"; }

.fa-meanpath:before {
  content: "\F20C"; }

.fa-buysellads:before {
  content: "\F20D"; }

.fa-connectdevelop:before {
  content: "\F20E"; }

.fa-dashcube:before {
  content: "\F210"; }

.fa-forumbee:before {
  content: "\F211"; }

.fa-leanpub:before {
  content: "\F212"; }

.fa-sellsy:before {
  content: "\F213"; }

.fa-shirtsinbulk:before {
  content: "\F214"; }

.fa-simplybuilt:before {
  content: "\F215"; }

.fa-skyatlas:before {
  content: "\F216"; }

.fa-cart-plus:before {
  content: "\F217"; }

.fa-cart-arrow-down:before {
  content: "\F218"; }

.fa-diamond:before {
  content: "\F219"; }

.fa-ship:before {
  content: "\F21A"; }

.fa-user-secret:before {
  content: "\F21B"; }

.fa-motorcycle:before {
  content: "\F21C"; }

.fa-street-view:before {
  content: "\F21D"; }

.fa-heartbeat:before {
  content: "\F21E"; }

.fa-venus:before {
  content: "\F221"; }

.fa-mars:before {
  content: "\F222"; }

.fa-mercury:before {
  content: "\F223"; }

.fa-intersex:before,
.fa-transgender:before {
  content: "\F224"; }

.fa-transgender-alt:before {
  content: "\F225"; }

.fa-venus-double:before {
  content: "\F226"; }

.fa-mars-double:before {
  content: "\F227"; }

.fa-venus-mars:before {
  content: "\F228"; }

.fa-mars-stroke:before {
  content: "\F229"; }

.fa-mars-stroke-v:before {
  content: "\F22A"; }

.fa-mars-stroke-h:before {
  content: "\F22B"; }

.fa-neuter:before {
  content: "\F22C"; }

.fa-genderless:before {
  content: "\F22D"; }

.fa-facebook-official:before {
  content: "\F230"; }

.fa-pinterest-p:before {
  content: "\F231"; }

.fa-whatsapp:before {
  content: "\F232"; }

.fa-server:before {
  content: "\F233"; }

.fa-user-plus:before {
  content: "\F234"; }

.fa-user-times:before {
  content: "\F235"; }

.fa-hotel:before,
.fa-bed:before {
  content: "\F236"; }

.fa-viacoin:before {
  content: "\F237"; }

.fa-train:before {
  content: "\F238"; }

.fa-subway:before {
  content: "\F239"; }

.fa-medium:before {
  content: "\F23A"; }

.fa-yc:before,
.fa-y-combinator:before {
  content: "\F23B"; }

.fa-optin-monster:before {
  content: "\F23C"; }

.fa-opencart:before {
  content: "\F23D"; }

.fa-expeditedssl:before {
  content: "\F23E"; }

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\F240"; }

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\F241"; }

.fa-battery-2:before,
.fa-battery-half:before {
  content: "\F242"; }

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\F243"; }

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\F244"; }

.fa-mouse-pointer:before {
  content: "\F245"; }

.fa-i-cursor:before {
  content: "\F246"; }

.fa-object-group:before {
  content: "\F247"; }

.fa-object-ungroup:before {
  content: "\F248"; }

.fa-sticky-note:before {
  content: "\F249"; }

.fa-sticky-note-o:before {
  content: "\F24A"; }

.fa-cc-jcb:before {
  content: "\F24B"; }

.fa-cc-diners-club:before {
  content: "\F24C"; }

.fa-clone:before {
  content: "\F24D"; }

.fa-balance-scale:before {
  content: "\F24E"; }

.fa-hourglass-o:before {
  content: "\F250"; }

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\F251"; }

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\F252"; }

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\F253"; }

.fa-hourglass:before {
  content: "\F254"; }

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\F255"; }

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\F256"; }

.fa-hand-scissors-o:before {
  content: "\F257"; }

.fa-hand-lizard-o:before {
  content: "\F258"; }

.fa-hand-spock-o:before {
  content: "\F259"; }

.fa-hand-pointer-o:before {
  content: "\F25A"; }

.fa-hand-peace-o:before {
  content: "\F25B"; }

.fa-trademark:before {
  content: "\F25C"; }

.fa-registered:before {
  content: "\F25D"; }

.fa-creative-commons:before {
  content: "\F25E"; }

.fa-gg:before {
  content: "\F260"; }

.fa-gg-circle:before {
  content: "\F261"; }

.fa-tripadvisor:before {
  content: "\F262"; }

.fa-odnoklassniki:before {
  content: "\F263"; }

.fa-odnoklassniki-square:before {
  content: "\F264"; }

.fa-get-pocket:before {
  content: "\F265"; }

.fa-wikipedia-w:before {
  content: "\F266"; }

.fa-safari:before {
  content: "\F267"; }

.fa-chrome:before {
  content: "\F268"; }

.fa-firefox:before {
  content: "\F269"; }

.fa-opera:before {
  content: "\F26A"; }

.fa-internet-explorer:before {
  content: "\F26B"; }

.fa-tv:before,
.fa-television:before {
  content: "\F26C"; }

.fa-contao:before {
  content: "\F26D"; }

.fa-500px:before {
  content: "\F26E"; }

.fa-amazon:before {
  content: "\F270"; }

.fa-calendar-plus-o:before {
  content: "\F271"; }

.fa-calendar-minus-o:before {
  content: "\F272"; }

.fa-calendar-times-o:before {
  content: "\F273"; }

.fa-calendar-check-o:before {
  content: "\F274"; }

.fa-industry:before {
  content: "\F275"; }

.fa-map-pin:before {
  content: "\F276"; }

.fa-map-signs:before {
  content: "\F277"; }

.fa-map-o:before {
  content: "\F278"; }

.fa-map:before {
  content: "\F279"; }

.fa-commenting:before {
  content: "\F27A"; }

.fa-commenting-o:before {
  content: "\F27B"; }

.fa-houzz:before {
  content: "\F27C"; }

.fa-vimeo:before {
  content: "\F27D"; }

.fa-black-tie:before {
  content: "\F27E"; }

.fa-fonticons:before {
  content: "\F280"; }

.fa-reddit-alien:before {
  content: "\F281"; }

.fa-edge:before {
  content: "\F282"; }

.fa-credit-card-alt:before {
  content: "\F283"; }

.fa-codiepie:before {
  content: "\F284"; }

.fa-modx:before {
  content: "\F285"; }

.fa-fort-awesome:before {
  content: "\F286"; }

.fa-usb:before {
  content: "\F287"; }

.fa-product-hunt:before {
  content: "\F288"; }

.fa-mixcloud:before {
  content: "\F289"; }

.fa-scribd:before {
  content: "\F28A"; }

.fa-pause-circle:before {
  content: "\F28B"; }

.fa-pause-circle-o:before {
  content: "\F28C"; }

.fa-stop-circle:before {
  content: "\F28D"; }

.fa-stop-circle-o:before {
  content: "\F28E"; }

.fa-shopping-bag:before {
  content: "\F290"; }

.fa-shopping-basket:before {
  content: "\F291"; }

.fa-hashtag:before {
  content: "\F292"; }

.fa-bluetooth:before {
  content: "\F293"; }

.fa-bluetooth-b:before {
  content: "\F294"; }

.fa-percent:before {
  content: "\F295"; }

.fa-gitlab:before {
  content: "\F296"; }

.fa-wpbeginner:before {
  content: "\F297"; }

.fa-wpforms:before {
  content: "\F298"; }

.fa-envira:before {
  content: "\F299"; }

.fa-universal-access:before {
  content: "\F29A"; }

.fa-wheelchair-alt:before {
  content: "\F29B"; }

.fa-question-circle-o:before {
  content: "\F29C"; }

.fa-blind:before {
  content: "\F29D"; }

.fa-audio-description:before {
  content: "\F29E"; }

.fa-volume-control-phone:before {
  content: "\F2A0"; }

.fa-braille:before {
  content: "\F2A1"; }

.fa-assistive-listening-systems:before {
  content: "\F2A2"; }

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\F2A3"; }

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\F2A4"; }

.fa-glide:before {
  content: "\F2A5"; }

.fa-glide-g:before {
  content: "\F2A6"; }

.fa-signing:before,
.fa-sign-language:before {
  content: "\F2A7"; }

.fa-low-vision:before {
  content: "\F2A8"; }

.fa-viadeo:before {
  content: "\F2A9"; }

.fa-viadeo-square:before {
  content: "\F2AA"; }

.fa-snapchat:before {
  content: "\F2AB"; }

.fa-snapchat-ghost:before {
  content: "\F2AC"; }

.fa-snapchat-square:before {
  content: "\F2AD"; }

.fa-pied-piper:before {
  content: "\F2AE"; }

.fa-first-order:before {
  content: "\F2B0"; }

.fa-yoast:before {
  content: "\F2B1"; }

.fa-themeisle:before {
  content: "\F2B2"; }

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\F2B3"; }

.fa-fa:before,
.fa-font-awesome:before {
  content: "\F2B4"; }

.fa-handshake-o:before {
  content: "\F2B5"; }

.fa-envelope-open:before {
  content: "\F2B6"; }

.fa-envelope-open-o:before {
  content: "\F2B7"; }

.fa-linode:before {
  content: "\F2B8"; }

.fa-address-book:before {
  content: "\F2B9"; }

.fa-address-book-o:before {
  content: "\F2BA"; }

.fa-vcard:before,
.fa-address-card:before {
  content: "\F2BB"; }

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\F2BC"; }

.fa-user-circle:before {
  content: "\F2BD"; }

.fa-user-circle-o:before {
  content: "\F2BE"; }

.fa-user-o:before {
  content: "\F2C0"; }

.fa-id-badge:before {
  content: "\F2C1"; }

.fa-drivers-license:before,
.fa-id-card:before {
  content: "\F2C2"; }

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\F2C3"; }

.fa-quora:before {
  content: "\F2C4"; }

.fa-free-code-camp:before {
  content: "\F2C5"; }

.fa-telegram:before {
  content: "\F2C6"; }

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\F2C7"; }

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\F2C8"; }

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\F2C9"; }

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\F2CA"; }

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\F2CB"; }

.fa-shower:before {
  content: "\F2CC"; }

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\F2CD"; }

.fa-podcast:before {
  content: "\F2CE"; }

.fa-window-maximize:before {
  content: "\F2D0"; }

.fa-window-minimize:before {
  content: "\F2D1"; }

.fa-window-restore:before {
  content: "\F2D2"; }

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\F2D3"; }

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\F2D4"; }

.fa-bandcamp:before {
  content: "\F2D5"; }

.fa-grav:before {
  content: "\F2D6"; }

.fa-etsy:before {
  content: "\F2D7"; }

.fa-imdb:before {
  content: "\F2D8"; }

.fa-ravelry:before {
  content: "\F2D9"; }

.fa-eercast:before {
  content: "\F2DA"; }

.fa-microchip:before {
  content: "\F2DB"; }

.fa-snowflake-o:before {
  content: "\F2DC"; }

.fa-superpowers:before {
  content: "\F2DD"; }

.fa-wpexplorer:before {
  content: "\F2DE"; }

.fa-meetup:before {
  content: "\F2E0"; }

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

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

.checkbox {
  padding-left: 20px; }
  .checkbox label {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 5px; }
    .checkbox label::before {
      content: "";
      display: inline-block;
      position: absolute;
      width: 17px;
      height: 17px;
      left: 0;
      margin-left: -20px;
      margin-top: 3px;
      border: 1px solid #ccc;
      border-radius: 3px;
      background-color: #fff;
      -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
      -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
      transition: border 0.15s ease-in-out, color 0.15s ease-in-out; }
    .checkbox label::after {
      display: inline-block;
      position: absolute;
      width: 16px;
      height: 16px;
      left: 0;
      top: 0;
      margin-left: -20px;
      padding-left: 2px;
      padding-top: 2px;
      font-size: 13px;
      color: #3c474b; }
  .checkbox input[type="checkbox"],
  .checkbox input[type="radio"] {
    opacity: 0;
    z-index: 1; }
    .checkbox input[type="checkbox"]:focus + label::before,
    .checkbox input[type="radio"]:focus + label::before {
      outline: 5px auto -webkit-focus-ring-color;
      outline-offset: -2px; }
    .checkbox input[type="checkbox"]:checked + label::after,
    .checkbox input[type="radio"]:checked + label::after {
      font-family: "FontAwesome";
      content: "\F00C"; }
    .checkbox input[type="checkbox"]:disabled + label,
    .checkbox input[type="radio"]:disabled + label {
      opacity: 0.65; }
      .checkbox input[type="checkbox"]:disabled + label::before,
      .checkbox input[type="radio"]:disabled + label::before {
        background-color: #eeeeee;
        cursor: not-allowed; }
  .checkbox.checkbox-circle label::before {
    border-radius: 50%; }
  .checkbox.checkbox-inline {
    margin-top: 0; }

.checkbox-primary input[type="checkbox"]:checked + label::before,
.checkbox-primary input[type="radio"]:checked + label::before {
  background-color: #364b94;
  border-color: #364b94; }

.checkbox-primary input[type="checkbox"]:checked + label::after,
.checkbox-primary input[type="radio"]:checked + label::after {
  color: #fff; }

.checkbox-danger input[type="checkbox"]:checked + label::before,
.checkbox-danger input[type="radio"]:checked + label::before {
  background-color: #ed1b2d;
  border-color: #ed1b2d; }

.checkbox-danger input[type="checkbox"]:checked + label::after,
.checkbox-danger input[type="radio"]:checked + label::after {
  color: #fff; }

.checkbox-info input[type="checkbox"]:checked + label::before,
.checkbox-info input[type="radio"]:checked + label::before {
  background-color: #0475b8;
  border-color: #0475b8; }

.checkbox-info input[type="checkbox"]:checked + label::after,
.checkbox-info input[type="radio"]:checked + label::after {
  color: #fff; }

.checkbox-warning input[type="checkbox"]:checked + label::before,
.checkbox-warning input[type="radio"]:checked + label::before {
  background-color: #e8671a;
  border-color: #e8671a; }

.checkbox-warning input[type="checkbox"]:checked + label::after,
.checkbox-warning input[type="radio"]:checked + label::after {
  color: #fff; }

.checkbox-success input[type="checkbox"]:checked + label::before,
.checkbox-success input[type="radio"]:checked + label::before {
  background-color: #0ed957;
  border-color: #0ed957; }

.checkbox-success input[type="checkbox"]:checked + label::after,
.checkbox-success input[type="radio"]:checked + label::after {
  color: #fff; }

.radio {
  padding-left: 3px; }
  .radio label {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 5px; }
  .radio input[type="radio"] {
    opacity: 0;
    z-index: 1; }
    .radio input[type="radio"]:focus + label::before {
      outline: 5px auto -webkit-focus-ring-color;
      outline-offset: -2px; }
    .radio input[type="radio"]:checked + label::after {
      -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
      transform: scale(1, 1); }
    .radio input[type="radio"]:disabled + label {
      opacity: 0.65; }
      .radio input[type="radio"]:disabled + label::before {
        cursor: not-allowed; }
  .radio.radio-inline {
    margin-top: 0; }

.radio-primary input[type="radio"] + label::after {
  background-color: #364b94; }

.radio-primary input[type="radio"]:checked + label::before {
  border-color: #364b94; }

.radio-primary input[type="radio"]:checked + label::after {
  background-color: #364b94; }

.radio-danger input[type="radio"] + label::after {
  background-color: #ed1b2d; }

.radio-danger input[type="radio"]:checked + label::before {
  border-color: #ed1b2d; }

.radio-danger input[type="radio"]:checked + label::after {
  background-color: #ed1b2d; }

.radio-info input[type="radio"] + label::after {
  background-color: #0475b8; }

.radio-info input[type="radio"]:checked + label::before {
  border-color: #0475b8; }

.radio-info input[type="radio"]:checked + label::after {
  background-color: #0475b8; }

.radio-warning input[type="radio"] + label::after {
  background-color: #e8671a; }

.radio-warning input[type="radio"]:checked + label::before {
  border-color: #e8671a; }

.radio-warning input[type="radio"]:checked + label::after {
  background-color: #e8671a; }

.radio-success input[type="radio"] + label::after {
  background-color: #0ed957; }

.radio-success input[type="radio"]:checked + label::before {
  border-color: #0ed957; }

.radio-success input[type="radio"]:checked + label::after {
  background-color: #0ed957; }

input[type="checkbox"].styled:checked + label:after,
input[type="radio"].styled:checked + label:after {
  font-family: "FontAwesome";
  content: "\F00C"; }

input[type="checkbox"] .styled:checked + label::before,
input[type="radio"] .styled:checked + label::before {
  color: #fff; }

input[type="checkbox"] .styled:checked + label::after,
input[type="radio"] .styled:checked + label::after {
  color: #fff; }

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 14px;
  /* Hide default HTML checkbox */ }
  .switch input {
    display: none; }

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: gainsboro;
  -webkit-transition: .4s;
  transition: .4s; }
  .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 0px;
    top: -3px;
    bottom: 4px;
    background-color: darkgray;
    -webkit-transition: .4s;
    transition: .4s;
    box-shadow: 1px 1px 1px #888888, 0px -0.5px 0px darkgray; }

input:checked + .slider {
  background-color: #eeeeee;
  box-shadow: 0px 0.1px 2px #888888; }

input:focus + .slider {
  box-shadow: 0px 0px 2px #888888; }

input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
  background-color: #fff; }

/* Rounded sliders */
.slider.round {
  border-radius: 34px; }

.slider.round:before {
  border-radius: 50%; }

/* Custom colors based off of styleguide */
input:checked + .slider-primary:before, input:checked + .slider-success:before, input:checked + .slider-info:before, input:checked + .slider-warning:before, input:checked + .slider-danger:before {
  background-color: #fff !important; }

input:checked + .slider-primary {
  background-color: #364b94 !important; }

input:checked + .slider-success {
  background-color: #0ed957 !important; }

input:checked + .slider-info {
  background-color: #0475b8 !important; }

input:checked + .slider-warning {
  background-color: #e8671a !important; }

input:checked + .slider-danger {
  background-color: #ed1b2d !important; }

/*!
 *  Perfect Serve Custom Fonts 0.0.1 by Premier Logic
 *  
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'perfect-serve';
  src: url(fonts/perfect-serve.eot);
  src: url(fonts/perfect-serve.eot#iefix) format("embedded-opentype"), url(fonts/perfect-serve.ttf) format("truetype"), url(fonts/perfect-serve.woff) format("woff"), url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciLz4=#perfect-serve) format("svg");
  font-weight: normal;
  font-style: normal; }

/* Custom Use of Icomoon.io to render fonts */
.ps-home:before {
  content: "\E900"; }

.ps-home2:before {
  content: "\E901"; }

.ps-home3:before {
  content: "\E902"; }

.ps-office:before {
  content: "\E903"; }

.ps-newspaper:before {
  content: "\E904"; }

.ps-pencil:before {
  content: "\E905"; }

.ps-pencil2:before {
  content: "\E906"; }

.ps-quill:before {
  content: "\E907"; }

.ps-pen:before {
  content: "\E908"; }

.ps-blog:before {
  content: "\E909"; }

.ps-eyedropper:before {
  content: "\E90A"; }

.ps-droplet:before {
  content: "\E90B"; }

.ps-paint-format:before {
  content: "\E90C"; }

.ps-image:before {
  content: "\E90D"; }

.ps-images:before {
  content: "\E90E"; }

.ps-camera:before {
  content: "\E90F"; }

.ps-headphones:before {
  content: "\E910"; }

.ps-music:before {
  content: "\E911"; }

.ps-play:before {
  content: "\E912"; }

.ps-film:before {
  content: "\E913"; }

.ps-video-camera:before {
  content: "\E914"; }

.ps-dice:before {
  content: "\E915"; }

.ps-pacman:before {
  content: "\E916"; }

.ps-spades:before {
  content: "\E917"; }

.ps-clubs:before {
  content: "\E918"; }

.ps-diamonds:before {
  content: "\E919"; }

.ps-bullhorn:before {
  content: "\E91A"; }

.ps-connection:before {
  content: "\E91B"; }

.ps-podcast:before {
  content: "\E91C"; }

.ps-feed:before {
  content: "\E91D"; }

.ps-mic:before {
  content: "\E91E"; }

.ps-book:before {
  content: "\E91F"; }

.ps-books:before {
  content: "\E920"; }

.ps-library:before {
  content: "\E921"; }

.ps-file-text:before {
  content: "\E922"; }

.ps-profile:before {
  content: "\E923"; }

.ps-file-empty:before {
  content: "\E924"; }

.ps-files-empty:before {
  content: "\E925"; }

.ps-file-text2:before {
  content: "\E926"; }

.ps-file-picture:before {
  content: "\E927"; }

.ps-file-music:before {
  content: "\E928"; }

.ps-file-play:before {
  content: "\E929"; }

.ps-file-video:before {
  content: "\E92A"; }

.ps-file-zip:before {
  content: "\E92B"; }

.ps-copy:before {
  content: "\E92C"; }

.ps-paste:before {
  content: "\E92D"; }

.ps-stack:before {
  content: "\E92E"; }

.ps-folder:before {
  content: "\E92F"; }

.ps-folder-open:before {
  content: "\E930"; }

.ps-folder-plus:before {
  content: "\E931"; }

.ps-folder-minus:before {
  content: "\E932"; }

.ps-folder-download:before {
  content: "\E933"; }

.ps-folder-upload:before {
  content: "\E934"; }

.ps-price-tag:before {
  content: "\E935"; }

.ps-price-tags:before {
  content: "\E936"; }

.ps-barcode:before {
  content: "\E937"; }

.ps-qrcode:before {
  content: "\E938"; }

.ps-ticket:before {
  content: "\E939"; }

.ps-cart:before {
  content: "\E93A"; }

.ps-coin-dollar:before {
  content: "\E93B"; }

.ps-coin-euro:before {
  content: "\E93C"; }

.ps-coin-pound:before {
  content: "\E93D"; }

.ps-coin-yen:before {
  content: "\E93E"; }

.ps-credit-card:before {
  content: "\E93F"; }

.ps-calculator:before {
  content: "\E940"; }

.ps-lifebuoy:before {
  content: "\E941"; }

.ps-phone:before {
  content: "\E942"; }

.ps-phone-hang-up:before {
  content: "\E943"; }

.ps-address-book:before {
  content: "\E944"; }

.ps-envelop:before {
  content: "\E945"; }

.ps-pushpin:before {
  content: "\E946"; }

.ps-location:before {
  content: "\E947"; }

.ps-location2:before {
  content: "\E948"; }

.ps-compass:before {
  content: "\E949"; }

.ps-compass2:before {
  content: "\E94A"; }

.ps-map:before {
  content: "\E94B"; }

.ps-map2:before {
  content: "\E94C"; }

.ps-history:before {
  content: "\E94D"; }

.ps-clock:before {
  content: "\E94E"; }

.ps-clock2:before {
  content: "\E94F"; }

.ps-alarm:before {
  content: "\E950"; }

.ps-bell:before {
  content: "\E951"; }

.ps-stopwatch:before {
  content: "\E952"; }

.ps-calendar:before {
  content: "\E953"; }

.ps-printer:before {
  content: "\E954"; }

.ps-keyboard:before {
  content: "\E955"; }

.ps-display:before {
  content: "\E956"; }

.ps-laptop:before {
  content: "\E957"; }

.ps-mobile:before {
  content: "\E958"; }

.ps-mobile2:before {
  content: "\E959"; }

.ps-tablet:before {
  content: "\E95A"; }

.ps-tv:before {
  content: "\E95B"; }

.ps-drawer:before {
  content: "\E95C"; }

.ps-drawer2:before {
  content: "\E95D"; }

.ps-box-add:before {
  content: "\E95E"; }

.ps-box-remove:before {
  content: "\E95F"; }

.ps-download:before {
  content: "\E960"; }

.ps-upload:before {
  content: "\E961"; }

.ps-floppy-disk:before {
  content: "\E962"; }

.ps-drive:before {
  content: "\E963"; }

.ps-database:before {
  content: "\E964"; }

.ps-undo:before {
  content: "\E965"; }

.ps-redo:before {
  content: "\E966"; }

.ps-undo2:before {
  content: "\E967"; }

.ps-redo2:before {
  content: "\E968"; }

.ps-forward:before {
  content: "\E969"; }

.ps-reply:before {
  content: "\E96A"; }

.ps-bubble:before {
  content: "\E96B"; }

.ps-bubbles:before {
  content: "\E96C"; }

.ps-bubbles2:before {
  content: "\E96D"; }

.ps-bubble2:before {
  content: "\E96E"; }

.ps-bubbles3:before {
  content: "\E96F"; }

.ps-bubbles4:before {
  content: "\E970"; }

.ps-user:before {
  content: "\E971"; }

.ps-users:before {
  content: "\E972"; }

.ps-user-plus:before {
  content: "\E973"; }

.ps-user-minus:before {
  content: "\E974"; }

.ps-user-check:before {
  content: "\E975"; }

.ps-user-tie:before {
  content: "\E976"; }

.ps-quotes-left:before {
  content: "\E977"; }

.ps-quotes-right:before {
  content: "\E978"; }

.ps-hour-glass:before {
  content: "\E979"; }

.ps-spinner:before {
  content: "\E97A"; }

.ps-spinner2:before {
  content: "\E97B"; }

.ps-spinner3:before {
  content: "\E97C"; }

.ps-spinner4:before {
  content: "\E97D"; }

.ps-spinner5:before {
  content: "\E97E"; }

.ps-spinner6:before {
  content: "\E97F"; }

.ps-spinner7:before {
  content: "\E980"; }

.ps-spinner8:before {
  content: "\E981"; }

.ps-spinner9:before {
  content: "\E982"; }

.ps-spinner10:before {
  content: "\E983"; }

.ps-spinner11:before {
  content: "\E984"; }

.ps-binoculars:before {
  content: "\E985"; }

.ps-search:before {
  content: "\E986"; }

.ps-zoom-in:before {
  content: "\E987"; }

.ps-zoom-out:before {
  content: "\E988"; }

.ps-enlarge:before {
  content: "\E989"; }

.ps-shrink:before {
  content: "\E98A"; }

.ps-enlarge2:before {
  content: "\E98B"; }

.ps-shrink2:before {
  content: "\E98C"; }

.ps-key:before {
  content: "\E98D"; }

.ps-key2:before {
  content: "\E98E"; }

.ps-lock:before {
  content: "\E98F"; }

.ps-unlocked:before {
  content: "\E990"; }

.ps-wrench:before {
  content: "\E991"; }

.ps-equalizer:before {
  content: "\E992"; }

.ps-equalizer2:before {
  content: "\E993"; }

.ps-cog:before {
  content: "\E994"; }

.ps-cogs:before {
  content: "\E995"; }

.ps-hammer:before {
  content: "\E996"; }

.ps-magic-wand:before {
  content: "\E997"; }

.ps-aid-kit:before {
  content: "\E998"; }

.ps-bug:before {
  content: "\E999"; }

.ps-pie-chart:before {
  content: "\E99A"; }

.ps-stats-dots:before {
  content: "\E99B"; }

.ps-stats-bars:before {
  content: "\E99C"; }

.ps-stats-bars2:before {
  content: "\E99D"; }

.ps-trophy:before {
  content: "\E99E"; }

.ps-gift:before {
  content: "\E99F"; }

.ps-glass:before {
  content: "\E9A0"; }

.ps-glass2:before {
  content: "\E9A1"; }

.ps-mug:before {
  content: "\E9A2"; }

.ps-spoon-knife:before {
  content: "\E9A3"; }

.ps-leaf:before {
  content: "\E9A4"; }

.ps-rocket:before {
  content: "\E9A5"; }

.ps-meter:before {
  content: "\E9A6"; }

.ps-meter2:before {
  content: "\E9A7"; }

.ps-hammer2:before {
  content: "\E9A8"; }

.ps-fire:before {
  content: "\E9A9"; }

.ps-lab:before {
  content: "\E9AA"; }

.ps-magnet:before {
  content: "\E9AB"; }

.ps-bin:before {
  content: "\E9AC"; }

.ps-bin2:before {
  content: "\E9AD"; }

.ps-briefcase:before {
  content: "\E9AE"; }

.ps-airplane:before {
  content: "\E9AF"; }

.ps-truck:before {
  content: "\E9B0"; }

.ps-road:before {
  content: "\E9B1"; }

.ps-accessibility:before {
  content: "\E9B2"; }

.ps-target:before {
  content: "\E9B3"; }

.ps-shield:before {
  content: "\E9B4"; }

.ps-power:before {
  content: "\E9B5"; }

.ps-switch:before {
  content: "\E9B6"; }

.ps-power-cord:before {
  content: "\E9B7"; }

.ps-clipboard:before {
  content: "\E9B8"; }

.ps-list-numbered:before {
  content: "\E9B9"; }

.ps-list:before {
  content: "\E9BA"; }

.ps-list2:before {
  content: "\E9BB"; }

.ps-tree:before {
  content: "\E9BC"; }

.ps-menu:before {
  content: "\E9BD"; }

.ps-menu2:before {
  content: "\E9BE"; }

.ps-menu3:before {
  content: "\E9BF"; }

.ps-menu4:before {
  content: "\E9C0"; }

.ps-cloud:before {
  content: "\E9C1"; }

.ps-cloud-download:before {
  content: "\E9C2"; }

.ps-cloud-upload:before {
  content: "\E9C3"; }

.ps-cloud-check:before {
  content: "\E9C4"; }

.ps-download2:before {
  content: "\E9C5"; }

.ps-upload2:before {
  content: "\E9C6"; }

.ps-download3:before {
  content: "\E9C7"; }

.ps-upload3:before {
  content: "\E9C8"; }

.ps-sphere:before {
  content: "\E9C9"; }

.ps-earth:before {
  content: "\E9CA"; }

.ps-link:before {
  content: "\E9CB"; }

.ps-flag:before {
  content: "\E9CC"; }

.ps-attachment:before {
  content: "\E9CD"; }

.ps-eye:before {
  content: "\E9CE"; }

.ps-eye-plus:before {
  content: "\E9CF"; }

.ps-eye-minus:before {
  content: "\E9D0"; }

.ps-eye-blocked:before {
  content: "\E9D1"; }

.ps-bookmark:before {
  content: "\E9D2"; }

.ps-bookmarks:before {
  content: "\E9D3"; }

.ps-sun:before {
  content: "\E9D4"; }

.ps-contrast:before {
  content: "\E9D5"; }

.ps-brightness-contrast:before {
  content: "\E9D6"; }

.ps-star-empty:before {
  content: "\E9D7"; }

.ps-star-half:before {
  content: "\E9D8"; }

.ps-star-full:before {
  content: "\E9D9"; }

.ps-heart:before {
  content: "\E9DA"; }

.ps-heart-broken:before {
  content: "\E9DB"; }

.ps-man:before {
  content: "\E9DC"; }

.ps-woman:before {
  content: "\E9DD"; }

.ps-man-woman:before {
  content: "\E9DE"; }

.ps-happy:before {
  content: "\E9DF"; }

.ps-happy2:before {
  content: "\E9E0"; }

.ps-smile:before {
  content: "\E9E1"; }

.ps-smile2:before {
  content: "\E9E2"; }

.ps-tongue:before {
  content: "\E9E3"; }

.ps-tongue2:before {
  content: "\E9E4"; }

.ps-sad:before {
  content: "\E9E5"; }

.ps-sad2:before {
  content: "\E9E6"; }

.ps-wink:before {
  content: "\E9E7"; }

.ps-wink2:before {
  content: "\E9E8"; }

.ps-grin:before {
  content: "\E9E9"; }

.ps-grin2:before {
  content: "\E9EA"; }

.ps-cool:before {
  content: "\E9EB"; }

.ps-cool2:before {
  content: "\E9EC"; }

.ps-angry:before {
  content: "\E9ED"; }

.ps-angry2:before {
  content: "\E9EE"; }

.ps-evil:before {
  content: "\E9EF"; }

.ps-evil2:before {
  content: "\E9F0"; }

.ps-shocked:before {
  content: "\E9F1"; }

.ps-shocked2:before {
  content: "\E9F2"; }

.ps-baffled:before {
  content: "\E9F3"; }

.ps-baffled2:before {
  content: "\E9F4"; }

.ps-confused:before {
  content: "\E9F5"; }

.ps-confused2:before {
  content: "\E9F6"; }

.ps-neutral:before {
  content: "\E9F7"; }

.ps-neutral2:before {
  content: "\E9F8"; }

.ps-hipster:before {
  content: "\E9F9"; }

.ps-hipster2:before {
  content: "\E9FA"; }

.ps-wondering:before {
  content: "\E9FB"; }

.ps-wondering2:before {
  content: "\E9FC"; }

.ps-sleepy:before {
  content: "\E9FD"; }

.ps-sleepy2:before {
  content: "\E9FE"; }

.ps-frustrated:before {
  content: "\E9FF"; }

.ps-frustrated2:before {
  content: "\EA00"; }

.ps-crying:before {
  content: "\EA01"; }

.ps-crying2:before {
  content: "\EA02"; }

.ps-point-up:before {
  content: "\EA03"; }

.ps-point-right:before {
  content: "\EA04"; }

.ps-point-down:before {
  content: "\EA05"; }

.ps-point-left:before {
  content: "\EA06"; }

.ps-warning:before {
  content: "\EA07"; }

.ps-notification:before {
  content: "\EA08"; }

.ps-question:before {
  content: "\EA09"; }

.ps-plus:before {
  content: "\EA0A"; }

.ps-minus:before {
  content: "\EA0B"; }

.ps-info:before {
  content: "\EA0C"; }

.ps-cancel-circle:before {
  content: "\EA0D"; }

.ps-blocked:before {
  content: "\EA0E"; }

.ps-cross:before {
  content: "\EA0F"; }

.ps-checkmark:before {
  content: "\EA10"; }

.ps-checkmark2:before {
  content: "\EA11"; }

.ps-spell-check:before {
  content: "\EA12"; }

.ps-enter:before {
  content: "\EA13"; }

.ps-exit:before {
  content: "\EA14"; }

.ps-play2:before {
  content: "\EA15"; }

.ps-pause:before {
  content: "\EA16"; }

.ps-stop:before {
  content: "\EA17"; }

.ps-previous:before {
  content: "\EA18"; }

.ps-next:before {
  content: "\EA19"; }

.ps-backward:before {
  content: "\EA1A"; }

.ps-forward2:before {
  content: "\EA1B"; }

.ps-play3:before {
  content: "\EA1C"; }

.ps-pause2:before {
  content: "\EA1D"; }

.ps-stop2:before {
  content: "\EA1E"; }

.ps-backward2:before {
  content: "\EA1F"; }

.ps-forward3:before {
  content: "\EA20"; }

.ps-first:before {
  content: "\EA21"; }

.ps-last:before {
  content: "\EA22"; }

.ps-previous2:before {
  content: "\EA23"; }

.ps-next2:before {
  content: "\EA24"; }

.ps-eject:before {
  content: "\EA25"; }

.ps-volume-high:before {
  content: "\EA26"; }

.ps-volume-medium:before {
  content: "\EA27"; }

.ps-volume-low:before {
  content: "\EA28"; }

.ps-volume-mute:before {
  content: "\EA29"; }

.ps-volume-mute2:before {
  content: "\EA2A"; }

.ps-volume-increase:before {
  content: "\EA2B"; }

.ps-volume-decrease:before {
  content: "\EA2C"; }

.ps-loop:before {
  content: "\EA2D"; }

.ps-loop2:before {
  content: "\EA2E"; }

.ps-infinite:before {
  content: "\EA2F"; }

.ps-shuffle:before {
  content: "\EA30"; }

.ps-arrow-up-left:before {
  content: "\EA31"; }

.ps-arrow-up:before {
  content: "\EA32"; }

.ps-arrow-up-right:before {
  content: "\EA33"; }

.ps-arrow-right:before {
  content: "\EA34"; }

.ps-arrow-down-right:before {
  content: "\EA35"; }

.ps-arrow-down:before {
  content: "\EA36"; }

.ps-arrow-down-left:before {
  content: "\EA37"; }

.ps-arrow-left:before {
  content: "\EA38"; }

.ps-arrow-up-left2:before {
  content: "\EA39"; }

.ps-arrow-up2:before {
  content: "\EA3A"; }

.ps-arrow-up-right2:before {
  content: "\EA3B"; }

.ps-arrow-right2:before {
  content: "\EA3C"; }

.ps-arrow-down-right2:before {
  content: "\EA3D"; }

.ps-arrow-down2:before {
  content: "\EA3E"; }

.ps-arrow-down-left2:before {
  content: "\EA3F"; }

.ps-arrow-left2:before {
  content: "\EA40"; }

.ps-circle-up:before {
  content: "\EA41"; }

.ps-circle-right:before {
  content: "\EA42"; }

.ps-circle-down:before {
  content: "\EA43"; }

.ps-circle-left:before {
  content: "\EA44"; }

.ps-tab:before {
  content: "\EA45"; }

.ps-move-up:before {
  content: "\EA46"; }

.ps-move-down:before {
  content: "\EA47"; }

.ps-sort-alpha-asc:before {
  content: "\EA48"; }

.ps-sort-alpha-desc:before {
  content: "\EA49"; }

.ps-sort-numeric-asc:before {
  content: "\EA4A"; }

.ps-sort-numberic-desc:before {
  content: "\EA4B"; }

.ps-sort-amount-asc:before {
  content: "\EA4C"; }

.ps-sort-amount-desc:before {
  content: "\EA4D"; }

.ps-command:before {
  content: "\EA4E"; }

.ps-shift:before {
  content: "\EA4F"; }

.ps-ctrl:before {
  content: "\EA50"; }

.ps-opt:before {
  content: "\EA51"; }

.ps-checkbox-checked:before {
  content: "\EA52"; }

.ps-checkbox-unchecked:before {
  content: "\EA53"; }

.ps-radio-checked:before {
  content: "\EA54"; }

.ps-radio-checked2:before {
  content: "\EA55"; }

.ps-radio-unchecked:before {
  content: "\EA56"; }

.ps-crop:before {
  content: "\EA57"; }

.ps-make-group:before {
  content: "\EA58"; }

.ps-ungroup:before {
  content: "\EA59"; }

.ps-scissors:before {
  content: "\EA5A"; }

.ps-filter:before {
  content: "\EA5B"; }

.ps-font:before {
  content: "\EA5C"; }

.ps-ligature:before {
  content: "\EA5D"; }

.ps-ligature2:before {
  content: "\EA5E"; }

.ps-text-height:before {
  content: "\EA5F"; }

.ps-text-width:before {
  content: "\EA60"; }

.ps-font-size:before {
  content: "\EA61"; }

.ps-bold:before {
  content: "\EA62"; }

.ps-underline:before {
  content: "\EA63"; }

.ps-italic:before {
  content: "\EA64"; }

.ps-strikethrough:before {
  content: "\EA65"; }

.ps-omega:before {
  content: "\EA66"; }

.ps-sigma:before {
  content: "\EA67"; }

.ps-page-break:before {
  content: "\EA68"; }

.ps-superscript:before {
  content: "\EA69"; }

.ps-subscript:before {
  content: "\EA6A"; }

.ps-superscript2:before {
  content: "\EA6B"; }

.ps-subscript2:before {
  content: "\EA6C"; }

.ps-text-color:before {
  content: "\EA6D"; }

.ps-pagebreak:before {
  content: "\EA6E"; }

.ps-clear-formatting:before {
  content: "\EA6F"; }

.ps-table:before {
  content: "\EA70"; }

.ps-table2:before {
  content: "\EA71"; }

.ps-insert-template:before {
  content: "\EA72"; }

.ps-pilcrow:before {
  content: "\EA73"; }

.ps-ltr:before {
  content: "\EA74"; }

.ps-rtl:before {
  content: "\EA75"; }

.ps-section:before {
  content: "\EA76"; }

.ps-paragraph-left:before {
  content: "\EA77"; }

.ps-paragraph-center:before {
  content: "\EA78"; }

.ps-paragraph-right:before {
  content: "\EA79"; }

.ps-paragraph-justify:before {
  content: "\EA7A"; }

.ps-indent-increase:before {
  content: "\EA7B"; }

.ps-indent-decrease:before {
  content: "\EA7C"; }

.ps-share:before {
  content: "\EA7D"; }

.ps-new-tab:before {
  content: "\EA7E"; }

.ps-embed:before {
  content: "\EA7F"; }

.ps-embed2:before {
  content: "\EA80"; }

.ps-terminal:before {
  content: "\EA81"; }

.ps-share2:before {
  content: "\EA82"; }

.ps-mail:before {
  content: "\EA83"; }

.ps-mail2:before {
  content: "\EA84"; }

.ps-mail3:before {
  content: "\EA85"; }

.ps-mail4:before {
  content: "\EA86"; }

.ps-amazon:before {
  content: "\EA87"; }

.ps-google:before {
  content: "\EA88"; }

.ps-google2:before {
  content: "\EA89"; }

.ps-google3:before {
  content: "\EA8A"; }

.ps-google-plus:before {
  content: "\EA8B"; }

.ps-google-plus2:before {
  content: "\EA8C"; }

.ps-google-plus3:before {
  content: "\EA8D"; }

.ps-hangouts:before {
  content: "\EA8E"; }

.ps-google-drive:before {
  content: "\EA8F"; }

.ps-facebook:before {
  content: "\EA90"; }

.ps-facebook2:before {
  content: "\EA91"; }

.ps-instagram:before {
  content: "\EA92"; }

.ps-whatsapp:before {
  content: "\EA93"; }

.ps-spotify:before {
  content: "\EA94"; }

.ps-telegram:before {
  content: "\EA95"; }

.ps-twitter:before {
  content: "\EA96"; }

.ps-vine:before {
  content: "\EA97"; }

.ps-vk:before {
  content: "\EA98"; }

.ps-renren:before {
  content: "\EA99"; }

.ps-sina-weibo:before {
  content: "\EA9A"; }

.ps-rss:before {
  content: "\EA9B"; }

.ps-rss2:before {
  content: "\EA9C"; }

.ps-youtube:before {
  content: "\EA9D"; }

.ps-youtube2:before {
  content: "\EA9E"; }

.ps-twitch:before {
  content: "\EA9F"; }

.ps-vimeo:before {
  content: "\EAA0"; }

.ps-vimeo2:before {
  content: "\EAA1"; }

.ps-lanyrd:before {
  content: "\EAA2"; }

.ps-flickr:before {
  content: "\EAA3"; }

.ps-flickr2:before {
  content: "\EAA4"; }

.ps-flickr3:before {
  content: "\EAA5"; }

.ps-flickr4:before {
  content: "\EAA6"; }

.ps-dribbble:before {
  content: "\EAA7"; }

.ps-behance:before {
  content: "\EAA8"; }

.ps-behance2:before {
  content: "\EAA9"; }

.ps-deviantart:before {
  content: "\EAAA"; }

.ps-500px:before {
  content: "\EAAB"; }

.ps-steam:before {
  content: "\EAAC"; }

.ps-steam2:before {
  content: "\EAAD"; }

.ps-dropbox:before {
  content: "\EAAE"; }

.ps-onedrive:before {
  content: "\EAAF"; }

.ps-github:before {
  content: "\EAB0"; }

.ps-npm:before {
  content: "\EAB1"; }

.ps-basecamp:before {
  content: "\EAB2"; }

.ps-trello:before {
  content: "\EAB3"; }

.ps-wordpress:before {
  content: "\EAB4"; }

.ps-joomla:before {
  content: "\EAB5"; }

.ps-ello:before {
  content: "\EAB6"; }

.ps-blogger:before {
  content: "\EAB7"; }

.ps-blogger2:before {
  content: "\EAB8"; }

.ps-tumblr:before {
  content: "\EAB9"; }

.ps-tumblr2:before {
  content: "\EABA"; }

.ps-yahoo:before {
  content: "\EABB"; }

.ps-yahoo2:before {
  content: "\EABC"; }

.ps-tux:before {
  content: "\EABD"; }

.ps-appleinc:before {
  content: "\EABE"; }

.ps-finder:before {
  content: "\EABF"; }

.ps-android:before {
  content: "\EAC0"; }

.ps-windows:before {
  content: "\EAC1"; }

.ps-windows8:before {
  content: "\EAC2"; }

.ps-soundcloud:before {
  content: "\EAC3"; }

.ps-soundcloud2:before {
  content: "\EAC4"; }

.ps-skype:before {
  content: "\EAC5"; }

.ps-reddit:before {
  content: "\EAC6"; }

.ps-hackernews:before {
  content: "\EAC7"; }

.ps-wikipedia:before {
  content: "\EAC8"; }

.ps-linkedin:before {
  content: "\EAC9"; }

.ps-linkedin2:before {
  content: "\EACA"; }

.ps-lastfm:before {
  content: "\EACB"; }

.ps-lastfm2:before {
  content: "\EACC"; }

.ps-delicious:before {
  content: "\EACD"; }

.ps-stumbleupon:before {
  content: "\EACE"; }

.ps-stumbleupon2:before {
  content: "\EACF"; }

.ps-stackoverflow:before {
  content: "\EAD0"; }

.ps-pinterest:before {
  content: "\EAD1"; }

.ps-pinterest2:before {
  content: "\EAD2"; }

.ps-xing:before {
  content: "\EAD3"; }

.ps-xing2:before {
  content: "\EAD4"; }

.ps-flattr:before {
  content: "\EAD5"; }

.ps-foursquare:before {
  content: "\EAD6"; }

.ps-yelp:before {
  content: "\EAD7"; }

.ps-paypal:before {
  content: "\EAD8"; }

.ps-chrome:before {
  content: "\EAD9"; }

.ps-firefox:before {
  content: "\EADA"; }

.ps-IE:before {
  content: "\EADB"; }

.ps-edge:before {
  content: "\EADC"; }

.ps-safari:before {
  content: "\EADD"; }

.ps-opera:before {
  content: "\EADE"; }

.ps-file-pdf:before {
  content: "\EADF"; }

.ps-file-openoffice:before {
  content: "\EAE0"; }

.ps-file-word:before {
  content: "\EAE1"; }

.ps-file-excel:before {
  content: "\EAE2"; }

.ps-libreoffice:before {
  content: "\EAE3"; }

.ps-html-five:before {
  content: "\EAE4"; }

.ps-html-five2:before {
  content: "\EAE5"; }

.ps-css3:before {
  content: "\EAE6"; }

.ps-git:before {
  content: "\EAE7"; }

.ps-codepen:before {
  content: "\EAE8"; }

.ps-svg:before {
  content: "\EAE9"; }

.ps-IcoMoon:before {
  content: "\EAEA"; }

@font-face {
  font-family: 'icomoon';
  src: url(fonts/icomoon.eot);
  src: url(fonts/icomoon.eot#iefix) format("embedded-opentype"), url(fonts/icomoon.ttf) format("truetype"), url(fonts/icomoon.woff) format("woff"), url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciLz4=#icomoon) format("svg");
  font-weight: normal;
  font-style: normal; }

[class*="ps ps-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.ps-Group:before {
  content: "\E909"; }

.ps-received:before {
  content: "\E915"; }

.ps-sent:before {
  content: "\E916"; }

.ps-Administration:before {
  content: "\E900"; }

.ps-Archiveicon:before {
  content: "\E901"; }

.ps-Assignments:before {
  content: "\E902"; }

.ps-call:before {
  content: "\E903"; }

.ps-Contact:before {
  content: "\E904"; }

.ps-Conversation:before {
  content: "\E905"; }

.ps-Delete-icon:before {
  content: "\E906"; }

.ps-favorites:before {
  content: "\E907"; }

.ps-Group-call:before {
  content: "\E908"; }

.ps-HSO:before {
  content: "\E90A"; }

.ps-KEYPAD:before {
  content: "\E90B"; }

.ps-MONTH:before {
  content: "\E90C"; }

.ps-office-building:before {
  content: "\E90D"; }

.ps-Patient-Icon:before {
  content: "\E90E"; }

.ps-PSO:before {
  content: "\E90F"; }

.ps-recent:before {
  content: "\E910"; }

.ps-Settings:before {
  content: "\E911"; }

.ps-toggle:before {
  content: "\E912"; }

.ps-User:before {
  content: "\E913"; }

.ps-Week:before {
  content: "\E914"; }

.ps-tracking {
  width: 26px;
  height: 26px;
  color: red;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNTAiIHZpZXdCb3g9IjAgMCA0MCA1MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0wIDVhNSA1IDAgMCAxIDUuMDA1LTVoMjkuOTlBNS4wMDcgNS4wMDcgMCAwIDEgNDAgNXY0MGE1IDUgMCAwIDEtNS4wMDUgNUg1LjAwNUE1LjAwNyA1LjAwNyAwIDAgMSAwIDQ1VjV6bTYgMmgyOHYySDZWN3ptMCA2aDI4djJINnYtMnptMCA2aDI4djJINnYtMnptMCA2aDI4djJINnYtMnoiIGZpbGw9IiM5MjhBODEiLz48cGF0aCBkPSJNMjYuMDIgMzUuNTFhNi45MjMgNi45MjMgMCAwIDAtMi41My0yLjUzIDYuOCA2LjggMCAwIDAtMy40OS0uOTMyIDYuOCA2LjggMCAwIDAtMy40OS45MzIgNi45MiA2LjkyIDAgMCAwLTIuNTMgMi41MyA2LjggNi44IDAgMCAwLS45MzIgMy40OSA2LjggNi44IDAgMCAwIC45MzIgMy40OSA2LjkyMyA2LjkyMyAwIDAgMCAyLjUzIDIuNTMgNi44IDYuOCAwIDAgMCAzLjQ5LjkzMiA2LjggNi44IDAgMCAwIDMuNDktLjkzMiA2LjkyMiA2LjkyMiAwIDAgMCAyLjUzLTIuNTMgNi44MDIgNi44MDIgMCAwIDAgLjkzMi0zLjQ5YzAtMS4yNjEtLjMxLTIuNDI1LS45MzItMy40OXptLTEuNzU2IDUuOTYxYTQuOTEgNC45MSAwIDAgMS0xLjc5MyAxLjc5M2MtLjc1NC40NC0xLjU3OC42Ni0yLjQ3MS42NnMtMS43MTctLjIyLTIuNDcxLS42NmE0LjkxIDQuOTEgMCAwIDEtMS43OTMtMS43OTMgNC44MTIgNC44MTIgMCAwIDEtLjY2LTIuNDcxYzAtLjg5My4yMi0xLjcxNy42Ni0yLjQ3MWE0LjkwOSA0LjkwOSAwIDAgMSAxLjc5My0xLjc5MyA0LjgxMyA0LjgxMyAwIDAgMSAyLjQ3MS0uNjZjLjg5MyAwIDEuNzE3LjIyIDIuNDcxLjY2YTQuOTEgNC45MSAwIDAgMSAxLjc5MyAxLjc5M2MuNDQuNzU0LjY2IDEuNTc4LjY2IDIuNDcxcy0uMjIgMS43MTctLjY2IDIuNDcxeiIgZmlsbD0iI0ZGRiIvPjxwYXRoIGQ9Ik0yMi43MjUgMzYuNTFhLjU1Ny41NTcgMCAwIDAtLjQwOC0uMTcxLjU1Ny41NTcgMCAwIDAtLjQwNy4xNzJMMTkuNDIgMzlsLTEuMzMtMS4zM2EuNTU3LjU1NyAwIDAgMC0uNDA3LS4xNzMuNTU3LjU1NyAwIDAgMC0uNDA4LjE3MmwtLjkyMy45MjRhLjU1Ny41NTcgMCAwIDAtLjE3Mi40MDdjMCAuMTU3LjA1Ny4yOTMuMTcyLjQwN2wyLjY2MSAyLjY2MmEuNTYuNTYgMCAwIDAgLjQwOC4xNzIuNTU3LjU1NyAwIDAgMCAuNDA3LS4xNzJsMy44Mi0zLjgyYS41NTYuNTU2IDAgMCAwIC4xNzItLjQwOC41NTcuNTU3IDAgMCAwLS4xNzItLjQwN2wtLjkyMy0uOTIzeiIgZmlsbD0iI0ZGRiIvPjwvZz48L3N2Zz4=) no-repeat center center;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNTAiIHZpZXdCb3g9IjAgMCA0MCA1MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0wIDVhNSA1IDAgMCAxIDUuMDA1LTVoMjkuOTlBNS4wMDcgNS4wMDcgMCAwIDEgNDAgNXY0MGE1IDUgMCAwIDEtNS4wMDUgNUg1LjAwNUE1LjAwNyA1LjAwNyAwIDAgMSAwIDQ1VjV6bTYgMmgyOHYySDZWN3ptMCA2aDI4djJINnYtMnptMCA2aDI4djJINnYtMnptMCA2aDI4djJINnYtMnoiIGZpbGw9IiM5MjhBODEiLz48cGF0aCBkPSJNMjYuMDIgMzUuNTFhNi45MjMgNi45MjMgMCAwIDAtMi41My0yLjUzIDYuOCA2LjggMCAwIDAtMy40OS0uOTMyIDYuOCA2LjggMCAwIDAtMy40OS45MzIgNi45MiA2LjkyIDAgMCAwLTIuNTMgMi41MyA2LjggNi44IDAgMCAwLS45MzIgMy40OSA2LjggNi44IDAgMCAwIC45MzIgMy40OSA2LjkyMyA2LjkyMyAwIDAgMCAyLjUzIDIuNTMgNi44IDYuOCAwIDAgMCAzLjQ5LjkzMiA2LjggNi44IDAgMCAwIDMuNDktLjkzMiA2LjkyMiA2LjkyMiAwIDAgMCAyLjUzLTIuNTMgNi44MDIgNi44MDIgMCAwIDAgLjkzMi0zLjQ5YzAtMS4yNjEtLjMxLTIuNDI1LS45MzItMy40OXptLTEuNzU2IDUuOTYxYTQuOTEgNC45MSAwIDAgMS0xLjc5MyAxLjc5M2MtLjc1NC40NC0xLjU3OC42Ni0yLjQ3MS42NnMtMS43MTctLjIyLTIuNDcxLS42NmE0LjkxIDQuOTEgMCAwIDEtMS43OTMtMS43OTMgNC44MTIgNC44MTIgMCAwIDEtLjY2LTIuNDcxYzAtLjg5My4yMi0xLjcxNy42Ni0yLjQ3MWE0LjkwOSA0LjkwOSAwIDAgMSAxLjc5My0xLjc5MyA0LjgxMyA0LjgxMyAwIDAgMSAyLjQ3MS0uNjZjLjg5MyAwIDEuNzE3LjIyIDIuNDcxLjY2YTQuOTEgNC45MSAwIDAgMSAxLjc5MyAxLjc5M2MuNDQuNzU0LjY2IDEuNTc4LjY2IDIuNDcxcy0uMjIgMS43MTctLjY2IDIuNDcxeiIgZmlsbD0iI0ZGRiIvPjxwYXRoIGQ9Ik0yMi43MjUgMzYuNTFhLjU1Ny41NTcgMCAwIDAtLjQwOC0uMTcxLjU1Ny41NTcgMCAwIDAtLjQwNy4xNzJMMTkuNDIgMzlsLTEuMzMtMS4zM2EuNTU3LjU1NyAwIDAgMC0uNDA3LS4xNzMuNTU3LjU1NyAwIDAgMC0uNDA4LjE3MmwtLjkyMy45MjRhLjU1Ny41NTcgMCAwIDAtLjE3Mi40MDdjMCAuMTU3LjA1Ny4yOTMuMTcyLjQwN2wyLjY2MSAyLjY2MmEuNTYuNTYgMCAwIDAgLjQwOC4xNzIuNTU3LjU1NyAwIDAgMCAuNDA3LS4xNzJsMy44Mi0zLjgyYS41NTYuNTU2IDAgMCAwIC4xNzItLjQwOC41NTcuNTU3IDAgMCAwLS4xNzItLjQwN2wtLjkyMy0uOTIzeiIgZmlsbD0iI0ZGRiIvPjwvZz48L3N2Zz4=) no-repeat center center;
  background-size: contain; }

.ps {
  display: inline-block;
  font: normal normal normal 14px/1 perfect-serve;
  speak: none;
  font-size: inherit;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.bg-primary {
  background-color: #364b94; }

a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #28386f; }

.bg-success {
  background-color: #0ed957; }

a.bg-success:hover,
a.bg-success:focus {
  background-color: #0ba944; }

.bg-info {
  background-color: #0475b8; }

a.bg-info:hover,
a.bg-info:focus {
  background-color: #035586; }

.bg-warning {
  background-color: #e8671a; }

a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #bc5213; }

.bg-danger {
  background-color: #ed1b2d; }

a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #c5101f; }

.bg-gray {
  background-color: #3c464a; }

a.bg-gray:hover,
a.bg-gray:focus {
  background-color: #252b2e; }

.bg-primary-accent {
  background-color: #556dc1; }

a.bg-primary-accent:hover,
a.bg-primary-accent:focus {
  background-color: #3d54a7; }

.bg-success-accent {
  background-color: #00ab69; }

a.bg-success-accent:hover,
a.bg-success-accent:focus {
  background-color: #00784a; }

.bg-info-accent {
  background-color: #3b53a3; }

a.bg-info-accent:hover,
a.bg-info-accent:focus {
  background-color: #2d407e; }

.bg-warning-accent {
  background-color: #f29c20; }

a.bg-warning-accent:hover,
a.bg-warning-accent:focus {
  background-color: #d3810c; }

.bg-danger-accent {
  background-color: #ae0e1b; }

a.bg-danger-accent:hover,
a.bg-danger-accent:focus {
  background-color: #7f0a14; }

.bg-gray-accent {
  background-color: #252729; }

a.bg-gray-accent:hover,
a.bg-gray-accent:focus {
  background-color: #0d0e0e; }

.bg-gray-base {
  background-color: #c8c8c8; }

a.bg-gray-base:hover,
a.bg-gray-base:focus {
  background-color: #afafaf; }

.bg-gray-base {
  background-color: #efefef; }

a.bg-gray-base:hover,
a.bg-gray-base:focus {
  background-color: #d6d6d6; }

.bg-gray-darker {
  background-color: #888888; }

a.bg-gray-darker:hover,
a.bg-gray-darker:focus {
  background-color: #6f6f6f; }

.bg-gray-dark {
  background-color: darkgray; }

a.bg-gray-dark:hover,
a.bg-gray-dark:focus {
  background-color: #909090; }

.bg-gray-light {
  background-color: gainsboro; }

a.bg-gray-light:hover,
a.bg-gray-light:focus {
  background-color: #c3c3c3; }

.bg-gray-lighter, .grid-list .list-header {
  background-color: #eeeeee; }

a.bg-gray-lighter:hover, .grid-list a.list-header:hover,
a.bg-gray-lighter:focus,
.grid-list a.list-header:focus {
  background-color: #d5d5d5; }

.bg-gray-lightest {
  background-color: #fbfbfb; }

a.bg-gray-lightest:hover,
a.bg-gray-lightest:focus {
  background-color: #e2e2e2; }

div.bg-gray, p.bg-gray {
  color: white; }

div[class^='bg-'], div[class*=' bg-'],
p[class^='bg-'], p[class*=' bg-'] {
  color: white; }

span.fa, span.ps, span.glyphicon {
  margin-right: 10px; }

.fa.active {
  color: #0ed957; }

.fa.favorite-icon {
  font-size: 1.4em; }

.font-primary {
  color: #364b94; }

.font-success {
  color: #0ed957; }

.font-info {
  color: #0475b8; }

.font-warning {
  color: #e8671a; }

.font-danger {
  color: #ed1b2d; }

.font-gray {
  color: #3c464a; }

.font-primary-accent {
  color: #556dc1; }

.font-success-accent {
  color: #00ab69; }

.font-info-accent {
  color: #3b53a3; }

.font-warning-accent {
  color: #f29c20; }

.font-danger-accent {
  color: #ae0e1b; }

.font-gray-accent {
  color: #252729; }

.font-gray-base {
  color: #c8c8c8; }

.font-gray-base {
  color: #efefef; }

.font-gray-darker {
  color: #888888; }

.font-gray-dark {
  color: darkgray; }

.font-gray-light {
  color: gainsboro; }

.font-gray-lighter {
  color: #eeeeee; }

.font-gray-lightest {
  color: #fbfbfb; }

.gray-custom-font {
  color: #fbfbfb; }

.gray-custom-bacground {
  background-color: #fbfbfb; }

.gray-custom-border-bottom {
  border-bottom: 1px solid #fbfbfb; }

.badge {
  border-radius: 50%;
  font-size: 1.6rem;
  height: 30px;
  line-height: 30px;
  padding: 0;
  text-align: center;
  width: 30px; }
  .badge.primary {
    background: #364b94 !important;
    color: #fff !important; }
  .badge.success {
    background: #0ed957 !important;
    color: #fff !important; }
  .badge.warning {
    background: #e8671a !important;
    color: #fff !important; }
  .badge.danger {
    background: #ed1b2d !important;
    color: #fff !important; }

a, a:active, a:focus,
button, button:focus, button:active,
.btn, .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn.focus:active, .btn.active.focus {
  outline: none;
  outline: 0; }

textarea {
  resize: none;
  border-radius: 5px; }

.breadcrumb li a:link {
  color: #364b94; }

.breadcrumb li a:hover {
  color: #556dc1; }

nav .pagination {
  border-radius: 0px; }
  nav .pagination li a {
    border: none; }
    nav .pagination li a:hover {
      box-shadow: 0 -2px 0 #364b94 inset; }
    :last-child nav .pagination li a {
      border-radius: 0px; }
  nav .pagination li.disabled a {
    box-shadow: none; }

nav .pagination-count {
  display: inline-block;
  float: left;
  padding: 6px 12px;
  margin: 19px 0; }

h1 {
  margin-top: 0; }
  h1 small {
    font-weight: 300; }
  .inverse h1 {
    color: white; }

h2 {
  margin-top: 0; }
  h2 small {
    font-weight: 300; }
  .inverse h2 {
    color: white; }

h3 {
  margin-top: 0; }
  h3 small {
    font-weight: 300; }
  .inverse h3 {
    color: white; }

h4 {
  margin-top: 0; }
  h4 small {
    font-weight: 300; }
  .inverse h4 {
    color: white; }

h5 {
  margin-top: 0; }
  h5 small {
    font-weight: 300; }
  .inverse h5 {
    color: white; }

h6 {
  margin-top: 0; }
  h6 small {
    font-weight: 300; }
  .inverse h6 {
    color: white; }

h1 {
  color: #e8671a; }

h2 {
  color: #3c474b; }

h3 {
  color: #252729; }

.inverse p, .inverse li {
  color: #d9d9d9; }

.text-primary {
  color: #364b94; }

a.text-primary:hover,
a.text-primary:focus {
  color: #28386f; }

.text-success {
  color: #0ed957; }

a.text-success:hover,
a.text-success:focus {
  color: #0ba944; }

.text-info {
  color: #0475b8; }

a.text-info:hover,
a.text-info:focus {
  color: #035586; }

.text-warning {
  color: #e8671a; }

a.text-warning:hover,
a.text-warning:focus {
  color: #bc5213; }

.text-danger {
  color: #ed1b2d; }

a.text-danger:hover,
a.text-danger:focus {
  color: #c5101f; }

.text-gray {
  color: #3c474b; }

a.text-gray:hover,
a.text-gray:focus {
  color: #252c2f; }

.text-gray-base {
  color: #c8c8c8; }

a.text-gray-base:hover,
a.text-gray-base:focus {
  color: #afafaf; }

.text-gray-darker {
  color: #888888; }

a.text-gray-darker:hover,
a.text-gray-darker:focus {
  color: #6f6f6f; }

.text-gray-dark {
  color: darkgray; }

a.text-gray-dark:hover,
a.text-gray-dark:focus {
  color: #909090; }

.text-gray-light {
  color: gainsboro; }

a.text-gray-light:hover,
a.text-gray-light:focus {
  color: #c3c3c3; }

.text-gray-lighter {
  color: #eeeeee; }

a.text-gray-lighter:hover,
a.text-gray-lighter:focus {
  color: #d5d5d5; }

.text-gray-lightest {
  color: #fbfbfb; }

a.text-gray-lightest:hover,
a.text-gray-lightest:focus {
  color: #e2e2e2; }

.btn.outline.btn-default {
  color: #3c474b;
  background-color: transparent;
  border-color: #eeeeee; }
  .btn.outline.btn-default:focus, .btn.outline.btn-default.focus {
    color: #3c474b;
    background-color: transparent;
    border-color: #afafaf; }
  .btn.outline.btn-default:hover {
    color: #3c474b;
    background-color: transparent;
    border-color: #d0d0d0; }
  .btn.outline.btn-default:active, .btn.outline.btn-default.active,
  .open > .btn.outline.btn-default.dropdown-toggle {
    color: #3c474b;
    background-color: transparent;
    border-color: #d0d0d0; }
    .btn.outline.btn-default:active:hover, .btn.outline.btn-default:active:focus, .btn.outline.btn-default:active.focus, .btn.outline.btn-default.active:hover, .btn.outline.btn-default.active:focus, .btn.outline.btn-default.active.focus,
    .open > .btn.outline.btn-default.dropdown-toggle:hover,
    .open > .btn.outline.btn-default.dropdown-toggle:focus,
    .open > .btn.outline.btn-default.dropdown-toggle.focus {
      color: #3c474b;
      background-color: transparent;
      border-color: #afafaf; }
  .btn.outline.btn-default:active, .btn.outline.btn-default.active,
  .open > .btn.outline.btn-default.dropdown-toggle {
    background-image: none; }
  .btn.outline.btn-default.disabled:hover, .btn.outline.btn-default.disabled:focus, .btn.outline.btn-default.disabled.focus, .btn.outline.btn-default[disabled]:hover, .btn.outline.btn-default[disabled]:focus, .btn.outline.btn-default[disabled].focus,
  fieldset[disabled] .btn.outline.btn-default:hover,
  fieldset[disabled] .btn.outline.btn-default:focus,
  fieldset[disabled] .btn.outline.btn-default.focus {
    background-color: transparent;
    border-color: #eeeeee; }
  .btn.outline.btn-default .badge {
    color: transparent;
    background-color: #3c474b; }
  .btn.outline.btn-default:hover {
    color: #fff;
    background-color: #364b94;
    border-color: #364b94; }

.btn.outline.btn-primary {
  color: #364b94;
  background-color: transparent;
  border-color: #364b94; }
  .btn.outline.btn-primary:focus, .btn.outline.btn-primary.focus {
    color: #364b94;
    background-color: transparent;
    border-color: #141c37; }
  .btn.outline.btn-primary:hover {
    color: #364b94;
    background-color: transparent;
    border-color: #263467; }
  .btn.outline.btn-primary:active, .btn.outline.btn-primary.active,
  .open > .btn.outline.btn-primary.dropdown-toggle {
    color: #364b94;
    background-color: transparent;
    border-color: #263467; }
    .btn.outline.btn-primary:active:hover, .btn.outline.btn-primary:active:focus, .btn.outline.btn-primary:active.focus, .btn.outline.btn-primary.active:hover, .btn.outline.btn-primary.active:focus, .btn.outline.btn-primary.active.focus,
    .open > .btn.outline.btn-primary.dropdown-toggle:hover,
    .open > .btn.outline.btn-primary.dropdown-toggle:focus,
    .open > .btn.outline.btn-primary.dropdown-toggle.focus {
      color: #364b94;
      background-color: transparent;
      border-color: #141c37; }
  .btn.outline.btn-primary:active, .btn.outline.btn-primary.active,
  .open > .btn.outline.btn-primary.dropdown-toggle {
    background-image: none; }
  .btn.outline.btn-primary.disabled:hover, .btn.outline.btn-primary.disabled:focus, .btn.outline.btn-primary.disabled.focus, .btn.outline.btn-primary[disabled]:hover, .btn.outline.btn-primary[disabled]:focus, .btn.outline.btn-primary[disabled].focus,
  fieldset[disabled] .btn.outline.btn-primary:hover,
  fieldset[disabled] .btn.outline.btn-primary:focus,
  fieldset[disabled] .btn.outline.btn-primary.focus {
    background-color: transparent;
    border-color: #364b94; }
  .btn.outline.btn-primary .badge {
    color: transparent;
    background-color: #364b94; }
  .btn.outline.btn-primary:hover {
    color: #fff;
    background-color: #364b94;
    border-color: #364b94; }

.btn.outline.btn-success {
  color: #0ed957;
  background-color: transparent;
  border-color: #0ed957; }
  .btn.outline.btn-success:focus, .btn.outline.btn-success.focus {
    color: #0ed957;
    background-color: transparent;
    border-color: #066127; }
  .btn.outline.btn-success:hover {
    color: #0ed957;
    background-color: transparent;
    border-color: #0aa040; }
  .btn.outline.btn-success:active, .btn.outline.btn-success.active,
  .open > .btn.outline.btn-success.dropdown-toggle {
    color: #0ed957;
    background-color: transparent;
    border-color: #0aa040; }
    .btn.outline.btn-success:active:hover, .btn.outline.btn-success:active:focus, .btn.outline.btn-success:active.focus, .btn.outline.btn-success.active:hover, .btn.outline.btn-success.active:focus, .btn.outline.btn-success.active.focus,
    .open > .btn.outline.btn-success.dropdown-toggle:hover,
    .open > .btn.outline.btn-success.dropdown-toggle:focus,
    .open > .btn.outline.btn-success.dropdown-toggle.focus {
      color: #0ed957;
      background-color: transparent;
      border-color: #066127; }
  .btn.outline.btn-success:active, .btn.outline.btn-success.active,
  .open > .btn.outline.btn-success.dropdown-toggle {
    background-image: none; }
  .btn.outline.btn-success.disabled:hover, .btn.outline.btn-success.disabled:focus, .btn.outline.btn-success.disabled.focus, .btn.outline.btn-success[disabled]:hover, .btn.outline.btn-success[disabled]:focus, .btn.outline.btn-success[disabled].focus,
  fieldset[disabled] .btn.outline.btn-success:hover,
  fieldset[disabled] .btn.outline.btn-success:focus,
  fieldset[disabled] .btn.outline.btn-success.focus {
    background-color: transparent;
    border-color: #0ed957; }
  .btn.outline.btn-success .badge {
    color: transparent;
    background-color: #0ed957; }
  .btn.outline.btn-success:hover {
    color: #fff;
    background-color: #0ed957;
    border-color: #0ed957; }

.btn.outline.btn-info {
  color: #0475b8;
  background-color: transparent;
  border-color: #0475b8; }
  .btn.outline.btn-info:focus, .btn.outline.btn-info.focus {
    color: #0475b8;
    background-color: transparent;
    border-color: #01263b; }
  .btn.outline.btn-info:hover {
    color: #0475b8;
    background-color: transparent;
    border-color: #034f7c; }
  .btn.outline.btn-info:active, .btn.outline.btn-info.active,
  .open > .btn.outline.btn-info.dropdown-toggle {
    color: #0475b8;
    background-color: transparent;
    border-color: #034f7c; }
    .btn.outline.btn-info:active:hover, .btn.outline.btn-info:active:focus, .btn.outline.btn-info:active.focus, .btn.outline.btn-info.active:hover, .btn.outline.btn-info.active:focus, .btn.outline.btn-info.active.focus,
    .open > .btn.outline.btn-info.dropdown-toggle:hover,
    .open > .btn.outline.btn-info.dropdown-toggle:focus,
    .open > .btn.outline.btn-info.dropdown-toggle.focus {
      color: #0475b8;
      background-color: transparent;
      border-color: #01263b; }
  .btn.outline.btn-info:active, .btn.outline.btn-info.active,
  .open > .btn.outline.btn-info.dropdown-toggle {
    background-image: none; }
  .btn.outline.btn-info.disabled:hover, .btn.outline.btn-info.disabled:focus, .btn.outline.btn-info.disabled.focus, .btn.outline.btn-info[disabled]:hover, .btn.outline.btn-info[disabled]:focus, .btn.outline.btn-info[disabled].focus,
  fieldset[disabled] .btn.outline.btn-info:hover,
  fieldset[disabled] .btn.outline.btn-info:focus,
  fieldset[disabled] .btn.outline.btn-info.focus {
    background-color: transparent;
    border-color: #0475b8; }
  .btn.outline.btn-info .badge {
    color: transparent;
    background-color: #0475b8; }
  .btn.outline.btn-info:hover {
    color: #fff;
    background-color: #0475b8;
    border-color: #0475b8; }

.btn.outline.btn-warning {
  color: #e8671a;
  background-color: transparent;
  border-color: #e8671a; }
  .btn.outline.btn-warning:focus, .btn.outline.btn-warning.focus {
    color: #e8671a;
    background-color: transparent;
    border-color: #77340c; }
  .btn.outline.btn-warning:hover {
    color: #e8671a;
    background-color: transparent;
    border-color: #b34e12; }
  .btn.outline.btn-warning:active, .btn.outline.btn-warning.active,
  .open > .btn.outline.btn-warning.dropdown-toggle {
    color: #e8671a;
    background-color: transparent;
    border-color: #b34e12; }
    .btn.outline.btn-warning:active:hover, .btn.outline.btn-warning:active:focus, .btn.outline.btn-warning:active.focus, .btn.outline.btn-warning.active:hover, .btn.outline.btn-warning.active:focus, .btn.outline.btn-warning.active.focus,
    .open > .btn.outline.btn-warning.dropdown-toggle:hover,
    .open > .btn.outline.btn-warning.dropdown-toggle:focus,
    .open > .btn.outline.btn-warning.dropdown-toggle.focus {
      color: #e8671a;
      background-color: transparent;
      border-color: #77340c; }
  .btn.outline.btn-warning:active, .btn.outline.btn-warning.active,
  .open > .btn.outline.btn-warning.dropdown-toggle {
    background-image: none; }
  .btn.outline.btn-warning.disabled:hover, .btn.outline.btn-warning.disabled:focus, .btn.outline.btn-warning.disabled.focus, .btn.outline.btn-warning[disabled]:hover, .btn.outline.btn-warning[disabled]:focus, .btn.outline.btn-warning[disabled].focus,
  fieldset[disabled] .btn.outline.btn-warning:hover,
  fieldset[disabled] .btn.outline.btn-warning:focus,
  fieldset[disabled] .btn.outline.btn-warning.focus {
    background-color: transparent;
    border-color: #e8671a; }
  .btn.outline.btn-warning .badge {
    color: transparent;
    background-color: #e8671a; }
  .btn.outline.btn-warning:hover {
    color: #fff;
    background-color: #e8671a;
    border-color: #e8671a; }

.btn.outline.btn-danger {
  color: #ed1b2d;
  background-color: transparent;
  border-color: #ed1b2d; }
  .btn.outline.btn-danger:focus, .btn.outline.btn-danger.focus {
    color: #ed1b2d;
    background-color: transparent;
    border-color: #7f0a14; }
  .btn.outline.btn-danger:hover {
    color: #ed1b2d;
    background-color: transparent;
    border-color: #bc0f1e; }
  .btn.outline.btn-danger:active, .btn.outline.btn-danger.active,
  .open > .btn.outline.btn-danger.dropdown-toggle {
    color: #ed1b2d;
    background-color: transparent;
    border-color: #bc0f1e; }
    .btn.outline.btn-danger:active:hover, .btn.outline.btn-danger:active:focus, .btn.outline.btn-danger:active.focus, .btn.outline.btn-danger.active:hover, .btn.outline.btn-danger.active:focus, .btn.outline.btn-danger.active.focus,
    .open > .btn.outline.btn-danger.dropdown-toggle:hover,
    .open > .btn.outline.btn-danger.dropdown-toggle:focus,
    .open > .btn.outline.btn-danger.dropdown-toggle.focus {
      color: #ed1b2d;
      background-color: transparent;
      border-color: #7f0a14; }
  .btn.outline.btn-danger:active, .btn.outline.btn-danger.active,
  .open > .btn.outline.btn-danger.dropdown-toggle {
    background-image: none; }
  .btn.outline.btn-danger.disabled:hover, .btn.outline.btn-danger.disabled:focus, .btn.outline.btn-danger.disabled.focus, .btn.outline.btn-danger[disabled]:hover, .btn.outline.btn-danger[disabled]:focus, .btn.outline.btn-danger[disabled].focus,
  fieldset[disabled] .btn.outline.btn-danger:hover,
  fieldset[disabled] .btn.outline.btn-danger:focus,
  fieldset[disabled] .btn.outline.btn-danger.focus {
    background-color: transparent;
    border-color: #ed1b2d; }
  .btn.outline.btn-danger .badge {
    color: transparent;
    background-color: #ed1b2d; }
  .btn.outline.btn-danger:hover {
    color: #fff;
    background-color: #ed1b2d;
    border-color: #ed1b2d; }

.btn:active:focus.outline.btn-primary, .btn:active.focus.outline.btn-primary, .btn.active:focus.outline.btn-primary, .btn.active.focus.outline.btn-primary {
  background-color: #3d54a7;
  border-color: #3d54a7;
  box-shadow: none;
  outline: 0; }

.btn:active:focus.btn-primary, .btn:active.focus.btn-primary, .btn.active:focus.btn-primary, .btn.active.focus.btn-primary {
  background-color: #3d54a7;
  border-color: #3d54a7;
  box-shadow: none;
  outline: 0; }

.btn:active:focus.btn-success, .btn:active.focus.btn-success, .btn.active:focus.btn-success, .btn.active.focus.btn-success {
  background-color: #11f061;
  border-color: #11f061;
  box-shadow: none;
  outline: 0; }

.btn:active:focus.btn-info, .btn:active.focus.btn-info, .btn.active:focus.btn-info, .btn.active.focus.btn-info {
  background-color: #0585d1;
  border-color: #0585d1;
  box-shadow: none;
  outline: 0; }

.btn:active:focus.btn-warning, .btn:active.focus.btn-warning, .btn.active:focus.btn-warning, .btn.active.focus.btn-warning {
  background-color: #ea7631;
  border-color: #ea7631;
  box-shadow: none;
  outline: 0; }

.btn:active:focus.btn-danger, .btn:active.focus.btn-danger, .btn.active:focus.btn-danger, .btn.active.focus.btn-danger {
  background-color: #ef3343;
  border-color: #ef3343;
  box-shadow: none;
  outline: 0; }

.btn:hover, .btn:focus {
  box-shadow: none;
  outline: 0; }

.btn-lg, .btn-group-lg > .btn {
  font-size: 1.8rem; }

.btn-xl {
  padding: 15px 16px;
  font-size: 1.8rem;
  line-height: 1.33333;
  border-radius: 5px; }
  .btn-xl .fa, .btn-xl .ps {
    font-size: 2.8rem; }

.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  border-top: none; }

.table > thead > tr > th {
  border-bottom: 2px solid #ddd; }

#sidebar, .sidebar, aside {
  color: #3c474b; }
  #sidebar .title, #sidebar .nav .header, #sidebar .navbar .navbar-header, .sidebar .title, .sidebar .nav .header, .sidebar .navbar .navbar-header, aside .title, aside .nav .header, aside .navbar .navbar-header {
    font-family: "Roboto", Georgia, "Times New Roman", Times, serif;
    font-weight: 400; }
  #sidebar .subtitle, .sidebar .subtitle, aside .subtitle {
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
    font-weight: 400; }
  #sidebar .nav a:link, .sidebar .nav a:link, aside .nav a:link {
    color: #e8671a;
    font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
    font-weight: 300; }
    #sidebar .nav a:link:hover, .sidebar .nav a:link:hover, aside .nav a:link:hover {
      color: #f29c20; }

.progress {
  box-shadow: none; }

.progress-steps {
  margin-bottom: 24px; }
  .progress-steps .progress {
    margin-bottom: 0; }
    .progress-steps .progress .progress-bar {
      background: #0ed957; }
  .progress-steps .progress-nav {
    margin-top: 40px; }
    .progress-steps .progress-nav li {
      text-align: center; }
      .progress-steps .progress-nav li.active {
        color: #364b94; }
        .progress-steps .progress-nav li.active a:hover, .progress-steps .progress-nav li.active a:visited {
          color: #0ed957; }
      .progress-steps .progress-nav li.complete {
        color: #0ed957; }
      .progress-steps .progress-nav li a {
        color: #364b94; }

.label-name {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.4px;
  color: #928a81; }
  .label-name.center {
    text-align: center; }

.modal .modal-content {
  border: none;
  border-radius: 0;
  box-shadow: none; }
  .modal .modal-content .modal-header {
    background: #364b94; }
    .modal .modal-content .modal-header .modal-title {
      color: white;
      font-size: 24px; }
    .modal .modal-content .modal-header .close {
      color: white;
      font-size: 34px;
      font-weight: bold;
      line-height: 1;
      margin: 0;
      opacity: 0.4;
      text-shadow: none; }
      .modal .modal-content .modal-header .close:hover {
        opacity: 1; }
  .modal .modal-content .modal-footer {
    text-align: left; }

.input-group {
  width: 100%; }

/* Custom Form field layout to move label above/below field based on screensize. */
form .form-header {
  color: #364b94;
  border-bottom: 2px solid #364b94;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 25px;
  padding-bottom: 10px; }

form .form-group > label {
  color: #3c464a;
  font-weight: normal;
  width: 100%; }

form .form-group-validation {
  color: red;
  padding-top: 5px;
  padding-left: 2px;
  padding-bottom: 5px;
  font-size: .8em;
  vertical-align: middle; }

form .phi {
  color: #556dc1;
  margin-right: 5px;
  font-size: 1em; }

form .pmi-tooltip .tooltip-inner {
  background-color: #556dc1;
  width: 50em; }

form .needs-required::after {
  color: red;
  content: "*";
  margin-left: 5px;
  font-weight: bold; }

form .has-required::after {
  color: gray;
  content: "*";
  margin-left: 5px;
  font-weight: normal; }

form .uib-separator {
  padding-left: 5px;
  padding-right: 5px; }

form .uib-time input {
  width: 60px; }

form .am-pm {
  padding-left: 10px; }

form .phone-input {
  width: 10em; }

form .date-input {
  width: 8em; }

form input[type=number]::-webkit-inner-spin-button,
form input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; }

form .form-control:focus {
  border-color: #364b94;
  box-shadow: none; }

form .form-submit {
  margin: 25px 5px 25px 5px; }

.phi-legend {
  color: #556dc1;
  font-size: 1em;
  margin-top: 3px; }

.phi-disclaimer {
  color: darkgray;
  font-size: .9em; }

.send-disabled-tooltip .tooltip-inner {
  color: red;
  width: 150px;
  background-color: #ffffff;
  border: 1px solid red; }

.send-disabled-tooltip .tooltip-arrow {
  display: none; }

select option:checked {
  background: #CCDDEB; }

.panel-grid .panel-default {
  border-color: #ddd; }
  .panel-grid .panel-default > .panel-heading {
    color: #3c474b;
    background-color: #fff;
    border-color: #ddd; }
    .panel-grid .panel-default > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #ddd; }
    .panel-grid .panel-default > .panel-heading .badge {
      color: #fff;
      background-color: #3c474b; }
  .panel-grid .panel-default > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ddd; }

.panel-group .panel + .panel {
  margin-top: -1px; }

.panel-group .panel-heading .panel-title {
  font-weight: 400; }

.panel-group .panel-heading a {
  color: darkgray; }
  .panel-group .panel-heading a:hover, .panel-group .panel-heading a:focus {
    color: #3c474b;
    text-decoration: none; }

.list-group .list-group-item {
  display: flex;
  padding-left: 20px;
  padding: 20px; }
  .list-group .list-group-item:before, .list-group .list-group-item:after {
    content: " ";
    display: table; }
  .list-group .list-group-item:after {
    clear: both; }
  .list-group .list-group-item .lgi-action {
    display: table-cell;
    padding: 0px 20px 0px 10px; }
  .list-group .list-group-item .lgi-badge {
    display: table-cell;
    padding: 0px 0px 0px 20px; }
  .list-group .list-group-item .lgi-icon {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    /*margin-left: -20px;*/
    /*min-width: 46px;*/
    max-width: 68px;
    width: 100%;
    position: absolute;
    left: 0px; }
    .list-group .list-group-item .lgi-icon .fa, .list-group .list-group-item .lgi-icon .ps, .list-group .list-group-item .lgi-icon .glyphicon {
      color: #928a81;
      font-size: 2.38rem;
      width: 46px;
      height: 36px;
      margin-right: 0px;
      margin-top: 14px;
      /*&.ps-Group{
					margin-left: -8px;
				}*/ }
      .list-group .list-group-item .lgi-icon .fa.sent, .list-group .list-group-item .lgi-icon .ps.sent, .list-group .list-group-item .lgi-icon .glyphicon.sent {
        font-size: 1.6rem;
        margin-top: 20px;
        width: 16px;
        height: 16px; }
  .list-group .list-group-item .lgi-msg-indicator {
    margin: 34px 0 12px 0; }
  .list-group .list-group-item .lgi-content {
    display: table-cell; }
    .list-group .list-group-item .lgi-content.ps-cl {
      overflow: hidden !important;
      margin-left: 48px; }
    .list-group .list-group-item .lgi-content.has-annotations, .list-group .list-group-item.no-flags .lgi-content.md-has-annotations {
      margin-right: 100px; }
    .list-group .list-group-item .lgi-content .list-group-item-heading {
      font-family: 'Roboto';
      font-weight: normal;
      font-size: 2.5rem;
      margin: 0 0 5px;
      padding-right: 5px;
      max-width: inherit; }
    .list-group .list-group-item .lgi-content .list-group-item-text {
      font-family: 'Roboto';
      font-weight: normal;
      margin: 0;
      padding-right: 5px;
      max-width: inherit; }
    .list-group .list-group-item .lgi-content .list-group-item-footer {
      font-family: 'Roboto';
      font-weight: normal;
      color: #364b94;
      font-size: 1.7rem;
      margin: 0;
      max-width: inherit; }
  .list-group .list-group-item .lgi-annotations, .list-group .list-group-item.no-flags .md-lgi-annotations {
    font-family: 'Roboto';
    font-weight: 300;
    top: 5px;
    right: 0px;
    position: absolute;
    width: 100px; }
    .list-group .list-group-item .lgi-annotations .lgi-item, .list-group .list-group-item.no-flags .md-lgi-annotations .lgi-item {
      width: 100%;
      display: table; }
      .list-group .list-group-item .lgi-annotations .lgi-item .fa, .list-group .list-group-item.no-flags .md-lgi-annotations .lgi-item .fa, .list-group .list-group-item .lgi-annotations .lgi-item .ps, .list-group .list-group-item.no-flags .md-lgi-annotations .lgi-item .ps, .list-group .list-group-item .lgi-annotations .lgi-item .glyphicon, .list-group .list-group-item.no-flags .md-lgi-annotations .lgi-item .glyphicon {
        font-size: 2.0rem;
        color: #364b94; }
  .list-group .list-group-item.active {
    background-color: rgba(54, 75, 148, 0.15); }
    .list-group .list-group-item.active .badge {
      background: #364b94;
      color: white; }
  .list-group .list-group-item.unread .lgi-icon .fa, .list-group .list-group-item.unread .lgi-icon .ps, .list-group .list-group-item.unread .lgi-icon .glyphicon {
    color: #364b94; }
  .list-group .list-group-item.unread .lgi-content .list-group-item-heading, .list-group .list-group-item.unread .lgi-content .list-group-item-text {
    font-family: 'Roboto';
    font-weight: normal; }
  .list-group .list-group-item.unread .lgi-annotations, .list-group .list-group-item.unread .list-group-item.no-flags .md-lgi-annotations, .list-group .list-group-item.no-flags .list-group-item.unread .md-lgi-annotations {
    font-family: 'Roboto';
    font-weight: normal; }
  .list-group .list-group-item:hover {
    background: #d9edf7; }

.message-list .list-group-item {
  padding: 7px 3px;
  height: 71px; }
  .message-list .list-group-item .lgi-icon {
    max-width: 52px; }
    .message-list .list-group-item .lgi-icon .glyphicon.sent, .message-list .list-group-item .lgi-icon .fa-share.sent {
      margin-top: 0px;
      top: -14px;
      position: relative; }
  .message-list .list-group-item .lgi-content {
    font-size: 1.8rem; }
    .message-list .list-group-item .lgi-content .list-group-item-heading {
      font-size: 1.8rem;
      letter-spacing: 0.4px;
      color: #3c464a;
      margin: 0 0 2px; }
      .message-list .list-group-item .lgi-content .list-group-item-heading.unread-message {
        font-family: 'Roboto';
        font-weight: bold; }
    .message-list .list-group-item .lgi-content .list-group-item-text {
      font-size: 1.4rem;
      letter-spacing: 0.3px;
      color: #3c464a;
      line-height: 1.25;
      height: 18px; }
      .message-list .list-group-item .lgi-content .list-group-item-text.unread-message {
        font-family: 'Roboto';
        font-weight: bold; }
    .message-list .list-group-item .lgi-content .list-group-item-footer {
      font-size: 1.4rem;
      letter-spacing: 0.5px;
      color: #e8671a;
      line-height: 1.25;
      height: 18px; }
      .message-list .list-group-item .lgi-content .list-group-item-footer.unread-message {
        font-family: 'Roboto';
        font-weight: bold; }
  .message-list .list-group-item .lgi-annotations, .message-list .list-group .list-group-item.no-flags .md-lgi-annotations, .list-group .message-list .list-group-item.no-flags .md-lgi-annotations {
    font-size: 1.4rem;
    width: 64px; }
    .message-list .list-group-item .lgi-annotations .lgi-item .date-time, .message-list .list-group .list-group-item.no-flags .md-lgi-annotations .lgi-item .date-time, .list-group .message-list .list-group-item.no-flags .md-lgi-annotations .lgi-item .date-time {
      font-size: 1.12rem;
      line-height: 1.71;
      letter-spacing: 0.5px;
      color: #6f6f6f; }
    .message-list .list-group-item .lgi-annotations .lgi-item .fa, .message-list .list-group .list-group-item.no-flags .md-lgi-annotations .lgi-item .fa, .list-group .message-list .list-group-item.no-flags .md-lgi-annotations .lgi-item .fa, .message-list .list-group-item .lgi-annotations .lgi-item .ps, .message-list .list-group .list-group-item.no-flags .md-lgi-annotations .lgi-item .ps, .list-group .message-list .list-group-item.no-flags .md-lgi-annotations .lgi-item .ps, .message-list .list-group-item .lgi-annotations .lgi-item .glyphicon, .message-list .list-group .list-group-item.no-flags .md-lgi-annotations .lgi-item .glyphicon, .list-group .message-list .list-group-item.no-flags .md-lgi-annotations .lgi-item .glyphicon {
      font-size: 1.2rem;
      color: #364b94;
      margin: 4px; }
    .message-list .list-group-item .lgi-annotations .lgi-item.lgi-msg-indicator, .message-list .list-group .list-group-item.no-flags .md-lgi-annotations .lgi-item.lgi-msg-indicator, .list-group .message-list .list-group-item.no-flags .md-lgi-annotations .lgi-item.lgi-msg-indicator {
      font-family: 'Roboto';
      font-weight: bold;
      margin: 2px 0 4px 0;
      font-size: 1.4rem;
      color: #3c464a; }
  .message-list .list-group-item:hover {
    background: #d9edf7; }

.conversation-container {
  font-size: 20px; }
  .conversation-container .conversation-header {
    background-color: #efefef; }
    .conversation-container .conversation-header.group .header {
      height: 47px;
      color: #928a81; }
      .conversation-container .conversation-header.group .header .sender-name {
        line-height: 30px; }
      .conversation-container .conversation-header.group .header .fa {
        color: #928a81; }
        .conversation-container .conversation-header.group .header .fa:first-child {
          font-size: 2.6rem; }
      .conversation-container .conversation-header.group .header button {
        padding: 0px 4px; }
        .conversation-container .conversation-header.group .header button.btn:active, .conversation-container .conversation-header.group .header button.btn:focus, .conversation-container .conversation-header.group .header button.btn.active {
          background-image: none;
          outline: 0;
          -webkit-box-shadow: none;
          box-shadow: none; }
    .conversation-container .conversation-header.group .panel-body {
      border-top: none; }
      .conversation-container .conversation-header.group .panel-body .fa {
        font-size: 2.0rem; }
        .conversation-container .conversation-header.group .panel-body .fa.active {
          color: #0ed957; }
    .conversation-container .conversation-header .sender-name {
      font-family: 'Roboto';
      font-weight: normal;
      font-size: 2.4rem;
      color: #928a81;
      margin-bottom: 0px; }
      .conversation-container .conversation-header .sender-name .fa.active {
        color: #0ed957; }
    .conversation-container .conversation-header .panel-body {
      color: #928a81;
      background-color: white; }
    .conversation-container .conversation-header .recipient-list .btn {
      border-radius: 0px; }
    .conversation-container .conversation-header .recipient-list .dropdown-menu {
      border-radius: 0px;
      left: 50%;
      margin-left: -140px;
      font-size: 20px;
      min-width: 280px; }
      .open .conversation-container .conversation-header .recipient-list .dropdown-menu {
        display: table; }
      .conversation-container .conversation-header .recipient-list .dropdown-menu a {
        color: #364b94;
        display: table-cell;
        padding: 3px 5px; }
        .conversation-container .conversation-header .recipient-list .dropdown-menu a.name {
          padding-left: 10px;
          width: 100%; }
        .conversation-container .conversation-header .recipient-list .dropdown-menu a:visited {
          color: #28386f; }
        .conversation-container .conversation-header .recipient-list .dropdown-menu a:hover {
          color: #556dc1;
          background: none; }
    .conversation-container .conversation-header .patient-info span {
      color: #3c474b; }
    .conversation-container .conversation-header .patient-banner {
      font-family: 'Roboto';
      font-weight: normal;
      font-size: 2.4rem;
      line-height: 0.83;
      letter-spacing: 0.4px;
      text-align: center; }
  .conversation-container .conversation-body {
    padding: 20px; }
    .conversation-container .conversation-body .day-divider {
      height: 25px;
      text-align: center;
      vertical-align: top;
      position: relative;
      background-color: #efefef; }
      .conversation-container .conversation-body .day-divider:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 0px;
        width: 100%;
        height: 1px;
        border-top: 1px dashed #928a81;
        z-index: 1; }
      .conversation-container .conversation-body .day-divider span {
        font-family: 'Roboto';
        font-weight: normal;
        font-size: 1.44rem;
        padding: 0px 30px;
        height: 17px;
        top: -4px;
        color: #888888;
        background-color: #efefef;
        position: relative;
        display: inline-block;
        z-index: 2; }
    .conversation-container .conversation-body .message .time-stamp {
      color: #c8c8c8;
      display: block; }
      .conversation-container .conversation-body .message .time-stamp:before, .conversation-container .conversation-body .message .time-stamp:after {
        content: " ";
        display: table; }
      .conversation-container .conversation-body .message .time-stamp:after {
        clear: both; }
    .conversation-container .conversation-body .message .message-text {
      border: none;
      box-shadow: none; }
      .conversation-container .conversation-body .message .message-text .message-status {
        display: block;
        text-align: right; }
    .conversation-container .conversation-body .message.unread .message-text {
      font-weight: 600; }
    .conversation-container .conversation-body .message.sender .time-stamp {
      text-align: right; }
    .conversation-container .conversation-body .message.sender .message-text {
      background: #0ed957;
      color: #fff;
      float: right; }
    .conversation-container .conversation-body .message.receiver .message-text {
      background: #E7EAEE;
      color: #3c474b; }
  .conversation-container .conversation-footer {
    background: #eeeeee;
    padding: 20px 20px; }
    .conversation-container .conversation-footer .messages-input-form .row > div {
      padding: 0 5px; }

.top-search {
  font-size: 2rem;
  border-bottom: none;
  padding: 10px 0;
  text-align: center; }
  .top-search .search-group {
    display: block; }
  .top-search .search-toggle {
    display: none; }
  .top-search.inactive .search-group {
    display: none; }
  .top-search.inactive .search-toggle {
    display: block;
    margin: 0 auto; }
  .top-search .dropdown-menu .dropdown-title {
    background: #364b94;
    color: white;
    display: table;
    padding: 0 20px;
    text-align: center;
    height: 40px;
    width: 100%; }
    .top-search .dropdown-menu .dropdown-title .title-icon {
      background: #fff;
      color: darkgray;
      display: table-cell;
      vertical-align: middle;
      height: 30px;
      padding: 0px 10px;
      text-align: left;
      width: 1%; }
    .top-search .dropdown-menu .dropdown-title .title-name {
      display: table-cell;
      height: 40px;
      vertical-align: middle;
      width: 100%; }
    .top-search .dropdown-menu .dropdown-title .title-count {
      display: table-cell;
      height: 40px;
      vertical-align: middle;
      width: 1%; }
  .top-search .dropdown-menu.typeahead {
    font-size: 2rem;
    float: none;
    min-width: 100%;
    padding: 0; }
    .top-search .dropdown-menu.typeahead li {
      border-bottom: 1px solid gainsboro; }
      .top-search .dropdown-menu.typeahead li a:hover {
        background: #d9edf7; }
      .top-search .dropdown-menu.typeahead li a strong {
        color: #e8671a !important; }
      .top-search .dropdown-menu.typeahead li a .location {
        float: right; }
      .top-search .dropdown-menu.typeahead li a .primary {
        display: block;
        color: #3c474b; }
      .top-search .dropdown-menu.typeahead li a .secondary {
        display: block;
        font-size: 16px; }

.top-profile {
  background: #28386f;
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  box-shadow: 0 10px 0 #888888;
  display: table;
  padding: 10px 0;
  margin-bottom: 10px;
  width: 100%; }
  .top-profile:before, .top-profile:after {
    content: " ";
    display: table; }
  .top-profile:after {
    clear: both; }
  .top-profile .profile-data, .top-profile .profile-menu {
    display: table-cell;
    vertical-align: middle; }
  .top-profile .profile-data {
    width: 100%; }
    .top-profile .profile-data .profile-icon {
      color: #eeeeee; }
    .top-profile .profile-data .profile-primary {
      color: #fff;
      font-size: 2.2rem;
      margin-bottom: 0; }
    .top-profile .profile-data .profile-secondary {
      color: gainsboro;
      margin-bottom: 0; }
  .top-profile .profile-menu .btn-primary {
    background: #28386f;
    border-color: #28386f; }

.search-results {
  background: #eeeeee;
  display: table;
  height: 100%;
  padding: 15px;
  width: 100%; }
  .search-results .placeholder {
    color: darkgray !important;
    display: table-cell;
    font-weight: 300;
    height: 400px;
    text-align: center;
    vertical-align: middle; }
    .search-results .placeholder .fa {
      margin-bottom: 40px; }

.panel-grid {
  overflow: hidden; }
  .panel-grid .panel.primary {
    box-shadow: -36px 0 0 #364b94, 0 1px 1px rgba(0, 0, 0, 0.05);
    margin-left: 36px; }
  .panel-grid .panel .panel-heading {
    padding: 20px 30px; }
    .panel-grid .panel .panel-heading .panel-title {
      font-size: 2rem;
      font-weight: normal; }
  .panel-grid .panel .panel-body {
    padding: 20px 30px; }
  .panel-grid .panel .container-fluid > .row {
    border-bottom: 1px solid #ddd; }
    .panel-grid .panel .container-fluid > .row:last-child {
      border-bottom: none; }
    .panel-grid .panel .container-fluid > .row > div {
      border-right: 1px solid #ddd;
      padding: 20px 30px;
      overflow: hidden; }
      .panel-grid .panel .container-fluid > .row > div:last-child {
        border-right: none; }

.loading {
  display: none; }

.error {
  display: none; }

.deferred-bootstrap-loading .loading {
  display: block !important;
  text-align: center;
  margin-top: 10%; }

.deferred-bootstrap-error .error {
  display: block !important; }

.result .json-formatter-dark {
  padding: 1em;
  border: 1px solid #eee;
  margin-bottom: 2em;
  overflow: auto;
  background: #333; }

::-webkit-scrollbar {
  width: 10px; }

::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: white; }

::-webkit-scrollbar-track-piece {
  background-color: white; }

::-webkit-scrollbar-thumb {
  width: 10px;
  padding: 0px 2px;
  border-radius: 10px;
  background-color: #d8d8d8;
  cursor: pointer; }

div:hover::-webkit-scrollbar-thumb:hover {
  background: #bbb; }

.navbar {
  border-radius: 0;
  margin: 0; }
  @media (min-width: 992px) {
    .navbar .container-fluid {
      display: table;
      width: 100%; } }
  @media (min-width: 992px) {
    .navbar .navbar-header {
      display: table-cell;
      float: none;
      text-align: left;
      white-space: nowrap; } }
  .navbar .navbar-header .navbar-brand {
    margin-left: -15px;
    padding: 18.5px 15px; }
  .navbar .app-title {
    letter-spacing: 1px;
    margin: 18.5px 0;
    padding: 0 15px 0 0;
    line-height: 47px;
    height: 47px;
    font-family: 'Roboto';
    font-weight: 300;
    color: #928a81;
    font-size: 2.0rem;
    border-left: 1px solid darkgray; }
    @media (min-width: 992px) {
      .navbar .app-title {
        display: table-cell;
        text-align: center; } }
    @media (min-width: 992px) {
      .navbar .app-title {
        margin: 21.5px 5px 0px 5px;
        padding: 0 15px; } }
    @media (max-width: 768px) {
      .navbar .app-title {
        border: none;
        display: block;
        float: none;
        margin: 0;
        padding: 0;
        text-align: center; } }
    .navbar .app-title small {
      color: #928a81;
      letter-spacing: 0; }
  .navbar .page-title {
    display: inherit !important;
    text-align: center;
    vertical-align: middle;
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 3rem;
    color: #928a81;
    padding: 0 15px;
    height: 47px;
    margin-top: 25px;
    margin-bottom: 0px; }
    .navbar .page-title span {
      color: #928a81;
      margin-right: 10px; }
  @media (min-width: 992px) {
    .navbar .navbar-collapse {
      display: table-cell; } }
  .navbar .navbar-collapse .navbar-nav {
    margin-top: 0;
    margin-bottom: 0; }
  .navbar .navbar-btn.navbar-right {
    float: right;
    margin-right: -15px; }
  .navbar .navbar-right button.btn-sm, .navbar .navbar-right .btn-group-sm > button.btn {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 18px;
    padding: 1px 10px; }
  .navbar .dropdown-menu a {
    font-size: 18px;
    padding: 4px 12px;
    line-height: 1.3;
    text-align: left; }
    .navbar .dropdown-menu a span.fa {
      font-size: 24px;
      width: 24px;
      margin-right: 14px; }

nav#nav-top {
  font-size: 20px;
  border-bottom: 15px solid #364b94;
  padding: 0 15px; }

#nav-aside {
  font-size: 20px; }

.logo-padding {
  padding-top: 5px; }

.nav-stacked li a {
  border-radius: 0px; }

.nav.nav-tabs {
  border-bottom: none; }
  .nav.nav-tabs li {
    margin-bottom: 0px; }

.nav.nav-tabs-justified li.active a, .nav.nav-tabs.nav-justified li.active a, .nav.nav-tabs-justified li.active a:hover, .nav.nav-tabs.nav-justified li.active a:hover, .nav.nav-tabs-justified li.active a:focus, .nav.nav-tabs.nav-justified li.active a:focus {
  border: none; }

.nav.nav-tabs-justified li a, .nav.nav-tabs.nav-justified li a, .nav.nav-tabs-justified li a:hover, .nav.nav-tabs.nav-justified li a:hover, .nav.nav-tabs-justified li a:focus, .nav.nav-tabs.nav-justified li a:focus {
  border-width: 0 0 1px 0; }

.nav li.active a, .nav li.active a:hover, .nav li.active a:focus {
  background: #364b94;
  border: none;
  color: white; }

.nav li a {
  border: none;
  color: #364b94; }
  .nav li a:hover, .nav li a:focus {
    background: #fbfbfb;
    color: #888888; }

@media (min-width: 992px) {
  .col-md-left, .col-md-right {
    width: 30%; }
  .col-md-center {
    width: 40%; } }

@media (min-width: 1279px) {
  .navbar-brand > img.icon-log {
    display: none; }
  .col-md-left, .col-md-right {
    width: 33.33333%; }
  .col-md-center {
    width: 33.33333%; } }

@media (max-width: 1278px) {
  .navbar .navbar-header .navbar-brand {
    margin-left: -30px;
    padding: 13px 7px; }
    .navbar .navbar-header .navbar-brand img.text-log {
      display: none; } }

.aside-nav {
  background-color: #efefef; }
  .aside-nav.left {
    position: absolute;
    width: 250px;
    top: 0px;
    bottom: 0px;
    object-fit: contain;
    border-right: 1px solid darkgray; }
    .aside-nav.left .aside-nav {
      overflow-y: auto;
      overflow-x: none;
      height: calc(100% - 58px);
      width: 100%; }
  .aside-nav.small-nav {
    width: 70px; }
    .aside-nav.small-nav .li-name {
      display: none; }
    .aside-nav.small-nav a {
      text-align: center; }
    .aside-nav.small-nav .toggle-container a {
      margin-right: 6px; }
  .aside-nav.demo {
    position: relative; }
  .aside-nav .nav {
    background-color: #efefef; }
    .aside-nav .nav li {
      font-family: 'Roboto';
      font-weight: 300;
      font-size: 2.2rem;
      height: 58px;
      margin-top: 0px; }
      .aside-nav .nav li a {
        border-bottom: 1px solid #928a81;
        color: #928a81;
        line-height: 40px;
        height: inherit;
        background: #efefef; }
        .aside-nav .nav li a span.fa, .aside-nav .nav li a span.ps {
          font-size: 2.6rem;
          width: 34px;
          padding-top: 3px;
          text-align: center;
          margin-right: 14px; }
          .aside-nav .nav li a span.fa.ps-Patient-Icon, .aside-nav .nav li a span.ps.ps-Patient-Icon {
            font-size: 2.0rem; }
          .aside-nav .nav li a span.fa.ps-User, .aside-nav .nav li a span.ps.ps-User {
            padding-top: 6px; }
          .aside-nav .nav li a span.fa.ps-Contact, .aside-nav .nav li a span.ps.ps-Contact {
            padding-top: 7px; }
          .aside-nav .nav li a span.fa.ps-tracking, .aside-nav .nav li a span.ps.ps-tracking {
            margin-top: 5px; }
          .aside-nav .nav li a span.fa.fa-list-alt, .aside-nav .nav li a span.ps.fa-list-alt {
            padding-top: 9px; }
        .aside-nav .nav li a:hover {
          background-color: #364b94;
          border-bottom: 1px solid #efefef;
          color: white;
          cursor: pointer; }
          .aside-nav .nav li a:hover span.ps.ps-tracking {
            background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0MyA1MS43OSI+PGRlZnM+PHN0eWxlPi5jbHMtMXtzdHJva2U6I2ZmZjtmaWxsOiNmZmZ9LmNscy0xLC5jbHMtMntzdHJva2UtbWl0ZXJsaW1pdDoxMDtzdHJva2Utd2lkdGg6MnB4fS5jbHMtMiwuY2xzLTN7ZmlsbDojMzY0Yjk0fS5jbHMtMntzdHJva2U6IzM2NGI5NH08L3N0eWxlPjwvZGVmcz48dGl0bGU+VHJhY2tpbmdJY29uX0FJX0ludmVyc2U8L3RpdGxlPjxnIGlkPSJMYXllcl8yIiBkYXRhLW5hbWU9IkxheWVyIDIiPjxnIGlkPSJMYXllcl8xLTIiIGRhdGEtbmFtZT0iTGF5ZXIgMSI+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxIiB5PSIxIiB3aWR0aD0iNDEiIGhlaWdodD0iNDkuNzkiIHJ4PSI1IiByeT0iNSIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTggOGgyN004IDE1LjMzaDI3TTggMjIuNjdoMjdNOCAzMGgyNyIvPjxwYXRoIGlkPSJTaGFwZSIgY2xhc3M9ImNscy0zIiBkPSJNMjYuMjkgMzguNzJhNS42OSA1LjY5IDAgMCAwLTkuNzcgMCA1LjQ4IDUuNDggMCAwIDAgMCA1LjU2IDUuNjkgNS42OSAwIDAgMCA5Ljc3IDAgNS40OSA1LjQ5IDAgMCAwIDAtNS41NnptLTEuMjMgMS45NGwtNCAzLjkyYS40Ni40NiAwIDAgMS0uMzQuMTQuNDYuNDYgMCAwIDEtLjMzLS4xNEwxNy43NCA0MmEuNDQuNDQgMCAwIDEtLjEzLS4zMi40NC40NCAwIDAgMSAuMTMtLjMzbC42Ny0uNjVhLjQ3LjQ3IDAgMCAxIC42NiAwbDEuNjYgMS42MyAzLTIuOTNhLjQ3LjQ3IDAgMCAxIC42NiAwbC42Ny42NWEuNDQuNDQgMCAwIDEgLjEzLjMzLjQ0LjQ0IDAgMCAxLS4xMy4zMnoiLz48L2c+PC9nPjwvc3ZnPg==) no-repeat center center;
            background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0MyA1MS43OSI+PGRlZnM+PHN0eWxlPi5jbHMtMXtzdHJva2U6I2ZmZjtmaWxsOiNmZmZ9LmNscy0xLC5jbHMtMntzdHJva2UtbWl0ZXJsaW1pdDoxMDtzdHJva2Utd2lkdGg6MnB4fS5jbHMtMiwuY2xzLTN7ZmlsbDojMzY0Yjk0fS5jbHMtMntzdHJva2U6IzM2NGI5NH08L3N0eWxlPjwvZGVmcz48dGl0bGU+VHJhY2tpbmdJY29uX0FJX0ludmVyc2U8L3RpdGxlPjxnIGlkPSJMYXllcl8yIiBkYXRhLW5hbWU9IkxheWVyIDIiPjxnIGlkPSJMYXllcl8xLTIiIGRhdGEtbmFtZT0iTGF5ZXIgMSI+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIxIiB5PSIxIiB3aWR0aD0iNDEiIGhlaWdodD0iNDkuNzkiIHJ4PSI1IiByeT0iNSIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTggOGgyN004IDE1LjMzaDI3TTggMjIuNjdoMjdNOCAzMGgyNyIvPjxwYXRoIGlkPSJTaGFwZSIgY2xhc3M9ImNscy0zIiBkPSJNMjYuMjkgMzguNzJhNS42OSA1LjY5IDAgMCAwLTkuNzcgMCA1LjQ4IDUuNDggMCAwIDAgMCA1LjU2IDUuNjkgNS42OSAwIDAgMCA5Ljc3IDAgNS40OSA1LjQ5IDAgMCAwIDAtNS41NnptLTEuMjMgMS45NGwtNCAzLjkyYS40Ni40NiAwIDAgMS0uMzQuMTQuNDYuNDYgMCAwIDEtLjMzLS4xNEwxNy43NCA0MmEuNDQuNDQgMCAwIDEtLjEzLS4zMi40NC40NCAwIDAgMSAuMTMtLjMzbC42Ny0uNjVhLjQ3LjQ3IDAgMCAxIC42NiAwbDEuNjYgMS42MyAzLTIuOTNhLjQ3LjQ3IDAgMCAxIC42NiAwbC42Ny42NWEuNDQuNDQgMCAwIDEgLjEzLjMzLjQ0LjQ0IDAgMCAxLS4xMy4zMnoiLz48L2c+PC9nPjwvc3ZnPg==) no-repeat center center; }
        .aside-nav .nav li a .li-name {
          vertical-align: top; }
      .aside-nav .nav li .msg-indecator {
        font-family: 'Roboto';
        font-weight: 300;
        color: #3c474b;
        font-size: 1.2rem;
        position: absolute;
        right: 20px;
        bottom: 3px;
        line-height: 14px; }
      .aside-nav .nav li:hover .msg-indecator {
        color: white; }
      .aside-nav .nav li.active a {
        border-bottom: 1px solid white; }
      .aside-nav .nav li.active a, .aside-nav .nav li.active a:focus {
        background-color: #364b94;
        border-bottom: 1px solid #efefef;
        color: white; }
      .aside-nav .nav li.active .msg-indecator {
        color: white; }
  .aside-nav .toggle-container {
    width: inherit;
    height: 58px;
    background-color: #d8d8d8;
    position: absolute;
    bottom: 0px;
    width: 100%; }
    .aside-nav .toggle-container a {
      margin-top: 6px; }
    .aside-nav .toggle-container i {
      font-size: 2.6rem;
      color: #888888; }

#footer, .footer {
  font-family: 'Roboto';
  font-weight: 300;
  font-size: 1.6rem;
  background: #efefef;
  color: #928a81;
  padding: 5px;
  height: 35px;
  vertical-align: middle; }
  #footer p, #footer ul, #footer ol, .footer p, .footer ul, .footer ol {
    margin-bottom: 0; }
  #footer .footer-nav li, .footer .footer-nav li {
    border-left: 1px solid #928a81;
    padding: 0 10px 0 11px; }
    #footer .footer-nav li:first-child, .footer .footer-nav li:first-child {
      border-left: none; }
    #footer .footer-nav li a, .footer .footer-nav li a {
      color: #928a81; }
      #footer .footer-nav li a:visited, .footer .footer-nav li a:visited {
        color: #928a81; }
      #footer .footer-nav li a:hover, .footer .footer-nav li a:hover {
        color: gainsboro; }

.modal-dialog {
  padding: 0px; }

.modal-backdrop {
  bottom: 0;
  position: fixed;
  height: 100vh; }

.modal-open .modal {
  top: 0px; }

.xl-modal .modal {
  top: 0; }
  .xl-modal .modal .modal-dialog {
    width: 70%;
    margin: 10px auto;
    height: calc(100% - 20px); }
  .xl-modal .modal.small-dialog .modal-dialog {
    height: inherit; }

.xl-modal .modal.small-dialog + .modal {
  display: none !important; }

.modal {
  top: 0; }
  .modal.small-dialog .modal-dialog {
    height: inherit; }

.full-screen-modal {
  top: 0; }
  .full-screen-modal .modal-dialog {
    width: 100%;
    margin: 0px auto;
    height: calc(100%); }
    .full-screen-modal .modal-dialog .modal-content {
      height: calc(100%); }

.modal-body .image-container {
  position: relative;
  margin: 0px auto;
  text-align: center; }

.attachment-modal.binary .modal-body {
  height: calc(100% - 65px); }

.modal .modal-content .modal-header {
  font-family: 'Roboto';
  font-weight: 300;
  font-size: 3.7rem;
  line-height: 0.9;
  letter-spacing: 0.5px;
  color: #ffffff; }
  .modal .modal-content .modal-header .modal-title {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit; }
  .modal .modal-content .modal-header .modal-close-icon {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 7rem;
    display: block;
    line-height: .5;
    color: #007aff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg); }
    .modal .modal-content .modal-header .modal-close-icon.small {
      font-size: 6rem; }
  .modal .modal-content .modal-header .close:hover {
    color: white; }
    .modal .modal-content .modal-header .close:hover .modal-close-icon {
      color: white; }

.modal .modal-content .title-banner {
  font-family: 'Roboto';
  font-weight: 300;
  font-size: 3.2rem;
  height: 58px;
  line-height: 60px;
  color: #3c464a;
  background-color: #efefef;
  box-shadow: 0px 3px 6px #979797;
  color: #3c464a; }

.window-height .modal-dialog {
  height: calc(100% - 4%); }
  .window-height .modal-dialog .modal-content {
    height: calc(100%); }

.confirm-modal .modal-content {
  border-radius: 6px; }

.confirm-modal .modal-dialog {
  border-radius: 6px;
  overflow: hidden;
  max-width: 356px; }
  .confirm-modal .modal-dialog .modal-header {
    height: 39px;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.7;
    padding: 3px; }
    .confirm-modal .modal-dialog .modal-header i {
      font-size: 22px; }
  .confirm-modal .modal-dialog .modal-body {
    padding: 20px; }
    .confirm-modal .modal-dialog .modal-body .btn {
      font-family: 'Roboto';
      font-weight: 300;
      font-size: 18px;
      line-height: 1.9;
      letter-spacing: 0.2px; }
      .confirm-modal .modal-dialog .modal-body .btn.btn-primary.btn-on-over {
        background-color: transparent;
        border: transparent;
        color: #364b94; }
        .confirm-modal .modal-dialog .modal-body .btn.btn-primary.btn-on-over:hover {
          color: #fff;
          background-color: #364b94;
          border-color: #364b94; }
    .confirm-modal .modal-dialog .modal-body input {
      margin: 5px; }

.settings-modal .modal-body {
  height: calc(100% - 68px); }
  .settings-modal .modal-body .aside-nav .nav li a {
    padding: 10px;
    padding-left: 14px; }
  .settings-modal .modal-body .page-wrapper {
    height: 100%;
    margin-left: 250px; }

.modal-header {
  border-bottom: initial; }

.modal {
  top: 25%;
  right: 0;
  left: 0;
  bottom: 0; }

/* Temporary fix for modal */
.modal-backdrop {
  position: relative; }

/* Timout Warning Modal */
.modal .modal-content .warining-modal .modal-header .modal-close-icon {
  font-size: 6rem; }

.grid-list-container {
  width: calc(100% - 275px); }

.grid-list.has-scroller .list-header {
  padding-right: 14px; }

.grid-list .list-header {
  position: relative;
  display: flex;
  white-space: nowrap; }
  .grid-list .list-header .list-group-item-heading {
    font-family: 'Roboto';
    font-weight: bold;
    text-align: left;
    font-size: 1.25em;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: 0.8px;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 0;
    color: #3c464a; }
  .grid-list .list-header .btn-link:hover {
    color: #0475b8; }
  .grid-list .list-header .btn-link:focus {
    color: #0475b8; }
  .grid-list .list-header .filter-caret-container {
    position: relative;
    display: inline-table;
    vertical-align: top; }
    .grid-list .list-header .filter-caret-container .btn {
      display: block;
      height: 18px;
      width: 18px;
      line-height: 0px;
      color: black; }
      .grid-list .list-header .filter-caret-container .btn i {
        width: 12px;
        height: 12px;
        vertical-align: top;
        line-height: 5px;
        font-size: 1.25em; }
        .grid-list .list-header .filter-caret-container .btn i.fa-caret-up {
          vertical-align: bottom;
          line-height: initial; }
  .grid-list .list-header .sorted-asc button {
    color: #0475b8; }
  .grid-list .list-header .sorted-asc .fa-caret-up {
    color: #0475b8; }
  .grid-list .list-header .sorted-asc .fa-caret-down {
    color: #8d8d8d; }
  .grid-list .list-header .sorted-desc button {
    color: #0475b8; }
  .grid-list .list-header .sorted-desc .fa-caret-up {
    color: #8d8d8d; }
  .grid-list .list-header .sorted-desc .fa-caret-down {
    color: #0475b8; }

.grid-list .list-body {
  height: calc(100% - 48px);
  overflow-y: auto; }

.grid-list .list-group {
  font-size: 1em;
  font-weight: 300;
  color: #3c464a; }
  .grid-list .list-group .list-group-item {
    padding: 8px;
    border: 0px; }
    .grid-list .list-group .list-group-item.even {
      background-color: #efefef; }
    .grid-list .list-group .list-group-item.reachable {
      cursor: pointer; }
      .grid-list .list-group .list-group-item.reachable span {
        color: black; }
        .grid-list .list-group .list-group-item.reachable span.display-name {
          font-weight: bold; }
        .grid-list .list-group .list-group-item.reachable span.font-info-accent {
          color: #3b53a3; }
    .grid-list .list-group .list-group-item .display-name {
      font-weight: 300; }
    .grid-list .list-group .list-group-item:hover {
      background: rgba(54, 75, 148, 0.3); }
    @media (min-width: 1200px) {
      .grid-list .list-group .list-group-item .col-md-3 {
        width: 25%; } }
    @media (min-width: 1445px) {
      .grid-list .list-group .list-group-item .col-lg-2 {
        width: 16.66667%; }
      .grid-list .list-group .list-group-item .col-lg-4 {
        width: 33.33333%; } }

#convs-container .equal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

#convs-container .equal > [class*='col-'] {
  display: flex;
  flex-direction: column; }

#convs-container #conv-list {
  width: 441px !important;
  min-width: 441px; }
  #convs-container #conv-list #conv-list-hdr li {
    padding: 0;
    width: 128px;
    vertical-align: bottom; }
    #convs-container #conv-list #conv-list-hdr li div.active {
      color: #928a81;
      font-family: 'Source Sans Pro';
      font-weight: 600;
      font-size: 20px;
      text-decoration: underline; }

#convs-container .conv-btn-group {
  padding: 15px 0px;
  border-left: none; }
  #convs-container .conv-btn-group .btn-group button {
    font-family: 'Roboto';
    font-weight: normal;
    max-width: 105px;
    width: 105px;
    margin-right: 10px;
    border-radius: 5px !important; }
    #convs-container .conv-btn-group .btn-group button :last-child {
      margin-right: 0; }
    #convs-container .conv-btn-group .btn-group button[disabled] {
      opacity: 0.4;
      cursor: not-allowed;
      pointer-events: none;
      color: #928a81;
      border-color: #928a81; }
    #convs-container .conv-btn-group .btn-group button span {
      vertical-align: sub !important; }

#convs-container .conv-search form:not(.form-inline) .form-group {
  margin-bottom: 10px; }

#convs-container .xs-l-border-gray-dark {
  border-left: 1px solid darkgray; }

#convs-container .lgi-content {
  -ms-word-wrap: break-word;
  word-break: break-all;
  display: block; }

#convs-container .conv-list-content {
  height: calc(100% - 64px); }
  #convs-container .conv-list-content.has-search {
    height: calc(100% - 96px); }
  #convs-container .conv-list-content .message-list {
    height: calc(100%);
    overflow-y: auto; }
    #convs-container .conv-list-content .message-list .list-group {
      margin-bottom: 0px; }
      #convs-container .conv-list-content .message-list .list-group .list-group-item:hover {
        cursor: pointer; }

#convs-container .lgi-content {
  display: block; }

.conversation-container .conversation-header .header {
  background-color: #efefef; }

/* CONVERSATIONS FROM COMON CORE */
.conversation-typing-input {
  position: absolute;
  background: white;
  width: 100%;
  bottom: 89px;
  padding-left: 10px;
  margin-top: 25px; }

.conversation-typing {
  position: absolute;
  background: white;
  width: 100%;
  bottom: 10px;
  padding-left: 10px;
  margin-top: 25px; }

.typing-text {
  font-family: 'Roboto';
  font-weight: normal;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  line-height: 22px; }

.typing-indicator {
  will-change: transform;
  width: auto;
  float: left;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  display: table;
  margin: 0 auto;
  position: relative;
  animation: 2s bulge infinite ease-out; }
  .typing-indicator span {
    height: 10px;
    width: 10px;
    float: left;
    margin: 0 1px;
    background-color: #9E9EA1;
    display: block;
    border-radius: 50%;
    opacity: 0.4; }
    .typing-indicator span:nth-of-type(1) {
      animation: 1s blink infinite 0.3333s; }
    .typing-indicator span:nth-of-type(2) {
      animation: 1s blink infinite 0.6666s; }
    .typing-indicator span:nth-of-type(3) {
      animation: 1s blink infinite 0.9999s; }

#convs-container .conv-btn-group {
  padding: 10px 0px; }

.attachment-btn {
  padding: 5px 0; }

.conversation-container .conversation-header .patient-banner {
  font-size: 2.0rem; }

.conversation-container .conversation-header .sender-name {
  font-size: 2.0rem; }

.conversation-container .conversation-header.group .header button {
  padding: 4px 4px; }

.conversation-container .conversation-header.group .header .fa:first-child {
  font-size: 2.0rem;
  width: 20px;
  height: 20px; }

.conversation-container .conversation-body .message .panel-title a {
  color: white;
  text-decoration: none; }
  .conversation-container .conversation-body .message .panel-title a:hover {
    color: white;
    text-decoration: underline; }

.conversation-container .conversation-body .message .message-text a {
  text-decoration: none; }
  .conversation-container .conversation-body .message .message-text a:hover {
    text-decoration: underline; }

.forwarded-conversation .receiver .message-text a {
  color: #3c474b;
  text-decoration: none; }
  .forwarded-conversation .receiver .message-text a:hover {
    color: #3c474b;
    text-decoration: underline; }

.no-conversation {
  font-size: 2.0rem;
  letter-spacing: 0.3px;
  color: #3c464a;
  padding-top: 10px; }

#convs-container .conv-list-content .message-list {
  border-top: 1px solid darkgray; }

.newconversation .modal-body.has-submit {
  height: calc(100% - 158px);
  overflow-y: auto;
  overflow-x: hidden; }

/* REFERENCE */
#messages-container {
  width: 100%; }
  #messages-container .conversation-container {
    height: inherit; }

.list-group .list-group-item.no-flags .lgi-content.has-annotations, .list-group .list-group-item.no-flags .lgi-content.md-has-annotations {
  margin-right: 62px; }

.list-group .list-group-item.no-flags .lgi-content.md-has-annotations {
  margin-right: 107px !important; }

.list-group .list-group-item.no-flags .lgi-annotations, .list-group .list-group-item.no-flags .md-lgi-annotations {
  width: 85px; }
  .list-group .list-group-item.no-flags .lgi-annotations .lgi-item, .list-group .list-group-item.no-flags .md-lgi-annotations .lgi-item {
    text-align: right; }
    .list-group .list-group-item.no-flags .lgi-annotations .lgi-item span, .list-group .list-group-item.no-flags .md-lgi-annotations .lgi-item span {
      float: right !important;
      margin-right: 10px; }

.list-group .list-group-item.no-flags .md-lgi-annotations {
  width: 110px !important; }

/* MOVE TO HELPERS */
.conversation-footer {
  width: 100%;
  position: absolute;
  bottom: 0px; }
  .conversation-footer .input-group textarea {
    border-radius: 6px 0px 0px 6px !important; }
  .conversation-footer .input-group .input-group-addon {
    color: #fff;
    background-color: #0ed957;
    border-color: #0ed957; }
    .conversation-footer .input-group .input-group-addon:hover {
      color: #fff;
      background-color: #0ba944;
      border-color: #0aa040; }
    .conversation-footer .input-group .input-group-addon.btn[disabled]:hover {
      color: #fff;
      background-color: #0ed957;
      border-color: #0ed957; }

.ng-one-line {
  height: 25px; }
  .ng-one-line.ng-two-lines {
    height: 38px !important; }

.ng-two-lines {
  height: 38px !important; }

/* MOVE TO STYLE GUIDE */
.message-status-group {
  background-color: white;
  font-weight: 300;
  width: 100%; }

.base-sender-message-text, .conversation-container .conversation-body .message.sender .message-text, .conversation-container .conversation-body .forwarded-conversation .message.sender-default .message-text {
  background-color: #364b94;
  font-family: 'Roboto';
  font-weight: 300;
  font-size: 1.8rem;
  padding: 10px 10px 0px 10px;
  line-height: 1.5;
  color: #fff; }
  .base-sender-message-text .btn-link, .conversation-container .conversation-body .message.sender .message-text .btn-link, .conversation-container .conversation-body .forwarded-conversation .message.sender-default .message-text .btn-link {
    color: white;
    padding: 0px 6px;
    margin-bottom: 4px; }

.conversation-container .banner {
  color: #928a81;
  font-size: 1.6rem;
  text-align: center; }

.conversation-container .conversation-header {
  height: calc(100%);
  background-color: white; }
  .conversation-container .conversation-header.has-footer {
    height: calc(100% - 84px); }
  .conversation-container .conversation-header .cc-banner {
    background-color: #efefef; }
    .conversation-container .conversation-header .cc-banner p {
      margin: 0 0; }
  .conversation-container .conversation-header .header {
    background-color: #efefef;
    height: 47px; }
    .conversation-container .conversation-header .header h2 {
      line-height: 1.25;
      height: 30px; }

.conversation-container .conversation-body {
  /* Forwarded Conversation */ }
  .conversation-container .conversation-body .message .time-stamp {
    font-family: 'Roboto';
    font-weight: normal;
    font-size: 1.3rem;
    color: #3c474b;
    letter-spacing: 0.5px; }
  .conversation-container .conversation-body .message.receiver .message-text {
    font-family: 'Roboto';
    font-weight: normal;
    font-size: 1.8rem;
    padding: 10px;
    line-height: 1.5;
    display: inline-block; }
    .conversation-container .conversation-body .message.receiver .message-text .btn-link {
      color: #3c474b;
      padding: 0px 6px;
      margin-bottom: 4px; }
  .conversation-container .conversation-body .message.receiver .forward-read-receipt {
    margin-bottom: -15px; }
  .conversation-container .conversation-body .message.sender .message-text .message-status {
    font-size: 1.3rem;
    padding: 2px 0px;
    margin: 0px; }
  .conversation-container .conversation-body .message .message-text a {
    color: inherit;
    text-decoration: underline; }
    .conversation-container .conversation-body .message .message-text a:hover {
      color: inherit; }
  .conversation-container .conversation-body .message .message-text p {
    margin: 0px; }
  .conversation-container .conversation-body .message .messageStatus {
    font-family: 'Roboto';
    font-weight: normal;
    font-size: 1.3rem;
    margin-top: 1px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    background: white;
    padding: 2px 10px 2px 10px;
    max-height: 150px; }
    .conversation-container .conversation-body .message .messageStatus .unread {
      font-weight: 600; }
  .conversation-container .conversation-body .forwarded-conversation .forward-message-header {
    border-bottom: 2px solid gainsboro;
    height: 16px;
    margin-bottom: 24px; }
    .conversation-container .conversation-body .forwarded-conversation .forward-message-header .title {
      font-family: 'Roboto';
      font-weight: bold;
      font-size: 12.8px;
      color: #928a81;
      padding: 3px 10px;
      border: 1px solid gainsboro;
      border-radius: 9px;
      background-color: white; }
  .conversation-container .conversation-body .forwarded-conversation .message.receiver .message-text, .conversation-container .conversation-body .forwarded-conversation .message.sender .message-text {
    background-color: #eeeeee;
    border: 1px solid #928a81; }
  .conversation-container .conversation-body .forwarded-conversation .btn-link {
    color: #928a81; }
    .conversation-container .conversation-body .forwarded-conversation .btn-link:hover, .conversation-container .conversation-body .forwarded-conversation .btn-link:focus {
      color: #928a81; }
  .conversation-container .conversation-body .forwarded-conversation .panel-collapse.scroll {
    overflow-y: auto; }
  .conversation-container .conversation-body .forwarded-conversation .messageStatus, .conversation-container .conversation-body .forwarded-conversation .message-status {
    color: #928a81;
    font-size: 1.3rem;
    padding: 2px 10px; }

.conversation-body-container {
  height: calc(100% - 47px);
  overflow-y: scroll; }

.patient-banner + .conversation-body-container {
  height: calc(100% - 96px); }

.collapse.in + .conversation-body-container {
  height: calc(100% - 143px); }

.scroll {
  overflow-y: scroll;
  max-height: 150px; }

.img-rotate-180 {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

.img-rotate-90 {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }

.img-rotate-270 {
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg); }

.attachment-btn {
  display: block;
  padding: 5px 0px; }

.audio-container {
  height: 50px;
  position: relative;
  min-width: 230px; }
  .audio-container .controls-container {
    background-color: white; }
  .audio-container vg-play-pause-button {
    width: 40px; }
  .audio-container .iconButton, .audio-container vg-time-display {
    color: #364b94; }
  .audio-container .iconButton.play:hover {
    color: #28386f; }
  .audio-container vg-scrub-bar-current-time {
    background-color: #364b94; }

.binary-container img, .image-container img {
  cursor: pointer; }

.binary-container img.img-thumbnail, .image-container img.img-thumbnail {
  display: inherit !important; }

.binary-container img.attachment-img, .image-container img.attachment-img {
  display: inherit !important; }

.binary-container img.no-attachment-img, .image-container img.no-attachment-img {
  display: none !important; }

.binary-container .fa, .image-container .fa {
  font-size: 2.8rem;
  color: #928a81;
  width: 34px;
  cursor: pointer; }

.newconversation .modal-body + .forward-container {
  height: calc(100% - 140px); }

.newconversation .modal-body .info-message + .recipients-height {
  height: calc(100% - 108px); }

.newconversation .modal-body {
  height: calc(100% - 68px); }
  .newconversation .modal-body #contacts-container .contacts-container-body {
    height: calc(100% - 141px); }
    @media (min-width: 1200px) {
      .newconversation .modal-body #contacts-container .contacts-container-body.my-contacts .col-md-3 {
        width: 25%; } }
    @media (min-width: 1709px) {
      .newconversation .modal-body #contacts-container .contacts-container-body.my-contacts .col-lg-2 {
        width: 16.66667%; }
      .newconversation .modal-body #contacts-container .contacts-container-body.my-contacts .col-lg-4 {
        width: 33.33333%; } }
    @media (min-width: 1200px) {
      .newconversation .modal-body #contacts-container .contacts-container-body.all-perfect-serve .col-md-2 {
        width: 20%; }
      .newconversation .modal-body #contacts-container .contacts-container-body.all-perfect-serve .contact-list .header {
        font-size: 18px;
        letter-spacing: -1px; } }
    @media (min-width: 1468px) {
      .newconversation .modal-body #contacts-container .contacts-container-body.all-perfect-serve .col-md-2 {
        width: 20%; }
      .newconversation .modal-body #contacts-container .contacts-container-body.all-perfect-serve .contact-list .header {
        font-size: 18px;
        letter-spacing: -1px; } }
    @media (min-width: 1769px) {
      .newconversation .modal-body #contacts-container .contacts-container-body.all-perfect-serve .col-lg-3 {
        width: 25%; }
      .newconversation .modal-body #contacts-container .contacts-container-body.all-perfect-serve .col-lg-2 {
        width: 16.66667%; } }
  .newconversation .modal-body .recipients-height {
    height: calc(100% - 74px); }

.recipient-name {
  font-size: 2.0rem;
  line-height: 2;
  color: #3c464a;
  font-weight: 400; }

.message-item {
  float: left; }

.footer-item {
  text-align: center;
  padding-bottom: 10px; }

.forward-window .modal .modal-dialog {
  max-width: 1168px;
  height: calc(100% - 6%); }
  .forward-window .modal .modal-dialog .modal-content {
    height: calc(100%);
    max-height: 886px; }
    .forward-window .modal .modal-dialog .modal-content .modal-body {
      height: calc(100% - 140px); }

.modal-body .forward-container .label-name {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.4px;
  color: #928a81; }

.modal-body .forward-container .recipient-list-content {
  overflow-y: auto;
  height: calc(100% - 108px); }
  .modal-body .forward-container .recipient-list-content .list-group-item {
    padding: 0px 20px;
    border: 0 solid transparent; }
    .modal-body .forward-container .recipient-list-content .list-group-item .recipient-name {
      margin-right: 80px; }
    .modal-body .forward-container .recipient-list-content .list-group-item .btn-add {
      display: none;
      position: absolute;
      right: 5px;
      top: 7px;
      color: #3c464a;
      font-weight: 300px; }
    .modal-body .forward-container .recipient-list-content .list-group-item.reachable {
      cursor: pointer; }
      .modal-body .forward-container .recipient-list-content .list-group-item.reachable .recipient-name {
        font-weight: bold;
        color: black; }
    .modal-body .forward-container .recipient-list-content .list-group-item:hover, .modal-body .forward-container .recipient-list-content .list-group-item:focus {
      background-color: rgba(54, 75, 148, 0.25); }
      .modal-body .forward-container .recipient-list-content .list-group-item:hover.reachable .btn-add, .modal-body .forward-container .recipient-list-content .list-group-item:focus.reachable .btn-add {
        display: block; }

.modal-body .forward-container .nav-pills {
  background-size: 15px 15px;
  background-position: 0 -5px;
  background-image: -webkit-linear-gradient(0deg, transparent 0px, transparent 0px, transparent 0px, transparent 0px), -webkit-linear-gradient(90deg, transparent 39.5px, gainsboro 39.5px);
  background-size: 111px 40px; }

.modal-body .forward-container .selected-recipient-list {
  height: calc(50% - 40px);
  margin-bottom: 15px; }

.modal-body .forward-container .selected-recipient .recipient-name-container .recipient-name {
  height: 30px;
  line-height: 28px;
  max-width: 320px;
  margin-right: 22px;
  margin-top: 5px;
  margin-bottom: 5px; }

.modal-body .forward-container .selected-recipient .recipient-name-container .btn-link {
  opacity: 0;
  color: #364b94;
  position: absolute;
  top: 4px;
  right: 0px; }

.modal-body .forward-container .selected-recipient .recipient-name-container:hover, .modal-body .forward-container .selected-recipient .recipient-name-container:focus {
  background-color: rgba(54, 75, 148, 0.25);
  padding-right: inherit; }
  .modal-body .forward-container .selected-recipient .recipient-name-container:hover .btn-link, .modal-body .forward-container .selected-recipient .recipient-name-container:focus .btn-link {
    opacity: 1; }

.modal-body .forward-container textarea {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #3c464a;
  font-weight: 300;
  height: calc(50% - 48px);
  box-shadow: none;
  border: 1px solid; }
  .modal-body .forward-container textarea:focus {
    border-color: #364b94;
    outline: none;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important; }

.newconversation .modal-footer.footer-send, .forward-window .modal-footer.footer-send {
  bottom: 0px;
  position: absolute;
  width: 100%; }
  .newconversation .modal-footer.footer-send.text-center, .forward-window .modal-footer.footer-send.text-center {
    text-align: center; }
  .newconversation .modal-footer.footer-send .btn.btn-xl, .forward-window .modal-footer.footer-send .btn.btn-xl {
    font-size: 20px;
    min-width: 152px; }

#interactions-container .equal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

#interactions-container .equal > [class*='col-'] {
  display: flex;
  flex-direction: column; }

#interactions-container ul {
  list-style: none; }

#interactions-container .interaction-error {
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.4px;
  color: #6f6f6f; }

#interactions-container .selections {
  height: 450px;
  overflow-y: scroll; }

#interactions-container .ps-checkbox-hover input[type="radio"] {
  font-family: 'Glyphicons Halflings';
  content: "\E013";
  font-size: 1.3rem;
  line-height: 23px;
  text-indent: 3px;
  margin-top: 0px; }

#interactions-container .question-label {
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.4px;
  color: #6f6f6f; }

#interactions-container .question-answer {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.5px;
  color: #3c464a; }

#interactions-container .patient-type {
  font-size: 20px;
  font-weight: 300;
  height: 24px;
  margin-left: 14px; }

#interactions-container .interactions-grid-container {
  height: calc(100% - 111px); }

#interactions-container .generic-list-results {
  height: calc(100% - 121px);
  overflow-y: auto; }

#interactions-container .generic-question .generic-answer-list {
  height: calc(100% - 39px);
  overflow-y: auto;
  margin-right: -14px; }

.recipients-interactions-container {
  margin: -15px -14px;
  height: calc(100% + 29px); }

.shell-wrapper {
  position: fixed;
  top: 87px;
  bottom: 35px;
  width: 100%; }
  .shell-wrapper .page-wrapper {
    height: 100%;
    margin-left: 250px; }
    .shell-wrapper .page-wrapper .container-fluid.top-padding {
      padding-top: 15px; }
  .shell-wrapper .page-wrapper-auto-fit {
    height: 100%;
    margin-left: 70px; }
    .shell-wrapper .page-wrapper-auto-fit .container-fluid.top-padding {
      padding-top: 15px; }

.small-nav {
  width: 70px !important;
  transition: all ease-in-out 75ms; }

.large-nav {
  transition: all ease-in-out 75ms; }

.footer {
  border-top: 1px solid #928a81;
  font-weight: 300 !important; }

.version {
  font-size: 14px;
  font-weight: 500 !important;
  color: #b5b0aa; }

/* BLOCK UI LOADER */
body.block-ui {
  position: relative; }

.block-ui-container .container {
  height: 100vh;
  width: 100vw;
  font-family: Helvetica;
  background: transparent; }

.block-ui-container .loader {
  height: 20px;
  width: 250px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto; }

.block-ui-container .loader--dot {
  -webkit-animation-name: loader;
  animation-name: loader;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  background-color: black;
  position: absolute; }

.block-ui-container .loader--dot:first-child {
  background-color: #0ed957;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.block-ui-container .loader--dot:nth-child(2) {
  background-color: #E24301;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s; }

.block-ui-container .loader--dot:nth-child(3) {
  background-color: #364B94;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s; }

.block-ui-container .loader--dot:nth-child(4) {
  background-color: #0ed957;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s; }

.block-ui-container .loader--dot:nth-child(5) {
  background-color: #E24301;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s; }

.block-ui-container .loader--dot:nth-child(6) {
  background-color: #364B94;
  -webkit-animation-delay: 0s;
  animation-delay: 0s; }

.block-ui-container .loader--text {
  position: absolute;
  top: 200%;
  left: 0;
  right: 0;
  width: 4rem;
  margin: auto; }

.block-ui-container .loader--text:after {
  content: "Loading";
  font-weight: bold;
  -webkit-animation-name: loading-text;
  animation-name: loading-text;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

@-webkit-keyframes loader {
  15% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  45% {
    -webkit-transform: translateX(230px);
    transform: translateX(230px); }
  65% {
    -webkit-transform: translateX(230px);
    transform: translateX(230px); }
  95% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes loader {
  15% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  45% {
    -webkit-transform: translateX(230px);
    transform: translateX(230px); }
  65% {
    -webkit-transform: translateX(230px);
    transform: translateX(230px); }
  95% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@-webkit-keyframes loading-text {
  0% {
    content: "Loading"; }
  25% {
    content: "Loading."; }
  50% {
    content: "Loading.."; }
  75% {
    content: "Loading..."; } }

@keyframes loading-text {
  0% {
    content: "Loading"; }
  25% {
    content: "Loading."; }
  50% {
    content: "Loading.."; }
  75% {
    content: "Loading..."; } }

.patients-container .patients-results-container {
  height: calc(100% - 136px); }

.patient-details-modal .modal-body {
  height: calc(100% - 114px); }

.patient-details-modal .patient-banner {
  font-family: 'Roboto';
  font-weight: 400;
  font-size: 2.4rem;
  color: #fff;
  padding: 7px 16px;
  line-height: 1.33333; }

.patient-details-modal .line-break {
  border-bottom: 2px solid #928a81;
  margin-top: 20px;
  margin-bottom: 20px; }

.patient-details-modal .patient-info-container .label {
  font-family: 'Roboto';
  font-size: 2.0rem;
  line-height: 1;
  letter-spacing: 0.4px;
  color: #3c464a;
  font-weight: 400;
  text-align: right;
  padding: 1rem .6rem; }

.patient-details-modal .patient-info-container .display-name {
  font-family: 'Roboto';
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 1;
  color: black;
  padding: 1rem 0;
  display: inline-flex; }

.patient-details-modal .grid-container {
  height: calc(100% - 34px); }

.patient-details-modal .patient-careteam-results-container {
  height: calc(100% - 220px); }
  .patient-details-modal .patient-careteam-results-container .title {
    font-family: 'Roboto';
    font-size: 2.0rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.4px;
    color: #3c464a; }

.patient-details-modal .list-header .role-tile {
  margin-left: 18px; }

.patient-details-modal .list-header .name-tile {
  margin-left: 50px; }

.patient-details-modal .list-header .specialty-tile {
  margin-left: 18px; }

.patient-details-modal .list-group-item .fa-circle {
  color: #0ed957; }

.patient-details-modal .list-group-item .fa-circle-thin {
  color: #928a81; }

.patient-details-modal .list-group-item .fa-comments-o {
  font-size: 3.2rem;
  color: #364b94; }
  .patient-details-modal .list-group-item .fa-comments-o.disable {
    color: #928a81; }

.patient-details-modal .list-group-item .has-sm-left-icon {
  margin-left: 26px; }

.ui-select-container .ui-select-match.btn-default-focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline-offset: initial; }

.ui-select-container .ui-select-match .btn-default {
  color: #3c474b;
  background-color: white;
  background-image: none;
  border: 1px solid #ccc; }
  .ui-select-container .ui-select-match .btn-default:hover {
    background-color: #eeeeee; }

.ui-select-container .ui-select-match input:active, .ui-select-container .ui-select-match input:focus {
  border-color: #364b94;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(54, 75, 148, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(54, 75, 148, 0.6); }

.ui-select-container .ui-select-match .ui-select-toggle > .caret {
  pointer-events: none; }

.ui-select-container.ui-select-bootstrap .ui-select-choices-row.active span {
  background-color: #364b94; }

/* Data Validation */
.form-group .help-block {
  display: none; }

.form-group.has-error .help-block {
  display: block; }

.auto-fit-contents {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: -ms-fit-content;
  width: -o-fit-content;
  width: fit-content;
  display: table; }

.truncate, #messages-container .sender-name {
  white-space: nowrap;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis; }

/* TODO: Move to STYLE GUID */
.ng-directive {
  display: block; }

.inherit-height {
  height: inherit; }

.full-height {
  height: calc(100%); }

.loader-spinner {
  padding: 4px;
  background-color: whitesmoke;
  border-radius: 4px; }

.loader-error {
  padding: 4px;
  border-radius: 4px; }
  .loader-error.sender {
    color: white; }
  .loader-error.receiver {
    color: #3c474b; }

.attachment-btn {
  display: block;
  padding: 5px; }
  .attachment-btn .image-container {
    position: relative; }

/* INPUT ADDONS */
/* CSS used here will be applied after bootstrap.css */
/* custom checkboxes */
.button-radio ul {
  list-style: none; }

.ps-checkbox {
  display: inline-flex;
  margin: 0px;
  padding: 2px 0px; }
  .ps-checkbox span.checkbox-circle {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-top: 3px;
    border: 1px solid #888888;
    display: inline-table; }
    .ps-checkbox span.checkbox-circle .fa {
      color: #888888;
      font-size: 1.0rem;
      line-height: 1.3; }
  .ps-checkbox span > .fa.fa-check {
    display: none; }
  .ps-checkbox.hover-active span > .fa.fa-check {
    display: block; }
  .ps-checkbox input[type="radio"], .ps-checkbox input[type="checkbox"] {
    display: none; }
    .ps-checkbox input[type="radio"]:checked + span, .ps-checkbox input[type="checkbox"]:checked + span {
      background: #364b94;
      border: 1px solid #364b94; }
      .ps-checkbox input[type="radio"]:checked + span .fa.fa-check, .ps-checkbox input[type="checkbox"]:checked + span .fa.fa-check {
        display: block;
        color: white; }
  .ps-checkbox label {
    font-family: 'Roboto';
    font-weight: 300;
    letter-spacing: 1.1px;
    font-size: 1.6rem;
    line-height: 1.5;
    padding-left: 6px;
    color: #000000; }
  .ps-checkbox .fa-2x {
    font-size: 2.6rem; }
  .ps-checkbox :focus + label::before,
  .ps-checkbox :active + label::before,
  .ps-checkbox :focus + label::after,
  .ps-checkbox :active + label::after {
    background-image: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none !important;
    outline: 0 none; }

input[type="checkbox"],
input[type="checkbox"]:hover,
input[type="checkbox"]:focus,
input[type="checkbox"]:active,
input[type="checkbox"]:checked,
input[type="checkbox"]:hover + label,
input[type="checkbox"]:focus + label,
input[type="checkbox"]:active + label,
input[type="checkbox"]:checked + label,
input[type="checkbox"]:hover + label::before,
input[type="checkbox"]:focus + label::before,
input[type="checkbox"]:active + label::before,
input[type="checkbox"]:checked + label::before,
input[type="checkbox"]:hover + label::after,
input[type="checkbox"]:focus + label::after,
input[type="checkbox"]:active + label::after,
input[type="checkbox"]:checked + label::after,
label,
label::before,
label::after {
  background-image: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none !important;
  outline: 0 none; }

input[type=text]::-ms-clear {
  display: none; }

input[type=text]::-ms-reveal {
  display: none; }

.no-decor:focus,
.no-decor:hover,
.no-decor:active {
  text-decoration: none; }

.flex-left {
  display: flex;
  float: left; }

.no-r-padding {
  padding-right: 0px; }

.no-l-padding {
  padding-left: 0px; }

input[type="text"].form-control {
  font-size: 1.125em; }

.action-disabled {
  opacity: .3; }

.action-enabled {
  animation: fadeIn30to100 1s;
  -moz-animation: fadeIn30to100 1s;
  -webkit-animation: fadeIn30to100 1s;
  -o-animation: fadeIn30to100 1s;
  opacity: 1; }

@keyframes fadeInZeroToHalf {
  from {
    opacity: 0; }
  to {
    opacity: .5; } }

@-moz-keyframes fadeInZeroToHalf {
  /* Firefox */
  from {
    opacity: 0; }
  to {
    opacity: .5; } }

@-webkit-keyframes fadeInZeroToHalf {
  /* Safari and Chrome */
  from {
    opacity: 0; }
  to {
    opacity: .5; } }

@-o-keyframes fadeInZeroToHalf {
  /* Opera */
  from {
    opacity: 0; }
  to {
    opacity: .5; } }

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

@-moz-keyframes fadeIn {
  /* Firefox */
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-webkit-keyframes fadeIn {
  /* Safari and Chrome */
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-o-keyframes fadeIn {
  /* Opera */
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn30to100 {
  from {
    opacity: .3; }
  to {
    opacity: 1; } }

@-moz-keyframes fadeIn30to100 {
  /* Firefox */
  from {
    opacity: .3; }
  to {
    opacity: 1; } }

@-webkit-keyframes fadeIn30to100 {
  /* Safari and Chrome */
  from {
    opacity: .3; }
  to {
    opacity: 1; } }

@-o-keyframes fadeIn30to100 {
  /* Opera */
  from {
    opacity: .3; }
  to {
    opacity: 1; } }

@keyframes fadeIn10to70 {
  from {
    opacity: .1; }
  to {
    opacity: .7; } }

@-moz-keyframes fadeIn10to70 {
  /* Firefox */
  from {
    opacity: .1; }
  to {
    opacity: .7; } }

@-webkit-keyframes fadeIn10to70 {
  /* Safari and Chrome */
  from {
    opacity: .1; }
  to {
    opacity: .7; } }

@-o-keyframes fadeIn10to70 {
  /* Opera */
  from {
    opacity: .1; }
  to {
    opacity: .7; } }

@keyframes fadeIn10to100 {
  from {
    opacity: .1; }
  to {
    opacity: 1; } }

@-moz-keyframes fadeIn10to100 {
  /* Firefox */
  from {
    opacity: .1; }
  to {
    opacity: 1; } }

@-webkit-keyframes fadeIn10to100 {
  /* Safari and Chrome */
  from {
    opacity: .1; }
  to {
    opacity: 1; } }

@-o-keyframes fadeIn10to100 {
  /* Opera */
  from {
    opacity: .1; }
  to {
    opacity: 1; } }

ul.psx-checkbox-list {
  list-style: none;
  padding: 0px;
  margin: auto; }
  ul.psx-checkbox-list li {
    padding: 1px 0px; }

.psx-checkbox {
  line-height: 17px; }

.psx-checkbox label {
  display: inline-block;
  position: relative;
  padding-left: 5px;
  font-weight: normal;
  font-style: normal;
  cursor: pointer;
  font-size: 14px; }

.psx-checkbox label.bigger {
  font-size: 16px; }

.psx-checkbox label::before {
  content: "";
  display: inline-block;
  position: absolute;
  font-style: normal;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #888888;
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  border-radius: 50%;
  margin-top: 1px; }

.psx-checkbox label::after {
  display: inline-block;
  position: absolute;
  font-style: normal;
  width: 16px;
  height: 16px;
  left: 0;
  top: 0;
  margin-left: -20px;
  padding-left: 3px;
  padding-top: 1px;
  font-size: 11px;
  color: #555555; }

.psx-checkbox input[type="checkbox"] {
  opacity: 0;
  z-index: 1; }

.psx-checkbox input[type="checkbox"]:not([disabled]) + label:hover::after {
  font-family: 'FontAwesome';
  font-style: normal;
  content: "\F00C";
  color: #888888;
  margin-top: 1px; }

.psx-checkbox input[type="checkbox"]:checked:not([disabled]) + label:hover::after {
  font-family: 'FontAwesome';
  font-style: normal;
  content: "\F00C";
  color: #fff;
  margin-top: 1px; }

.psx-checkbox input[type="checkbox"]:checked + label::after {
  font-family: 'FontAwesome';
  font-style: normal;
  content: "\F00C";
  color: #fff;
  margin-top: 1px; }

.psx-checkbox input[type="checkbox"]:disabled + label {
  opacity: 0.65;
  cursor: not-allowed; }

.psx-checkbox input[type="checkbox"]:disabled + label::before {
  background-color: #eeeeee;
  cursor: not-allowed; }

.psx-checkbox input[type="checkbox"]:checked + label::before {
  background-color: #364b94;
  border-color: #364b94; }

.dnd-handle-style {
  padding: 5px;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: move;
  /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab; }
  .dnd-handle-style:hover {
    border: 1px solid rgba(60, 70, 74, 0.3); }
  .dnd-handle-style:active {
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing; }

.dnd-placeholder {
  background-color: #bcbcbc;
  width: 100%;
  opacity: 1;
  visibility: visible; }

.psx-vertically-center-block {
  position: relative;
  top: 50%;
  transform: translateY(-50%); }

ul.psx-radiobutton-list {
  list-style: none;
  padding: 0px;
  margin: auto; }
  ul.psx-radiobutton-list li {
    padding: 1px 0px; }

.psx-radiobutton {
  line-height: 18px; }

.psx-radiobutton label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 5px;
  font-weight: normal;
  cursor: pointer;
  font-size: 14px; }

.psx-radiobutton label.bigger {
  font-size: 16px; }

.psx-radiobutton label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  margin-top: 1px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out;
  transition: border 0.15s ease-in-out; }

.psx-radiobutton label::after {
  display: inline-block;
  position: absolute;
  content: " ";
  width: 9px;
  height: 9px;
  left: 4px;
  top: 5px;
  margin-left: -20px;
  border-radius: 50%;
  background-color: #364b94;
  -webkit-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33); }

.psx-radiobutton input[type="radio"]:checked + label::before {
  border: 1px solid #364b94; }

.psx-radiobutton input[type="radio"] {
  opacity: 0;
  z-index: 1;
  cursor: pointer; }

.psx-radiobutton input[type="radio"]:checked + label::after {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1); }

.psx-radiobutton input[type="radio"]:disabled {
  cursor: not-allowed; }

.psx-radiobutton input[type="radio"]:disabled + label {
  cursor: not-allowed; }

.psx-radiobutton input[type="radio"]:disabled + label {
  opacity: 0.65; }

.psx-radiobutton input[type="radio"]:disabled + label::before {
  cursor: not-allowed; }

ul.psx-radiocheckbox-list {
  list-style: none;
  padding: 0px;
  margin: auto; }
  ul.psx-radiocheckbox-list li {
    padding: 1px 0px; }

.psx-radiocheckbox {
  margin-left: 2px;
  line-height: 17px; }

.psx-radiocheckbox label {
  display: inline-block;
  position: relative;
  padding-left: 5px;
  font-weight: normal;
  font-style: normal;
  cursor: pointer;
  font-size: 14px; }

.psx-radiocheckbox label.bigger {
  font-size: 16px; }

.psx-radiocheckbox label::before {
  content: "";
  display: inline-block;
  position: absolute;
  font-style: normal;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #888888;
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  border-radius: 50%;
  margin-top: 1px; }

.psx-radiocheckbox label::after {
  display: inline-block;
  position: absolute;
  font-style: normal;
  width: 16px;
  height: 16px;
  left: 0;
  top: 0;
  margin-left: -20px;
  padding-left: 3px;
  padding-top: 1px;
  font-size: 11px;
  color: #555555; }

.psx-radiocheckbox input[type="radio"] {
  opacity: 0;
  z-index: 1; }

.psx-radiocheckbox input[type="radio"]:not([disabled]) + label:hover::after {
  font-family: 'FontAwesome';
  font-style: normal;
  content: "\F00C";
  color: #888888;
  margin-top: 1px; }

.psx-radiocheckbox input[type="radio"]:checked:not([disabled]) + label:hover::after {
  font-family: 'FontAwesome';
  font-style: normal;
  content: "\F00C";
  color: #fff;
  margin-top: 1px; }

.psx-radiocheckbox input[type="radio"]:checked + label::after {
  font-family: 'FontAwesome';
  font-style: normal;
  content: "\F00C";
  color: #fff;
  margin-top: 1px; }

.psx-radiocheckbox input[type="radio"]:disabled + label {
  opacity: 0.65;
  cursor: not-allowed; }

.psx-radiocheckbox input[type="radio"]:disabled + label::before {
  background-color: #eeeeee;
  cursor: not-allowed; }

.psx-radiocheckbox input[type="radio"]:checked + label::before {
  background-color: #364b94;
  border-color: #364b94; }

.psx-grid-header {
  background-color: inherit;
  height: 36px;
  line-height: 36px;
  border-bottom: 1px solid rgba(60, 70, 74, 0.3);
  position: relative;
  display: flex;
  white-space: nowrap; }
  .psx-grid-header button,
  .psx-grid-header p {
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    border-color: transparent;
    background-color: transparent;
    border: 0px;
    padding: 0px; }
  .psx-grid-header p {
    margin-top: 4px;
    cursor: default; }
  .psx-grid-header .sort-active {
    color: #0475b8; }
  .psx-grid-header > .fa {
    position: relative;
    top: 2px;
    margin-left: 2px; }
  .psx-grid-header .fa-sort {
    opacity: 0; }
  .psx-grid-header:hover .fa-sort {
    animation: fadeInZeroToHalf .5s;
    -moz-animation: fadeInZeroToHalf .5s;
    -webkit-animation: fadeInZeroToHalf .5s;
    -o-animation: fadeInZeroToHalf .5s;
    opacity: .5; }
    .psx-grid-header:hover .fa-sort:hover {
      opacity: 1; }
  .psx-grid-header .collapse-row-button {
    font-size: 18px !important; }

ul.psx-grid-body {
  padding: 0;
  margin-bottom: 0px;
  list-style-type: none; }

.psx-grid-item {
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  border-right: 0px;
  border-left: 0px;
  border-bottom: 1px solid rgba(60, 70, 74, 0.3); }
  .psx-grid-item.psx-grid-item-inactive {
    font-style: italic;
    color: darkgray; }
  .psx-grid-item.inactive {
    font-style: italic;
    color: darkgray; }
  .psx-grid-item.psx-grid-item-selected {
    background-color: rgba(54, 75, 148, 0.3); }
  .psx-grid-item.selected {
    background-color: rgba(54, 75, 148, 0.3); }
  .psx-grid-item.psx-grid-item:hover {
    background-color: #d9edf7;
    cursor: hand; }
    .psx-grid-item.psx-grid-item:hover.psx-grid-item-selected {
      background-color: rgba(54, 75, 148, 0.3); }
    .psx-grid-item.psx-grid-item:hover.selected {
      background-color: rgba(54, 75, 148, 0.3); }

.psx-grid-item-multiline {
  min-height: 40px;
  max-height: 480px;
  line-height: 24px;
  padding: 7px 10px 5px 10px;
  font-size: 14px;
  border-right: 0px;
  border-left: 0px;
  border-bottom: 1px solid rgba(60, 70, 74, 0.3); }
  .psx-grid-item-multiline.psx-grid-item-multiline-selected {
    background-color: rgba(54, 75, 148, 0.3); }
  .psx-grid-item-multiline.selected {
    background-color: rgba(54, 75, 148, 0.3); }
  .psx-grid-item-multiline.inactive {
    font-style: italic;
    opacity: .7; }
  .psx-grid-item-multiline:hover {
    background-color: #d9edf7; }
    .psx-grid-item-multiline:hover.selected {
      background-color: rgba(54, 75, 148, 0.3); }

.psx-grid-item-editor {
  border-top: 0px;
  border-bottom: 0px;
  padding: 0px; }

.single-icon-column {
  width: 25px; }

ul.psx-list {
  padding: 0;
  margin-bottom: 0px;
  list-style-type: none; }

.psx-list-item {
  height: 48px;
  line-height: 48px;
  font-size: 14px;
  border-bottom: 1px solid rgba(60, 70, 74, 0.3); }
  .psx-list-item.inactive {
    font-style: italic;
    color: darkgray; }
  .psx-list-item.selected {
    background-color: rgba(54, 75, 148, 0.3); }
  .psx-list-item.psx-list-item:hover {
    background-color: #d9edf7;
    cursor: hand; }
    .psx-list-item.psx-list-item:hover.selected {
      background-color: rgba(54, 75, 148, 0.3); }
  .psx-list-item.bigger {
    font-size: 16px; }

.flex-display-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-display-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

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

.flex-display-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.flex-display-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between; }

.flex-display-around {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-around; }

.flex-column {
  flex: 1;
  min-width: 0; }

.flex-column-double {
  flex: 2;
  min-width: 0; }

.flex-column-triple {
  flex: 3;
  min-width: 0; }

.flex-grid .flex-column:not(:last-child) {
  padding-right: 15px; }

.psx-card {
  border-radius: 2px;
  margin: 15px 10px;
  border: 1px solid rgba(60, 70, 74, 0.3);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.17);
  background: white; }
  .psx-card:hover {
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25); }
  .psx-card .card-body {
    padding: 15px; }
  .psx-card.editing {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.09); }
  .psx-card .card-header {
    color: darkgray;
    font-weight: 400;
    font-size: 20px;
    height: 50px;
    padding: 0px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid rgba(60, 70, 74, 0.3); }
  .psx-card .bold-header {
    color: #3c464a;
    font-weight: 500;
    font-size: 24px;
    padding: 0px 15px;
    margin: 0px -15px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid rgba(60, 70, 74, 0.3); }
  .psx-card .section-header {
    border-bottom: 1px solid rgba(60, 70, 74, 0.3);
    color: darkgray;
    font-weight: 500;
    font-size: 18px;
    padding: 5px 0px; }
  .psx-card .small-header {
    border-bottom: 1px solid rgba(60, 70, 74, 0.3);
    padding-bottom: 5px;
    font-size: 12px;
    font-weight: 500; }
  .psx-card .edit-wrapper {
    background: white;
    padding: 15px;
    border: 1px solid #364b94;
    border-radius: 2px;
    box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.09); }
  .psx-card .card-banner {
    padding: 10px;
    box-shadow: 2px 0px 2px rgba(0, 0, 0, 0.17);
    background-color: #364b94;
    color: white; }

.action-icon-container .action-icon {
  font-size: 20px;
  margin: 0px 8px;
  opacity: .1; }

.action-icon-container .fa-pencil-square-o {
  margin-top: 2px; }

.action-icon-container:hover .action-icon {
  cursor: pointer;
  animation: fadeIn10to100 1s;
  -moz-animation: fadeIn10to100 1s;
  -webkit-animation: fadeIn10to100 1s;
  -o-animation: fadeIn10to100 1s;
  opacity: 1; }
  .action-icon-container:hover .action-icon:hover {
    color: #364b94; }

.psx-btn-link {
  color: #006fcf;
  font-size: 14px;
  display: block;
  padding: 0px;
  border-color: transparent;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none; }
  .psx-btn-link:hover {
    text-decoration: underline; }

.psx-btn-link-disabled {
  color: rgba(60, 70, 74, 0.3);
  pointer-events: none; }

/*  
 * CLASS HELPERS
 * Samantic Classes to support the need of NOT modifing excisting class.
 * Basic Support Padding, Margins, Borders.

 * Classes will need to be added as needed
 */
.no-padding {
  padding: 0; }

.xs-padding {
  padding: 2px; }

.sm-padding {
  padding: 4px; }

.md-padding {
  padding: 6px; }

.lg-padding {
  padding: 10px; }

.xl-padding {
  padding: 14px; }

.xs-bt-padding {
  padding-bottom: 2px; }

.xs-tp-padding {
  padding-top: 2px; }

.xs-lr-padding {
  padding-left: 2px;
  padding-right: 2px; }

.xs-tb-padding {
  padding-top: 2px;
  padding-bottom: 2px; }

.xs-bt-padding {
  padding-bottom: 2px; }

.xs-tp-padding {
  padding-top: 2px; }

.xs-l-padding {
  padding-left: 2px; }

.xs-r-padding {
  padding-right: 2px; }

.sm-bt-padding {
  padding-bottom: 4px; }

.sm-tp-padding {
  padding-top: 4px; }

.sm-lr-padding {
  padding-left: 4px;
  padding-right: 4px; }

.sm-tb-padding {
  padding-top: 4px;
  padding-bottom: 4px; }

.sm-b-padding {
  padding-bottom: 4px; }

.sm-t-padding {
  padding-top: 4px; }

.sm-l-padding {
  padding-left: 4px; }

.sm-r-padding {
  padding-right: 4px; }

.md-bt-padding {
  padding-bottom: 6px; }

.md-tp-padding {
  padding-top: 6px; }

.md-lr-padding {
  padding-left: 6px;
  padding-right: 6px; }

.md-tb-padding {
  padding-top: 6px;
  padding-bottom: 6px; }

.md-b-padding {
  padding-bottom: 6px; }

.md-t-padding {
  padding-top: 6px; }

.md-l-padding {
  padding-left: 6px; }

.md-r-padding {
  padding-right: 6px; }

.lg-bt-padding {
  padding-bottom: 10px; }

.lg-tp-padding {
  padding-top: 10px; }

.lg-lr-padding {
  padding-left: 10px;
  padding-right: 10px; }

.lg-tb-padding {
  padding-top: 10px;
  padding-bottom: 10px; }

.lg-b-padding {
  padding-bottom: 10px; }

.lg-t-padding {
  padding-top: 10px; }

.lg-l-padding {
  padding-left: 10px; }

.lg-r-padding {
  padding-right: 10px; }

.xl-bt-padding {
  padding-bottom: 14px; }

.xl-tp-padding {
  padding-top: 14px; }

.xl-lr-padding {
  padding-left: 14px;
  padding-right: 14px; }

.xl-tb-padding {
  padding-top: 14px;
  padding-bottom: 14px; }

.xl-b-padding {
  padding-bottom: 14px; }

.xl-t-padding {
  padding-top: 14px; }

.xl-l-padding {
  padding-left: 14px; }

.xl-r-padding {
  padding-right: 14px; }

.sm-b-padding-important {
  padding-bottom: 4px !important; }

.md-b-padding-important {
  padding-bottom: 6px !important; }

.lg-b-padding-important {
  padding-bottom: 10px !important; }

.xl-b-padding-important {
  padding-bottom: 14px !important; }

.no-margin {
  margin: 0; }

.xs-margin {
  margin: 2px; }

.sm-margin {
  margin: 4px; }

.md-margin {
  margin: 6px; }

.lg-margin {
  margin: 10px; }

.xl-margin {
  margin: 14px; }

.xs-left-margin {
  margin-left: 2px; }

.xs-right-margin {
  margin-right: 2px; }

.xs-lr-margin {
  margin-left: 2px;
  margin-right: 2px; }

.sm-left-margin {
  margin-left: 4px; }

.sm-right-margin {
  margin-right: 4px; }

.sm-lr-margin {
  margin-left: 4px;
  margin-right: 4px; }

.md-left-margin {
  margin-left: 6px; }

.md-right-margin {
  margin-right: 6px; }

.md-margin {
  margin-left: 6px;
  margin-right: 6px; }

.lg-left-margin {
  margin-left: 10px; }

.lg-right-margin {
  margin-right: 10px; }

.lg-lr-margin {
  margin-left: 10px;
  margin-right: 10px; }

.xl-margin {
  margin: 14px; }

.sm-tb-margin {
  margin-top: 4px;
  margin-bottom: 4px; }

.md-tb-margin {
  margin-top: 6px;
  margin-bottom: 6px; }

.lg-tb-margin {
  margin-top: 10px;
  margin-bottom: 10px; }

.xl-tb-margin {
  margin-top: 14px;
  margin-bottom: 14px; }

.sm-b-margin {
  margin-bottom: 4px; }

.md-b-margin {
  margin-bottom: 6px; }

.lg-b-margin {
  margin-bottom: 10px; }

.xl-b-margin {
  margin-bottom: 14px; }

.sm-t-margin {
  margin-top: 4px; }

.md-t-margin {
  margin-top: 6px; }

.lg-t-margin {
  margin-top: 10px; }

.xl-t-margin {
  margin-top: 14px; }

.sm-b-margin-important {
  margin-bottom: 4px !important; }

.md-b-margin-important {
  margin-bottom: 6px !important; }

.lg-b-margin-important {
  margin-bottom: 10px !important; }

.xl-b-margin-important {
  margin-bottom: 14px !important; }

.has-sm-left-icon {
  margin-left: 24px; }

.has-sm-righ-icon {
  margin-right: 24px; }

.has-md-left-icon {
  margin-left: 40px; }

.has-md-righ-icon {
  margin-right: 40px; }

.has-lg-left-icon {
  margin-left: 60px; }

.has-lg-righ-icon {
  margin-right: 60px; }

.has-xl-left-icon {
  margin-left: 80px; }

.has-xl-righ-icon {
  margin-right: 80px; }

.xs-border-gray {
  border: 1px solid #3c474b; }

.xs-border-gray-light {
  border: 1px solid #928a81; }

.xs-border-gray-dark {
  border: 1px solid darkgray; }

.xs-bt-border-gray {
  border-bottom: 1px solid #3c474b; }

.xs-bt-border-gray-light {
  border-bottom: 1px solid #928a81; }

.xs-bt-border-gray-dark {
  border-bottom: 1px solid darkgray; }

.sm-border-gray {
  border: 2px solid #3c474b; }

.sm-border-gray-light {
  border: 2px solid #928a81; }

.sm-border-gray-dark {
  border: 2px solid darkgray; }

.sm-bt-border-gray {
  border-bottom: 2px solid #3c474b; }

.sm-bt-border-gray-light {
  border-bottom: 2px solid #928a81; }

.sm-bt-border-gray-dark {
  border-bottom: 2px solid darkgray; }

.md-bt-border-gray {
  border-bottom: 3px solid #3c474b; }

.md-bt-border-gray-light {
  border-bottom: 3px solid #928a81; }

.md-bt-border-gray-dark {
  border-bottom: 3px solid darkgray; }
  .md-bt-border-gray-dark.important-border {
    border-bottom: 3px solid darkgray !important; }

.no-round-corners {
  border-radius: 0px; }

.tp-round-corner {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px; }

.bt-round-corner {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px; }

.bt-shadow {
  box-shadow: 0px 3px 3px #888888; }

/* Single line Ellipses */
.ellipsis {
  display: block;
  /* Fallback for non-webkit */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  /* IE | FIREFOX do NOT suppor multiline ellipses */ }
  .ellipsis.two-lines {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    white-space: normal; }

.full-width {
  width: 100%; }

.no-padding-important {
  padding: 0px !important; }

.disable-text-selection {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.inline-block {
  display: inline-block; }

.margin-10 {
  margin: 10px; }

.margin-top-5 {
  margin-top: 5px; }

.margin-top-10 {
  margin-top: 10px; }

.margin-top-20 {
  margin-top: 20px; }

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

.margin-bottom-5 {
  margin-bottom: 5px; }

.margin-bottom-10 {
  margin-bottom: 10px; }

.margin-bottom-20 {
  margin-bottom: 20px; }

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

.margin-left-5 {
  margin-left: 5px; }

.margin-left-10 {
  margin-left: 10px; }

.margin-right-5 {
  margin-right: 5px; }

.margin-right-10 {
  margin-right: 10px; }

.padding-sides-10 {
  padding-left: 10px;
  padding-right: 10px; }

.unselectable {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none; }

/* Layout for Style Guide */
/*!
 * Layout for Style Guide v0.0.1
 * Company : Premier Logic
 * Original Developer: Steve Rigby
 */
#ps-guide body {
  position: relative;
  line-height: 1.2; }

#ps-guide .builder {
  padding: 0 10px; }
  #ps-guide .builder [class^="col-"] {
    padding: 10px; }
    #ps-guide .builder [class^="col-"] .well {
      background: #fbfbfb;
      border: 1px solid darkgray;
      box-shadow: none;
      position: relative;
      margin: 0; }
      #ps-guide .builder [class^="col-"] .well.tall {
        height: 330px; }
        @media (max-width: 768px) {
          #ps-guide .builder [class^="col-"] .well.tall {
            height: auto; } }
      #ps-guide .builder [class^="col-"] .well.medium {
        height: 246px; }
        @media (max-width: 768px) {
          #ps-guide .builder [class^="col-"] .well.medium {
            height: auto; } }

#ps-guide .thumbnail {
  padding: 0;
  overflow: hidden; }

#ps-guide .color-block {
  display: table;
  height: 6em;
  width: 100%; }
  #ps-guide .color-block p {
    color: #3c474b;
    display: table-cell;
    text-align: center;
    width: 100%;
    vertical-align: middle; }
  #ps-guide .color-block.inverse p {
    color: #fff; }

#ps-guide :not(pre) > code[class*="language-"],
#ps-guide pre[class*="language-"] {
  background: #f5f5f5 !important;
  border: none;
  border-radius: 0;
  margin: 0 !important; }

#ps-guide .card-header .anchor {
  opacity: 0;
  visibility: hidden; }

#ps-guide .card-header:hover .anchor {
  opacity: 1;
  visibility: visible; }

#ps-guide .deprecated {
  color: #364b94;
  border-top: 2px solid #364b94;
  border-bottom: 2px solid #364b94;
  padding: 10px 0px;
  margin: 10px 0px; }
  #ps-guide .deprecated h2 {
    color: #364b94;
    font-size: 24px;
    font-weight: bold; }

#ps-guide .show-code {
  margin-left: 20px; }
  #ps-guide .show-code span {
    margin: 0px; }

#ps-guide .ps-helper {
  background: #0475b8;
  border-radius: 50%;
  display: inline-block;
  color: #fff;
  font-size: 10px;
  line-height: 20px;
  height: 20px;
  text-align: center;
  width: 20px; }
  #ps-guide .ps-helper:hover {
    color: #fff; }

#ps-guide .ps-block-group {
  border-bottom: 1px solid #eeeeee;
  position: relative;
  margin: 0 0 20px;
  padding: 0 0 19px; }
  #ps-guide .ps-block-group .ps-block {
    display: table;
    margin: 0;
    padding: 0;
    min-width: 100%; }
    #ps-guide .ps-block-group .ps-block > div {
      box-sizing: border-box;
      display: table-cell;
      vertical-align: middle; }
    #ps-guide .ps-block-group .ps-block .ps-property {
      padding-right: 10px;
      white-space: nowrap !important;
      width: 30%; }
    @media (max-width: 768px) {
      #ps-guide .ps-block-group .ps-block div {
        box-sizing: border-box;
        display: block; }
      #ps-guide .ps-block-group .ps-block .ps-property {
        text-align: left;
        width: 100%;
        margin-bottom: 10px; } }

#ps-guide :not(pre) > code {
  font-weight: bold; }

#ps-guide .dl-horizontal dt {
  text-align: left; }

#ps-guide #main .navbar {
  border: 1px solid #eeeeee !important;
  border-bottom: 3px solid darkgray !important; }

@media (min-width: 992px) {
  #ps-guide .navbar .navbar-header {
    float: left; } }

#ps-guide .navbar.navbar-inverse .app-title {
  border-color: white;
  color: white; }
  #ps-guide .navbar.navbar-inverse .app-title small {
    color: #eeeeee; }

@media (min-width: 992px) {
  #ps-guide .navbar.navbar-inverse .navbar-nav > .active > a, #ps-guide .navbar.navbar-inverse .navbar-nav > .active a:hover, #ps-guide .navbar.navbar-inverse .navbar-nav > .active a:focus {
    background: transparent;
    box-shadow: 0 -6px white inset; }
  #ps-guide .navbar.navbar-inverse .navbar-nav a:hover {
    box-shadow: 0 -6px #28386f inset; } }

#ps-guide #hero {
  background: #364b94;
  margin-bottom: 30px; }

#ps-guide #main .section {
  margin-bottom: 70px;
  padding-top: 20px; }
  #ps-guide #main .section:first-child {
    padding-top: 0; }
  #ps-guide #main .section:first-child .section-title {
    border-top: none;
    padding-top: 0; }
  #ps-guide #main .section .section-title {
    border-top: 5px solid #e8671a;
    margin-bottom: 20px;
    padding-top: 20px; }

#ps-guide .card-group {
  border: 1px solid gainsboro;
  border-radius: 5px;
  margin-bottom: 40px; }
  #ps-guide .card-group .card-header {
    border-bottom: 1px solid gainsboro;
    border-radius: 5px 5px 0 0;
    padding: 12px; }
  #ps-guide .card-group .card-body {
    padding: 12px; }
  #ps-guide .card-group .card-footer {
    background: 1px solid gainsboro;
    border-top: 1px solid gainsboro; }
    #ps-guide .card-group .card-footer :not(pre) > code[class*="language-"],
    #ps-guide .card-group .card-footer pre[class*="language-"] {
      border-radius: 0 0 5px 5px !important; }

#ps-guide #sidebar.affix {
  top: 20px;
  z-index: 1000; }
  @media (max-width: 768px) {
    #ps-guide #sidebar.affix {
      left: 0px;
      top: 0px;
      width: 100%; }
      #ps-guide #sidebar.affix .navbar {
        border-bottom: 1px solid gainsboro; } }
  @media (min-width: 992px) {
    #ps-guide #sidebar.affix {
      width: 213px; } }
  @media (min-width: 1200px) {
    #ps-guide #sidebar.affix {
      width: 263px; } }

#ps-guide #sidebar .navbar {
  border: none;
  height: auto;
  min-height: 40px;
  /* make sidebar nav vertical */ }
  @media (max-width: 768px) {
    #ps-guide #sidebar .navbar {
      background: #eeeeee;
      margin-bottom: 30px; } }
  #ps-guide #sidebar .navbar .navbar-brand {
    height: auto;
    margin: 7px;
    padding: 10px; }
  #ps-guide #sidebar .navbar .navbar-toggle {
    margin: 10px;
    padding: 10px; }
  @media (min-width: 768px) {
    #ps-guide #sidebar .navbar .navbar-collapse {
      padding: 0;
      max-height: none; } }
  #ps-guide #sidebar .navbar .nav {
    float: none; }
    #ps-guide #sidebar .navbar .nav:not {
      display: block; }
    #ps-guide #sidebar .navbar .nav li {
      float: none;
      display: block;
      margin: 0; }
      #ps-guide #sidebar .navbar .nav li:first-child {
        border-top: none; }
      #ps-guide #sidebar .navbar .nav li a {
        background: none;
        color: #3c474b;
        padding: 4px 10px; }
        #ps-guide #sidebar .navbar .nav li a:hover {
          background-color: transparent;
          border-left: 2px solid #e8671a;
          color: #e8671a;
          padding-left: 8px; }

#ps-guide #ps-footer {
  background: #364b94;
  margin-top: 100px;
  padding: 50px 0; }
  #ps-guide #ps-footer p {
    margin-bottom: 0px; }

/*# sourceMappingURL=ps.common.style-guide.min.css.map */
/*!
   angular-block-ui v0.2.2
   (c) 2016 (null) McNull https://github.com/McNull/angular-block-ui
   License: MIT
*/

.block-ui {
  position: relative;
}

body.block-ui {
  /* IE8 doesn't support .block-ui:not(body) */
  
  position: static;
}

body.block-ui > .block-ui-container,
.block-ui-main > .block-ui-container {
  position: fixed;
}

.block-ui-container {
  position: absolute;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  filter: alpha(opacity=00);
}

.block-ui-active > .block-ui-container {
  height: 100%;
  cursor: wait;
}

.block-ui-active .block-ui-active > .block-ui-container {
  height: 0;
}

.block-ui-visible > .block-ui-container {
  opacity: 1;
  filter: alpha(opacity=100);
}

.block-ui-overlay {
  width: 100%;
  height: 100%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  background-color: white;
}

.block-ui-message-container {
  position: absolute;
  top: 35%;
  left: 0;
  right: 0;
  height: 0;
  text-align: center;
  z-index: 10001;
}

.block-ui-message {
  display: inline-block;
  text-align: left;
  background-color: #333;
  color: #f5f5f5;
  padding: 20px;
  border-radius: 4px;
  font-size: 20px;
  font-weight: bold;
  /* needed for IE */
  
  filter: alpha(opacity=100);
}

/* - - - - - - 8-< - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

.block-ui-anim-fade > .block-ui-container {
  transition: height 0s linear 200ms, opacity 200ms ease 0s;
}

.block-ui-anim-fade.block-ui-active > .block-ui-container {
  /*this resets the initial delay of the height */
  /*and sizes the block to full height at once at the start of the block. */
  transition-delay: 0s;
}

/* - - - - - - 8-< - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/*# sourceMappingURL=angular-block-ui.css.map *//*
 * Toastr
 * Version 2.0.1
 * Copyright 2012 John Papa and Hans Fjallemark.  
 * All Rights Reserved.  
 * Use, reproduction, distribution, and modification of this code is subject to the terms and 
 * conditions of the MIT license, available at http://www.opensource.org/licenses/mit-license.php
 *
 * Author: John Papa and Hans Fjallemark
 * Project: https://github.com/CodeSeven/toastr
 */
.toast-title {
  font-weight: bold;
}
.toast-message {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.toast-message a,
.toast-message label {
  color: #ffffff;
}
.toast-message a:hover {
  color: #cccccc;
  text-decoration: none;
}

.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  -webkit-text-shadow: 0 1px 0 #ffffff;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
}
.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40);
}

/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-left {
  top: 12px;
  left: 12px;
}
.toast-top-center {
  top: 12px;
}
.toast-top-right {
  top: 12px;
  right: 12px;
}
.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}
.toast-bottom-center {
  bottom: 12px;
}
.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}
.toast-center {
  top: 45%;
}
#toast-container {
  position: fixed;
  z-index: 999999;
  pointer-events: auto;
  /*overrides*/

}
#toast-container.toast-center,
#toast-container.toast-top-center,
#toast-container.toast-bottom-center{
  width: 100%;
  pointer-events: none;
}
#toast-container.toast-center > div,
#toast-container.toast-top-center > div,
#toast-container.toast-bottom-center > div{
  margin: auto;
  pointer-events: auto;
}
#toast-container.toast-center > button,
#toast-container.toast-top-center > button,
#toast-container.toast-bottom-center > button{
  pointer-events: auto;
}
#toast-container * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#toast-container > div {
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  -moz-box-shadow: 0 0 12px #999999;
  -webkit-box-shadow: 0 0 12px #999999;
  box-shadow: 0 0 12px #999999;
  color: #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
}
#toast-container > :hover {
  -moz-box-shadow: 0 0 12px #000000;
  -webkit-box-shadow: 0 0 12px #000000;
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  cursor: pointer;
}
#toast-container > .toast-info {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important;
}
#toast-container > .toast-wait {
  background-image: url("data:image/gif;base64,R0lGODlhIAAgAIQAAAQCBISGhMzKzERCROTm5CQiJKyurHx+fPz+/ExOTOzu7Dw+PIyOjCwqLFRWVAwKDIyKjMzOzOzq7CQmJLy6vFRSVPTy9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQJCQAXACwAAAAAIAAgAAAF3eAljmRpnmh6VRSVqLDpIDTixOdUlFSNUDhSQUAT7ES9GnD0SFQAKWItMqr4bqKHVPDI+WiTkaOFFVlrFe83rDrT0qeIjwrT0iLdU0GOiBxhAA4VeSk6QYeIOAsQEAuJKgw+EI8nA18IA48JBAQvFxCXDI8SNAQikV+iiaQIpheWX5mJmxKeF6g0qpQmA4yOu8C7EwYWCgZswRcTFj4KyMAGlwYxDwcHhCXMXxYxBzQHKNo+3DDeCOAn0V/TddbYJA0K48gAEAFQicMWFsfwNA3JSgAIAAFfwIMIL4QAACH5BAkJABoALAAAAAAgACAAhAQCBIyKjERCRMzOzCQiJPTy9DQyNGRmZMTCxOTm5CwqLHx+fBQWFJyenNTW1Pz6/Dw6PGxubAwKDIyOjNTS1CQmJCwuLPz+/Dw+PHRydAAAAAAAAAAAAAAAAAAAAAAAAAXboCaOZGmeaKoxWcSosMkk15W8cZ7VdZaXkcEgQtrxfD9RhHchima1GwlCGUBSFCaFxMrgRtnLFhWujWHhs2nJc8KoVlWGQnEn7/i8XgOwWAB7JwoONQ4KgSQAZRcOgHgSCwsSIhZMNRZ5CzULIgaWF5h4mhecfIQ8jXmQkiODhYeIiRYGjrG2PxgBARi3IhNMAbcCnwI5BAQpAZ8TIwK6vCQVDwUVKL+WzAANTA210g/VJ8OWxQefByQE4dZMzBoInwh4zrtgn2p725YNthUFTNRuGYB3AYGBHCEAACH5BAkJAB0ALAAAAAAgACAAhAQCBISChFRWVMzKzCQiJOTm5GxqbCwuLJSWlPz6/NTW1AwODJSSlGRmZCwqLOzu7HR2dDQ2NAQGBISGhFxaXNTS1CQmJOzq7GxubDQyNKSmpPz+/Nza3AAAAAAAAAAAAAXfYCeOZGmeaKqurHBdAiuP17Zdc0lMAVHWt9yI8LA9fCPB4xEjARoNSWpis01kBpshFahurqzsZosiGpErScMAUO0maKF8Tq/bTQCIQgFp30cQXhB1BHEcXhx0FgkJFiOHVYlzi42AgoRxeRx8fn+en3UABwedKgsBAwMBCygOCjYKDisLFV4VrCUAtVUKpSZdXl8mB8EbByQWcQPFAyYZxccdB7sV0cvBzbmvvG0LBV4FrFTBYCWuNhyyHRTFFB20trh4BxmdYl4YIqepq0IRxRE+IfDCAFQHARo0NGERAgAh+QQJCQAgACwAAAAAIAAgAIUEAgSEgoRMTkzMyswcHhzk5uR0cnQUFhRcXlwsKiz09vQMCgyMiozU1tQkJiR8fnxkZmT8/vwEBgSEhoRcWlzU0tQkIiT08vR0dnQcGhxkYmQ0MjT8+vwMDgyMjozc2twAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG+UCQcEgsGo/IpHLJXDweC6Z0+IhEHlOjRGIMWLHZoUZx0RQlAajxkFFKFFYFl5m5KNpIySU+X2bIBEoQZBBZGQdMElFhjI2Oj5AgHQEDAw8dQxYeDBaNHRVWVhWYCXsRFwmMXqFWEyAerB6MA6xWA6+xs7URt6VWqIwTu64gDh4eDp6goaORQ5OVAZjO1EgEGhB4RwAYDQ0YAEwIcBEKFEgYrBhLBORxgUYfrB9LELuF8fNDAAaVBuEg7NXCVyRdqHVCGLBiIIQAB1Yc4BXh9uEbwAXuyi2iQI7DuSwHdiFqCEGDtizLRFUDsaGAlQIbVoJYIEDAIiZBAAAh+QQJCQAbACwAAAAAIAAgAIQEAgSMioxcWlz08vQcHhysqqwMDgx8enwsKiykoqRkZmT8+vzEwsQMCgyUlpQkJiS0srQEBgSMjoxcXlz09vQkIiSsrqwUEhQ0MjRsamz8/vwAAAAAAAAAAAAAAAAAAAAF7+AmjmRpnmiqruz2PG0sIssCj4CQJAIgj4/abRNJaI6agu9kCAQaphdJgEQKUIFjgGWsahJYLdf7RTWfLKr3+jsBClVlG5Xb9eb4fImgUBBKDVB4ExRHFGwbGRQLGXMEhUgUfw2QC4IyCmSNDQtHlm2ZXgoiGQsUjW0EnUgLfyKBeYSeiHojfH61uS0GBisVEgEVLRcWRxAXKAgDRwMILMVIECgSVRIrBmS9JtRI1iMVBweuGxerSNolyszOIhjLGs0jEFXSKA8SEkMbcEgWIxfzNBxrw6AKgxIGkM05UOWALhERHJhysOThBgAVWYQAACH5BAkJABkALAAAAAAgACAAhAQGBIyKjERCRMzOzCwuLGRiZPz6/OTm5AwODLSytFRSVNTW1Dw6PHx6fAwKDJSSlERGRNTS1DQyNGxqbPz+/BQSFLy6vFRWVNza3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAXqYCaO5FgFwxBUZeu61ULNFMa+eBvQdJD/owFvFhkBBAwHsBQZUooZyWF2YOQkBNJu6ANMaQeli0AxSEwymi0DcUJeEgPlbEJFAghRe/h+Eeg/Dl9UYks5DF9VhksOAgKFi5GSSwh5kzgVCXIJNxknD5aSCTwJIw8zD5MITpanFKmSCHI8NxUPoJejNKWXLZkznL0vCJ3CxsckDpA/ChYJFzkTBgYTSxc80C4OswbLLhY8Fi/bMwYAJVgl4DTiL9LUJADrFuci1zTZLwD1IwU8BSQuWLCQb1EDHg2QiSDALYvCDAISJLDy8FIIACH5BAkJAB4ALAAAAAAgACAAhAQGBISGhFRSVNTW1CQiJKyqrGRmZOzu7CwuLIyOjGxubPz6/BQSFGRiZOTi5CwqLLy6vDQ2NIyKjFRWVCQmJKyurGxqbPT29DQyNJSSlHRydPz+/BQWFOzq7AAAAAAAAAXhoCeOJElYClGubOs117YtjWuvxCLLi3qbhc6h4FPsdorfiNI5dige43GT9AAkHUcCwCpMNxVP7tgTJY4J1uF7EBl0M8Ooueuo2SOCIkVa11kVX2E2EmgsFH4yBz4uAAkdHVstBAUHQ4xKmZqbnJ2bAhAQAiURGJ4eE0cTIxgzpp0QRxCsrp6xO7MjpaepO6unKxOhv8DFxsfIJBwaChw2DAkZDEocDjIOzi0ZMhlKUjIaLtsb3T8aR+EtDBkJ0yQUBQVQI9XX2ZsDMgMlyxr3mzE2XEgmotCGAARFIHiQ0FMIACH5BAkJABgALAAAAAAgACAAhAQCBISGhDw+POTi5CwuLLS2tPTy9BQSFJyenGRiZDQ2NIyOjLy+vPz6/BweHIyKjFRSVOzq7DQyNLy6vBQWFHRydDw6PPz+/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXXICaOZHkcZaquIjVd10SxtFrAcFGrVhBYIwoON9uNAsOA6DCEFTEKBEKxEjQvAtELNxkpGrAGNfW4Plpb2QgxRKjKzfPoVGLj3CnLNUv7hscpSDhKOxJSgDwPP0ZGAACMjAQFDQYFBJA0BAZDBpeYGBQVFUU3TV2YFAMwAzNgTQ2PkBVDFRiuQ7CYszi1pUOnkKmrM5qcnqiiTwQTDQ2Wn9DR0tPUfRKQEBEREDQSFw3XRhEwEd3f4TvjF+XWKgJ8JNnb0QkwCdUlCzAL+CQODAwc9BtIMAQAOw==") !important;
}
#toast-container > .toast-error {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important;
}
#toast-container > .toast-success {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important;
}
#toast-container > .toast-warning {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important;
}
#toast-container.toast-top-full-width > div,
#toast-container.toast-bottom-full-width > div {
  width: 96%;
  margin: auto;
}
.toast {
  background-color: #030303;
}
.toast-success {
  background-color: #51a351;
}
.toast-error {
  background-color: #bd362f;
}
.toast-info {
  background-color: #2f96b4;
}
.toast-wait {
  background-color: #2f96b4;
}
.toast-warning {
  background-color: #f89406;
}
/*Responsive Design*/
@media all and (max-width: 240px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
}
  }
@media all and (min-width: 241px) and (max-width: 480px) {
  #toast-container  > div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
}
}
@media all and (min-width: 481px) and (max-width: 768px) {
  #toast-container > div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}

 /*
  * AngularJS-Toaster
  * Version 0.3
 */
:not(.no-enter)#toast-container > div.ng-enter,
:not(.no-leave)#toast-container > div.ng-leave
{ 
    -webkit-transition: 1000ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
    -moz-transition: 1000ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
    -ms-transition: 1000ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
    -o-transition: 1000ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
    transition: 1000ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
} 

:not(.no-enter)#toast-container > div.ng-enter.ng-enter-active, 
:not(.no-leave)#toast-container > div.ng-leave {
    opacity: 0.8;
}

:not(.no-leave)#toast-container > div.ng-leave.ng-leave-active,
:not(.no-enter)#toast-container > div.ng-enter {
    opacity: 0;
}/**
 * @license videogular v1.4.3 http://videogular.com
 * Two Fucking Developers http://twofuckingdevelopers.com
 * License: MIT
 */
@font-face {
  font-family: 'videogular';
  src: url(fonts/videogular.eot);
  src: url(fonts/videogular.eot?#iefix) format("embedded-opentype"), url(fonts/videogular.woff) format("woff"), url(fonts/videogular.ttf) format("truetype"), url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciLz4=#videogular) format("svg");
  font-weight: normal;
  font-style: normal; }
videogular, [videogular] {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #000000;
  display: block;
  flex-direction: column;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: moz-none;
  -ms-user-select: none;
  user-select: none;
  /*****************/
  /* Poster plugin */
  /*****************/
  /**********************/
  /* OverlayPlay plugin */
  /**********************/
  /*********************/
  /* Controlbar plugin */
  /*********************/
  /* IE10 hack */
  /* Controlbar icons */
  /********************/
  /* Buffering plugin */
  /********************/
  /* Loading Spinner
   * http://www.alessioatzeni.com/blog/css3-loading-animation-loop/
   */
  /**********************/
  /* IMA ads plugin */
  /**********************/ }
  videogular button, [videogular] button {
    cursor: pointer; }
  videogular.fullscreen, [videogular].fullscreen {
    position: fixed;
    left: 0;
    top: 0; }
  videogular vg-media, [videogular] vg-media {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    display: block; }
    videogular vg-media video, [videogular] vg-media video {
      width: 100%;
      height: 100%;
      max-width: 100%;
      max-height: 100%; }
  videogular .iconButton, [videogular] .iconButton {
    color: #FFFFFF;
    font-family: 'videogular';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    background: none;
    padding: 6px;
    border: none; }
  videogular .iconButton:focus, [videogular] .iconButton:focus {
    border: 1px solid white; }
  videogular vg-poster, [videogular] vg-poster {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    display: block;
    z-index: 1;
    top: 0;
    pointer-events: none; }
  videogular vg-poster img, [videogular] vg-poster img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    position: absolute; }
  videogular vg-poster img.pause,
  videogular vg-poster img.play, [videogular] vg-poster img.pause,
  [videogular] vg-poster img.play {
    display: none; }
  videogular vg-poster img.stop, [videogular] vg-poster img.stop {
    display: block; }
  videogular vg-overlay-play, [videogular] vg-overlay-play {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    z-index: 2;
    top: 0; }
  videogular vg-overlay-play .play:before, [videogular] vg-overlay-play .play:before {
    content: "\E000"; }
  videogular vg-overlay-play .overlayPlayContainer, [videogular] vg-overlay-play .overlayPlayContainer {
    font-size: 100px;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    display: table;
    cursor: pointer;
    zoom: 1;
    filter: alpha(opacity=60);
    opacity: 0.6; }
  videogular vg-overlay-play .overlayPlayContainer div, [videogular] vg-overlay-play .overlayPlayContainer div {
    vertical-align: middle;
    text-align: center;
    display: table-cell; }
  videogular vg-controls, [videogular] vg-controls {
    width: 100%;
    height: 50px;
    display: block;
    position: absolute;
    z-index: 3;
    bottom: 0; }
  videogular vg-controls .controls-container, [videogular] vg-controls .controls-container {
    width: 100%;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    display: table;
    zoom: 1; }
  videogular vg-play-pause-button, [videogular] vg-play-pause-button {
    display: table-cell;
    width: 50px;
    vertical-align: middle;
    text-align: center;
    cursor: pointer; }
  videogular vg-time-display, [videogular] vg-time-display {
    color: #FFFFFF;
    display: table-cell;
    font-family: Arial;
    font-size: 18px;
    width: 75px;
    vertical-align: middle;
    text-align: center;
    cursor: default; }
  videogular .vgTimeDisplay, [videogular] .vgTimeDisplay {
    display: table-cell;
    font-family: Arial;
    font-size: 18px;
    width: auto; }
  videogular vg-scrub-bar, [videogular] vg-scrub-bar {
    width: auto;
    display: table-cell;
    cursor: pointer;
    vertical-align: middle;
    position: relative; }
    videogular vg-scrub-bar [role=slider], [videogular] vg-scrub-bar [role=slider] {
      margin-top: 24px;
      margin-bottom: 24px;
      height: 2px;
      background-color: black;
      position: relative; }
    videogular vg-scrub-bar .container, [videogular] vg-scrub-bar .container {
      position: absolute;
      width: 100%;
      height: 2px;
      top: 24px;
      padding-left: 0; }
    videogular vg-scrub-bar :focus vg-scrub-bar-current-time, [videogular] vg-scrub-bar :focus vg-scrub-bar-current-time {
      border-right: 6px black groove; }
  videogular vg-scrub-bar-current-time, [videogular] vg-scrub-bar-current-time {
    position: absolute;
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer; }
  videogular vg-scrub-bar-buffer, [videogular] vg-scrub-bar-buffer {
    position: absolute;
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
    zoom: 1;
    filter: alpha(opacity=50);
    opacity: 0.5; }
  videogular vg-scrub-bar-cue-points, [videogular] vg-scrub-bar-cue-points {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute; }
    videogular vg-scrub-bar-cue-points .cue-point-timeline, [videogular] vg-scrub-bar-cue-points .cue-point-timeline {
      color: #FFFFFF;
      padding-top: 3px; }
      videogular vg-scrub-bar-cue-points .cue-point-timeline .cue-point, [videogular] vg-scrub-bar-cue-points .cue-point-timeline .cue-point {
        position: absolute;
        height: 3px;
        background-color: #FFFFFF; }
  videogular vg-scrub-bar-thumbnails, [videogular] vg-scrub-bar-thumbnails {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
    bottom: 24px;
    z-index: 1; }
    videogular vg-scrub-bar-thumbnails .vg-thumbnails, [videogular] vg-scrub-bar-thumbnails .vg-thumbnails {
      position: absolute;
      top: -20px;
      margin-top: -40px;
      width: 80px;
      height: 60px;
      overflow: hidden; }
      videogular vg-scrub-bar-thumbnails .vg-thumbnails .image-thumbnail, [videogular] vg-scrub-bar-thumbnails .vg-thumbnails .image-thumbnail {
        height: 60px;
        background-repeat: no-repeat; }
    videogular vg-scrub-bar-thumbnails .background, [videogular] vg-scrub-bar-thumbnails .background {
      width: 100%;
      height: 50px; }
  videogular vg-playback-button, [videogular] vg-playback-button {
    display: table-cell;
    width: 50px;
    vertical-align: middle;
    text-align: center;
    cursor: pointer; }
  videogular vg-volume, [videogular] vg-volume {
    display: table-cell;
    width: 50px;
    vertical-align: middle;
    text-align: center;
    cursor: pointer; }
  videogular vg-volume-bar, [videogular] vg-volume-bar {
    width: 50px;
    height: 100px;
    top: -100px;
    margin-left: -25px;
    vertical-align: middle;
    text-align: center;
    position: absolute;
    cursor: pointer; }
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    videogular vg-volume-bar, [videogular] vg-volume-bar {
      zoom: 1;
      filter: alpha(opacity=50);
      opacity: 0.5; } }
  videogular vg-fullscreen-button, [videogular] vg-fullscreen-button {
    display: table-cell;
    width: 50px;
    vertical-align: middle;
    text-align: center;
    cursor: pointer; }
  videogular vg-volume-bar .verticalVolumeBar, [videogular] vg-volume-bar .verticalVolumeBar {
    width: 50px;
    height: 100px;
    background-color: #000000;
    position: absolute; }
  videogular vg-volume-bar .volumeBackground, [videogular] vg-volume-bar .volumeBackground {
    width: 20px;
    height: 70px;
    left: 15px;
    top: 15px;
    background-color: #222222;
    position: absolute; }
  videogular vg-volume-bar .volumeValue, [videogular] vg-volume-bar .volumeValue {
    width: 20px;
    height: 100%;
    background-color: #FFFFFF;
    position: absolute; }
  videogular vg-volume-bar .volumeClickArea, [videogular] vg-volume-bar .volumeClickArea {
    width: 20px;
    height: 100%;
    position: absolute; }
  videogular vg-controls .hide-animation, [videogular] vg-controls .hide-animation {
    animation: hideControlsAnimationFrames ease-out 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    /*when the spec is finished*/
    -webkit-animation: hideControlsAnimationFrames ease-out 0.5s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    /*Chrome 16+, Safari 4+*/
    -moz-animation: hideControlsAnimationFrames ease-out 0.5s;
    -moz-animation-iteration-count: 1;
    -moz-animation-fill-mode: forwards;
    /*FF 5+*/
    -o-animation: hideControlsAnimationFrames ease-out 0.5s;
    -o-animation-iteration-count: 1;
    -o-animation-fill-mode: forwards;
    /*Not implemented yet*/
    -ms-animation: hideControlsAnimationFrames ease-out 0.5s;
    -ms-animation-iteration-count: 1;
    -ms-animation-fill-mode: forwards;
    /*IE 10+*/ }
@keyframes hideControlsAnimationFrames {
  0% {
    opacity: 0.5; }
  100% {
    opacity: 0; } }
@-moz-keyframes hideControlsAnimationFrames {
  0% {
    opacity: 0.5; }
  100% {
    opacity: 0; } }
@-webkit-keyframes hideControlsAnimationFrames {
  0% {
    opacity: 0.5; }
  100% {
    opacity: 0; } }
@-o-keyframes hideControlsAnimationFrames {
  0% {
    opacity: 0.5; }
  100% {
    opacity: 0; } }
@-ms-keyframes hideControlsAnimationFrames {
  0% {
    opacity: 0.5; }
  100% {
    opacity: 0; } }
  videogular vg-controls .show-animation, [videogular] vg-controls .show-animation {
    animation: showControlsAnimationFrames ease-out 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    /*when the spec is finished*/
    -webkit-animation: showControlsAnimationFrames ease-out 0.5s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    /*Chrome 16+, Safari 4+*/
    -moz-animation: showControlsAnimationFrames ease-out 0.5s;
    -moz-animation-iteration-count: 1;
    -moz-animation-fill-mode: forwards;
    /*FF 5+*/
    -o-animation: showControlsAnimationFrames ease-out 0.5s;
    -o-animation-iteration-count: 1;
    -o-animation-fill-mode: forwards;
    /*Not implemented yet*/
    -ms-animation: showControlsAnimationFrames ease-out 0.5s;
    -ms-animation-iteration-count: 1;
    -ms-animation-fill-mode: forwards;
    /*IE 10+*/ }
@keyframes showControlsAnimationFrames {
  0% {
    background-color: transparent; }
  100% {
    background-color: rgba(0, 0, 0, 0.5); } }
@-moz-keyframes showControlsAnimationFrames {
  0% {
    background-color: transparent; }
  100% {
    background-color: rgba(0, 0, 0, 0.5); } }
@-webkit-keyframes showControlsAnimationFrames {
  0% {
    background-color: transparent; }
  100% {
    background-color: rgba(0, 0, 0, 0.5); } }
@-o-keyframes showControlsAnimationFrames {
  0% {
    background-color: transparent; }
  100% {
    background-color: rgba(0, 0, 0, 0.5); } }
@-ms-keyframes showControlsAnimationFrames {
  0% {
    background-color: transparent; }
  100% {
    background-color: rgba(0, 0, 0, 0.5); } }
  videogular vg-play-pause-button .play:before, [videogular] vg-play-pause-button .play:before {
    content: "\E000"; }
  videogular vg-play-pause-button .pause:before, [videogular] vg-play-pause-button .pause:before {
    content: "\E001"; }
  videogular vg-mute-button, [videogular] vg-mute-button {
    width: 50px;
    display: block; }
  videogular vg-mute-button .level3:before, [videogular] vg-mute-button .level3:before {
    content: "\E002"; }
  videogular vg-mute-button .level2:before, [videogular] vg-mute-button .level2:before {
    content: "\E003"; }
  videogular vg-mute-button .level1:before, [videogular] vg-mute-button .level1:before {
    content: "\E004"; }
  videogular vg-mute-button .level0:before, [videogular] vg-mute-button .level0:before {
    content: "\E005"; }
  videogular vg-mute-button .mute:before, [videogular] vg-mute-button .mute:before {
    content: "\E006"; }
  videogular vg-fullscreen-button .enter:before, [videogular] vg-fullscreen-button .enter:before {
    content: "\E007"; }
  videogular vg-fullscreen-button .exit:before, [videogular] vg-fullscreen-button .exit:before {
    content: "\E008"; }
  videogular vg-buffering, [videogular] vg-buffering {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 4;
    top: 0; }
  videogular vg-buffering .bufferingContainer, [videogular] vg-buffering .bufferingContainer {
    width: 100%;
    position: absolute;
    cursor: pointer;
    top: 50%;
    margin-top: -50px;
    zoom: 1;
    filter: alpha(opacity=60);
    opacity: 0.6; }
  videogular vg-buffering .loadingSpinner, [videogular] vg-buffering .loadingSpinner {
    background-color: transparent;
    border: 5px solid white;
    opacity: .9;
    border-top: 5px solid transparent;
    border-left: 5px solid transparent;
    border-radius: 50px;
    box-shadow: 0 0 35px #FFFFFF;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    -moz-animation: spin .5s infinite linear;
    -webkit-animation: spin .5s infinite linear; }
  videogular vg-buffering .loadingSpinner .stop, [videogular] vg-buffering .loadingSpinner .stop {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused; }
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg); }
  100% {
    -moz-transform: rotate(360deg); } }
@-moz-keyframes spinoff {
  0% {
    -moz-transform: rotate(0deg); }
  100% {
    -moz-transform: rotate(-360deg); } }
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg); } }
@-webkit-keyframes spinoff {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(-360deg); } }
  videogular vg-ima-ads, [videogular] vg-ima-ads {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 5;
    top: 0;
    display: none; }

/*# sourceMappingURL=videogular.css.map */
/*!
 * ui-select
 * http://github.com/angular-ui/ui-select
 * Version: 0.19.8 - 2017-04-18T05:43:43.881Z
 * License: MIT
 */


/* Style when highlighting a search. */
.ui-select-highlight {
  font-weight: bold;
}

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


.ui-select-choices-row:hover {
  background-color: #f5f5f5;
}

/* Select2 theme */

/* Mark invalid Select2 */
.ng-dirty.ng-invalid > a.select2-choice {
    border-color: #D44950;
}

.select2-result-single {
  padding-left: 0;
}

.select2-locked > .select2-search-choice-close{
  display:none;
}

.select-locked > .ui-select-match-close{
    display:none;
}

body > .select2-container.open {
  z-index: 9999; /* The z-index Select2 applies to the select2-drop */
}

/* Handle up direction Select2 */
.ui-select-container[theme="select2"].direction-up .ui-select-match,
.ui-select-container.select2.direction-up .ui-select-match {
    border-radius: 4px; /* FIXME hardcoded value :-/ */
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.ui-select-container[theme="select2"].direction-up .ui-select-dropdown,
.ui-select-container.select2.direction-up .ui-select-dropdown {
    border-radius: 4px; /* FIXME hardcoded value :-/ */
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    border-top-width: 1px;  /* FIXME hardcoded value :-/ */
    border-top-style: solid;

    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);

    margin-top: -4px; /* FIXME hardcoded value :-/ */
}
.ui-select-container[theme="select2"].direction-up .ui-select-dropdown .select2-search,
.ui-select-container.select2.direction-up .ui-select-dropdown .select2-search {
    margin-top: 4px; /* FIXME hardcoded value :-/ */
}
.ui-select-container[theme="select2"].direction-up.select2-dropdown-open .ui-select-match,
.ui-select-container.select2.direction-up.select2-dropdown-open .ui-select-match {
    border-bottom-color: #5897fb;
}

.ui-select-container[theme="select2"] .ui-select-dropdown .ui-select-search-hidden,
.ui-select-container[theme="select2"] .ui-select-dropdown .ui-select-search-hidden input{
    opacity: 0;
    height: 0;
    min-height: 0;
    padding: 0;
    margin: 0;
    border:0;
}

/* Selectize theme */

/* Helper class to show styles when focus */
.selectize-input.selectize-focus{
  border-color: #007FBB !important;
}

/* Fix input width for Selectize theme */
.selectize-control.single > .selectize-input > input {
  width: 100%;
}

/* Fix line break when there's at least one item selected with the Selectize theme */
.selectize-control.multi > .selectize-input > input {
  margin: 0 !important;
}

/* Fix dropdown width for Selectize theme */
.selectize-control > .selectize-dropdown {
  width: 100%;
}

/* Mark invalid Selectize */
.ng-dirty.ng-invalid > div.selectize-input {
    border-color: #D44950;
}

/* Handle up direction Selectize */
.ui-select-container[theme="selectize"].direction-up .ui-select-dropdown {
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
    margin-top: -2px; /* FIXME hardcoded value :-/ */
}

.ui-select-container[theme="selectize"] input.ui-select-search-hidden{
    opacity: 0;
    height: 0;
    min-height: 0;
    padding: 0;
    margin: 0;
    border:0;
    width: 0;
}

/* Bootstrap theme */

/* Helper class to show styles when focus */
.btn-default-focus {
  color: #333;
  background-color: #EBEBEB;
  border-color: #ADADAD;
  text-decoration: none;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.ui-select-bootstrap .ui-select-toggle {
  position: relative;
}

.ui-select-bootstrap .ui-select-toggle > .caret {
  position: absolute;
  height: 10px;
  top: 50%;
  right: 10px;
  margin-top: -2px;
}

/* Fix Bootstrap dropdown position when inside a input-group */
.input-group > .ui-select-bootstrap.dropdown {
  /* Instead of relative */
  position: static;
}

.input-group > .ui-select-bootstrap > input.ui-select-search.form-control {
  border-radius: 4px; /* FIXME hardcoded value :-/ */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .ui-select-bootstrap > input.ui-select-search.form-control.direction-up {
  border-radius: 4px !important; /* FIXME hardcoded value :-/ */
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.ui-select-bootstrap .ui-select-search-hidden{
    opacity: 0;
    height: 0;
    min-height: 0;
    padding: 0;
    margin: 0;
    border:0;
}

.ui-select-bootstrap > .ui-select-match > .btn{
  /* Instead of center because of .btn */
  text-align: left !important;
}

.ui-select-bootstrap > .ui-select-match > .caret {
  position: absolute;
  top: 45%;
  right: 15px;
}

/* See Scrollable Menu with Bootstrap 3 http://stackoverflow.com/questions/19227496 */
.ui-select-bootstrap > .ui-select-choices ,.ui-select-bootstrap > .ui-select-no-choice {
  width: 100%;
  height: auto;
  max-height: 200px;
  overflow-x: hidden;
  margin-top: -1px;
}

body > .ui-select-bootstrap.open {
  z-index: 1000; /* Standard Bootstrap dropdown z-index */
}

.ui-select-multiple.ui-select-bootstrap {
  height: auto;
  padding: 3px 3px 0 3px;
}

.ui-select-multiple.ui-select-bootstrap input.ui-select-search {
  background-color: transparent !important; /* To prevent double background when disabled */
  border: none;
  outline: none;
  height: 1.666666em;
  margin-bottom: 3px;
}

.ui-select-multiple.ui-select-bootstrap .ui-select-match .close {
  font-size: 1.6em;
  line-height: 0.75;
}

.ui-select-multiple.ui-select-bootstrap .ui-select-match-item {
  outline: 0;
  margin: 0 3px 3px 0;
}

.ui-select-multiple .ui-select-match-item {
  position: relative;
}

.ui-select-multiple .ui-select-match-item.dropping .ui-select-match-close {
  pointer-events: none;
}

.ui-select-multiple:hover .ui-select-match-item.dropping-before:before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  margin-right: 2px;
  border-left: 1px solid #428bca;
}

.ui-select-multiple:hover .ui-select-match-item.dropping-after:after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
  margin-left: 2px;
  border-right: 1px solid #428bca;
}

.ui-select-bootstrap .ui-select-choices-row>span {
    cursor: pointer;
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}

.ui-select-bootstrap .ui-select-choices-row>span:hover, .ui-select-bootstrap .ui-select-choices-row>span:focus {
    text-decoration: none;
    color: #262626;
    background-color: #f5f5f5;
}

.ui-select-bootstrap .ui-select-choices-row.active>span {
    color: #fff;
    text-decoration: none;
    outline: 0;
    background-color: #428bca;
}

.ui-select-bootstrap .ui-select-choices-row.disabled>span,
.ui-select-bootstrap .ui-select-choices-row.active.disabled>span {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
}

/* fix hide/show angular animation */
.ui-select-match.ng-hide-add,
.ui-select-search.ng-hide-add {
    display: none !important;
}

/* Mark invalid Bootstrap */
.ui-select-bootstrap.ng-dirty.ng-invalid > button.btn.ui-select-match {
    border-color: #D44950;
}

/* Handle up direction Bootstrap */
.ui-select-container[theme="bootstrap"].direction-up .ui-select-dropdown {
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.25);
}

.ui-select-bootstrap .ui-select-match-text {
    width: 100%;
    padding-right: 1em;
}
.ui-select-bootstrap .ui-select-match-text span {
    display: inline-block;
    width: 100%;
    overflow: hidden;
}
.ui-select-bootstrap .ui-select-toggle > a.btn {
  position: absolute;
  height: 10px;
  right: 10px;
  margin-top: -2px;
}

/* Spinner */
.ui-select-refreshing.glyphicon {
    position: absolute;
    right: 0;
    padding: 8px 27px;
 }

@-webkit-keyframes ui-select-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes ui-select-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.ui-select-spin {
  -webkit-animation: ui-select-spin 2s infinite linear;
  animation: ui-select-spin 2s infinite linear;
}

.ui-select-refreshing.ng-animate {
  -webkit-animation: none 0s;
}
/*!
 * jsonformatter
 * 
 * Version: 0.6.0 - 2016-04-28T02:57:03.661Z
 * License: Apache-2.0
 */


.json-formatter-row {
  font-family: monospace;
}
.json-formatter-row,
.json-formatter-row a,
.json-formatter-row a:hover {
  color: black;
  text-decoration: none;
}
.json-formatter-row .json-formatter-row {
  margin-left: 1em;
}
.json-formatter-row .children.empty {
  opacity: 0.5;
  margin-left: 1em;
}
.json-formatter-row .children.empty.object:after {
  content: "No properties";
}
.json-formatter-row .children.empty.array:after {
  content: "[]";
}
.json-formatter-row .string {
  color: green;
  white-space: pre;
  word-wrap: break-word;
}
.json-formatter-row .number {
  color: blue;
}
.json-formatter-row .boolean {
  color: red;
}
.json-formatter-row .null {
  color: #855A00;
}
.json-formatter-row .undefined {
  color: #ca0b69;
}
.json-formatter-row .function {
  color: #FF20ED;
}
.json-formatter-row .date {
  background-color: rgba(0, 0, 0, 0.05);
}
.json-formatter-row .url {
  text-decoration: underline;
  color: blue;
  cursor: pointer;
}
.json-formatter-row .bracket {
  color: blue;
}
.json-formatter-row .key {
  color: #00008B;
  cursor: pointer;
}
.json-formatter-row .constructor-name {
  cursor: pointer;
}
.json-formatter-row .toggler {
  font-size: 0.8em;
  line-height: 1.2em;
  vertical-align: middle;
  opacity: 0.6;
  cursor: pointer;
}
.json-formatter-row .toggler:after {
  display: inline-block;
  transition: transform 100ms ease-in;
  content: "\25BA";
}
.json-formatter-row .toggler.open:after {
  transform: rotate(90deg);
}
.json-formatter-row > a > .thumbnail-text {
  opacity: 0;
  transition: opacity 0.15s ease-in;
  font-style: italic;
}
.json-formatter-row:hover > a > .thumbnail-text {
  opacity: 0.6;
}
.json-formatter-dark.json-formatter-row {
  font-family: monospace;
}
.json-formatter-dark.json-formatter-row,
.json-formatter-dark.json-formatter-row a,
.json-formatter-dark.json-formatter-row a:hover {
  color: white;
  text-decoration: none;
}
.json-formatter-dark.json-formatter-row .json-formatter-row {
  margin-left: 1em;
}
.json-formatter-dark.json-formatter-row .children.empty {
  opacity: 0.5;
  margin-left: 1em;
}
.json-formatter-dark.json-formatter-row .children.empty.object:after {
  content: "No properties";
}
.json-formatter-dark.json-formatter-row .children.empty.array:after {
  content: "[]";
}
.json-formatter-dark.json-formatter-row .string {
  color: #31F031;
  white-space: pre;
  word-wrap: break-word;
}
.json-formatter-dark.json-formatter-row .number {
  color: #66C2FF;
}
.json-formatter-dark.json-formatter-row .boolean {
  color: #EC4242;
}
.json-formatter-dark.json-formatter-row .null {
  color: #EEC97D;
}
.json-formatter-dark.json-formatter-row .undefined {
  color: #ef8fbe;
}
.json-formatter-dark.json-formatter-row .function {
  color: #FD48CB;
}
.json-formatter-dark.json-formatter-row .date {
  background-color: rgba(255, 255, 255, 0.05);
}
.json-formatter-dark.json-formatter-row .url {
  text-decoration: underline;
  color: #027BFF;
  cursor: pointer;
}
.json-formatter-dark.json-formatter-row .bracket {
  color: #9494FF;
}
.json-formatter-dark.json-formatter-row .key {
  color: #23A0DB;
  cursor: pointer;
}
.json-formatter-dark.json-formatter-row .constructor-name {
  cursor: pointer;
}
.json-formatter-dark.json-formatter-row .toggler {
  font-size: 0.8em;
  line-height: 1.2em;
  vertical-align: middle;
  opacity: 0.6;
  cursor: pointer;
}
.json-formatter-dark.json-formatter-row .toggler:after {
  display: inline-block;
  transition: transform 100ms ease-in;
  content: "\25BA";
}
.json-formatter-dark.json-formatter-row .toggler.open:after {
  transform: rotate(90deg);
}
.json-formatter-dark.json-formatter-row > a > .thumbnail-text {
  opacity: 0;
  transition: opacity 0.15s ease-in;
  font-style: italic;
}
.json-formatter-dark.json-formatter-row:hover > a > .thumbnail-text {
  opacity: 0.6;
}
/* USED WITHIN COMMON FRAMEWORK */
/* Videogular Font path update */
/*@font-face {
  font-family: 'videogular';
  src: url("../ps-common-core/fonts/videogular/videogular.eot");
  src: url("../ps-common-core/fonts/videogular/videogular.eot?#iefix") format("embedded-opentype"), 
       url("../ps-common-core/fonts/videogular/videogular.woff") format("woff"), 
       url("../ps-common-core/fonts/videogular/videogular.ttf") format("truetype"), 
       url("../ps-common-core/fonts/videogular/videogular.svg#videogular") format("svg");
  font-weight: normal;
  font-style: normal;   
}*/
videogular,
[videogular] {
  border-radius: 25px;
  background-color: darkgray; }
  videogular vg-controls .controls-container,
  [videogular] vg-controls .controls-container {
    border-radius: 25px; }
  videogular .iconButton:focus,
  [videogular] .iconButton:focus {
    border: 0px; }
  videogular vg-scrub-bar [role=slider],
  videogular vg-scrub-bar [role=slider],
  [videogular] vg-scrub-bar [role=slider],
  [videogular] vg-scrub-bar [role=slider] {
    background-color: #928a81; }
  videogular vg-buffering .bufferingContainer,
  videogular vg-buffering .bufferingContainer,
  [videogular] vg-buffering .bufferingContainer,
  [videogular] vg-buffering .bufferingContainer {
    top: 0px;
    margin-top: 0px; }

.small-nav .aside-nav {
  width: 70px; }
  .small-nav .aside-nav .li-name {
    display: none; }
  .small-nav .aside-nav a {
    text-align: center; }
  .small-nav .aside-nav .toggle-container a {
    margin-right: 6px; }

@keyframes blink {
  50% {
    opacity: 1; } }

@keyframes bulge {
  50% {
    transform: scale(1.05); } }

/*# sourceMappingURL=common-style.css.map*/.react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker__navigation-icon::before{border-color:#ccc;border-style:solid;border-width:3px 3px 0 0;content:"";display:block;height:9px;position:absolute;top:6px;width:9px}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle{margin-left:-4px;position:absolute;width:0}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::after,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::after{box-sizing:content-box;position:absolute;border:8px solid rgba(0,0,0,0);height:0;width:1px;content:"";z-index:-1;border-width:8px;left:-8px}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before{border-bottom-color:#aeaeae}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle{top:0;margin-top:-8px}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::after{border-top:none;border-bottom-color:#f0f0f0}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::after{top:0}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before{top:-1px;border-bottom-color:#aeaeae}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle{bottom:0;margin-bottom:-8px}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::after{border-bottom:none;border-top-color:#fff}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::after{bottom:0}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before{bottom:-1px;border-top-color:#aeaeae}.react-datepicker-wrapper{display:inline-block;padding:0;border:0}.react-datepicker{font-family:"Helvetica Neue",helvetica,arial,sans-serif;font-size:.8rem;background-color:#fff;color:#000;border:1px solid #aeaeae;border-radius:.3rem;display:inline-block;position:relative}.react-datepicker--time-only .react-datepicker__triangle{left:35px}.react-datepicker--time-only .react-datepicker__time-container{border-left:0}.react-datepicker--time-only .react-datepicker__time,.react-datepicker--time-only .react-datepicker__time-box{border-bottom-left-radius:.3rem;border-bottom-right-radius:.3rem}.react-datepicker__triangle{position:absolute;left:50px}.react-datepicker-popper{z-index:1}.react-datepicker-popper[data-placement^=bottom]{padding-top:10px}.react-datepicker-popper[data-placement=bottom-end] .react-datepicker__triangle,.react-datepicker-popper[data-placement=top-end] .react-datepicker__triangle{left:auto;right:50px}.react-datepicker-popper[data-placement^=top]{padding-bottom:10px}.react-datepicker-popper[data-placement^=right]{padding-left:8px}.react-datepicker-popper[data-placement^=right] .react-datepicker__triangle{left:auto;right:42px}.react-datepicker-popper[data-placement^=left]{padding-right:8px}.react-datepicker-popper[data-placement^=left] .react-datepicker__triangle{left:42px;right:auto}.react-datepicker__header{text-align:center;background-color:#f0f0f0;border-bottom:1px solid #aeaeae;border-top-left-radius:.3rem;padding:8px 0;position:relative}.react-datepicker__header--time{padding-bottom:8px;padding-left:5px;padding-right:5px}.react-datepicker__header--time:not(.react-datepicker__header--time--only){border-top-left-radius:0}.react-datepicker__header:not(.react-datepicker__header--has-time-select){border-top-right-radius:.3rem}.react-datepicker__year-dropdown-container--select,.react-datepicker__month-dropdown-container--select,.react-datepicker__month-year-dropdown-container--select,.react-datepicker__year-dropdown-container--scroll,.react-datepicker__month-dropdown-container--scroll,.react-datepicker__month-year-dropdown-container--scroll{display:inline-block;margin:0 15px}.react-datepicker__current-month,.react-datepicker-time__header,.react-datepicker-year-header{margin-top:0;color:#000;font-weight:bold;font-size:.944rem}.react-datepicker-time__header{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.react-datepicker__navigation{align-items:center;background:none;display:flex;justify-content:center;text-align:center;cursor:pointer;position:absolute;top:2px;padding:0;border:none;z-index:1;height:32px;width:32px;text-indent:-999em;overflow:hidden}.react-datepicker__navigation--previous{left:2px}.react-datepicker__navigation--next{right:2px}.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button){right:85px}.react-datepicker__navigation--years{position:relative;top:0;display:block;margin-left:auto;margin-right:auto}.react-datepicker__navigation--years-previous{top:4px}.react-datepicker__navigation--years-upcoming{top:-4px}.react-datepicker__navigation:hover *::before{border-color:#a6a6a6}.react-datepicker__navigation-icon{position:relative;top:-1px;font-size:20px;width:0}.react-datepicker__navigation-icon--next{left:-2px}.react-datepicker__navigation-icon--next::before{transform:rotate(45deg);left:-7px}.react-datepicker__navigation-icon--previous{right:-2px}.react-datepicker__navigation-icon--previous::before{transform:rotate(225deg);right:-7px}.react-datepicker__month-container{float:left}.react-datepicker__year{margin:.4rem;text-align:center}.react-datepicker__year-wrapper{display:flex;flex-wrap:wrap;max-width:180px}.react-datepicker__year .react-datepicker__year-text{display:inline-block;width:4rem;margin:2px}.react-datepicker__month{margin:.4rem;text-align:center}.react-datepicker__month .react-datepicker__month-text,.react-datepicker__month .react-datepicker__quarter-text{display:inline-block;width:4rem;margin:2px}.react-datepicker__input-time-container{clear:both;width:100%;float:left;margin:5px 0 10px 15px;text-align:left}.react-datepicker__input-time-container .react-datepicker-time__caption{display:inline-block}.react-datepicker__input-time-container .react-datepicker-time__input-container{display:inline-block}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input{display:inline-block;margin-left:10px}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input{width:auto}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-inner-spin-button,.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]{-moz-appearance:textfield}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter{margin-left:5px;display:inline-block}.react-datepicker__time-container{float:right;border-left:1px solid #aeaeae;width:85px}.react-datepicker__time-container--with-today-button{display:inline;border:1px solid #aeaeae;border-radius:.3rem;position:absolute;right:-87px;top:0}.react-datepicker__time-container .react-datepicker__time{position:relative;background:#fff;border-bottom-right-radius:.3rem}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box{width:85px;overflow-x:hidden;margin:0 auto;text-align:center;border-bottom-right-radius:.3rem}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list{list-style:none;margin:0;height:calc(195px + 1.7rem/2);overflow-y:scroll;padding-right:0;padding-left:0;width:100%;box-sizing:content-box}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item{height:30px;padding:5px 10px;white-space:nowrap}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover{cursor:pointer;background-color:#f0f0f0}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected{background-color:#216ba5;color:#fff;font-weight:bold}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover{background-color:#216ba5}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled{color:#ccc}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover{cursor:default;background-color:rgba(0,0,0,0)}.react-datepicker__week-number{color:#ccc;display:inline-block;width:1.7rem;line-height:1.7rem;text-align:center;margin:.166rem}.react-datepicker__week-number.react-datepicker__week-number--clickable{cursor:pointer}.react-datepicker__week-number.react-datepicker__week-number--clickable:not(.react-datepicker__week-number--selected,.react-datepicker__week-number--keyboard-selected):hover{border-radius:.3rem;background-color:#f0f0f0}.react-datepicker__week-number--selected{border-radius:.3rem;background-color:#216ba5;color:#fff}.react-datepicker__week-number--selected:hover{background-color:#1d5d90}.react-datepicker__week-number--keyboard-selected{border-radius:.3rem;background-color:#2a87d0;color:#fff}.react-datepicker__week-number--keyboard-selected:hover{background-color:#1d5d90}.react-datepicker__day-names{white-space:nowrap;margin-bottom:-8px}.react-datepicker__week{white-space:nowrap}.react-datepicker__day-name,.react-datepicker__day,.react-datepicker__time-name{color:#000;display:inline-block;width:1.7rem;line-height:1.7rem;text-align:center;margin:.166rem}.react-datepicker__day,.react-datepicker__month-text,.react-datepicker__quarter-text,.react-datepicker__year-text{cursor:pointer}.react-datepicker__day:hover,.react-datepicker__month-text:hover,.react-datepicker__quarter-text:hover,.react-datepicker__year-text:hover{border-radius:.3rem;background-color:#f0f0f0}.react-datepicker__day--today,.react-datepicker__month-text--today,.react-datepicker__quarter-text--today,.react-datepicker__year-text--today{font-weight:bold}.react-datepicker__day--highlighted,.react-datepicker__month-text--highlighted,.react-datepicker__quarter-text--highlighted,.react-datepicker__year-text--highlighted{border-radius:.3rem;background-color:#3dcc4a;color:#fff}.react-datepicker__day--highlighted:hover,.react-datepicker__month-text--highlighted:hover,.react-datepicker__quarter-text--highlighted:hover,.react-datepicker__year-text--highlighted:hover{background-color:#32be3f}.react-datepicker__day--highlighted-custom-1,.react-datepicker__month-text--highlighted-custom-1,.react-datepicker__quarter-text--highlighted-custom-1,.react-datepicker__year-text--highlighted-custom-1{color:#f0f}.react-datepicker__day--highlighted-custom-2,.react-datepicker__month-text--highlighted-custom-2,.react-datepicker__quarter-text--highlighted-custom-2,.react-datepicker__year-text--highlighted-custom-2{color:green}.react-datepicker__day--holidays,.react-datepicker__month-text--holidays,.react-datepicker__quarter-text--holidays,.react-datepicker__year-text--holidays{position:relative;border-radius:.3rem;background-color:#ff6803;color:#fff}.react-datepicker__day--holidays .holiday-overlay,.react-datepicker__month-text--holidays .holiday-overlay,.react-datepicker__quarter-text--holidays .holiday-overlay,.react-datepicker__year-text--holidays .holiday-overlay{position:absolute;bottom:100%;left:50%;transform:translateX(-50%);background-color:#333;color:#fff;padding:4px;border-radius:4px;white-space:nowrap;visibility:hidden;opacity:0;transition:visibility 0s,opacity .3s ease-in-out}.react-datepicker__day--holidays:hover,.react-datepicker__month-text--holidays:hover,.react-datepicker__quarter-text--holidays:hover,.react-datepicker__year-text--holidays:hover{background-color:#cf5300}.react-datepicker__day--holidays:hover .holiday-overlay,.react-datepicker__month-text--holidays:hover .holiday-overlay,.react-datepicker__quarter-text--holidays:hover .holiday-overlay,.react-datepicker__year-text--holidays:hover .holiday-overlay{visibility:visible;opacity:1}.react-datepicker__day--selected,.react-datepicker__day--in-selecting-range,.react-datepicker__day--in-range,.react-datepicker__month-text--selected,.react-datepicker__month-text--in-selecting-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--selected,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__quarter-text--in-range,.react-datepicker__year-text--selected,.react-datepicker__year-text--in-selecting-range,.react-datepicker__year-text--in-range{border-radius:.3rem;background-color:#216ba5;color:#fff}.react-datepicker__day--selected:hover,.react-datepicker__day--in-selecting-range:hover,.react-datepicker__day--in-range:hover,.react-datepicker__month-text--selected:hover,.react-datepicker__month-text--in-selecting-range:hover,.react-datepicker__month-text--in-range:hover,.react-datepicker__quarter-text--selected:hover,.react-datepicker__quarter-text--in-selecting-range:hover,.react-datepicker__quarter-text--in-range:hover,.react-datepicker__year-text--selected:hover,.react-datepicker__year-text--in-selecting-range:hover,.react-datepicker__year-text--in-range:hover{background-color:#1d5d90}.react-datepicker__day--keyboard-selected,.react-datepicker__month-text--keyboard-selected,.react-datepicker__quarter-text--keyboard-selected,.react-datepicker__year-text--keyboard-selected{border-radius:.3rem;background-color:#bad9f1;color:#000}.react-datepicker__day--keyboard-selected:hover,.react-datepicker__month-text--keyboard-selected:hover,.react-datepicker__quarter-text--keyboard-selected:hover,.react-datepicker__year-text--keyboard-selected:hover{background-color:#1d5d90}.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range,.react-datepicker__year-text--in-range),.react-datepicker__month-text--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range,.react-datepicker__year-text--in-range),.react-datepicker__quarter-text--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range,.react-datepicker__year-text--in-range),.react-datepicker__year-text--in-selecting-range:not(.react-datepicker__day--in-range,.react-datepicker__month-text--in-range,.react-datepicker__quarter-text--in-range,.react-datepicker__year-text--in-range){background-color:rgba(33,107,165,.5)}.react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__year--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__month--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__year--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__year--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__month--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range),.react-datepicker__year--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__year-text--in-selecting-range){background-color:#f0f0f0;color:#000}.react-datepicker__day--disabled,.react-datepicker__month-text--disabled,.react-datepicker__quarter-text--disabled,.react-datepicker__year-text--disabled{cursor:default;color:#ccc}.react-datepicker__day--disabled:hover,.react-datepicker__month-text--disabled:hover,.react-datepicker__quarter-text--disabled:hover,.react-datepicker__year-text--disabled:hover{background-color:rgba(0,0,0,0)}.react-datepicker__input-container{position:relative;display:inline-block;width:100%}.react-datepicker__input-container .react-datepicker__calendar-icon{position:absolute;padding:.5rem;box-sizing:content-box}.react-datepicker__view-calendar-icon input{padding:6px 10px 5px 25px}.react-datepicker__year-read-view,.react-datepicker__month-read-view,.react-datepicker__month-year-read-view{border:1px solid rgba(0,0,0,0);border-radius:.3rem;position:relative}.react-datepicker__year-read-view:hover,.react-datepicker__month-read-view:hover,.react-datepicker__month-year-read-view:hover{cursor:pointer}.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow{border-top-color:#b3b3b3}.react-datepicker__year-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow{transform:rotate(135deg);right:-16px;top:0}.react-datepicker__year-dropdown,.react-datepicker__month-dropdown,.react-datepicker__month-year-dropdown{background-color:#f0f0f0;position:absolute;width:50%;left:25%;top:30px;z-index:1;text-align:center;border-radius:.3rem;border:1px solid #aeaeae}.react-datepicker__year-dropdown:hover,.react-datepicker__month-dropdown:hover,.react-datepicker__month-year-dropdown:hover{cursor:pointer}.react-datepicker__year-dropdown--scrollable,.react-datepicker__month-dropdown--scrollable,.react-datepicker__month-year-dropdown--scrollable{height:150px;overflow-y:scroll}.react-datepicker__year-option,.react-datepicker__month-option,.react-datepicker__month-year-option{line-height:20px;width:100%;display:block;margin-left:auto;margin-right:auto}.react-datepicker__year-option:first-of-type,.react-datepicker__month-option:first-of-type,.react-datepicker__month-year-option:first-of-type{border-top-left-radius:.3rem;border-top-right-radius:.3rem}.react-datepicker__year-option:last-of-type,.react-datepicker__month-option:last-of-type,.react-datepicker__month-year-option:last-of-type{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border-bottom-left-radius:.3rem;border-bottom-right-radius:.3rem}.react-datepicker__year-option:hover,.react-datepicker__month-option:hover,.react-datepicker__month-year-option:hover{background-color:#ccc}.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming{border-bottom-color:#b3b3b3}.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous{border-top-color:#b3b3b3}.react-datepicker__year-option--selected,.react-datepicker__month-option--selected,.react-datepicker__month-year-option--selected{position:absolute;left:15px}.react-datepicker__close-icon{cursor:pointer;background-color:rgba(0,0,0,0);border:0;outline:0;padding:0 6px 0 0;position:absolute;top:0;right:0;height:100%;display:table-cell;vertical-align:middle}.react-datepicker__close-icon::after{cursor:pointer;background-color:#216ba5;color:#fff;border-radius:50%;height:16px;width:16px;padding:2px;font-size:12px;line-height:1;text-align:center;display:table-cell;vertical-align:middle;content:"\D7"}.react-datepicker__close-icon--disabled{cursor:default}.react-datepicker__close-icon--disabled::after{cursor:default;background-color:#ccc}.react-datepicker__today-button{background:#f0f0f0;border-top:1px solid #aeaeae;cursor:pointer;text-align:center;font-weight:bold;padding:5px 0;clear:left}.react-datepicker__portal{position:fixed;width:100vw;height:100vh;background-color:rgba(0,0,0,.8);left:0;top:0;justify-content:center;align-items:center;display:flex;z-index:2147483647}.react-datepicker__portal .react-datepicker__day-name,.react-datepicker__portal .react-datepicker__day,.react-datepicker__portal .react-datepicker__time-name{width:3rem;line-height:3rem}@media(max-width: 400px),(max-height: 550px){.react-datepicker__portal .react-datepicker__day-name,.react-datepicker__portal .react-datepicker__day,.react-datepicker__portal .react-datepicker__time-name{width:2rem;line-height:2rem}}.react-datepicker__portal .react-datepicker__current-month,.react-datepicker__portal .react-datepicker-time__header{font-size:1.44rem}.react-datepicker__children-container{width:13.8rem;margin:.4rem;padding-right:.2rem;padding-left:.2rem;height:auto}.react-datepicker__aria-live{position:absolute;clip-path:circle(0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;width:1px;white-space:nowrap}.react-datepicker__calendar-icon{width:1em;height:1em;vertical-align:-0.125em}
.segmented{background-color:#f2f2f7;border:8px solid #f2f2f7;display:-ms-flexbox;display:flex;position:relative}.segmented,.segmented:before{border-radius:8px}.segmented:before{background:1px solid red;bottom:0;box-shadow:inset 0 0 2px rgba(0,0,0,.25);content:"";left:0;margin:-8px;position:absolute;right:0;top:0}.segmented input[type=radio]{display:none}.segmented>.segment{display:block;-ms-flex:1 1 0px;flex:1 1 0}.segmented>.segment>label{background-color:transparent;border-radius:7px;color:#8e8e93;display:block;margin:-7px;padding:.25rem;position:relative;text-align:center;transition:background-color .25s,color .25s,box-shadow .25s}.segmented>.segment:not(:first-child){border-left:1px solid #d1d1d6}.segmented>.segment>input[type=radio]:active+label,.segmented>.segment>label:hover{background-color:#e5e5ea;cursor:pointer}.segmented>.segment>input[type=radio]:checked+label{background-color:#fff;box-shadow:0 0 2px rgba(0,0,0,.25);color:#000;font-weight:700;opacity:1;z-index:10}.p-0 {
  padding: 0px !important; }

.p-1 {
  padding: 1px !important; }

.p-2 {
  padding: 2px !important; }

.p-3 {
  padding: 3px !important; }

.p-5 {
  padding: 5px !important; }

.p-10 {
  padding: 10px !important; }

.p-15 {
  padding: 15px !important; }

.p-20 {
  padding: 20px !important; }

.p-25 {
  padding: 25px !important; }

.p-30 {
  padding: 30px !important; }

.p-35 {
  padding: 35px !important; }

.p-40 {
  padding: 40px !important; }

.p-45 {
  padding: 45px !important; }

.p-50 {
  padding: 50px !important; }

.pt-0 {
  padding-top: 0px !important; }

.pt-1 {
  padding-top: 1px !important; }

.pt-2 {
  padding-top: 2px !important; }

.pt-3 {
  padding-top: 3px !important; }

.pt-5 {
  padding-top: 5px !important; }

.pt-10 {
  padding-top: 10px !important; }

.pt-15 {
  padding-top: 15px !important; }

.pt-20 {
  padding-top: 20px !important; }

.pt-25 {
  padding-top: 25px !important; }

.pt-30 {
  padding-top: 30px !important; }

.pt-35 {
  padding-top: 35px !important; }

.pt-40 {
  padding-top: 40px !important; }

.pt-45 {
  padding-top: 45px !important; }

.pt-50 {
  padding-top: 50px !important; }

.pr-0 {
  padding-right: 0px !important; }

.pr-1 {
  padding-right: 1px !important; }

.pr-2 {
  padding-right: 2px !important; }

.pr-3 {
  padding-right: 3px !important; }

.pr-5 {
  padding-right: 5px !important; }

.pr-10 {
  padding-right: 10px !important; }

.pr-15 {
  padding-right: 15px !important; }

.pr-20 {
  padding-right: 20px !important; }

.pr-25 {
  padding-right: 25px !important; }

.pr-30 {
  padding-right: 30px !important; }

.pr-35 {
  padding-right: 35px !important; }

.pr-40 {
  padding-right: 40px !important; }

.pr-45 {
  padding-right: 45px !important; }

.pr-50 {
  padding-right: 50px !important; }

.pb-0 {
  padding-bottom: 0px !important; }

.pb-1 {
  padding-bottom: 1px !important; }

.pb-2 {
  padding-bottom: 2px !important; }

.pb-3 {
  padding-bottom: 3px !important; }

.pb-5 {
  padding-bottom: 5px !important; }

.pb-10 {
  padding-bottom: 10px !important; }

.pb-15 {
  padding-bottom: 15px !important; }

.pb-20 {
  padding-bottom: 20px !important; }

.pb-25 {
  padding-bottom: 25px !important; }

.pb-30 {
  padding-bottom: 30px !important; }

.pb-35 {
  padding-bottom: 35px !important; }

.pb-40 {
  padding-bottom: 40px !important; }

.pb-45 {
  padding-bottom: 45px !important; }

.pb-50 {
  padding-bottom: 50px !important; }

.pl-0 {
  padding-left: 0px !important; }

.pl-1 {
  padding-left: 1px !important; }

.pl-2 {
  padding-left: 2px !important; }

.pl-3 {
  padding-left: 3px !important; }

.pl-5 {
  padding-left: 5px !important; }

.pl-10 {
  padding-left: 10px !important; }

.pl-15 {
  padding-left: 15px !important; }

.pl-20 {
  padding-left: 20px !important; }

.pl-25 {
  padding-left: 25px !important; }

.pl-30 {
  padding-left: 30px !important; }

.pl-35 {
  padding-left: 35px !important; }

.pl-40 {
  padding-left: 40px !important; }

.pl-45 {
  padding-left: 45px !important; }

.pl-50 {
  padding-left: 50px !important; }

.m-0 {
  margin: 0px !important; }

.m-1 {
  margin: 1px !important; }

.m-2 {
  margin: 2px !important; }

.m-3 {
  margin: 3px !important; }

.m-5 {
  margin: 5px !important; }

.m-10 {
  margin: 10px !important; }

.m-15 {
  margin: 15px !important; }

.m-20 {
  margin: 20px !important; }

.m-25 {
  margin: 25px !important; }

.m-30 {
  margin: 30px !important; }

.m-35 {
  margin: 35px !important; }

.m-40 {
  margin: 40px !important; }

.m-45 {
  margin: 45px !important; }

.m-50 {
  margin: 50px !important; }

.mt-0 {
  margin-top: 0px !important; }

.mt-1 {
  margin-top: 1px !important; }

.mt-2 {
  margin-top: 2px !important; }

.mt-3 {
  margin-top: 3px !important; }

.mt-5 {
  margin-top: 5px !important; }

.mt-10 {
  margin-top: 10px !important; }

.mt-15 {
  margin-top: 15px !important; }

.mt-20 {
  margin-top: 20px !important; }

.mt-25 {
  margin-top: 25px !important; }

.mt-30 {
  margin-top: 30px !important; }

.mt-35 {
  margin-top: 35px !important; }

.mt-40 {
  margin-top: 40px !important; }

.mt-45 {
  margin-top: 45px !important; }

.mt-50 {
  margin-top: 50px !important; }

.mr-0 {
  margin-right: 0px !important; }

.mr-1 {
  margin-right: 1px !important; }

.mr-2 {
  margin-right: 2px !important; }

.mr-3 {
  margin-right: 3px !important; }

.mr-5 {
  margin-right: 5px !important; }

.mr-10 {
  margin-right: 10px !important; }

.mr-15 {
  margin-right: 15px !important; }

.mr-20 {
  margin-right: 20px !important; }

.mr-25 {
  margin-right: 25px !important; }

.mr-30 {
  margin-right: 30px !important; }

.mr-35 {
  margin-right: 35px !important; }

.mr-40 {
  margin-right: 40px !important; }

.mr-45 {
  margin-right: 45px !important; }

.mr-50 {
  margin-right: 50px !important; }

.mb-0 {
  margin-bottom: 0px !important; }

.mb-1 {
  margin-bottom: 1px !important; }

.mb-2 {
  margin-bottom: 2px !important; }

.mb-3 {
  margin-bottom: 3px !important; }

.mb-5 {
  margin-bottom: 5px !important; }

.mb-10 {
  margin-bottom: 10px !important; }

.mb-15 {
  margin-bottom: 15px !important; }

.mb-20 {
  margin-bottom: 20px !important; }

.mb-25 {
  margin-bottom: 25px !important; }

.mb-30 {
  margin-bottom: 30px !important; }

.mb-35 {
  margin-bottom: 35px !important; }

.mb-40 {
  margin-bottom: 40px !important; }

.mb-45 {
  margin-bottom: 45px !important; }

.mb-50 {
  margin-bottom: 50px !important; }

.ml-0 {
  margin-left: 0px !important; }

.ml-1 {
  margin-left: 1px !important; }

.ml-2 {
  margin-left: 2px !important; }

.ml-3 {
  margin-left: 3px !important; }

.ml-5 {
  margin-left: 5px !important; }

.ml-10 {
  margin-left: 10px !important; }

.ml-15 {
  margin-left: 15px !important; }

.ml-20 {
  margin-left: 20px !important; }

.ml-25 {
  margin-left: 25px !important; }

.ml-30 {
  margin-left: 30px !important; }

.ml-35 {
  margin-left: 35px !important; }

.ml-40 {
  margin-left: 40px !important; }

.ml-45 {
  margin-left: 45px !important; }

.ml-50 {
  margin-left: 50px !important; }

.copy-config-container .single-icon-column {
  margin-right: 8px; }

.copy-config-container .search-filter {
  width: 250px;
  font-size: 16px !important; }

.copy-config-container .search-filter::placeholder {
  color: gainsboro !important; }

.copy-config-container .panel-body {
  padding: 0; }

.copy-config-container .summary-details {
  margin: 5px 0 10px 0;
  padding: 5px 10px 10px;
  border: 1px solid rgba(60, 70, 74, 0.3);
  border-top: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  max-height: 500px;
  overflow-y: auto; }
  .copy-config-container .summary-details .psx-grid-item-multiline:last-child {
    padding-bottom: 0; }
  .copy-config-container .summary-details .configuration-status-summary .psx-grid-item-multiline {
    min-height: 30px; }
  .copy-config-container .summary-details .configuration-status-summary .psx-grid-item-multiline:first-child {
    padding-top: 0; }
  .copy-config-container .summary-details .configuration-status-summary .psx-grid-item-multiline:last-child {
    border-bottom: 0;
    padding-bottom: 5px; }

.copy-config-container .fa-check {
  color: #00ab69; }

.copy-config-container .fa-times-circle {
  color: red; }

.copy-config-container .fa-exclamation-circle {
  color: #f29c20; }

.copy-config-container .status-icon {
  width: 23px; }
  .copy-config-container .status-icon .fa {
    font-size: 18px; }

.transaction-creation-container .card-title {
  font-weight: 400;
  color: #364b94; }

.transaction-creation-container .search-filter {
  font-size: 16px !important; }

.transaction-creation-container .search-filter::placeholder {
  color: gainsboro !important; }

.transaction-creation-container .select-config-container .config-card-container {
  min-height: 300px;
  max-height: 800px; }
  .transaction-creation-container .select-config-container .config-card-container .psx-card {
    height: 100%; }
  .transaction-creation-container .select-config-container .config-card-container .psx-grid-body {
    max-height: 750px;
    overflow-x: auto; }
  .transaction-creation-container .select-config-container .config-card-container .selections {
    max-height: 690px;
    overflow-x: auto; }
    .transaction-creation-container .select-config-container .config-card-container .selections .list-item {
      height: auto;
      line-height: 20px;
      padding: 10px;
      font-size: 14px;
      border: 1px solid rgba(60, 70, 74, 0.3);
      list-style: none; }
    .transaction-creation-container .select-config-container .config-card-container .selections .list-item:not(:first-child) {
      margin-top: 5px; }
  .transaction-creation-container .select-config-container .config-card-container .configuration-option .expanded-panel {
    line-height: 14px; }
  .transaction-creation-container .select-config-container .config-card-container .panel-body {
    padding: 0; }
  .transaction-creation-container .select-config-container .config-card-container .blank-identity {
    color: lightgray; }
  .transaction-creation-container .select-config-container .config-card-container .scrollable-dropdown-menu .dropdown-menu {
    width: 100%;
    max-width: 350px;
    overflow: auto;
    max-height: 700px; }
    .transaction-creation-container .select-config-container .config-card-container .scrollable-dropdown-menu .dropdown-menu .psx-grid-item-multiline {
      cursor: pointer; }
  .transaction-creation-container .select-config-container .config-card-container .rounded-border .search-filter {
    border-radius: 5px; }
  .transaction-creation-container .select-config-container .config-card-container .show-dropdown .dropdown-menu {
    display: block;
    top: auto;
    left: auto; }

.transaction-creation-container .evaluation-summary .border-left {
  border-left: 1px solid rgba(60, 70, 74, 0.3);
  padding-left: 15px; }
  .transaction-creation-container .evaluation-summary .border-left .section-title {
    font-size: 16px; }
  .transaction-creation-container .evaluation-summary .border-left .info-blurb {
    font-size: 12px;
    line-height: 15px;
    font-weight: 300; }
  .transaction-creation-container .evaluation-summary .border-left .remove-config .action-icon {
    font-size: 14px;
    margin: 0 5px; }
  .transaction-creation-container .evaluation-summary .border-left .remove-config span {
    font-size: 12px; }

.transaction-creation-container .evaluation-summary .create-user-workflow-container .create-user-overlay {
  max-width: 1200px; }

.transaction-creation-container .evaluation-summary .error {
  display: inline;
  color: #ed1b2d; }

.transaction-creation-container .evaluation-summary .success {
  color: #0ed957; }

.aside-nav .nav li {
  font-size: 2rem; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 25px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  background: #fff;
  border-bottom: 1px solid rgba(54, 75, 148, 0.5); }
  .site-header .site-width-container-no-vertical {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center; }
  .site-header .navbar-right {
    margin-right: -5px !important; }
  .site-header .ps-logo {
    height: 33px;
    width: 180px; }
  .site-header .app-title {
    height: 30px;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid rgba(60, 70, 74, 0.3);
    color: #928a81;
    letter-spacing: 2px; }
  .site-header .search {
    max-width: 550px;
    min-width: 170px;
    margin: auto; }
  .site-header li {
    margin: 2px 0px; }
  .site-header .site-menu-container {
    width: 40px;
    margin-right: 10px; }
  .site-header .site-menu {
    font-size: 20px;
    border-radius: 5px;
    padding: 3px 8px;
    border: 1px solid transparent;
    cursor: pointer; }
    .site-header .site-menu:hover {
      color: #364b94;
      border-color: rgba(60, 70, 74, 0.3); }

.search-icon {
  font-size: 18px;
  padding: 6px;
  width: 40px; }

.advanced-search {
  position: fixed;
  top: 46px;
  height: auto;
  width: 100%;
  z-index: 100;
  font-size: 14px; }
  .advanced-search .content {
    border: 1px solid #ccc;
    border-top: 0px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background: #fff;
    margin: 0px auto;
    padding: 10px 15px 20px;
    max-width: 500px; }
    .advanced-search .content .header {
      border-bottom: 1px solid rgba(60, 70, 74, 0.3);
      color: darkgray !important;
      font-weight: 400;
      font-size: 18px;
      margin: 10px -15px;
      padding: 0px 15px 5px; }
    .advanced-search .content label {
      width: 125px;
      margin-bottom: 0px; }
    .advanced-search .content input {
      font-size: 14px; }

.shell-search-results {
  position: fixed;
  top: 61px;
  height: calc(100vh - 60px);
  width: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.75); }
  .shell-search-results .blank-identity {
    color: lightgray; }
  .shell-search-results .inactive-label {
    margin-top: -4px; }
  .shell-search-results .action-icon {
    margin-left: 0px;
    margin-top: 1px; }
  .shell-search-results .dropdown-title {
    background-color: #364b94;
    color: white;
    padding-top: 5px;
    padding-bottom: 5px;
    pointer-events: none; }
  .shell-search-results .results-container {
    border: 1px solid #364b94;
    border-top: 0px;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
    background: #fff;
    margin: 0px auto;
    width: 600px;
    justify-content: flex-end;
    transition: all 0.25s ease-in-out; }
    .shell-search-results .results-container.expanded {
      width: 900px; }
    .shell-search-results .results-container .filter-container {
      width: 0px;
      opacity: 0;
      transition: all 0.25s ease-in-out;
      padding-top: 15px;
      height: 0;
      white-space: nowrap; }
      .shell-search-results .results-container .filter-container .header {
        margin: 10px 0px 30px 0px; }
      .shell-search-results .results-container .filter-container.expanded {
        padding: 15px;
        opacity: 1;
        width: 300px;
        height: auto; }
    .shell-search-results .results-container .results-list {
      border-left: 1px solid rgba(60, 70, 74, 0.3);
      width: 600px;
      padding-bottom: 20px; }
    .shell-search-results .results-container .results-header {
      border-bottom: 1px solid #364b94;
      min-height: 50px; }
      .shell-search-results .results-container .results-header .top-row {
        font-weight: bold;
        margin: 15px 15px 0px 15px; }
      .shell-search-results .results-container .results-header .search-count {
        width: 160px; }
      .shell-search-results .results-container .results-header .filter-results-btn {
        font-size: 16px;
        font-weight: normal; }
    .shell-search-results .results-container .clear-filter-container {
      width: 50px;
      padding-left: 5px; }
    .shell-search-results .results-container li:not(.dropdown-title) {
      cursor: pointer; }
    .shell-search-results .results-container .results {
      max-height: calc(100vh - 250px);
      overflow-y: auto; }
      .shell-search-results .results-container .results .highlighted-text {
        color: #e8671a; }
      .shell-search-results .results-container .results .title-name {
        font-size: 18px;
        pointer-events: none; }
        .shell-search-results .results-container .results .title-name:hover {
          background-color: transparent;
          cursor: default; }
      .shell-search-results .results-container .results .results-count {
        font-size: 18px;
        pointer-events: visible; }
        .shell-search-results .results-container .results .results-count:hover .popover {
          color: #000; }
        .shell-search-results .results-container .results .results-count .info-icon {
          margin: 0 5px; }
      .shell-search-results .results-container .results .primary {
        font-size: 16px; }
      .shell-search-results .results-container .results .inactive {
        font-style: italic;
        color: rgba(60, 70, 74, 0.5); }
    .shell-search-results .results-container .entry-padding {
      padding: 3px 15px; }

.dashboard-task-entry .description {
  color: gray;
  font-size: 12px; }

.margin-top-40 {
  margin-top: 40px; }

.user-actions .add {
  color: #00ab69; }

.user-actions .remove {
  color: #ae0e1b; }

.user-actions .reset {
  color: #e8671a; }

.user-actions .info-icon {
  margin: 0px 5px 3px 5px;
  width: 16px;
  height: 14px; }

.user-container .max-content-width {
  max-width: max-content; }

.user-container .psx-grid-body {
  max-height: 450px;
  overflow-y: scroll; }

.user-container .info-icon {
  width: 16px;
  height: 16px;
  margin: 0 5px; }

.user-container input[type="number"]::-webkit-inner-spin-button,
.user-container input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; }

.user-container input[type="number"] {
  -moz-appearance: textfield; }

.user-container input[type="number"] {
  appearance: none; }

.doximityContainer .header {
  font-weight: 400;
  font-size: 16px;
  border-bottom: 1px solid rgba(60, 70, 74, 0.3);
  color: darkgray;
  padding-bottom: 5px; }

.doximityContainer .editContainer {
  justify-content: space-between; }
  .doximityContainer .editContainer .header {
    width: 90%; }

.shell-header {
  height: 60px; }

.shell-content {
  position: fixed;
  top: 61px;
  height: calc(100vh - 60px);
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overflow-y: overlay; }

.shell-search-results.ng-hide-add,
.shell-search-results.ng-hide-remove {
  -webkit-transition: 0.5s ease-in-out opacity;
  -moz-transition: 0.5s ease-in-out opacity;
  -ms-transition: 0.5s ease-in-out opacity;
  -o-transition: 0.5s ease-in-out opacity;
  transition: 0.5s ease-in-out opacity;
  opacity: 1; }

.shell-search-results.ng-hide {
  opacity: 0; }

.shell-navigation {
  z-index: 1;
  position: fixed;
  top: 95px;
  left: 10px;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  opacity: 0.5;
  -webkit-transition: 0.25s ease-in-out all;
  -moz-transition: 0.25s ease-in-out all;
  -ms-transition: 0.25s ease-in-out all;
  -o-transition: 0.25s ease-in-out all;
  transition: 0.25s ease-in-out all; }
  .shell-navigation:hover {
    opacity: 1; }
  .shell-navigation .navigation-button {
    margin-top: 15px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 3px;
    background: #fff;
    border: 2px solid #666;
    color: #666;
    text-align: center;
    font-size: 20px;
    border: 2px solid #364b94;
    background: white;
    color: #364b94; }
    .shell-navigation .navigation-button:hover {
      border: 2px solid #364b94;
      background: #364b94;
      color: white;
      opacity: 1;
      cursor: pointer; }

.unauthorized-container {
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #8a97ad;
  border-radius: 5px;
  display: flex;
  width: 600px;
  margin: 50px auto;
  color: #3c464a;
  flex-direction: column;
  font-size: 14px;
  line-height: 24px; }
  .unauthorized-container .logo {
    height: 45px;
    margin-bottom: 15px;
    align-content: center; }
  .unauthorized-container .header {
    font-weight: 600;
    font-size: 18px; }
  .unauthorized-container .description {
    margin: 20px 0px; }
  .unauthorized-container a {
    background: 0 0;
    cursor: pointer;
    color: #309ddc; }

.correlation-id {
  padding-top: 25px;
  font-size: 0.7em; }
  .correlation-id .entry {
    width: 85px; }

.create-user-workflow-container .single-icon-column {
  display: flex;
  justify-content: center;
  align-items: center; }

.create-user-workflow-container .tooltip-inner {
  word-wrap: break-word;
  max-width: 300px; }

.create-user-workflow-container .is-duplicate {
  border: 1px solid #ff0000; }

.create-user-workflow-container .padding-left-5 {
  padding-left: 5px; }

.create-user-workflow-container .psx-checkbox2 label {
  margin-bottom: 0px; }

.create-user-workflow-container .badge-id-contianer input {
  padding-right: 25px !important; }

.create-user-workflow-container .badge-id-contianer .single-icon-column {
  margin-left: -25px; }

.link-signin-modal {
  margin: 30px auto;
  text-align: center;
  color: #3c474b; }
  .link-signin-modal .modal-body {
    text-align: left; }
  .link-signin-modal .modal-content {
    width: 625px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 6px;
    overflow: hidden; }
    .link-signin-modal .modal-content .link-signin-container .modal-header {
      height: 40px;
      font-size: 20px;
      color: #ffffff;
      padding: 10px; }
      .link-signin-modal .modal-content .link-signin-container .modal-header .modal-close-icon.small {
        font-size: 40px; }
  .link-signin-modal .link-signin-container .alert {
    margin-bottom: 5px; }
  .link-signin-modal .link-signin-container p {
    padding: 5px 10px; }
    .link-signin-modal .link-signin-container p span {
      color: #3c474b;
      font-family: "Roboto";
      font-weight: bold; }
  .link-signin-modal .link-signin-container ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    white-space: nowrap;
    max-height: 350px;
    overflow: auto; }
  .link-signin-modal .link-signin-container li {
    padding: 20px 10px;
    border-bottom: 2px solid #c8c8c8; }
  .link-signin-modal .link-signin-container #care-team-user-list li:first-child {
    border-top: 2px solid #c8c8c8; }
  .link-signin-modal .link-signin-container .profile-entry {
    display: inline-block;
    margin: 0px;
    padding: 0px; }
  .link-signin-modal .link-signin-container .user-name {
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 5px; }
  .link-signin-modal .link-signin-container .email {
    color: #928a81; }
  .link-signin-modal .link-signin-container .facility-vertical {
    padding-top: 10px; }
    .link-signin-modal .link-signin-container .facility-vertical div {
      padding-top: 5px; }
    .link-signin-modal .link-signin-container .facility-vertical .header {
      color: #928a81;
      font-size: 12px;
      display: inline-block;
      width: 100px; }
  .link-signin-modal .link-signin-container .action-buttons {
    padding-top: 20px;
    text-align: right; }

.create-facility-container {
  background-color: white;
  padding: 15px 25px 25px 40px; }

.force-visible {
  display: inline; }

.rounded-facility-search-button {
  border-bottom-right-radius: 5px !important;
  border-top-right-radius: 5px !important; }

.provisioning-key-space {
  margin-top: 190px; }

.light-heading {
  font-weight: 500; }

.inline-heading {
  display: inline !important; }

#scrollable-dropdown-menu .dropdown-menu {
  max-height: 200px;
  overflow-y: auto; }

.facility-dept-rooms-container {
  padding: 0px 25px 25px 40px; }
  .facility-dept-rooms-container.page-loading {
    top: 40px !important; }
  .facility-dept-rooms-container .double-icon-column {
    width: 170px !important; }
    .facility-dept-rooms-container .double-icon-column .action-icon-container .action-icon {
      margin: 0 5px; }
  .facility-dept-rooms-container .back-arrow .fa {
    font-size: 22px; }
  .facility-dept-rooms-container .back-arrow :hover {
    cursor: pointer; }
  .facility-dept-rooms-container .active-toggle {
    width: 180px; }
  .facility-dept-rooms-container .department-search {
    width: 230px; }
  .facility-dept-rooms-container .enable-assignment {
    width: 150px; }
    .facility-dept-rooms-container .enable-assignment .checkbox {
      margin-top: 0px !important; }
  .facility-dept-rooms-container .container .row .panel {
    max-width: 350px;
    text-decoration: none; }
  .facility-dept-rooms-container .container .row .panel-body {
    color: black;
    text-decoration: none;
    word-break: keep-all; }
  .facility-dept-rooms-container .container .row .panel-body:hover {
    background: #add8e6;
    text-decoration: none; }
  .facility-dept-rooms-container .required:after {
    content: " *"; }
  .facility-dept-rooms-container .light-heading {
    font-weight: 500; }
  .facility-dept-rooms-container .align-center {
    align-items: center; }
    .facility-dept-rooms-container .align-center label {
      margin-bottom: 0; }
  .facility-dept-rooms-container .w-90 {
    width: 90px; }
  .facility-dept-rooms-container .section .title {
    cursor: default;
    color: inherit; }
  .facility-dept-rooms-container .section a {
    color: inherit; }
  .facility-dept-rooms-container .section .bold-header {
    height: auto;
    padding: 0 15px 10px 15px;
    font-size: 18px;
    margin-bottom: 10px; }
  .facility-dept-rooms-container .section .dept-container {
    border: 1px solid rgba(60, 70, 74, 0.1);
    border-top: 0;
    border-radius: 0 0 5px 5px;
    margin: 0 5px 10px 5px;
    max-height: 400px;
    overflow-x: auto; }
  .facility-dept-rooms-container .section .expand-link {
    color: #c8c8c8; }
  .facility-dept-rooms-container .section .expand-link:hover {
    color: #3c464a;
    cursor: pointer; }
  .facility-dept-rooms-container .section-title label {
    color: #364b94; }
  .facility-dept-rooms-container .no-pad .psx-grid-item-multiline-padding {
    padding-left: 0;
    padding-right: 0; }
  .facility-dept-rooms-container .rooms-accordion .psx-grid-header {
    display: none; }
  .facility-dept-rooms-container .rooms-accordion .panel-body {
    padding: 0px; }
  .facility-dept-rooms-container .content-container #container-departments {
    height: 100%;
    overflow-y: scroll; }
  .facility-dept-rooms-container .sticky {
    position: sticky;
    top: 40px;
    background: #fff;
    z-index: 2; }
  .facility-dept-rooms-container #department-list a {
    text-decoration: none;
    color: #3c464a; }
  .facility-dept-rooms-container #department-list .panel-body {
    padding: 0px; }
  .facility-dept-rooms-container #department-list .bold-header {
    height: auto;
    padding: 0 15px 10px 15px;
    font-size: 18px; }
  .facility-dept-rooms-container #department-list label {
    font-size: 14px; }
  .facility-dept-rooms-container #department-list .input-group {
    font-size: 14px; }
  .facility-dept-rooms-container .column {
    width: 50px; }
  .facility-dept-rooms-container .stage-column {
    width: 100px; }
  .facility-dept-rooms-container .switch {
    display: block;
    margin-top: 8px; }
  .facility-dept-rooms-container .border-right {
    border-right: 3px solid rgba(60, 70, 74, 0.3); }
  .facility-dept-rooms-container p {
    line-height: 18px; }

.facility-header {
  top: 61px;
  z-index: 100;
  position: fixed;
  width: 100%;
  background-color: #3c474b;
  border-bottom: 1px solid rgba(60, 70, 74, 0.3);
  padding: 10px 15px; }
  .facility-header a {
    color: #fff;
    text-decoration: none;
    margin: 0px 15px; }
  .facility-header .selected {
    padding-bottom: 2px;
    border-bottom: 1px solid #fff; }
  .facility-header .facility-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-color: transparent;
    text-align: center;
    float: none;
    margin: 0 auto; }

.width-container {
  padding: 0px 25px 0px 25px; }
  .width-container .facility-name-container {
    max-width: 1200px;
    margin: 0 auto; }
    .width-container .facility-name-container .facility-name {
      font-size: 22px;
      margin: 61px 0 10px 5px;
      color: #3c474b;
      font-weight: bold;
      padding: 0px 20px; }
    .width-container .facility-name-container .edit-facility-name {
      font-size: 16px;
      margin: 61px 10px 10px 10px;
      color: #3c474b; }

.facility-overview-container {
  font-size: 14px; }
  .facility-overview-container.page-loading {
    top: 40px !important; }
  .facility-overview-container .inactive-header {
    margin: 20px 10px 10px 10px;
    text-align: center;
    font-size: 18px; }
  .facility-overview-container .name {
    font-size: 24px;
    font-weight: bold; }
  .facility-overview-container .panel-heading {
    padding: 0px; }
  .facility-overview-container .panel-group {
    margin-bottom: 0px; }
  .facility-overview-container .panel {
    border: 0px;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .facility-overview-container .panel-body {
    border-top: 0px solid #ddd !important;
    border: 0px;
    padding: 0px; }
  .facility-overview-container .error-messages {
    color: red;
    margin-top: 5px; }
  .facility-overview-container .required-asterisk {
    color: red;
    margin-left: 2px; }
  .facility-overview-container .grey-asterisk {
    color: grey; }
  .facility-overview-container .right-aligned {
    text-align: right;
    margin-left: auto; }
  .facility-overview-container .actions {
    margin-top: 50px; }
    .facility-overview-container .actions .psx-btn-link {
      margin-top: 15px; }
  .facility-overview-container .margin-top-0 {
    margin-top: 0px; }
  .facility-overview-container .blue-header {
    font-size: 12px;
    font-weight: 500;
    background-color: #364b94;
    color: white;
    margin: 0px -15px;
    padding: 0px 15px;
    height: 30px;
    display: flex;
    align-items: center; }

.facility-titles {
  padding: 0px 25px 25px 25px; }
  .facility-titles.page-loading {
    top: 40px !important; }
  .facility-titles .title-filter {
    width: 230px; }
    .facility-titles .title-filter .search-filter {
      font-size: 16px !important; }
    .facility-titles .title-filter .search-filter::placeholder {
      color: gainsboro !important; }
  .facility-titles .panel-body {
    padding: 0; }
  .facility-titles .bold-header {
    height: auto;
    padding: 0 15px 10px 15px;
    font-size: 18px; }
  .facility-titles .max-40 {
    max-width: 40px;
    width: 100%; }
  .facility-titles .ui-select-bootstrap .ui-select-choices-row.active.disabled > span {
    background-color: #364b94; }
  .facility-titles .page-view-dropdown {
    width: 165px; }

.user-container {
  background: #ecedee;
  font-size: 14px;
  overflow-y: auto;
  overflow-y: overlay;
  position: fixed;
  top: 50px;
  height: calc(100vh - 50px);
  width: 100%; }
  .user-container .site-width-container {
    padding: 15px 15px 0px 15px;
    min-height: calc(100vh - 100px); }
  .user-container .inactive-header {
    margin: 0px 10px;
    text-align: center;
    font-size: 20px; }
  .user-container .deactivate-container .tooltip-inner {
    max-width: 250px; }
  .user-container .name-display {
    height: 60px; }
  .user-container .min-card-height {
    min-height: 250px; }
  .user-container .ui-select-match-text {
    color: #3c474b; }
  .user-container .name {
    font-size: 24px;
    font-weight: bold; }
  .user-container .email {
    font-size: 16px;
    margin-top: 10px; }
  .user-container .actions {
    margin-top: 50px; }
    .user-container .actions .psx-btn-link {
      margin-top: 15px; }
  .user-container .panel-heading {
    padding: 0px; }
  .user-container .panel-group {
    margin-bottom: 0px; }
  .user-container .panel {
    border: 0px;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .user-container .panel-body {
    border-top: 0px solid #ddd !important;
    border: 0px;
    padding: 0px; }
  .user-container .psx-grid-item-multiline.inactive {
    font-style: italic;
    opacity: 1; }
    .user-container .psx-grid-item-multiline.inactive span {
      color: rgba(54, 75, 148, 0.7) !important; }
  .user-container .permission-header {
    font-size: 16px;
    line-height: 24px; }
  .user-container div.multiline-select .ui-select-bootstrap .ui-select-choices-row > span {
    white-space: normal; }
  .user-container div.multiline-select .ui-select-match-text {
    white-space: normal;
    line-height: 22px; }
  .user-container div.multiline-select .form-control {
    height: initial; }
  .user-container .tooltip-inner {
    word-wrap: break-word; }
  .user-container .ui-select-choices-row-inner {
    min-height: 28px; }
  .user-container #badgeId-container .psx-grid-header {
    line-height: normal;
    height: auto; }

.deactivation-dialog {
  text-align: center;
  color: #3c474b;
  overflow: visible; }
  .deactivation-dialog .modal-content {
    width: 600px;
    margin-left: auto;
    margin-right: auto;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px; }
  .deactivation-dialog .modal-header {
    height: 40px;
    font-size: 20px !important;
    color: #ffffff;
    padding: 10px; }
    .deactivation-dialog .modal-header .modal-close-icon.small {
      font-size: 40px !important; }
  .deactivation-dialog .modal-body {
    text-align: left;
    overflow-y: visible;
    line-height: 24px; }
    .deactivation-dialog .modal-body .header {
      font-size: 20px;
      font-weight: 600; }

.facility-notifications-container {
  height: 100%;
  padding: 0px 25px 25px 25px; }
  .facility-notifications-container.page-loading {
    top: 40px !important; }
  .facility-notifications-container .notification-cards-container {
    margin: 0 10px; }
  .facility-notifications-container span {
    color: #3c474b; }
  .facility-notifications-container ul {
    list-style: none;
    padding: 0px;
    margin: auto; }
    .facility-notifications-container ul li {
      padding: 0px; }
  .facility-notifications-container .rule-header {
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-content: center;
    height: 40px;
    line-height: 22px;
    margin-bottom: 15px; }
    .facility-notifications-container .rule-header .rules-title {
      margin-left: 18px; }
    .facility-notifications-container .rule-header .description {
      font-size: 12px;
      color: #919191; }
      .facility-notifications-container .rule-header .description i {
        font-size: 15px; }
    .facility-notifications-container .rule-header .action-container {
      width: 60px; }
    .facility-notifications-container .rule-header .action-header-offset {
      margin-left: 20px; }
  .facility-notifications-container .exception-header {
    font-size: 18px;
    font-weight: bold;
    margin: 25px 0px 10px 0px;
    padding: 10px; }
    .facility-notifications-container .exception-header .description {
      font-size: 14px;
      font-weight: normal;
      margin-left: 10px; }
    .facility-notifications-container .exception-header .no-default-description {
      font-size: 14px;
      margin-top: 10px;
      font-weight: normal; }
  .facility-notifications-container .arrow-container {
    font-size: 20px;
    margin-left: 5px;
    margin-right: 5px;
    opacity: 0.2; }
  .facility-notifications-container .is-disabled {
    opacity: 0.5;
    pointer-events: none; }
  .facility-notifications-container .default-header {
    background-color: #364b94;
    color: white;
    padding: 10px;
    box-shadow: 2px 0px 2px rgba(0, 0, 0, 0.17); }
    .facility-notifications-container .default-header span {
      float: right; }
      .facility-notifications-container .default-header span i {
        color: #ffffff; }
  .facility-notifications-container .is-default {
    border: 1px solid #3c464a !important; }
  .facility-notifications-container .blank-accordian .panel-heading {
    padding: 0px; }
  .facility-notifications-container .blank-accordian .panel-group {
    margin-bottom: 0px; }
  .facility-notifications-container .blank-accordian .panel {
    border: 0px;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .facility-notifications-container .blank-accordian .panel-body {
    border-top: 0px solid #ddd !important;
    border: 0px;
    padding: 0px; }
  .facility-notifications-container .rule-entry {
    border-radius: 2px;
    margin: 10px 0px;
    border: 1px solid rgba(60, 70, 74, 0.3);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.17);
    background: white; }
    .facility-notifications-container .rule-entry:hover {
      box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25); }
    .facility-notifications-container .rule-entry.editing {
      border: 1px solid #364b94; }
    .facility-notifications-container .rule-entry .rule-display {
      display: flex;
      min-height: 48px;
      max-height: 480px;
      line-height: 30px;
      padding: 5px 0px;
      border-bottom: 1px solid rgba(60, 70, 74, 0.3);
      position: relative; }
      .facility-notifications-container .rule-entry .rule-display .for-all-offset {
        margin-left: 45px; }
      .facility-notifications-container .rule-entry .rule-display .rule-criteria {
        flex: 2;
        display: flex;
        flex-wrap: wrap;
        align-content: flex-start; }
        .facility-notifications-container .rule-entry .rule-display .rule-criteria .criteria {
          height: 30px;
          display: flex;
          min-width: 0; }
          .facility-notifications-container .rule-entry .rule-display .rule-criteria .criteria .seperator {
            color: rgba(60, 70, 74, 0.3);
            margin: 0px 8px; }
        .facility-notifications-container .rule-entry .rule-display .rule-criteria .fa-clock-o {
          color: #919191;
          margin-right: 5px; }
      .facility-notifications-container .rule-entry .rule-display .property {
        width: 90px;
        font-weight: 300;
        color: #919191; }
      .facility-notifications-container .rule-entry .rule-display .time-container {
        display: inline-block;
        width: 60px; }
        .facility-notifications-container .rule-entry .rule-display .time-container .fa {
          margin-right: 5px; }
      .facility-notifications-container .rule-entry .rule-display.is-open {
        background-color: #d9edf7; }
      .facility-notifications-container .rule-entry .rule-display:hover {
        background-color: #d9edf7;
        -webkit-transition: background-color 200ms linear;
        -ms-transition: background-color 200ms linear;
        transition: background-color 200ms linear; }
        .facility-notifications-container .rule-entry .rule-display:hover .arrow-container,
        .facility-notifications-container .rule-entry .rule-display:hover .fa-pencil-square-o,
        .facility-notifications-container .rule-entry .rule-display:hover .fa-trash-o {
          animation: fadeIn10to100 1s;
          -moz-animation: fadeIn10to100 1s;
          -webkit-animation: fadeIn10to100 1s;
          -o-animation: fadeIn10to100 1s;
          opacity: 1; }
          .facility-notifications-container .rule-entry .rule-display:hover .arrow-container:hover,
          .facility-notifications-container .rule-entry .rule-display:hover .fa-pencil-square-o:hover,
          .facility-notifications-container .rule-entry .rule-display:hover .fa-trash-o:hover {
            color: #364b94; }
        .facility-notifications-container .rule-entry .rule-display:hover .fa-pencil-square-o,
        .facility-notifications-container .rule-entry .rule-display:hover .fa-trash-o {
          cursor: pointer; }
      .facility-notifications-container .rule-entry .rule-display .fa-pencil-square-o,
      .facility-notifications-container .rule-entry .rule-display .fa-trash-o {
        opacity: 0.1; }
      .facility-notifications-container .rule-entry .rule-display .action-container {
        width: 70px;
        display: flex;
        padding-top: 5px;
        padding-right: 5px;
        align-self: flex-start; }
        .facility-notifications-container .rule-entry .rule-display .action-container .fa {
          font-size: 20px;
          margin: 0px 8px; }
          .facility-notifications-container .rule-entry .rule-display .action-container .fa.fa-pencil-square-o {
            margin-top: 2px; }
      .facility-notifications-container .rule-entry .rule-display .border {
        border-left: 2px solid #364b94;
        padding-left: 10px;
        margin-right: 15px; }
      .facility-notifications-container .rule-entry .rule-display .repeat-container {
        width: 65px; }
      .facility-notifications-container .rule-entry .rule-display .delete-confirmation {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 10;
        background-color: rgba(255, 255, 255, 0.98); }
        .facility-notifications-container .rule-entry .rule-display .delete-confirmation .delete-display-container {
          justify-content: center;
          height: 100%; }
        .facility-notifications-container .rule-entry .rule-display .delete-confirmation .delete-button {
          margin: 0px 15px; }
      .facility-notifications-container .rule-entry .rule-display .center-offset {
        margin-top: 2px; }
    .facility-notifications-container .rule-entry .rule-editor {
      /* For Firefox */
      /* Webkit browsers like Safari and Chrome */ }
      .facility-notifications-container .rule-entry .rule-editor .rule-editor-container {
        padding: 15px 25px; }
      .facility-notifications-container .rule-entry .rule-editor .rule-property-header {
        font-size: 14px;
        margin-bottom: 10px;
        color: #919191; }
      .facility-notifications-container .rule-entry .rule-editor .for-all-offset {
        margin-left: 25px; }
      .facility-notifications-container .rule-entry .rule-editor .times-header {
        width: 55px; }
      .facility-notifications-container .rule-entry .rule-editor .action-padding {
        padding: 5px 0px; }
      .facility-notifications-container .rule-entry .rule-editor .repeat-container {
        width: 45px;
        margin-left: 10px; }
      .facility-notifications-container .rule-entry .rule-editor .delete-container {
        width: 10px; }
      .facility-notifications-container .rule-entry .rule-editor .interval-header {
        margin-top: 25px; }
      .facility-notifications-container .rule-entry .rule-editor .rule-property {
        margin: auto;
        display: flex;
        align-items: center;
        padding: 5px 0px; }
        .facility-notifications-container .rule-entry .rule-editor .rule-property .name {
          color: #919191;
          width: 100px; }
        .facility-notifications-container .rule-entry .rule-editor .rule-property .flex-column {
          flex: 1; }
      .facility-notifications-container .rule-entry .rule-editor .repeat-column {
        margin-left: 5px;
        width: 50px; }
        .facility-notifications-container .rule-entry .rule-editor .repeat-column input {
          width: 35px; }
      .facility-notifications-container .rule-entry .rule-editor .action-buttons {
        margin: 25px auto 5px auto;
        display: flex;
        justify-content: flex-end; }
      .facility-notifications-container .rule-entry .rule-editor .ui-select-min {
        width: 250px; }
      .facility-notifications-container .rule-entry .rule-editor .ui-select-container.action {
        width: 100%; }
      .facility-notifications-container .rule-entry .rule-editor .ui-select-placeholder {
        color: gainsboro; }
      .facility-notifications-container .rule-entry .rule-editor input::placeholder {
        color: gainsboro; }
      .facility-notifications-container .rule-entry .rule-editor input[type="number"].form-control {
        font-size: 16px;
        padding: 0px 6px;
        margin: 0px 2px;
        width: 45px;
        text-align: left;
        display: inline-block; }
      .facility-notifications-container .rule-entry .rule-editor input[type="number"] {
        -moz-appearance: textfield; }
      .facility-notifications-container .rule-entry .rule-editor input[type="number"]::-webkit-inner-spin-button,
      .facility-notifications-container .rule-entry .rule-editor input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0; }
      .facility-notifications-container .rule-entry .rule-editor .bigger-input {
        width: 85px;
        text-align: center;
        height: 33px; }
      .facility-notifications-container .rule-entry .rule-editor .top-border {
        border-top: 2px solid #364b94;
        padding-top: 10px;
        margin-top: 10px; }
      .facility-notifications-container .rule-entry .rule-editor .time-input-container {
        position: relative;
        padding: 0;
        margin: 0; }
        .facility-notifications-container .rule-entry .rule-editor .time-input-container .fa {
          position: absolute;
          top: 8px;
          left: 10px;
          color: #919191; }
        .facility-notifications-container .rule-entry .rule-editor .time-input-container .min {
          position: absolute;
          top: 7px;
          right: 18px;
          color: #919191; }
      .facility-notifications-container .rule-entry .rule-editor .disabled-interval {
        opacity: 0.3; }
    .facility-notifications-container .rule-entry .rule-validation {
      padding: 10px;
      box-shadow: 2px 0px 2px rgba(0, 0, 0, 0.17);
      background-color: #f2dede;
      color: #a94442; }
  .facility-notifications-container .invalid-rule-border {
    border-color: red; }
  .facility-notifications-container .rules-footer {
    margin-top: 15px;
    padding-left: 10px;
    padding-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #919191; }
    .facility-notifications-container .rules-footer .fa-arrows {
      font-size: 20px;
      margin-right: 12px; }
  .facility-notifications-container .animate-container {
    height: 250px;
    overflow: hidden;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s; }
  .facility-notifications-container .animate-container.ng-hide {
    height: 0; }
  .facility-notifications-container .fa-times-circle {
    margin-left: 8px;
    color: rgba(60, 70, 74, 0.3); }
    .facility-notifications-container .fa-times-circle:hover {
      color: red; }

@keyframes fadeIn10to100 {
  from {
    opacity: 0.1; }
  to {
    opacity: 1; } }

@-moz-keyframes fadeIn10to100 {
  /* Firefox */
  from {
    opacity: 0.1; }
  to {
    opacity: 1; } }

@-webkit-keyframes fadeIn10to100 {
  /* Safari and Chrome */
  from {
    opacity: 0.1; }
  to {
    opacity: 1; } }

@-o-keyframes fadeIn10to100 {
  /* Opera */
  from {
    opacity: 0.1; }
  to {
    opacity: 1; } }

#assignable-roles-container {
  padding: 0px 25px 25px 45px; }
  #assignable-roles-container.page-loading {
    top: 40px !important; }
  #assignable-roles-container .filter {
    max-width: 280px; }
  #assignable-roles-container .right-header-options {
    margin-top: -40px;
    margin-bottom: 20px; }
  #assignable-roles-container input#users-search {
    border-radius: 5px !important; }
  #assignable-roles-container .group-rule .flex-column {
    padding-right: 0px; }
  #assignable-roles-container #scrollable-dropdown-menu .dropdown-menu {
    max-width: 350px;
    min-width: 300px; }
    #assignable-roles-container #scrollable-dropdown-menu .dropdown-menu li > a {
      padding: 3px 10px !important; }
      #assignable-roles-container #scrollable-dropdown-menu .dropdown-menu li > a :hover {
        cursor: pointer; }
    #assignable-roles-container #scrollable-dropdown-menu .dropdown-menu .inactive-profile:hover div {
      color: #fff !important; }
    #assignable-roles-container #scrollable-dropdown-menu .dropdown-menu li {
      border-bottom: 1px solid rgba(60, 70, 74, 0.3); }
    #assignable-roles-container #scrollable-dropdown-menu .dropdown-menu .user-name {
      max-width: 200px;
      width: 100%;
      padding-right: 5px; }
    #assignable-roles-container #scrollable-dropdown-menu .dropdown-menu span {
      text-overflow: ellipsis;
      overflow: hidden; }
  #assignable-roles-container .grid-head label {
    font-size: 18px; }
  #assignable-roles-container .psx-card {
    margin: 0 0 10px 0;
    padding: 5px; }
  #assignable-roles-container .psx-grid-item-multiline:hover {
    background: white; }
  #assignable-roles-container .new-role-set .psx-card {
    padding: 0; }
  #assignable-roles-container .pad-l-3 {
    padding-left: 3px; }
  #assignable-roles-container .single-column {
    width: 60px; }
  #assignable-roles-container .flex-grid .btn.outline.btn-primary {
    border-color: rgba(60, 70, 74, 0.3); }
  #assignable-roles-container .flex-grid .btn-sm,
  #assignable-roles-container .flex-grid .btn-group-sm > .btn {
    font-size: 13px; }
  #assignable-roles-container .border-left {
    padding-left: 20px;
    border-left: 1px solid rgba(60, 70, 74, 0.3); }
  #assignable-roles-container .title {
    line-height: 16px; }
  #assignable-roles-container .property {
    font-weight: 300;
    color: #919191; }
  #assignable-roles-container .role-property {
    min-width: 70px !important;
    font-weight: 300;
    color: #919191; }
  #assignable-roles-container .rule-property {
    min-width: 85px !important;
    font-weight: 300;
    color: #919191; }
  #assignable-roles-container .divider {
    color: rgba(60, 70, 74, 0.3);
    line-height: 16px; }
    #assignable-roles-container .divider .dash {
      margin-right: -1px; }
  #assignable-roles-container .data-list {
    display: inline-flex; }
  #assignable-roles-container .data-list:nth-last-child(2) .comma {
    display: none; }
  #assignable-roles-container .data-list:not(:nth-last-child(2)) .or {
    display: none; }
  #assignable-roles-container .data-list:nth-last-child(2) .or {
    display: inline-flex; }
  #assignable-roles-container .sm {
    font-size: 10px;
    font-style: italic; }
  #assignable-roles-container .light {
    font-weight: 300;
    color: #919191;
    max-height: 300px;
    overflow-y: auto; }
  #assignable-roles-container .assignable-roles-list ul {
    padding: 0; }
    #assignable-roles-container .assignable-roles-list ul .list .flex-column {
      padding-right: 0 !important; }
    #assignable-roles-container .assignable-roles-list ul .list .single-icon-column {
      margin-top: 3px; }
    #assignable-roles-container .assignable-roles-list ul .ellipsis {
      display: inline-flex !important; }
  #assignable-roles-container .header {
    font-weight: 400;
    font-size: 16px;
    border-bottom: 1px solid rgba(60, 70, 74, 0.3);
    color: darkgray;
    padding-bottom: 5px; }
  #assignable-roles-container .panel-body {
    padding: 0px !important; }
  #assignable-roles-container .edit-wrapper {
    padding-top: 0px; }
    #assignable-roles-container .edit-wrapper .card-header {
      padding: 0;
      margin-bottom: 10px !important; }
    #assignable-roles-container .edit-wrapper .rule-group {
      background: rgba(60, 70, 74, 0.05);
      padding: 10px;
      margin: 5px auto 5px auto;
      border: 1px solid rgba(60, 70, 74, 0.3); }
    #assignable-roles-container .edit-wrapper .rule-btn {
      width: 100%; }
    #assignable-roles-container .edit-wrapper .big-divider {
      width: 100px;
      text-align: center;
      margin: 5px auto;
      color: #cccccc; }
      #assignable-roles-container .edit-wrapper .big-divider .dash {
        margin-right: -2px; }
    #assignable-roles-container .edit-wrapper .edit-container {
      padding: 0 15px;
      border-bottom: 1px solid rgba(60, 70, 74, 0.3); }
    #assignable-roles-container .edit-wrapper .delete-criteria-group {
      width: 100%;
      color: rgba(60, 70, 74, 0.3); }
    #assignable-roles-container .edit-wrapper .delete-criteria-group:hover {
      color: #006fcf !important; }
  #assignable-roles-container .ui-select-choices-row.active > span .inactive-profile {
    color: #b5b5b5 !important; }

.facility-security-container .span-item {
  color: darkgray;
  font-style: italic;
  font-size: 14px; }

.facility-security-container .ui-select-bootstrap > .ui-select-match > .btn {
  border-radius: 5px 0 0 5px; }

.facility-overview-container {
  padding: 0px 25px 25px 25px; }

.fac-overview-row {
  border-bottom: 1px solid gainsboro; }

.fac-overview-h2 {
  color: darkgray !important;
  font-weight: 400; }

.fac-overview-sub {
  margin-left: 35px; }
  .fac-overview-sub h3 {
    margin-bottom: 4px; }
  .fac-overview-sub label {
    margin-top: 20px; }

#facilitySecurity label {
  margin-top: 15px; }

.admin-list {
  margin-top: 20px; }

.role-list {
  max-height: 675px; }

.overflow-hidden {
  overflow: hidden !important; }

.roster-filter {
  min-width: 150px; }

.sipDevicesSection {
  border-top: 1px solid gainsboro;
  border-bottom: 1px solid gainsboro; }

.perfectserve-only-container {
  font-size: 14px;
  padding: 0px 25px 25px 25px; }
  .perfectserve-only-container.page-loading {
    top: 40px !important; }
  .perfectserve-only-container .inactive-header {
    margin: 20px 10px 10px 10px;
    text-align: center;
    font-size: 18px; }
  .perfectserve-only-container .actions {
    margin-bottom: 30px; }
    .perfectserve-only-container .actions .psx-card {
      background: transparent;
      box-shadow: none; }
    .perfectserve-only-container .actions .disable-btn {
      margin: 0 10px; }
      .perfectserve-only-container .actions .disable-btn .btn {
        margin: 15px auto; }
  .perfectserve-only-container .panel-heading {
    padding: 0px; }
  .perfectserve-only-container .panel-group {
    margin-bottom: 0px; }
  .perfectserve-only-container .panel {
    border: 0px;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .perfectserve-only-container .panel-body {
    border-top: 0px solid #ddd !important;
    border: 0px;
    padding: 0px; }
  .perfectserve-only-container .bold-header {
    height: auto;
    padding: 0 15px 10px 15px;
    font-size: 18px; }

.flipped {
  transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1); }

.home-container {
  background-color: #eeeeee;
  color: gainsboro;
  margin: auto;
  padding-top: 25px; }

.center-content {
  margin: 0 auto; }

.search-icon-div {
  width: 300px;
  font-size: 300px; }

.search-text-div {
  text-align: center; }
  .search-text-div h2 {
    color: gainsboro;
    font-size: 28px; }

.copy-configuration-header {
  background-color: #3c474b;
  color: white;
  padding: 10px 15px; }
  .copy-configuration-header .content {
    max-width: 1200px;
    margin: 0px auto; }

.copy-configuration-container .progress-header {
  background-color: white;
  border-bottom: 1px solid rgba(60, 70, 74, 0.3);
  padding: 10px 15px;
  -webkit-transition: all linear 500ms;
  -moz-transition: all linear 500ms;
  -ms-transition: all linear 500ms;
  -o-transition: all linear 500ms;
  transition: all linear 500ms;
  opacity: 1; }
  .copy-configuration-container .progress-header .content {
    max-width: 1200px;
    margin: 0px auto;
    line-height: 24px;
    font-size: 14px; }
    .copy-configuration-container .progress-header .content .tag {
      width: 190px;
      color: gray; }
    .copy-configuration-container .progress-header .content .flex-display {
      width: 100%; }
    .copy-configuration-container .progress-header .content .fa {
      font-size: 16px; }
  .copy-configuration-container .progress-header .divider {
    color: rgba(60, 70, 74, 0.3);
    margin: 0px 5px; }
  .copy-configuration-container .progress-header.ng-hide {
    opacity: 0; }

.copy-configuration-container .psx-card {
  margin: 0px; }

.copy-configuration-container .margin-left-25 {
  margin-left: 25px; }

.copy-configuration-container .single-column-container {
  width: 630px;
  margin: auto; }

.copy-configuration-container .double-column-container {
  width: 1200px;
  margin: auto; }

.copy-configuration-container .outside-header {
  margin: 0px auto 20px;
  font-size: 16px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  display: table;
  padding: 10px 40px;
  border: 1px solid rgba(60, 70, 74, 0.3);
  border-top: 0px;
  color: #364b94;
  text-align: center; }
  .copy-configuration-container .outside-header .fa {
    font-size: 18px; }
  .copy-configuration-container .outside-header .account-tag {
    color: #3c464a;
    font-size: 14px;
    margin-top: 10px; }

.copy-configuration-container .psx-grid-item-multiline {
  line-height: 18px;
  font-size: 15px;
  max-height: none !important;
  cursor: pointer;
  font-weight: 500; }
  .copy-configuration-container .psx-grid-item-multiline .speciality {
    font-size: 13px;
    font-weight: 400; }

.copy-configuration-container .psx-grid-item {
  padding-left: 10px;
  padding-right: 10px;
  cursor: pointer; }

.copy-configuration-container input {
  font-size: 14px !important; }

.copy-configuration-container input:focus {
  box-shadow: none; }

.copy-configuration-container .card-header.invert {
  background-color: #364b94;
  color: white !important; }

.copy-configuration-container .psx-grid-body {
  height: auto;
  max-height: 700px;
  overflow-y: auto; }

.copy-configuration-container .device-column {
  flex: 1;
  max-width: 250px;
  min-width: 150px;
  margin-right: 15px;
  border-right: 1px solid rgba(60, 70, 74, 0.3);
  padding-right: 15px;
  margin-bottom: 25px;
  margin-top: 15px; }

.copy-configuration-container .device-column:last-child {
  margin-right: 0px;
  border-right: 0px;
  padding-right: 0px; }

.copy-configuration-container .device-column:nth-child(7n + 7) {
  margin-right: -15px !important;
  padding-right: 15px !important;
  border-right: 0px; }

.copy-configuration-container .device-column:nth-child(n + 7) {
  max-width: 156px;
  padding-right: 15px; }

.copy-configuration-container .workflow-complete .success-header {
  margin-bottom: 20px;
  line-height: 24px; }

.copy-configuration-container .workflow-complete .fa-check-circle {
  color: #00ab69;
  margin-right: 7px;
  margin-top: 2px;
  font-size: 20px; }

.copy-configuration-container .workflow-complete .fa-times-circle {
  color: red;
  margin-right: 7px;
  margin-top: 2px;
  font-size: 20px; }

.copy-configuration-container .workflow-complete .links {
  margin-left: 25px;
  margin-top: 10px;
  font-size: 14px; }

.copy-configuration-container .workflow-complete .gap-description {
  font-size: 14px;
  line-height: 20px; }

.copy-configuration-container .workflow-complete .gap-users {
  margin-top: 10px;
  margin-left: 25px;
  font-size: 14px; }

.copy-configuration-container .margin-top-20 {
  margin-top: 20px !important; }

.copy-configuration-container .margin-left-25 {
  margin-left: 25px; }

.copy-configuration-container .data-gap-container {
  font-size: 14px; }
  .copy-configuration-container .data-gap-container .description {
    font-size: 12px;
    min-height: 25px; }
  .copy-configuration-container .data-gap-container input {
    font-size: 14px; }
  .copy-configuration-container .data-gap-container .instance-description {
    font-size: 12px;
    color: gray; }
  .copy-configuration-container .data-gap-container .popover-content {
    font-size: 14px; }
  .copy-configuration-container .data-gap-container .activate-text {
    max-width: 90px; }
  .copy-configuration-container .data-gap-container .strong {
    font-weight: 500; }

.margin-left-5 {
  margin-left: 5px; }

.faded {
  color: #aaaaaa; }

.summary .flex-column {
  border-left: 1px solid rgba(60, 70, 74, 0.3);
  margin: 10px 0px 0px 10px;
  padding: 0 10px 5px 10px; }

.summary .property-name {
  margin-top: 0px; }

.is-expanded {
  background-color: rgba(54, 75, 148, 0.3);
  font-weight: bold;
  padding: 5px 10px;
  margin: 0px -10px; }

.expanded-panel {
  font-size: 13px;
  line-height: 20px; }
  .expanded-panel .header {
    text-decoration: underline;
    margin-top: 10px;
    font-weight: bold;
    font-size: 16px; }
  .expanded-panel .property-name {
    color: gray;
    margin-top: 10px;
    font-weight: bold; }
    .expanded-panel .property-name .action-icon {
      font-size: 16px; }
    .expanded-panel .property-name .popover {
      color: #000;
      font-size: 14px; }
  .expanded-panel .property-name:first-child {
    margin-top: 0px; }
  .expanded-panel .loading-config {
    text-align: center;
    font-style: italic;
    padding: 15px 0px; }
  .expanded-panel .none {
    font-style: italic;
    color: gray; }
  .expanded-panel .schedule-type {
    font-weight: 400; }

.panel-heading {
  padding: 0px; }

.panel-group {
  margin-bottom: 0px; }

.panel {
  border-right: 0px;
  border-top: 0px;
  border-bottom: 0px;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none; }

.panel-body {
  border-top: 0px solid #ddd !important;
  border: 0px;
  padding: 0px 0px 0px 8px; }

.expanded-schedules .panel-body {
  padding: 0px 0px 0px 0px !important; }

.config-summary {
  padding-bottom: 5px; }
  .config-summary label {
    font-weight: 600; }

.brand-primary {
  color: #364b94; }

.name-prompt .title {
  display: list-item; }
  .name-prompt .title .info-icon {
    margin-top: -2px; }

.external-source-id ul {
  padding: 0; }

.deactivation-header {
  background-color: #3c474b;
  color: white;
  padding: 10px 15px; }
  .deactivation-header .content {
    max-width: 1200px;
    margin: 0px auto; }

.is-expanded,
.psx-grid-item-multiline.selected,
.psx-grid-item-multiline:hover.selected {
  background-color: #eceded; }

.roadblock-warning {
  font-size: 14px; }

.warning {
  color: #f29c20;
  font-weight: 500; }

.info {
  color: #0475b8;
  font-weight: 500; }

.select-all .fa {
  font-size: 18px; }

.confirmation-dialog .modal-body .header {
  font-size: 16px !important; }

.user-deactivate .psx-grid-item-multiline:hover {
  background-color: transparent; }

.user-deactivate .psx-grid-item-multiline {
  max-height: unset; }

.user-deactivate .action-items .psx-btn-link {
  color: #c8c8c8;
  font-size: 16px; }

.user-deactivate .action-items .psx-btn-link:hover {
  color: #364b94; }

.user-deactivate .d-inline {
  display: inline-block;
  margin-top: -5px; }

.user-deactivate .click-copy-link {
  color: #3c474b;
  font-weight: 100; }
  .user-deactivate .click-copy-link .action-icon {
    font-size: 14px;
    opacity: 0.2; }
  .user-deactivate .click-copy-link .click-copy-link:hover,
  .user-deactivate .click-copy-link .action-icon:hover {
    opacity: 1; }

.user-container .reference-user {
  margin-top: 25px;
  font-size: 16px; }
  .user-container .reference-user .icon {
    font-size: 18px;
    margin-right: 3px; }

.user-container .grey {
  color: rgba(60, 70, 74, 0.3); }

.user-container .recurring {
  font-size: 18px;
  color: #364b94; }

.slider {
  opacity: 0.5; }

#schedules-container .psx-grid-body {
  max-height: 400px;
  overflow-y: auto; }

.change-account-modal .modal-content {
  overflow: inherit !important; }

.source-card {
  border-radius: 4px;
  padding: 1rem; }

.source-header {
  font-weight: bold;
  margin-bottom: 0.5rem; }

.source-name {
  display: inline; }

.source-description {
  font-style: italic;
  margin-bottom: 0.5rem; }

.idMappingsList {
  display: flex;
  flex-direction: column; }

.source-mappings {
  display: flex;
  flex-direction: column;
  gap: 0.5rem; }

.source-mapping-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem; }

.external-id,
.internal-id {
  flex: 1; }

label {
  font-weight: bold;
  margin-bottom: 0.25rem; }

input.form-control {
  width: 100%; }

.psx-list-item.no-event:hover {
  background-color: transparent;
  cursor: default;
  margin-right: 10px; }

.create-profile-container {
  background-color: white;
  padding: 15px 25px 25px 40px; }
  .create-profile-container #practice ~ .dropdown-menu {
    max-width: 400px;
    max-height: 250px;
    overflow: scroll; }
  .create-profile-container .specialtiesContainer {
    width: 310px;
    max-width: 310px; }

.create-user-workflow-container label .action-icon {
  z-index: 3; }

.create-user-workflow-container .no-margin {
  margin: 0 !important; }

.create-user-workflow-container .create-user-overlay .action-container .results {
  min-height: 0px !important; }

.create-user-workflow-container .create-user-overlay .action-container .psx-btn-link {
  text-align: left; }

.sub-text {
  font-size: 16px; }

.border-top {
  border-top: 1px solid rgba(60, 70, 74, 0.3);
  padding-top: 15px; }

.device-input-contianer input {
  padding-right: 25px !important; }

.device-input-contianer .single-icon-column {
  margin-left: -30px;
  align-items: end; }
  .device-input-contianer .single-icon-column .fa {
    margin-top: 7px; }

.device-input-contianer .full-width {
  width: 100%; }

#signin-container .vertical-align-super {
  vertical-align: super; }

#signin-container .margin-bottom-5 {
  margin-bottom: 5px; }

#signin-container label {
  margin-bottom: 5px; }

#signin-container .disabled .caret {
  display: none !important; }

#signin-container .email-container input {
  padding-right: 25px !important; }

#signin-container .email-container .single-icon-column {
  margin-left: -25px; }

.create-practice-modal .modal-content {
  width: 500px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 6px;
  overflow: hidden; }
  .create-practice-modal .modal-content .modal-body label {
    margin-top: 10px; }
  .create-practice-modal .modal-content .modal-header {
    height: 40px;
    font-size: 20px;
    color: #ffffff;
    padding: 10px; }
    .create-practice-modal .modal-content .modal-header .modal-close-icon.small {
      font-size: 40px; }

.create-credential-modal .modal-content {
  width: 500px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 6px;
  overflow: hidden; }
  .create-credential-modal .modal-content .modal-body label {
    margin-top: 10px; }
  .create-credential-modal .modal-content .modal-header {
    height: 40px;
    font-size: 20px;
    color: #ffffff;
    padding: 10px; }
    .create-credential-modal .modal-content .modal-header .modal-close-icon.small {
      font-size: 40px; }

.existing-practice-modal .modal-content {
  width: 500px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 6px;
  overflow: hidden; }
  .existing-practice-modal .modal-content .modal-body label {
    margin-top: 10px; }
  .existing-practice-modal .modal-content .modal-header {
    height: 40px;
    font-size: 20px;
    color: #ffffff;
    padding: 10px; }
    .existing-practice-modal .modal-content .modal-header .modal-close-icon.small {
      font-size: 40px; }

.existing-user-modal .modal-content {
  width: 500px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 6px;
  overflow: hidden; }
  .existing-user-modal .modal-content .modal-body label {
    margin-top: 10px; }
  .existing-user-modal .modal-content .modal-body .inactive-user-warning .alert {
    margin-top: 20px !important; }
  .existing-user-modal .modal-content .modal-body .directory .dropdown-menu {
    max-height: 90px !important;
    max-width: 465px !important;
    overflow-x: hidden;
    overflow-y: scroll; }
  .existing-user-modal .modal-content .modal-body .ml-20 {
    margin-left: 20px; }
  .existing-user-modal .modal-content .modal-body .gray {
    color: gainsboro; }
  .existing-user-modal .modal-content .modal-header {
    height: 40px;
    font-size: 20px;
    color: #ffffff;
    padding: 10px; }
    .existing-user-modal .modal-content .modal-header .modal-close-icon.small {
      font-size: 40px; }

.create-user-container {
  background-color: white;
  padding: 15px 25px 25px 40px; }

.create-user-row {
  border-bottom: 1px solid gainsboro; }

.create-user-h2 {
  color: darkgray;
  font-weight: 400; }

.create-user-sub {
  margin-left: 35px; }
  .create-user-sub label {
    margin-top: 20px; }

.needs-required::after {
  color: red;
  content: "*";
  margin-left: 5px;
  font-weight: bold; }

.has-required::after {
  color: gray;
  content: "*";
  margin-left: 5px;
  font-weight: normal; }

.was-required::after {
  color: white;
  content: "*";
  margin-left: 5px;
  font-weight: normal; }

.edit-permission-container .description {
  font-size: 16px;
  margin-bottom: 20px; }

.edit-permission-container .disabledContainer {
  pointer-events: none;
  opacity: 0.5; }

.edit-permission-container .mt-0 {
  margin-top: 0px !important; }

.add-permissions .permission-container {
  height: 200px;
  overflow: auto;
  margin-left: 10px; }
  .add-permissions .permission-container li {
    border: 0px;
    padding-bottom: 0px !important; }

.add-permissions .disabledContainer {
  pointer-events: none;
  opacity: 0.5; }

.add-permissions .top-spacing {
  margin-top: 10px; }

.add-permissions .modal-footer {
  padding: 15px;
  text-align: right !important; }

.privilege-container {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  align-content: stretch;
  padding: 15px 0px 0px 0px;
  background-color: white; }
  .privilege-container .btn-xs {
    padding: 2px 10px; }
  .privilege-container span {
    color: #3c474b; }
  .privilege-container .group-listing {
    padding: 10px 0px 0px 15px;
    width: 300px;
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid gainsboro;
    overflow-y: auto;
    height: calc(100vh - 70px); }
    .privilege-container .group-listing .group-header {
      font-size: 20px;
      font-weight: bold; }
    .privilege-container .group-listing .group-filter {
      margin-top: 10px;
      padding-top: 10px;
      border-top: 1px solid gainsboro;
      margin-bottom: 10px;
      padding-bottom: 10px;
      border-bottom: 1px solid gainsboro; }
      .privilege-container .group-listing .group-filter .form-group {
        margin-bottom: 0px; }
    .privilege-container .group-listing .group-item-container .group-item {
      padding: 10px;
      margin: 10px 0px;
      font-weight: normal;
      font-size: 18px;
      cursor: pointer;
      border: 1px solid gainsboro; }
      .privilege-container .group-listing .group-item-container .group-item:hover {
        background-color: #d9edf7;
        cursor: hand; }
        .privilege-container .group-listing .group-item-container .group-item:hover.group-selected {
          background-color: #556dc1;
          color: white; }
      .privilege-container .group-listing .group-item-container .group-item .group-counts {
        margin-top: 5px;
        font-weight: normal;
        font-size: 14px; }
    .privilege-container .group-listing .group-selected {
      background-color: #364b94;
      color: white; }
  .privilege-container .group-ui-view {
    flex: 1 1 auto;
    overflow-y: auto;
    height: calc(100vh - 70px); }
  .privilege-container .group-details {
    padding-top: 10px;
    padding-right: 10px;
    flex: 1 1 auto; }
    .privilege-container .group-details .group-name-container {
      display: flex;
      flex-flow: row nowrap; }
      .privilege-container .group-details .group-name-container .group-name-input {
        flex: 0 0 50%; }
    .privilege-container .group-details .group-name-error-container {
      display: flex;
      flex-flow: row nowrap; }
      .privilege-container .group-details .group-name-error-container .group-name-error {
        flex: 0 0 50%; }
    .privilege-container .group-details .group-name-offset {
      margin-top: 23px; }
    .privilege-container .group-details .sub-header {
      margin-top: 20px;
      background-color: #d8d8d8;
      width: 100%;
      height: 48px;
      line-height: 48px;
      padding-left: 10px;
      font-size: 20px; }
    .privilege-container .group-details .border-bottom {
      border-bottom: 1px solid rgba(60, 70, 74, 0.3); }
  .privilege-container .multiline-psx-grid-item {
    min-height: 40px;
    max-height: 480px;
    line-height: 24px;
    padding: 5px 0px;
    font-size: 14px;
    border-right: 0px;
    border-left: 0px;
    border-bottom: 1px solid rgba(60, 70, 74, 0.3); }
  .privilege-container .multiline-psx-grid-item:hover {
    background-color: #d9edf7; }
  .privilege-container .underline-hover:hover {
    text-decoration: underline;
    cursor: pointer; }
  .privilege-container .context-type {
    margin-right: 3px; }

.members-modal {
  margin: 30px auto;
  text-align: center;
  color: #3c474b; }
  .members-modal .modal-dialog {
    width: 850px; }
  .members-modal .modal-content {
    margin-left: auto;
    margin-right: auto;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    overflow: visible; }
    .members-modal .modal-content .modal-header {
      height: 40px;
      font-size: 20px;
      color: #ffffff;
      padding: 10px; }
      .members-modal .modal-content .modal-header .modal-close-icon.small {
        font-size: 40px; }
    .members-modal .modal-content .modal-body {
      text-align: left;
      padding: 0px; }
    .members-modal .modal-content .modal-footer {
      text-align: right;
      padding-bottom: 15px; }
  .members-modal .members-modal-container .psx-grid-item-multiline {
    padding-left: 10px;
    padding-right: 10px; }
  .members-modal .members-modal-container .btn-xs {
    padding: 2px 10px; }
  .members-modal .members-modal-container .grid-row {
    display: flex; }
  .members-modal .members-modal-container .column {
    flex: 1;
    min-width: 0; }
  .members-modal .members-modal-container .border-bottom {
    border-bottom: 2px solid rgba(60, 70, 74, 0.3); }
  .members-modal .members-modal-container .border-right {
    border-right: 2px solid rgba(60, 70, 74, 0.3); }
  .members-modal .members-modal-container .padding-left-10 {
    padding-left: 10px; }
  .members-modal .members-modal-container .header {
    font-weight: bold;
    height: 50px;
    line-height: 50px; }
  .members-modal .members-modal-container .grid-body {
    display: flex;
    height: 358px;
    overflow-y: auto; }
    .members-modal .members-modal-container .grid-body .psx-grid-body {
      width: 100%;
      margin: 0px; }
    .members-modal .members-modal-container .grid-body .psx-grid-item {
      padding: 0px 10px; }
    .members-modal .members-modal-container .grid-body span {
      color: #3c474b; }
  .members-modal .members-modal-container .form-group {
    margin-bottom: 0px; }
  .members-modal .members-modal-container .form-control {
    font-weight: normal; }
  .members-modal .members-modal-container .input-group-margin {
    margin-top: 8px; }
  .members-modal .members-modal-container .input-group-btn button {
    margin-top: -1px; }
  .members-modal .members-modal-container .action-disabled {
    opacity: 0.3; }
  .members-modal .members-modal-container .action-enabled {
    animation: fadeIn30to100 1s;
    -moz-animation: fadeIn30to100 1s;
    -webkit-animation: fadeIn30to100 1s;
    -o-animation: fadeIn30to100 1s; }
  .members-modal .members-modal-container .line-item-button {
    height: 28px;
    align-self: center; }
  .members-modal .members-modal-container .no-results {
    padding: 10px;
    color: #928a81; }
  .members-modal .members-modal-container .add-container {
    margin-right: 5px;
    width: 55px;
    display: flex;
    align-items: center;
    justify-content: center; }

.privileges-modal {
  margin: 30px auto;
  text-align: center;
  color: #3c474b; }
  .privileges-modal .modal-dialog {
    width: 626px; }
  .privileges-modal .modal-content {
    margin-left: auto;
    margin-right: auto;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    overflow: hidden; }
    .privileges-modal .modal-content .modal-header {
      height: 40px;
      font-size: 20px;
      color: #ffffff;
      padding: 10px; }
      .privileges-modal .modal-content .modal-header .modal-close-icon.small {
        font-size: 40px; }
    .privileges-modal .modal-content .modal-body {
      text-align: left;
      padding: 0px; }
    .privileges-modal .modal-content .m-footer {
      display: flex;
      flex-flow: row nowrap;
      justify-content: space-between;
      align-items: center;
      padding: 0 15px 15px 15px; }
    .privileges-modal .modal-content .modal-footer {
      display: flex;
      flex-flow: row nowrap;
      justify-content: space-between;
      align-items: center;
      padding: 0 15px 15px 15px; }
      .privileges-modal .modal-content .modal-footer .selected-prompt {
        flex: 0 0 48%;
        font-size: 14px;
        color: #3c474b; }
      .privileges-modal .modal-content .modal-footer .action-buttons {
        flex: 0 0 48%;
        display: flex;
        flex-flow: row nowrap;
        justify-content: flex-end; }
  .privileges-modal .privileges-modal-container .btn-xs {
    padding: 2px 10px; }
  .privileges-modal .privileges-modal-container .border-bottom {
    border-bottom: 2px solid rgba(60, 70, 74, 0.3); }
  .privileges-modal .privileges-modal-container .border-right {
    border-right: 2px solid rgba(60, 70, 74, 0.3); }
  .privileges-modal .privileges-modal-container label {
    margin-bottom: 15px;
    font-size: 18px; }
  .privileges-modal .privileges-modal-container .permission-container {
    padding: 15px; }
  .privileges-modal .privileges-modal-container .location-container {
    padding: 15px;
    /*
            .uib-typeahead-match,
            .uib-typeahead-match span,
            .uib-typeahead-match .active {
                background-color: white;
                color: darkgray;
            }

            .uib-typeahead-match:hover,
            .uib-typeahead-match:hover span,
            .uib-typeahead-match .active {
                background-color: blue;
                color: white;
            }
*/ }
    .privileges-modal .privileges-modal-container .location-container .dropdown-menu {
      right: 0; }
    .privileges-modal .privileges-modal-container .location-container .smaller {
      font-size: 14px;
      font-weight: normal;
      color: #3c474b; }
    .privileges-modal .privileges-modal-container .location-container .ui-select-choices {
      max-height: 150px; }
    .privileges-modal .privileges-modal-container .location-container .selected-locations-scroller {
      margin-top: 8px;
      height: 175px;
      overflow-y: auto; }
    .privileges-modal .privileges-modal-container .location-container .selected-locations-container {
      display: flex;
      flex-flow: row wrap;
      justify-content: flex-start;
      align-items: flex-start; }
    .privileges-modal .privileges-modal-container .location-container .selected-location {
      width: 48%;
      height: 32px;
      border-radius: 16px;
      background-color: rgba(153, 153, 153, 0.2);
      line-height: 32px;
      margin: 5px 2px 0 0;
      display: flex;
      flex-flow: row nowrap;
      align-items: center; }
      .privileges-modal .privileges-modal-container .location-container .selected-location .location-icon {
        flex: 0 0 auto;
        justify-content: center;
        padding-left: 13px;
        padding-right: 8px; }
        .privileges-modal .privileges-modal-container .location-container .selected-location .location-icon i {
          color: #3c464a;
          font-size: 18px;
          cursor: default; }
      .privileges-modal .privileges-modal-container .location-container .selected-location .location-title {
        flex: 1 1 auto;
        justify-content: flex-start; }
      .privileges-modal .privileges-modal-container .location-container .selected-location .location-remove {
        flex: 0 0 auto;
        display: flex;
        justify-content: center;
        padding: 0 8px; }
        .privileges-modal .privileges-modal-container .location-container .selected-location .location-remove i {
          color: #3c464a;
          font-size: 20px;
          opacity: 0.5;
          cursor: pointer; }
          .privileges-modal .privileges-modal-container .location-container .selected-location .location-remove i:hover {
            opacity: 1; }
  .privileges-modal .privileges-modal-container .ui-select-match-text {
    color: #3c474b; }
  .privileges-modal .privileges-modal-container .ui-select-match-item span {
    color: #3c474b; }

.hospital-directory-container #hospitalAffiliations ~ .dropdown-menu {
  max-width: 400px;
  max-height: 250px;
  overflow: scroll; }

.hospital-directory-container #selectedDirectories {
  max-width: 400px;
  max-height: 150px;
  overflow-y: auto;
  overflow-x: hidden; }
  .hospital-directory-container #selectedDirectories .disabled {
    cursor: not-allowed;
    pointer-events: none;
    color: grey; }

.hospital-directory-container #hospitalAffiliations ~ .alert-danger {
  margin-top: 35px; }

.hospital-directory-container .align-with-input {
  vertical-align: top; }

.hospital-directory-container .entry-w-delete {
  display: flex;
  width: 100%;
  margin-bottom: 5px; }
  .hospital-directory-container .entry-w-delete .display-text {
    flex: 1;
    min-width: 0;
    padding-right: 8px; }
  .hospital-directory-container .entry-w-delete .delete-icon a {
    opacity: 0.3; }
    .hospital-directory-container .entry-w-delete .delete-icon a:hover {
      opacity: 1;
      color: red; }

.access-denied-modal .modal-content {
  width: 575px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 6px;
  overflow: hidden; }
  .access-denied-modal .modal-content .modal-body span {
    color: #3c474b;
    cursor: default; }
  .access-denied-modal .modal-content .modal-body a {
    color: #309ddc; }
  .access-denied-modal .modal-content .modal-body .header {
    font-weight: 600; }
  .access-denied-modal .modal-content .modal-body .detail {
    padding-top: 25px;
    font-size: 0.7em; }
  .access-denied-modal .modal-content .modal-body .support-info {
    margin: 10px 0px;
    font-size: 14px;
    line-height: 22px; }
  .access-denied-modal .modal-content .modal-body .support-detail {
    border-top: 1px solid gainsboro;
    padding-top: 10px;
    margin-top: 25px;
    color: gray;
    font-size: 12px; }
  .access-denied-modal .modal-content .modal-header {
    height: 40px;
    font-size: 20px;
    color: #ffffff;
    cursor: default;
    padding: 10px; }
    .access-denied-modal .modal-content .modal-header .modal-close-icon.small {
      font-size: 40px; }

.duplicate-care-team-modal {
  text-align: center;
  color: #3c474b;
  overflow: visible; }
  .duplicate-care-team-modal .modal-body {
    text-align: left;
    overflow-y: visible; }
  .duplicate-care-team-modal .modal-content {
    margin-left: auto;
    margin-right: auto;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px; }
    .duplicate-care-team-modal .modal-content .modal-header {
      height: 40px;
      font-size: 20px;
      color: #ffffff;
      padding: 10px; }
      .duplicate-care-team-modal .modal-content .modal-header .modal-close-icon.small {
        font-size: 40px; }
  .duplicate-care-team-modal .user-header {
    padding: 0px 10px 10px 15px;
    line-height: 30px;
    margin: -5px -15px 10px -15px;
    border-bottom: 1px solid rgba(60, 70, 74, 0.3); }
    .duplicate-care-team-modal .user-header .property-label {
      color: gray;
      margin-right: 5px; }
  .duplicate-care-team-modal .ui-select-match-text {
    color: #3c464a; }
  .duplicate-care-team-modal .disable-selections {
    opacity: 0.3;
    cursor: pointer;
    pointer-events: none; }
  .duplicate-care-team-modal .facility-properties {
    margin: auto; }
    .duplicate-care-team-modal .facility-properties label {
      font-size: 14px; }
  .duplicate-care-team-modal ::-webkit-input-placeholder {
    font-size: 16px;
    color: gainsboro; }
  .duplicate-care-team-modal ::-moz-placeholder {
    font-size: 16px;
    color: gainsboro; }
  .duplicate-care-team-modal :-ms-input-placeholder {
    font-size: 16px;
    color: gainsboro; }
  .duplicate-care-team-modal :-moz-placeholder {
    font-size: 16px;
    color: gainsboro; }
  @media (min-width: 768px) {
    .duplicate-care-team-modal .modal-dialog {
      width: 875px; } }

#signin-container ul.horizontal-actions {
  display: flex;
  align-content: center;
  justify-content: flex-end;
  width: 100%;
  padding: 0;
  font-size: 12px; }
  #signin-container ul.horizontal-actions li {
    display: inline; }
  #signin-container ul.horizontal-actions li:not(:first-child) {
    padding-left: 10px;
    margin-left: 10px;
    border-left: 1px solid rgba(60, 70, 74, 0.3); }

#pssignin-container ul.horizontal-actions {
  display: flex;
  align-content: center;
  justify-content: flex-end;
  width: 100%;
  padding: 0;
  font-size: 12px; }
  #pssignin-container ul.horizontal-actions li {
    display: inline; }
  #pssignin-container ul.horizontal-actions li:not(:first-child) {
    padding-left: 10px;
    margin-left: 10px;
    border-left: 1px solid rgba(60, 70, 74, 0.3); }

#pssignin-container .text-muted {
  color: gainsboro !important; }

#facilityCareTeamRoster-container .activate-text {
  font-size: 14px; }

#facilityCareTeamRoster-container .alert {
  margin: 0px; }

#facilityCareTeamRoster-container .flex-self-end {
  align-self: flex-end; }

#facilityCareTeamRoster-container .inactive {
  font-style: italic;
  color: rgba(60, 70, 74, 0.7) !important; }

#facilityCareTeamRoster-container .error-margin {
  margin-top: 5px; }

.facility-assignment-container {
  margin-left: -15px;
  margin-right: -15px; }
  .facility-assignment-container .facility-card {
    margin: 0px !important;
    border-top: 5px solid #ecedee; }
    .facility-assignment-container .facility-card .card-body {
      padding: 15px; }
  .facility-assignment-container .border-bottom:last-child {
    border-bottom: 5px solid #ecedee; }
  .facility-assignment-container .facility-card:first-child {
    margin-top: -12px !important; }

.source-mappings-container {
  border: 1px solid rgba(60, 70, 74, 0.3);
  border-radius: 5px;
  padding: 10px;
  margin: 15px 0px 0px 0px; }
  .source-mappings-container .flex-column {
    max-width: 270px; }
  .source-mappings-container .header {
    color: gray; }

.duplicate-facility {
  color: red;
  margin: 0 auto 10px auto; }

.single-icon-column {
  display: flex;
  justify-content: center;
  align-items: center; }

.securityQnA-container .security-question {
  font-size: 12px;
  margin-top: 3px; }

.securityQnA-container .multiline-select .ui-select-bootstrap .ui-select-choices-row > span {
  white-space: normal; }

.securityQnA-container .multiline-select .ui-select-match-text {
  white-space: normal;
  line-height: 22px; }

.securityQnA-container .multiline-select .form-control {
  height: auto; }

.account-settings-container .password-bubble {
  font-size: 14px;
  margin: 15px;
  text-align: center; }
  .account-settings-container .password-bubble .password {
    font-weight: 500;
    font-size: 18px;
    margin-top: 10px; }

.dropdown-multiselect .multiselect {
  max-height: 261px;
  overflow-y: auto; }
  .dropdown-multiselect .multiselect .fa-check {
    margin-left: -7px; }
  .dropdown-multiselect .multiselect #searchBox {
    font-size: 14px; }

.dropdown-multiselect li {
  cursor: pointer;
  color: #3c474b;
  padding: 5px 10px; }
  .dropdown-multiselect li .check-icon {
    opacity: 0; }
    .dropdown-multiselect li .check-icon.checked {
      opacity: 1; }

.dropdown-multiselect .search-entry {
  padding: 5px 10px 10px 10px; }
  .dropdown-multiselect .search-entry:hover {
    background-color: #fff !important; }
  .dropdown-multiselect .search-entry .form-control {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    font-size: 14px; }
  .dropdown-multiselect .search-entry .input-group-addon {
    padding: 5px; }
  .dropdown-multiselect .search-entry input::placeholder {
    color: gainsboro; }
  .dropdown-multiselect .search-entry .btn-group-search {
    width: 22px; }

.dropdown-multiselect li:not(:nth-child(1)) {
  border-bottom: 1px solid rgba(60, 70, 74, 0.3); }

.dropdown-multiselect li:hover,
.dropdown-multiselect a:hover {
  background-color: #364b94 !important; }
  .dropdown-multiselect li:hover a,
  .dropdown-multiselect a:hover a {
    color: #fff !important; }
  .dropdown-multiselect li:hover .check-icon,
  .dropdown-multiselect a:hover .check-icon {
    opacity: 0.3;
    color: #fff; }
    .dropdown-multiselect li:hover .check-icon.checked,
    .dropdown-multiselect a:hover .check-icon.checked {
      opacity: 1; }

.dropdown-multiselect .top-break {
  border-bottom: 3px solid rgba(60, 70, 74, 0.3) !important; }

.dropdown-multiselect a {
  color: #3c474b !important; }
  .dropdown-multiselect a:hover {
    text-decoration: none; }

.dropdown-multiselect .dropdown-menu {
  max-width: 400px;
  min-width: 250px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  top: 35px; }
  .dropdown-multiselect .dropdown-menu ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px; }

.dropdown-multiselect .psx-combobox-divider {
  position: relative;
  top: 32px;
  border-top: 5px solid transparent; }

.dropdown-multiselect .close-btn {
  margin: 5px 10px; }

.dropdown-multiselect.long-lookup {
  width: 100%; }
  .dropdown-multiselect.long-lookup .open .dropdown-toggle {
    color: #3c464a; }
  .dropdown-multiselect.long-lookup .dropdown-toggle {
    width: 100%;
    text-align: left;
    color: #3c464a;
    border-color: #3c464a; }
    .dropdown-multiselect.long-lookup .dropdown-toggle .clabel {
      color: darkgray; }
  .dropdown-multiselect.long-lookup.limit-width .dropdown-menu {
    width: 100%;
    max-width: 100% !important; }
  .dropdown-multiselect.long-lookup .header {
    font-size: 14px;
    padding: 0px 10px 10px;
    margin-right: 10px;
    font-weight: bold;
    color: darkgray;
    border-bottom: 1px solid rgba(60, 70, 74, 0.3); }
  .dropdown-multiselect.long-lookup li:hover {
    background-color: #d9edf7 !important; }
    .dropdown-multiselect.long-lookup li:hover.selected {
      background-color: rgba(54, 75, 148, 0.3) !important; }
  .dropdown-multiselect.long-lookup .psx-list {
    max-height: 200px;
    overflow-y: auto;
    font-size: 14px; }
    .dropdown-multiselect.long-lookup .psx-list .psx-list-item {
      line-height: 24px;
      height: 36px; }

.dropdown-multiselect .text-center {
  text-align: center; }

.dropdown-multiselect-selections {
  border: 1px solid rgba(60, 70, 74, 0.3);
  border-radius: 2px; }
  .dropdown-multiselect-selections.limit-height {
    max-height: 500px;
    overflow-y: auto; }

.input-w-clear {
  position: relative; }
  .input-w-clear:hover .action-button {
    opacity: 1; }
  .input-w-clear input {
    display: block;
    width: 100%;
    font-size: 14px;
    padding: 3px 6px;
    box-shadow: none;
    height: 33px;
    line-height: 1;
    border-radius: 4px;
    padding-right: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
    .input-w-clear input::-webkit-outer-spin-button, .input-w-clear input::-webkit-inner-spin-button {
      -webkit-appearance: none; }
    .input-w-clear input ::-webkit-clear-button {
      -webkit-appearance: none; }
  .input-w-clear .action-button {
    z-index: 10;
    position: absolute;
    top: 7px;
    right: 7px;
    font-size: 18px;
    color: rgba(60, 70, 74, 0.3); }
    .input-w-clear .action-button:hover {
      cursor: pointer;
      color: #364b94; }

.loading-text {
  font-size: 18px; }

.confirmation-dialog {
  text-align: center;
  color: #3c474b;
  overflow: visible; }
  .confirmation-dialog .modal-content {
    width: 600px;
    margin-left: auto;
    margin-right: auto;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px; }
  .confirmation-dialog .modal-header {
    height: 40px;
    font-size: 20px !important;
    color: #ffffff;
    padding: 10px; }
    .confirmation-dialog .modal-header .modal-close-icon.small {
      font-size: 40px !important; }
  .confirmation-dialog .modal-body {
    text-align: left;
    overflow-y: visible;
    line-height: 24px; }
    .confirmation-dialog .modal-body .header {
      font-size: 20px;
      font-weight: 600; }

.cru-error-popover {
  max-width: 340px;
  font-size: 13px;
  line-height: 1.4; }
  .cru-error-popover__header {
    font-weight: 600;
    margin-bottom: 8px; }
  .cru-error-popover__messages {
    max-height: 110px;
    overflow-y: hidden; }
    .cru-error-popover__messages.scrollable {
      overflow-y: auto; }
  .cru-error-popover .line {
    margin: 2px 0;
    word-break: break-word; }
    .cru-error-popover .line .category {
      font-weight: 700;
      margin-right: 4px; }

.careteam-settings-container hr {
  height: 0px;
  border-bottom: 1px solid rgba(60, 70, 74, 0.3);
  margin: 10px 0px 10px -15px; }

.careteam-settings-container .switch {
  margin-top: 2px; }

.careteam-settings-container .ui-select-choices-row-inner {
  min-height: 28px; }

.careteam-settings-container .property-indent {
  padding-left: 15px; }

.careteam-settings-container .header {
  font-weight: 400;
  font-size: 16px;
  border-bottom: 1px solid rgba(60, 70, 74, 0.3);
  color: darkgray;
  padding-bottom: 5px; }

.careteam-settings-container .byline {
  font-size: 12px;
  margin-top: 5px;
  line-height: 20px; }

.mobile-app-calling-container hr {
  height: 0px;
  border-bottom: 1px solid rgba(60, 70, 74, 0.3);
  margin: 10px 0px 10px -15px; }

.mobile-app-calling-container .switch {
  margin-top: 2px; }

.mobile-app-calling-container .ui-select-choices-row-inner {
  min-height: 28px; }

.mobile-app-calling-container .property-indent {
  padding-left: 15px; }

.mobile-app-calling-container .header {
  font-weight: 400;
  font-size: 16px;
  color: darkgray; }

.mobile-app-calling-container .byline {
  font-size: 12px;
  margin-top: 5px;
  line-height: 18px; }

.mobile-app-calling-container .margin-left-20 {
  margin-left: 20px; }

.mobile-app-calling-container .separator {
  margin: 0px 5px;
  display: flex;
  align-items: center;
  justify-content: center; }

.mobile-app-calling-container .bar {
  height: 25px;
  flex: 1;
  display: flex;
  transition: all 0.3s ease-in-out;
  flex-direction: row;
  background-color: rgba(60, 70, 74, 0.3);
  border-radius: 5px; }
  .mobile-app-calling-container .bar .section {
    display: flex;
    background-color: #364b94; }
  .mobile-app-calling-container .bar .not-full {
    border-radius: 5px 0 0 5px;
    min-width: 3px; }
  .mobile-app-calling-container .bar .full {
    border-radius: 5px; }

.mobile-app-calling-container .lighten .alert-info {
  background-color: rgba(217, 237, 247, 0.4);
  border-color: rgba(188, 232, 241, 0.4); }

.addon-modules-container .psx-grid-item-boxed {
  border: 1px solid rgba(60, 70, 74, 0.3); }

.addon-modules-container .psx-list-item-multiline {
  padding: 5px 10px; }
  .addon-modules-container .psx-list-item-multiline:not(:first-child) {
    border-top: 1px solid rgba(60, 70, 74, 0.3); }
  .addon-modules-container .psx-list-item-multiline.net-new {
    background-color: #fefefe; }

.addon-modules-container .psx-grid-header {
  color: gray; }

.addon-modules-container .new-system {
  color: #364b94; }

.addon-modules-container .half-width {
  width: 50%; }

.addon-modules-container .ct-column {
  width: 100px;
  text-align: center; }
  .addon-modules-container .ct-column .fa-asterisk {
    font-size: 18px;
    color: #364b94; }
  .addon-modules-container .ct-column .psx-checkbox2 {
    height: 40px; }

.addon-modules-container .psx-list-item .remove-icon {
  padding-left: 0px; }

.ui-select-bootstrap .ui-select-choices-row.disabled > span,
.ui-select-bootstrap .ui-select-choices-row.active.disabled > span {
  color: silver !important; }

.roster-container.page-loading {
  top: 40px !important; }

.roster-container .filter-spacing {
  margin-left: 0; }

.roster-container .roster-filter {
  width: 230px; }

.roster-container .department-dropdown {
  width: 230px; }

.roster-container .stage-dropdown {
  width: 150px; }

.roster-container .psx-grid-item-multiline:hover .link {
  text-decoration: underline !important;
  cursor: pointer !important; }

.roster-container .no-data {
  font-style: italic;
  margin-left: 20px; }

.roster-container .search-filter {
  font-size: 16px !important; }

.roster-container .tooltip {
  width: 200px;
  word-wrap: break-word; }

.roster-container .search-filter::placeholder {
  color: gainsboro !important; }

.roster-container .tooltip {
  width: 200px;
  word-wrap: break-word; }

.roster-container .presence-container .presence-active {
  color: #0ed957; }

.roster-container .presence-container .fa {
  font-size: 14px; }

.authenticator-container {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  align-content: stretch;
  padding: 15px 0px 0px 0px;
  background-color: white; }
  .authenticator-container .btn-xs {
    padding: 2px 10px; }
  .authenticator-container span {
    color: #3c474b; }
  .authenticator-container .authenticator-listing {
    padding: 10px 0px 0px 15px;
    width: 300px;
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid gainsboro;
    overflow-y: auto;
    height: calc(100vh - 70px); }
    .authenticator-container .authenticator-listing .authenticator-header {
      font-size: 20px;
      font-weight: bold; }
    .authenticator-container .authenticator-listing .authenticator-filter {
      margin-top: 10px;
      padding-top: 10px;
      border-top: 1px solid gainsboro;
      margin-bottom: 10px;
      padding-bottom: 10px;
      border-bottom: 1px solid gainsboro; }
    .authenticator-container .authenticator-listing .authenticator-item-container .authenticator-item {
      padding: 10px;
      margin: 10px 0px;
      font-weight: normal;
      font-size: 18px;
      cursor: pointer;
      border: 1px solid gainsboro; }
      .authenticator-container .authenticator-listing .authenticator-item-container .authenticator-item:hover {
        background-color: #d9edf7;
        cursor: hand; }
        .authenticator-container .authenticator-listing .authenticator-item-container .authenticator-item:hover.authenticator-selected {
          background-color: #556dc1;
          color: white; }
      .authenticator-container .authenticator-listing .authenticator-item-container .authenticator-item .authenticator-counts {
        margin-top: 5px;
        font-weight: normal;
        font-size: 14px; }
    .authenticator-container .authenticator-listing .authenticator-selected {
      background-color: #364b94;
      color: white; }
  .authenticator-container .authenticator-ui-view {
    flex: 1 1 auto;
    overflow-y: auto;
    height: calc(100vh - 70px); }
  .authenticator-container .authenticator-details {
    padding-top: 10px;
    padding-right: 10px;
    flex: 1 1 auto; }
    .authenticator-container .authenticator-details .authenticator-name-container {
      display: flex;
      flex-flow: row nowrap; }
      .authenticator-container .authenticator-details .authenticator-name-container .authenticator-name-input {
        flex: 0 0 50%; }
    .authenticator-container .authenticator-details .authenticator-name-error-container {
      display: flex;
      flex-flow: row nowrap; }
      .authenticator-container .authenticator-details .authenticator-name-error-container .authenticator-name-error {
        flex: 0 0 50%; }
    .authenticator-container .authenticator-details .authenticator-name-offset {
      margin-top: 23px; }
    .authenticator-container .authenticator-details .sub-header {
      margin-top: 20px;
      background-color: #d8d8d8;
      width: 100%;
      height: 48px;
      line-height: 48px;
      padding-left: 10px;
      font-size: 20px; }
    .authenticator-container .authenticator-details .border-bottom {
      border-bottom: 1px solid rgba(60, 70, 74, 0.3); }
  .authenticator-container .multiline-psx-grid-item {
    min-height: 40px;
    max-height: 480px;
    line-height: 24px;
    padding: 5px 0px;
    font-size: 14px;
    border-right: 0px;
    border-left: 0px;
    border-bottom: 1px solid rgba(60, 70, 74, 0.3); }
  .authenticator-container .multiline-psx-grid-item:hover {
    background-color: #d9edf7; }
  .authenticator-container .underline-hover:hover {
    text-decoration: underline;
    cursor: pointer; }
  .authenticator-container .context-type {
    margin-right: 3px; }

.oidc-authenticators-container.flex-column-layout {
  height: 100%; }

.oidc-authenticators-container .table-responsive {
  max-height: 600px;
  overflow-y: auto;
  overflow-x: auto; }
  .oidc-authenticators-container .table-responsive::-webkit-scrollbar {
    width: 8px;
    height: 8px; }
  .oidc-authenticators-container .table-responsive::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px; }
  .oidc-authenticators-container .table-responsive::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px; }
    .oidc-authenticators-container .table-responsive::-webkit-scrollbar-thumb:hover {
      background: #555; }
  .oidc-authenticators-container .table-responsive table thead {
    position: sticky;
    top: 0;
    z-index: 10; }
  .oidc-authenticators-container .table-responsive table th.col-name,
  .oidc-authenticators-container .table-responsive table td.col-name {
    min-width: 150px; }
  .oidc-authenticators-container .table-responsive table th.col-domains,
  .oidc-authenticators-container .table-responsive table td.col-domains {
    min-width: 200px; }
  .oidc-authenticators-container .table-responsive table th.col-provider,
  .oidc-authenticators-container .table-responsive table td.col-provider {
    min-width: 100px; }
  .oidc-authenticators-container .table-responsive table th.col-upns,
  .oidc-authenticators-container .table-responsive table td.col-upns,
  .oidc-authenticators-container .table-responsive table th.col-actions,
  .oidc-authenticators-container .table-responsive table td.col-actions {
    min-width: 80px; }
  .oidc-authenticators-container .table-responsive table .name-content,
  .oidc-authenticators-container .table-responsive table .domains-content {
    word-break: break-word;
    white-space: normal;
    line-height: 1.4; }

@media (max-width: 768px) {
  .oidc-authenticators-container .table-responsive {
    max-height: 400px; }
    .oidc-authenticators-container .table-responsive table {
      min-width: 600px; }
      .oidc-authenticators-container .table-responsive table th.col-name,
      .oidc-authenticators-container .table-responsive table td.col-name {
        min-width: 120px; }
      .oidc-authenticators-container .table-responsive table th.col-domains,
      .oidc-authenticators-container .table-responsive table td.col-domains {
        min-width: 180px; }
      .oidc-authenticators-container .table-responsive table th.col-provider,
      .oidc-authenticators-container .table-responsive table td.col-provider {
        min-width: 80px; }
      .oidc-authenticators-container .table-responsive table th.col-upns,
      .oidc-authenticators-container .table-responsive table td.col-upns,
      .oidc-authenticators-container .table-responsive table th.col-actions,
      .oidc-authenticators-container .table-responsive table td.col-actions {
        min-width: 60px; } }

@media (max-height: 600px) and (orientation: portrait) {
  .oidc-authenticators-container .table-responsive {
    max-height: 300px; } }

.version-dialog .modal-content {
  width: 400px; }

.version-dialog .lab {
  color: gray;
  width: 100px; }

.alert-container .fa {
  font-size: 20px; }

.alert-container .positive-input {
  border-color: #00ab69;
  color: #00ab69; }

.alert-container .negative-input {
  border-color: #d0021b;
  color: #d0021b; }

.alert-container .positive-selection {
  margin: 0px 10px; }
  .alert-container .positive-selection:hover, .alert-container .positive-selection.select {
    color: #00ab69;
    opacity: 1;
    cursor: pointer; }

.alert-container .negative-selection {
  margin: 0px 10px; }
  .alert-container .negative-selection:hover, .alert-container .negative-selection.select {
    color: #d0021b;
    opacity: 1;
    cursor: pointer; }

.alert-container .max-150 {
  max-width: 150px;
  width: 100%; }

.alert-container .alert-name {
  font-size: 20px;
  font-weight: bold; }

.alert-container .alert-template-disclaimer {
  margin-left: 15px; }

.alert-container .alert-template-container {
  margin-top: 10px;
  width: 100%;
  height: 200px;
  padding: 5px 10px; }

.alert-container .half-width {
  width: 50% !important; }

.alert-container .dropdown-multiselect .multiselect .fa-check {
  margin-left: -2px; }

.alert-container .alert-tones-container .ui-select-bootstrap > .ui-select-choices,
.alert-container .alert-tones-container .ui-select-bootstrap > .ui-select-no-choice {
  max-height: 300px; }

.alert-container .ui-select-choices-group-label {
  font-size: 18px;
  color: darkgray;
  margin-bottom: 5px;
  font-weight: bold; }

.alert-container .ui-select-choices-row.active .videogular-container .iconButton,
.alert-container .ui-select-choices-row.active .videogular-container [videogular] .iconButton {
  color: white; }

.alert-container .ui-select-choices-row.active .videogular-container vg-time-display,
.alert-container .ui-select-choices-row.active .videogular-container [videogular] vg-time-display {
  color: white; }

.alert-container .videogular-container {
  height: 40px; }
  .alert-container .videogular-container video {
    display: none; }
  .alert-container .videogular-container vg-controls .controls-container,
  .alert-container .videogular-container [videogular] vg-controls .controls-container {
    height: 40px;
    background-color: transparent; }
  .alert-container .videogular-container .iconButton,
  .alert-container .videogular-container [videogular] .iconButton {
    color: #3c464a; }
  .alert-container .videogular-container vg-time-display,
  .alert-container .videogular-container [videogular] vg-time-display {
    color: #3c464a; }
  .alert-container .videogular-container videogular,
  .alert-container .videogular-container [videogular] {
    background-color: transparent; }
  .alert-container .videogular-container videogular vg-controls,
  .alert-container .videogular-container [videogular] vg-controls {
    height: 45px; }

.alert-container .fa-times-circle {
  margin-left: 8px;
  color: rgba(60, 70, 74, 0.3); }
  .alert-container .fa-times-circle:hover {
    color: red; }

.deviceEditor label {
  font-size: 14px;
  padding-left: 3px; }

.deviceEditor input[type="number"]::-webkit-inner-spin-button,
.deviceEditor input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; }

.deviceEditor .not-bold {
  font-weight: 400; }

.deviceEditor .fa-skype {
  color: #00aff0;
  margin-left: 3px; }

.deviceEditor .description {
  font-style: italic; }

.deviceEditor .multiline-select .ui-select-bootstrap .ui-select-choices-row > span {
  white-space: normal;
  font-size: 14px; }

.deviceEditor .multiline-select .ui-select-match-text {
  white-space: normal;
  font-size: 14px; }

.deviceEditor .multiline-select .form-control {
  height: auto; }

.deviceEditor .panel-heading {
  padding: 0px; }

.deviceEditor .panel-group {
  margin-bottom: 0px; }

.deviceEditor .panel {
  border: 0px;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none; }

.deviceEditor .panel-body {
  border-top: 0px solid #ddd !important;
  border: 0px;
  padding: 0px; }

.deviceEditor .text-capable-display {
  margin-top: 10px;
  font-size: 12px; }

.deviceEditor .activate-text {
  max-width: 90px;
  font-size: 14px;
  padding-left: 3px; }

.deviceEditor .inactive-text {
  color: #aaaaaa; }

.deviceEditor .popover-content {
  font-size: 14px; }

.deviceEditor .uib-timepicker .uib-time.am-pm {
  padding-left: 3px; }
  .deviceEditor .uib-timepicker .uib-time.am-pm .btn-default {
    border-color: #ccc;
    background: white;
    font-size: 14px;
    color: #3c464a;
    padding: 3px 6px;
    width: 40px;
    float: left;
    height: 33px; }
    .deviceEditor .uib-timepicker .uib-time.am-pm .btn-default:hover {
      background-color: #364b94;
      color: white; }

.deviceEditor .uib-timepicker .uib-time input {
  width: 38px;
  margin: 0 3px; }

.deviceEditor .uib-timepicker .form-control {
  padding: 6px 8px; }

.deviceEditor .uib-timepicker span.glyphicon {
  margin-right: 0px; }

.deviceEditor .uib-timepicker a.btn-link {
  padding: 3px 0px;
  margin: 0 auto;
  text-align: center;
  color: #3c464a;
  font-size: 12px; }

.deviceEditor .date-input {
  width: auto !important; }

.deviceEditor .uib-datepicker:focus,
.deviceEditor .uib-datepicker:active,
.deviceEditor .uib-daypicker:focus {
  outline: 0 !important; }

.deviceEditor .uib-datepicker th {
  color: #364b94; }

.deviceEditor .input-group-btn .btn-default {
  padding: 6px 9px !important; }

.deviceEditor .full-width {
  width: 100%; }

.user-provisioning-container {
  font-size: 14px; }
  .user-provisioning-container .select-header {
    font-size: 16px;
    margin: 0px 0px 10px 2px; }
  .user-provisioning-container .source-selection {
    width: 500px;
    margin: 25px auto; }
  .user-provisioning-container .subheader {
    color: #b7b7b7;
    font-size: 18px; }
  .user-provisioning-container .border-left {
    border-left: 1px solid rgba(60, 70, 74, 0.3);
    padding-left: 15px; }
  .user-provisioning-container .fa-check {
    color: #00ab69; }
  .user-provisioning-container .fa-times-circle {
    color: red; }
  .user-provisioning-container .fa-exclamation-circle {
    color: #f29c20; }
  .user-provisioning-container .psx-list li:not(:first-child) {
    margin-top: 5px; }
  .user-provisioning-container .single-icon-column {
    width: 35px; }
    .user-provisioning-container .single-icon-column .expand-icon {
      font-size: 18px;
      cursor: pointer; }
  .user-provisioning-container .remove-setting {
    width: 15px; }
  .user-provisioning-container .status-icon {
    width: 23px; }
    .user-provisioning-container .status-icon .fa {
      font-size: 18px; }
  .user-provisioning-container .no-highlight:hover {
    background-color: transparent !important; }
  .user-provisioning-container .is-expanded {
    background-color: rgba(54, 75, 148, 0.3);
    font-weight: bold;
    padding: 5px 0px; }
  .user-provisioning-container .file-details {
    margin: 5px 0px 10px 35px;
    padding: 10px;
    border: 1px solid rgba(60, 70, 74, 0.3);
    border-top: 0px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    height: 500px;
    overflow-y: auto; }
    .user-provisioning-container .file-details .search-input {
      font-size: 14px;
      width: 250px; }
  .user-provisioning-container .message-column {
    word-break: break-all;
    white-space: normal; }
  .user-provisioning-container .ml-25 {
    margin-left: 25px; }
  .user-provisioning-container .flex-between {
    display: flex;
    justify-content: space-between; }
  .user-provisioning-container .flex-column {
    word-wrap: break-word; }
  .user-provisioning-container .flex-column-double:first-child {
    padding-right: 15px; }
  .user-provisioning-container .uib-datepicker:focus,
  .user-provisioning-container .uib-datepicker:active,
  .user-provisioning-container .uib-daypicker:focus {
    outline: 0 !important; }
  .user-provisioning-container .panel-heading {
    padding: 0px; }
  .user-provisioning-container .panel-group {
    margin-bottom: 0px; }
  .user-provisioning-container .panel {
    border: 0px;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .user-provisioning-container .panel-body {
    border-top: 0px solid #ddd !important;
    border: 0px;
    padding: 0px; }
  .user-provisioning-container .ui-select-choices-group-label {
    background-color: rgba(60, 70, 74, 0.3);
    font-weight: bold;
    color: #3c464a;
    padding-top: 7px;
    padding-bottom: 7px; }
  .user-provisioning-container .mapping-container {
    margin: 10px; }
  .user-provisioning-container .psx-grid-header,
  .user-provisioning-container .psx-grid-item {
    padding-left: 10px; }
  .user-provisioning-container .nav {
    border-bottom: 1px solid #364b94; }
  .user-provisioning-container .mapping-entry {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(60, 70, 74, 0.3); }
  .user-provisioning-container .integration-mappings {
    padding-left: 20px !important; }
    .user-provisioning-container .integration-mappings li {
      list-style: none; }
    .user-provisioning-container .integration-mappings li:not(:first-child) {
      border-top: 1px solid rgba(60, 70, 74, 0.3);
      padding-top: 5px; }
  .user-provisioning-container .mr-25 {
    margin-right: 25px; }
  .user-provisioning-container .ml-30 {
    margin-left: 30px; }
  .user-provisioning-container .html-container {
    white-space: pre-line; }
  .user-provisioning-container .list-bottom-margin li:last-child {
    margin-bottom: 15px;
    list-style: none; }
  .user-provisioning-container .psx-grid-item-multiline {
    max-height: none !important; }
  .user-provisioning-container .source-settings-label {
    font-weight: normal; }
  .user-provisioning-container .csv-mapping-container {
    background-color: #eeeeee;
    border-radius: 5px; }
    .user-provisioning-container .csv-mapping-container .fa-times-circle {
      color: #3c474b;
      margin: 0; }
    .user-provisioning-container .csv-mapping-container .border-bottom {
      border-bottom: 1px solid rgba(60, 70, 74, 0.3); }
  .user-provisioning-container .source-selection .dropdown-menu {
    max-height: 500px; }

.connectivity-container {
  margin: auto;
  width: 600px;
  background-color: white;
  border-radius: 10px;
  border: 1px solid rgba(60, 70, 74, 0.3);
  padding: 25px;
  margin-top: 50px;
  font-size: 14px; }
  .connectivity-container input {
    font-size: 14px !important; }
  .connectivity-container .logo {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(60, 70, 74, 0.3); }
    .connectivity-container .logo .title {
      margin-left: 5px;
      margin-bottom: 5px;
      color: gray; }
  .connectivity-container .description {
    margin: 10px;
    line-height: 20px;
    text-align: center; }
  .connectivity-container label {
    font-size: 14px;
    margin-left: 5px; }
  .connectivity-container .btn-block {
    height: 40px;
    width: 200px; }
  .connectivity-container .status-text {
    font-size: 18px;
    font-weight: bold; }
    .connectivity-container .status-text .fa-check-circle {
      font-size: 20px; }
  .connectivity-container .byline {
    margin: 10px 0px 0px 0px;
    line-height: 22px; }
  .connectivity-container .fa-check-circle {
    color: #00ab69;
    margin-right: 7px;
    font-size: 18px; }
  .connectivity-container .fa-times-circle {
    color: red;
    margin-right: 7px;
    font-size: 18px; }
  .connectivity-container .flex-center {
    display: flex;
    justify-content: center; }
  .connectivity-container .margin-left-30 {
    margin-left: 30px; }
  .connectivity-container .state-container {
    border: 1px solid rgba(60, 70, 74, 0.3);
    padding: 25px;
    margin-top: 41px;
    font-size: 14px;
    border-radius: 10px;
    min-height: 254px; }
    .connectivity-container .state-container.greenborder {
      border-color: #00ab69; }
    .connectivity-container .state-container.redborder {
      border-color: red; }
  .connectivity-container .psx-grid-item-multiline {
    padding-top: 8px; }
    .connectivity-container .psx-grid-item-multiline:hover {
      background-color: transparent; }
  .connectivity-container .icon-offset {
    padding-top: 1px; }

.email-credentials .modal-content {
  width: 800px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px; }

.email-credentials .modal-header {
  height: 40px;
  font-size: 20px !important;
  color: #ffffff;
  padding: 10px; }
  .email-credentials .modal-header .modal-close-icon.small {
    font-size: 40px !important; }

.email-credentials .email-container {
  margin-top: 15px; }
  .email-credentials .email-container pre {
    font-size: 14px;
    white-space: pre-wrap;
    word-break: break-word;
    color: #3c464a;
    font-family: "Roboto";
    background-color: transparent;
    padding: 15px;
    height: 325px;
    overflow-y: auto; }

.email-credentials .ccs {
  font-size: 14px; }
  .email-credentials .ccs input {
    font-size: 14px; }

.email-credentials .half-width {
  width: 50% !important; }

.email-credentials .remove-icon {
  margin-top: 7px; }

.call-recording-container {
  font-size: 14px; }
  .call-recording-container label {
    font-size: 14px; }
  .call-recording-container input {
    font-size: 14px; }
  .call-recording-container ::placeholder {
    font-size: 14px; }
  .call-recording-container :-ms-input-placeholder {
    font-size: 14px; }
  .call-recording-container ::-ms-input-placeholder {
    font-size: 14px; }
  .call-recording-container .ui-select-placeholder {
    font-size: 14px; }
  .call-recording-container .search-property {
    font-size: 16px;
    font-weight: bold;
    width: 90px; }
  .call-recording-container .account-property {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0px; }
  .call-recording-container .uib-datepicker:focus,
  .call-recording-container .uib-datepicker:active,
  .call-recording-container .uib-daypicker:focus {
    outline: 0 !important; }
  .call-recording-container .action-icon-container .action-icon {
    font-size: 18px;
    margin: 0px; }
  .call-recording-container .videogular-container {
    height: 50px;
    margin: 15px 15px 15px 40px; }
  .call-recording-container .start-label {
    font-size: 16px; }
  .call-recording-container .secondary-disclaimer {
    font-weight: bold;
    display: flex;
    justify-content: center; }
  .call-recording-container .find-calls-btn {
    width: 150px; }
  .call-recording-container .show-more {
    display: flex;
    justify-content: center; }
    .call-recording-container .show-more:hover {
      background-color: transparent; }
  .call-recording-container .no-results {
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: darkgray;
    font-style: italic;
    font-size: 16px; }
  .call-recording-container .animation-line {
    height: 40px;
    padding: 19px 0px; }
    .call-recording-container .animation-line .psxLineAnimation {
      height: 2px; }
  .call-recording-container .call-entry:hover {
    cursor: pointer; }
  .call-recording-container .word-wrap {
    white-space: normal;
    line-height: 20px; }
  .call-recording-container .second-text {
    color: gray; }
  .call-recording-container .panel-heading {
    padding: 0px; }
  .call-recording-container .panel-group {
    margin-bottom: 0px; }
  .call-recording-container .panel {
    border: 0px;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .call-recording-container .panel-body {
    border-top: 0px solid #ddd !important;
    border: 0px;
    padding: 0px; }
  .call-recording-container .z-back {
    z-index: 1; }

.object-search {
  font-size: 14px;
  position: relative; }
  .object-search .search-input {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important; }
  .object-search .subheader {
    background-color: #6f6f6f;
    color: white;
    pointer-events: none;
    padding: 10px 5px 5px 10px;
    margin-top: 5px; }
  .object-search li:hover a,
  .object-search a:hover a {
    color: #3c464a !important; }
  .object-search .account {
    font-size: 12px;
    margin-top: 5px; }
  .object-search .dropdown-menu {
    max-width: 600px !important; }

.facility-settings-container hr {
  height: 0px;
  border-bottom: 1px solid rgba(60, 70, 74, 0.3);
  margin: 10px 0px 10px -15px; }

.facility-settings-container .switch {
  margin-top: 2px; }

.facility-settings-container .header {
  font-weight: 400;
  font-size: 16px;
  border-bottom: 1px solid rgba(60, 70, 74, 0.3);
  color: darkgray;
  padding-bottom: 5px; }

.rotate180 {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg); }

.amp-container {
  font-size: 14px;
  padding-top: 20px; }
  .amp-container .filter {
    padding-left: 10px;
    width: 50%; }
  .amp-container .url {
    width: 100px; }
    .amp-container .url span {
      margin-left: 23px; }
    .amp-container .url i {
      font-size: 18px;
      margin-top: 4px; }
  .amp-container .actions {
    width: 75px; }
  .amp-container .psx-grid-header {
    padding: 0px 10px; }
  .amp-container .click-copy:after {
    font-size: 18px; }
  .amp-container .isactive {
    width: 125px; }
  .amp-container .inactive {
    font-style: italic;
    color: rgba(60, 70, 74, 0.5); }
  .amp-container .dropdown-menu {
    max-height: 300px;
    overflow-y: auto; }
  .amp-container .ip-container .flex-row {
    flex: 1; }
  .amp-container .ip-container .single-icon-column {
    margin-left: -25px; }
  .amp-container .ip-container .action-icon-container .action-icon {
    margin: 0px !important; }
  .amp-container .popover .info {
    padding-bottom: 10px; }
  .amp-container .popover .info:last-child {
    padding-bottom: 0px; }
  .amp-container .panel-heading {
    padding: 0px; }
  .amp-container .panel-group {
    margin-bottom: 0px; }
  .amp-container .panel {
    border: 0px;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .amp-container .panel-body {
    border-top: 0px solid #ddd !important;
    border: 0px;
    padding: 0px; }

.small .action-icon {
  font-size: 16px; }

.date-input {
  font-size: 14px;
  width: 150px !important; }
  .date-input input {
    pointer-events: none;
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important; }
    .date-input input.error {
      border-color: #ed1b2d;
      color: #ed1b2d; }
  .date-input .uib-datepicker-popup .btn-default {
    color: #3c464a;
    background-color: white; }

.change-log-container {
  font-size: 14px; }
  .change-log-container .margin-right-20 {
    margin-right: 20px; }
  .change-log-container .pad-left-26 {
    padding-left: 26px; }
  .change-log-container .pad-left-18 {
    padding-left: 18px; }
  .change-log-container .pad-bottom-3 {
    padding-bottom: 3px; }
  .change-log-container .info-icon {
    margin: 0 5px; }
  .change-log-container .input-group {
    max-width: 300px; }
  .change-log-container .date-label {
    width: 65px; }
  .change-log-container .date-input {
    margin-right: 10px;
    width: 135px !important; }
  .change-log-container .start-date {
    margin-right: 15px; }
  .change-log-container .light {
    color: rgba(60, 70, 74, 0.3); }
  .change-log-container .change-log-data-wrap {
    line-height: 18px !important;
    margin-top: 3px !important; }

.lb-container .date-label {
  margin: 0 0 5px 40px; }

.lb-container .lb-entry {
  border-bottom: 1px solid rgba(60, 70, 74, 0.3);
  margin: 10px 0;
  padding: 5px 10px; }
  .lb-container .lb-entry:last-child {
    border-bottom: 0px; }
  .lb-container .lb-entry.ignored {
    color: gainsboro; }
  .lb-container .lb-entry:hover {
    background-color: #f5f5f5; }

.lb-container .click-copy::after {
  font-size: 14px; }

.lb-container .lb-lookup {
  font-size: 14px;
  line-height: 24px;
  color: #3c474b !important; }

:root {
  --primary-blue: rgb(0 174 199);
  --primary-dark-blue: rgb(10 67 135);
  --primary-purple: rgb(63 42 86);
  --primary-orange: rgb(255 158 27);
  --primary-yellow: rgb(255 205 0);
  --secondary-gray: rgb(51 63 72);
  --secondary-gray2: rgb(91 103 112);
  --secondary-gray3: rgb(162 170 173);
  --secondary-gray4: rgb(208 211 212);
  --secondary-dark-tangerine: rgb(255 151 26);
  --secondary-pigment-green: rgb(21 160 73);
  --secondary-cornflower: rgb(149 212 233);
  --secondary-danger-red: rgb(210 0 30);
  --secondary-tuna: rgb(74 79 84);
  --secondary-oslo-gray: rgb(128 128 130);
  --secondary-denim: rgb(9 97 168);
  --ps-primary-blue: var(--primary-blue);
  --ps-primary-dark-blue: var(--primary-dark-blue);
  --ps-primary-purple: var(--primary-purple);
  --ps-primary-orange: var(--primary-orange);
  --ps-primary-yellow: var(--primary-yellow);
  --ps-success: var(--secondary-pigment-green);
  --ps-danger: var(--secondary-danger-red);
  --ps-warning: var(--secondary-dark-tangerine);
  --ps-info: var(--secondary-cornflower);
  --ps-gray: var(--secondary-gray);
  --ps-gray2: var(--secondary-gray2);
  --ps-gray3: var(--secondary-gray3);
  --ps-gray4: var(--secondary-gray4);
  --ps-placeholder-color: var(--secondary-gray4);
  --ps-border-radius: 4px; }

.ps-text-primary-blue {
  color: var(--ps-primary-blue); }

.ps-bg-primary-blue {
  background-color: var(--ps-primary-blue); }

.ps-text-primary-dark-blue {
  color: var(--ps-primary-dark-blue); }

.ps-bg-primary-dark-blue {
  background-color: var(--ps-primary-dark-blue); }

.ps-text-primary-purple {
  color: var(--ps-primary-purple); }

.ps-bg-primary-purple {
  background-color: var(--ps-primary-purple); }

.ps-text-primary-orange {
  color: var(--ps-primary-orange); }

.ps-bg-primary-orange {
  background-color: var(--ps-primary-orange); }

.ps-text-primary-yellow {
  color: var(--ps-primary-yellow); }

.ps-bg-primary-yellow {
  background-color: var(--ps-primary-yellow); }

.ps-text-success {
  color: var(--ps-success) !important; }

.ps-bg-success {
  background-color: var(--ps-success !important); }

.ps-text-warning {
  color: var(--ps-warning) !important; }

.ps-bg-warning {
  background-color: var(--ps-warning) !important; }

.ps-text-danger {
  color: var(--ps-danger) !important; }

.ps-bg-danger {
  background-color: var(--ps-danger) !important; }

.ps-text-info {
  color: var(--ps-info) !important; }

.ps-bg-info {
  background-color: var(--ps-info) !important; }

.ps-text-gray {
  color: var(--ps-gray); }

.ps-bg-gray {
  background-color: var(--ps-gray); }

.ps-text-gray2 {
  color: var(--ps-gray2); }

.ps-bg-gray2 {
  background-color: var(--ps-gray2); }

.ps-text-gray3 {
  color: var(--ps-gray3); }

.ps-bg-gray3 {
  background-color: var(--ps-gray3); }

.ps-text-gray4 {
  color: var(--ps-gray4); }

.ps-bg-gray4 {
  background-color: var(--ps-gray4); }

.team-alert-page {
  line-height: 20px;
  font-size: 14px; }
  .team-alert-page .role-members {
    margin: 10px 20px; }
  .team-alert-page .column-header {
    font-weight: bold;
    margin-top: 50px;
    margin-left: 20px;
    font-size: 16px; }
  .team-alert-page .subheader {
    font-size: 18px;
    margin-bottom: 20px; }

button.nada {
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  margin: 0;
  background: transparent; }
  button.nada:hover {
    background-color: transparent; }

.oncall-coverage {
  height: inherit;
  display: flex;
  flex-direction: column; }
  .oncall-coverage input::placeholder {
    font-size: 14px; }
  .oncall-coverage .output {
    border: 1px solid rgba(60, 70, 74, 0.3);
    padding: 15px 20px;
    border-radius: 4px;
    margin-top: 20px; }
    .oncall-coverage .output .gaps-container {
      max-height: 90vh;
      height: auto;
      overflow-y: scroll; }
    .oncall-coverage .output i {
      font-size: 20px; }
    .oncall-coverage .output.disabled {
      opacity: 0.3; }

.scroll-container {
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 10px 0; }

.contact-mapping-page {
  font-size: 14px; }

.interactions {
  font-size: 14px;
  line-height: 20px; }
  .interactions .react-datepicker__input-container input {
    border: 0;
    background-color: transparent; }
    .interactions .react-datepicker__input-container input:focus {
      outline: none; }
  .interactions .react-datepicker-wrapper {
    width: 110px;
    border-radius: 4px;
    border: 1px solid lightgray; }
  .interactions i {
    font-size: 16px; }
  .interactions .timestamp {
    width: 140px;
    font-size: 12px; }
  .interactions .interaction-row {
    border-top: 1px solid rgba(60, 70, 74, 0.3);
    line-height: 20px;
    display: flex;
    padding: 10px;
    background-color: transparent; }
    .interactions .interaction-row .details-btn {
      font-size: 12px; }
    .interactions .interaction-row:hover {
      background-color: #f1f6f7;
      -moz-transition: .4s;
      -ms-transition: .4s;
      -o-transition: .4s;
      -webkit-transition: .4s;
      transition: .4s; }

.full-timestamp {
  width: 160px;
  margin-right: 20px;
  color: gray;
  font-size: 12px; }

.detail-overlay {
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  background-color: #fff;
  border: 1px solid lightgray;
  border-radius: 4px;
  height: fit-content;
  max-width: 900px;
  padding: 10px 20px;
  margin: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  z-index: 100;
  line-height: 30px; }
  .detail-overlay .scroll {
    max-height: 200px;
    overflow-y: auto;
    white-space: pre-wrap; }

.react-datepicker {
  font-size: 1.1rem !important; }

.loading-wrapper {
  height: 2px; }

.bar-chart-bar {
  background-color: var(--ps-primary-blue);
  border-top-left-radius: 2px;
  border-top-right-radius: 2px; }

.input-group .form-control {
  z-index: auto !important; }

.custom-select-container .options-container {
  width: max-content !important; }

.loading-line {
  --size: 800px;
  --stroke-width: calc(var(--size) / 6);
  --color: --ps-primary-blue;
  --animation-timing-function: cubic-bezier(0.85, 0, 0.15, 1);
  --animation-duration: 1.5s;
  width: 100%;
  height: 2px;
  background-color: var(--ps-primary-blue);
  transform: scaleX(0);
  transform-origin: center left;
  animation: var(--animation-timing-function) var(--animation-duration) infinite loading-line-animation; }

@keyframes loading-line-animation {
  0% {
    transform: scaleX(0);
    transform-origin: center left; }
  50% {
    transform: scaleX(1);
    transform-origin: center left; }
  51% {
    transform: scaleX(1);
    transform-origin: center right; }
  100% {
    transform: scaleX(0);
    transform-origin: center right; } }

.sticky-list-header {
  display: flex;
  top: -2px;
  padding: 10px;
  border-bottom: 1px solid rgba(60, 70, 74, 0.3);
  overflow: auto;
  position: -webkit-sticky;
  position: sticky;
  background-color: white;
  align-items: flex-end; }

.sticky-list-header .vc {
  color: #181818; }

.vc {
  display: flex;
  flex-direction: column;
  align-items: center; }
  .vc i {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--ps-primary-blue); }

.metrics {
  display: flex;
  justify-content: space-between;
  color: gray;
  font-size: 12px; }
  .metrics span {
    display: block;
    font-size: 18px;
    margin-top: 5px;
    color: var(--ps-primary-dark-blue); }

.after-hours {
  font-size: 14px;
  line-height: 20px; }
  .after-hours i {
    font-size: 16px; }
  .after-hours .detail-overlay {
    background-color: #fff;
    border: 1px solid gray;
    max-height: 450px;
    width: 900px;
    padding: 10px 20px;
    margin: auto;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    z-index: 100; }
  .after-hours .entry {
    display: flex;
    padding: 10px 0px;
    border-top: 1px solid lightgray; }

.patientListContainer span {
  font-size: 13px;
  font-weight: bold; }

.patientListContainer .edit-wrapper {
  padding: 15px; }

.patientListContainer table thead tr th {
  vertical-align: middle;
  border: 1px solid #ddd !important;
  border-top-width: 1px !important;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px; }

.patientListContainer table thead span {
  display: flex;
  align-items: center; }

.patientListContainer .ellipsis {
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer; }

.patientListContainer .action-icon {
  font-size: 20px;
  margin: 0px 8px;
  opacity: 0.1; }
  .patientListContainer .action-icon:hover {
    opacity: 1;
    transition: all 0.3s;
    cursor: pointer; }

.phoneCallsContainer .modal-header span {
  font-size: 24px; }

.phoneCallsContainer .modal-body .error-message {
  overflow-wrap: break-word; }

body {
  background-color: #ecedee;
  overflow: hidden; }

.loading {
  display: none; }

.show-more-results {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-color: transparent; }

.deferred-bootstrap-loading .loading {
  display: block !important;
  text-align: center;
  margin-top: 10%; }

#toast-container > div {
  width: 400px;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100); }

.toast-bottom-center {
  bottom: 50px; }

.toast-info {
  background-color: #364b94; }

.content-spacing {
  margin-top: 100px; }

.button-bottom {
  border-bottom: white solid 1px;
  padding: 10px; }

.center-content {
  margin: 0 auto; }

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

.right-button button {
  float: right; }

.wider-button {
  min-width: 100px; }

.content-container {
  overflow: scroll;
  height: 100%; }

.sub-head-90 {
  font-size: 90%;
  color: darkgray; }

.col-sm-3-right-border {
  border-right: 3px solid black; }

.btn-spacing {
  margin-left: 3px;
  margin-right: 3px; }

.btn.btn-primary:disabled:hover {
  color: #364b94; }

.date-label {
  font-size: 14px;
  color: #3c464a;
  margin-right: 10px; }

.alert {
  margin-top: 5px; }

/*Not sure why this was set to none by default. It caused checkboxes to disappear.*/
input[type="checkbox"] {
  -webkit-appearance: checkbox; }

.bottom-spacing-header {
  margin-bottom: 20px; }

.bottom-spacing-field {
  margin-bottom: 10px; }

.top-spacing-field {
  margin-top: 10px !important; }

.label-like {
  border: none;
  background: none; }

.user-profile-container {
  padding-top: 0px !important;
  padding-right: 25px !important;
  padding-bottom: 25px !important;
  padding-left: 40px !important; }

.validation-offset {
  margin-top: 10px;
  margin-left: 10px; }

.remove-entry {
  position: absolute;
  right: 15px;
  margin-right: 15px;
  display: block;
  color: gray; }

.row:hover .remove-entry:hover {
  color: red; }

.form-group-text-only {
  margin-top: 5px; }

.section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  border-bottom: 1px solid rgba(60, 70, 74, 0.3);
  color: darkgray !important;
  font-weight: 400;
  font-size: 18px;
  padding: 0px 15px 5px !important;
  margin: 25px -15px 10px -15px; }
  .section-header.space-header {
    margin-top: 15px; }
  .section-header .sub-text {
    font-size: 18px; }
  .section-header .active-switch {
    margin-left: 25px; }
    .section-header .active-switch .switch {
      margin-top: 5px; }

.user-container .site-width-container {
  margin-bottom: 50px !important; }

.sticky-footer {
  bottom: 0px;
  z-index: 100;
  position: fixed;
  width: 100%;
  background-color: #ecedee;
  border-bottom: 1px solid rgba(60, 70, 74, 0.3);
  border-top: 1px solid rgba(60, 70, 74, 0.3);
  padding: 5px 15px; }

.support-container {
  margin-bottom: 15px;
  display: flex;
  padding-top: 7px; }
  .support-container .support-header {
    font-weight: 400;
    color: darkgray;
    margin-right: 50px; }
  .support-container .support-entry:not(:last-child) {
    padding-right: 15px; }

.support-entry {
  display: flex;
  flex: 1;
  font-size: 14px;
  color: darkgray; }
  .support-entry .support-label {
    font-weight: 400; }
  .support-entry .support-id {
    margin-left: 10px;
    font-weight: 100; }

.hyperlink:hover {
  text-decoration: underline;
  cursor: pointer; }

.info-icon {
  margin: 0px 5px 0px 10px;
  width: 20px;
  height: 20px;
  align-self: flex-end; }
  .info-icon:hover {
    cursor: pointer; }

.info-container .popover-content {
  font-size: 14px; }
  .info-container .popover-content hr {
    margin: 10px 0px 0px 0px; }

.align-end {
  align-self: flex-end; }

.csp-table thead tr th {
  background-color: #d8d8d8; }

.btn-group-typeahead {
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important; }

.btn-group-search {
  width: 17px; }

.dropdown-menu li a {
  color: #3c474b; }
  .dropdown-menu li a:hover {
    color: white;
    background-color: #364b94; }

#roster-list-wrapper {
  margin-left: 25px;
  margin-right: 30px;
  max-height: calc(100% - 50px);
  overflow-y: auto; }
  #roster-list-wrapper table thead tr th {
    text-align: center;
    font-weight: bold;
    background: #556dc1;
    color: white; }
  #roster-list-wrapper table tbody tr:first-child > td,
  #roster-list-wrapper table tbody tr:last-child > td {
    border: 1px solid #ddd; }
  #roster-list-wrapper table tbody :hover {
    cursor: pointer; }

.inactive-profile {
  font-style: italic;
  color: #5e6e74; }

.top-spacing {
  margin-top: 10px; }

.filter-spacing {
  margin-left: 10px;
  margin-bottom: 5px; }

.is-disabled {
  opacity: 0.5;
  pointer-events: none; }

.psx-grid-w-editor {
  padding: 0px; }

.psx-grid-item-multiline-padding {
  padding: 7px 10px 5px 10px; }

.no-border {
  border: 0; }

.flex-display-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: flex-end; }

.flex-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row; }
  .flex-grid .flex-column:not(:last-child) {
    padding-right: 15px; }

.flex-wrap {
  display: flex;
  flex-wrap: wrap; }

.ui-select-bootstrap .ui-select-choices-row.active > span {
  color: #fff !important; }

.min-width {
  min-width: 0; }

.word-break {
  word-wrap: break-word; }

.text-bubble {
  position: relative;
  padding: 15px;
  margin-top: 20px;
  color: #333;
  font-size: 16px;
  background: #ecedee;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px; }
  .text-bubble:after {
    content: "";
    position: absolute;
    top: -30px;
    left: 33px;
    border: 15px solid transparent;
    border-bottom-color: #eee;
    display: block;
    width: 0; }

.page-loading {
  padding: 50px;
  text-align: center;
  background-color: #ecedee;
  position: absolute;
  top: 13px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1000;
  -webkit-transition: all linear 500ms;
  -moz-transition: all linear 500ms;
  -ms-transition: all linear 500ms;
  -o-transition: all linear 500ms;
  transition: all linear 500ms;
  opacity: 1; }
  .page-loading.ng-hide {
    opacity: 0; }

.spinner {
  margin: 50px auto 75px auto;
  width: 60px;
  height: 60px;
  position: relative;
  text-align: center;
  -webkit-animation: sk-rotate 2s infinite linear;
  animation: sk-rotate 2s infinite linear; }

.dot1,
.dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #364b94;
  border-radius: 100%;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out; }

.dot2 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
  background-color: #000; }

@-webkit-keyframes sk-rotate {
  100% {
    -webkit-transform: rotate(360deg); } }

@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg); } }

@-webkit-keyframes sk-bounce {
  0%,
  100% {
    -webkit-transform: scale(0); }
  50% {
    -webkit-transform: scale(1); } }

@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0); }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

.site-width-container {
  max-width: 1200px;
  min-height: calc(100vh - 230px);
  margin: 0 auto; }

.site-width-container-no-vertical {
  max-width: 1200px;
  margin: 0 auto; }

.psx-list-item {
  padding: 0px 10px;
  height: 40px;
  line-height: 40px; }
  .psx-list-item .remove-icon {
    padding-left: 10px;
    opacity: 0.3;
    font-size: 18px; }
    .psx-list-item .remove-icon:hover {
      color: red;
      cursor: pointer; }
  .psx-list-item:hover .remove-icon {
    opacity: 1; }

li.psx-list-item:last-child {
  border-bottom: 0px; }

.alert {
  margin-bottom: 10px; }

.double-icon-column {
  width: 60px; }

.psx-grid-item-multiline {
  max-height: 2080px; }

.mb-0 {
  margin-bottom: 0px; }

.task-container {
  background: white;
  border: 1px solid rgba(60, 70, 74, 0.3);
  border-radius: 4px;
  width: 424px;
  overflow-y: auto;
  max-height: calc(100vh - 130px); }
  .task-container .task-list {
    padding: 15px 15px 15px 15px; }
  .task-container .header {
    font-weight: bold;
    color: #3c464a; }
  .task-container hr {
    height: 0px;
    border-bottom: 1px solid rgba(60, 70, 74, 0.3);
    margin: 10px 0px; }
  .task-container.absolute {
    position: absolute;
    top: 55px;
    left: 74px;
    z-index: 1; }
  .task-container .task-entry {
    margin-top: 10px; }
  .task-container .psx-btn-link {
    font-size: 16px; }
  .task-container .subtitle {
    margin: 5px 0px;
    font-size: 14px;
    line-height: 18px; }
  .task-container li {
    padding-top: 10px;
    border-top: 1px solid rgba(60, 70, 74, 0.3); }
  .task-container .action-icon {
    font-size: 18px;
    margin-left: 10px; }
  .task-container .popover-content {
    width: 250px;
    color: #3c464a; }

.card-header {
  color: #364b94 !important;
  border-bottom-color: #364b94 !important; }

.create-user-workflow-container, .create-after-hours-workflow-container {
  background-color: #ecedee;
  padding: 15px 0px 25px 0px;
  font-size: 14px;
  width: 100%; }
  .create-user-workflow-container .site-width-container, .create-after-hours-workflow-container .site-width-container {
    max-width: 900px;
    min-height: calc(100vh - 230px);
    margin: 0 auto;
    position: relative; }
  .create-user-workflow-container .page-header, .create-after-hours-workflow-container .page-header {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0px 0px 25px;
    padding: 0px; }
  .create-user-workflow-container ::placeholder, .create-after-hours-workflow-container ::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: gainsboro;
    opacity: 1;
    /* Firefox */ }
  .create-user-workflow-container :-ms-input-placeholder, .create-after-hours-workflow-container :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: gainsboro; }
  .create-user-workflow-container ::-ms-input-placeholder, .create-after-hours-workflow-container ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: gainsboro; }
  .create-user-workflow-container label, .create-after-hours-workflow-container label {
    margin-bottom: 7px; }
  .create-user-workflow-container .ui-select-choices-row-inner, .create-after-hours-workflow-container .ui-select-choices-row-inner {
    min-height: 28px; }
  .create-user-workflow-container .padding-right-15, .create-after-hours-workflow-container .padding-right-15 {
    padding-right: 15px; }
  .create-user-workflow-container .create-user-overlay, .create-after-hours-workflow-container .create-user-overlay {
    position: fixed;
    top: 62px;
    height: calc(100vh - 100px);
    width: 100%;
    background-color: rgba(236, 237, 238, 0.8);
    z-index: 10; }
    .create-user-workflow-container .create-user-overlay .action-container, .create-after-hours-workflow-container .create-user-overlay .action-container {
      padding: 15px;
      background-color: white;
      margin: 90px auto;
      width: 500px;
      border-radius: 10px;
      border: 1px solid #364b94; }
      .create-user-workflow-container .create-user-overlay .action-container .header, .create-after-hours-workflow-container .create-user-overlay .action-container .header {
        color: #364b94;
        font-weight: bold;
        font-size: 18px; }
      .create-user-workflow-container .create-user-overlay .action-container .results, .create-after-hours-workflow-container .create-user-overlay .action-container .results {
        min-height: 150px;
        max-height: 200px;
        overflow-y: auto;
        margin: 10px 0px; }
    .create-user-workflow-container .create-user-overlay.ng-hide-add, .create-user-workflow-container .create-user-overlay.ng-hide-remove, .create-after-hours-workflow-container .create-user-overlay.ng-hide-add, .create-after-hours-workflow-container .create-user-overlay.ng-hide-remove {
      -webkit-transition: 0.5s ease-in-out opacity;
      -moz-transition: 0.5s ease-in-out opacity;
      -ms-transition: 0.5s ease-in-out opacity;
      -o-transition: 0.5s ease-in-out opacity;
      transition: 0.5s ease-in-out opacity;
      opacity: 1; }
    .create-user-workflow-container .create-user-overlay.ng-hide, .create-after-hours-workflow-container .create-user-overlay.ng-hide {
      opacity: 0; }
    .create-user-workflow-container .create-user-overlay .fa-check-circle, .create-after-hours-workflow-container .create-user-overlay .fa-check-circle {
      color: #00ab69;
      margin-right: 3px;
      font-size: 20px; }
    .create-user-workflow-container .create-user-overlay .fa-times-circle, .create-after-hours-workflow-container .create-user-overlay .fa-times-circle {
      color: red;
      margin-right: 3px;
      font-size: 20px; }
    .create-user-workflow-container .create-user-overlay ul, .create-after-hours-workflow-container .create-user-overlay ul {
      list-style: none; }
  .create-user-workflow-container label .action-icon, .create-after-hours-workflow-container label .action-icon {
    font-size: 18px;
    margin-top: -5px; }
  .create-user-workflow-container .popover, .create-after-hours-workflow-container .popover {
    color: #3c464a; }
  .create-user-workflow-container .page-notification, .create-after-hours-workflow-container .page-notification {
    margin: 10px;
    line-height: 22px; }
  .create-user-workflow-container .billing-info, .create-after-hours-workflow-container .billing-info {
    margin: 10px 0px 0px 0px;
    padding: 10px; }
  .create-user-workflow-container .psxLineAnimation, .create-after-hours-workflow-container .psxLineAnimation {
    margin: 10px 10px -10px 10px; }

.margin-top-30 {
  margin-top: 30px; }

.blue-page-header {
  background-color: #3c474b;
  color: white;
  padding: 10px 0px 10px 25px; }

.bold {
  font-weight: bold; }

.scrollable-dropdown-menu .dropdown-menu {
  max-height: 200px;
  overflow-y: auto; }

.margin-top-40 {
  margin-top: 40px; }

.psx-checkbox2 {
  font-size: 14px;
  /* to hide the checkbox itself */
  /* unchecked icon */
  /* unchecked icon */
  /* space between checkbox and label */
  /* space between checkbox and label */
  /* checked icon */
  /* allow space for check mark */ }
  .psx-checkbox2 label {
    font-weight: normal; }
  .psx-checkbox2 input[type="checkbox"] {
    display: none; }
  .psx-checkbox2 input[type="checkbox"] + label:before {
    font-family: FontAwesome;
    display: inline-block; }
  .psx-checkbox2 input[type="checkbox"] + label:before {
    content: "\F0C8";
    color: lightgray; }
  .psx-checkbox2 input[type="checkbox"] + label:hover:before {
    content: "\F14A";
    color: darkgray; }
  .psx-checkbox2 input[type="checkbox"] + label:before {
    letter-spacing: 5px; }
  .psx-checkbox2 input[type="checkbox"] + label:hover {
    cursor: pointer; }
  .psx-checkbox2 input[type="checkbox"]:checked + label:before {
    content: "\F14A";
    color: #364b94; }
  .psx-checkbox2 input[type="checkbox"]:checked + label:before {
    letter-spacing: 5px; }

.right-to-left-transition {
  width: 100%;
  opacity: 1; }

.right-to-left-transition.ng-enter,
.right-to-left-transition.ng-leave {
  -webkit-transition: 0.5s ease-in-out all;
  -moz-transition: 0.5s ease-in-out all;
  -o-transition: 0.5s ease-in-out all;
  transition: 0.5s ease-in-out all;
  position: absolute; }

.right-to-left-transition.ng-enter {
  left: 60%;
  opacity: 0; }

.right-to-left-transition.ng-leave,
.right-to-left-transition.ng-enter.ng-enter-active {
  left: 0; }

.right-to-left-transition.ng-enter.ng-enter-active {
  opacity: 1; }

.right-to-left-transition.ng-leave.ng-leave-active {
  left: -60%;
  opacity: 0; }

.margin-bottom-20 {
  margin-bottom: 20px; }

.psxFade.ng-hide-add, .psxFade.ng-hide-remove {
  -webkit-transition: 0.5s ease-in-out opacity;
  -moz-transition: 0.5s ease-in-out opacity;
  -ms-transition: 0.5s ease-in-out opacity;
  -o-transition: 0.5s ease-in-out opacity;
  transition: 0.5s ease-in-out opacity;
  opacity: 1; }

.psxFade.ng-hide {
  opacity: 0; }

.psxLineAnimation {
  height: 6px;
  background-color: #364b94; }
  .psxLineAnimation.ng-hide-add, .psxLineAnimation.ng-hide-remove {
    -webkit-transition: 0.5s ease-in-out all;
    -moz-transition: 0.5s ease-in-out all;
    -ms-transition: 0.5s ease-in-out all;
    -o-transition: 0.5s ease-in-out all;
    transition: 0.5s ease-in-out all;
    opacity: 1;
    width: 100%; }
  .psxLineAnimation.ng-hide {
    width: 1px;
    opacity: 0; }

.cruErrorPopover {
  font-size: 14px;
  width: 400px;
  max-width: 400px; }
  .cruErrorPopover hr {
    margin: 10px 0px 0px 0px; }

#toast-container.toaster-announcement > .toast-wait {
  background-image: none !important; }

#toast-container.toaster-announcement > div.toast-wait-add {
  opacity: 0; }

#toast-container.toaster-announcement > .toast {
  background-color: white; }

.toast-wait {
  background-color: white !important; }

.toaster-announcement {
  top: 75px;
  right: 15px; }
  .toaster-announcement > .toast-wait {
    background-image: none !important;
    color: #3c464a !important;
    cursor: default !important; }
  .toaster-announcement > div {
    padding: 15px 15px 55px 15px !important;
    width: 500px !important;
    border: 1px solid #364b94 !important; }
  .toaster-announcement .toast-title {
    color: #364b94; }
  .toaster-announcement .toast-message {
    margin-top: 5px;
    line-height: 22px; }
  .toaster-announcement button {
    position: absolute;
    bottom: 17px; }
  .toaster-announcement a {
    color: #006fcf; }
    .toaster-announcement a:hover {
      text-decoration: underline; }

.click-copy:hover {
  cursor: pointer; }

.click-copy:after {
  font-size: 16px;
  font-family: FontAwesome Pro;
  display: inline-block;
  content: "\F0EA";
  margin-left: 7px; }

.click-copy.action-icon {
  margin: 0px !important; }

.flex-label-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5px; }

.cursor {
  cursor: pointer; }

.max-100 {
  max-width: 100px; }

.psx-card {
  border-radius: 4px;
  margin: 15px 10px;
  border-color: rgba(60, 70, 74, 0.25); }
  .psx-card .card-header {
    border-color: rgba(60, 70, 74, 0.25) !important; }

.show-dropdown .dropdown-menu {
  display: block;
  top: auto;
  left: auto;
  max-height: 500px; }

.custom-file-upload input {
  display: none; }

.lb-icon {
  display: block;
  height: 40px;
  width: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDI0IiBoZWlnaHQ9IjEwMjQiPjxwYXRoIGQ9Ik0wIDBoMTAyNHYxMDI0SDBWMHoiIGZpbGw9IiNGRkFCMTAiLz48cGF0aCBkPSJNODkxLjM4IDY1Ny44MTVjMy44ODctLjAwMiA3Ljc3NC0uMDIgMTEuNjYxLS4wNCAyMi40NjEtLjA1IDQ0Ljc5MSAxLjE5IDY3LjA4NCAzLjk3NWwxLjk5My4yNDRjMzkuNDA5IDQuODQ4IDM5LjQwOSA0Ljg0OCA1MS44ODIgOS4wMDZ2MzUzSDMyN2MxNS42MjUtNDYuODc2IDQ4LjIzMy05MS44NDIgNzktMTMwbDIuMjk3LTIuODUyQTk3OC4xODkgOTc4LjE4OSAwIDAgMSA0MTUgODgzbDEuMjY0LTEuNTI2YzYuNTI3LTcuODYyIDEzLjMwNS0xNS40NCAyMC4yOC0yMi45MDUgMi4yODEtMi40NTkgNC41Mi00Ljk1NiA2Ljc2OS03LjQ0NCA4LjM4OC05LjE1NSAxNy4wNDctMTguMjUzIDI2LjU0Ni0yNi4yNjYgMi40MzItMi4xMTEgNC43NzItNC4zMDYgNy4xMTktNi41MUEzMzIuMDU1IDMzMi4wNTUgMCAwIDEgNDk3IDgwMWMxLjE5Mi0uOTgxIDIuMzgyLTEuOTY0IDMuNTctMi45NSAxNy42NTQtMTQuNTg1IDM2LjMxOC0yNy41MjUgNTUuNDQ1LTQwLjA3OGE1MjkuMzkgNTI5LjM5IDAgMCAwIDcuNjQ1LTUuMTUybDMuNzE1LTIuNTA4IDMuMDIzLTIuMDc0YzMuMDkyLTEuNDcxIDQuNDA1LTEuMzIgNy42MDItLjIzOGwyIDFjNi4wODIuNTY5IDEwLjcwMi4zMTEgMTYtM2wyLTFjLjQ2OCA0Ljc3Mi42ODUgNy45NS0yIDEyLjA2Mi00LjE2IDIuNjg3LTYuMTAzIDIuNjM4LTExIDEuOTM4bC0xLjgxMi0xLjkzOGMtMy42MzItMy40MjMtOC4zNy0yLjg5Ni0xMy4xODgtMy4wNjJsMS41IDIuODc1QzU3MyA3NjAgNTczIDc2MCA1NzMgNzYybDIuMzc1LjkzN0M1NzggNzY0IDU3OCA3NjQgNTgwIDc2NWMxMS42NDggMS4wOCAxMS42NDggMS4wOCAyMi4zNjktMi41MzIgNC43NzUtNC4yOTcgNS44NjgtMTAuNjc3IDYuMjQtMTYuODE2LjA2Ni0yLjIzNy4xMTMtNC40NzYuMTQxLTYuNzE1bC4wOS0zLjQ5Yy4wNy0yLjgxNi4xMjMtNS42My4xNi04LjQ0NyAzLjQzNi0xLjczMyA2Ljg3NC0zLjQ2IDEwLjMxMy01LjE4OGwyLjktMS40NjJDNjQwLjg0OSA3MTEgNjQwLjg0OSA3MTEgNjQ0IDcxMXY0MGwxNi41NjMtLjMxMyA1LjE4NS0uMDc1YzEuMzc3LS4wMzIgMi43NTQtLjA2NiA0LjEzLS4xbDIuMTE3LS4wMmM2LjA1Ni0uMTc0IDEwLjcwMi0xLjU1MiAxNS4zOC01LjQ5MiAzLjEwMi0zLjgxOCAyLjk2MS03Ljc3NiAyLjkwNi0xMi40ODgtLjQxNy0zLjcyNS0xLjc2Mi01Ljc4OS00LjI4MS04LjUxMi0yLjYwNC0xLjQxMi0yLjYwNC0xLjQxMi01LTJsMS4zMTMtMS4xMWMzLjkxLTMuODAxIDUuMTY0LTYuNTc1IDUuMzEyLTEyLjA3OC0uMDI4LTMuNjg0LS4xNDctNS4yMzctMi41MjMtOC4wOTctMS45NzItMS42MDktMy43Ny0yLjcxNi02LjEwMi0zLjcxNSAxOC45MzgtOS45MTggNDEuNDE3LTE0LjkyIDYyLTIwbDMuNjk0LS45MjVjMjcuNTU5LTYuODYyIDU1LjE2OS0xMS42OCA4My4zNjktMTQuODg4bDIuNzk0LS4zMTljMjAuMjI0LTIuMjgzIDQwLjE2OC0zLjA1NSA2MC41MjItMy4wNTN6IiBmaWxsPSIjRkY5RjE2Ii8+PHBhdGggZD0iTTAgMGg0MjBjNy42NTIgNjguODcyLTEuMjg4IDE0MC4xOC0xOC40OTcgMjA2Ljk1NmExNjIuNDczIDE2Mi40NzMgMCAwIDAtMS4zMzkgNi4wMzJjLTIuMzI3IDEwLjExNi0yLjMyNyAxMC4xMTYtNy4zNCAxMy42Ni0xLjY5Ljk1LTMuNDA0IDEuODU4LTUuMTM3IDIuNzI3YTk1Ni4xOCA5NTYuMTggMCAwIDAtNS42OTUgMy4yMWwtMi45ODUgMS42NjRjLTUuMDk0IDIuOTY2LTkuODgzIDYuMzUtMTQuNjk1IDkuNzUxbC0yLjkyIDIuMDU0Yy0xLjkgMS4zNC0zLjc5OSAyLjY4NC01LjY5NSA0LjAzMWExOTQzLjg5NCAxOTQzLjg5NCAwIDAgMS03LjU1MiA1LjMzYy05Ljc5OCA2LjkzMy0xOS4xMTcgMTQuMzI0LTI4LjMwMyAyMi4wNDctMi41MDIgMi4wOS01LjA0OCA0LjEyNC03LjU5MiA2LjE2My00LjY2NiAzLjgwNy05LjA5NSA3LjgzNC0xMy40ODUgMTEuOTUyYTIyMy44ODYgMjIzLjg4NiAwIDAgMS04LjI1MyA3LjM4OGMtNi42NjcgNS44MDItMTIuNzg3IDEyLjIwNi0xOS4wMTIgMTguNDczbC0zLjkzOCAzLjk1QTg4NzkuNTUgODg3OS41NSAwIDAgMCAyNTggMzM1bC0zLjAwOS0uODgzYy03OS43ODEtMjMuMzIzLTE2MC42NzctMzMuOTA1LTI0My43NjgtMjcuM0M3LjQ4OCAzMDcuMDI4IDMuNzQyIDMwNyAwIDMwN1YweiIgZmlsbD0iI0ZGQTQxMiIvPjxwYXRoIGQ9Ik03MjEuNDM4IDEzNi44MTNsMi41MDgtLjAwNGMxMC4zOTMuMDAyIDIwLjY5Mi4zNTUgMzEuMDU0IDEuMTkxLTEuOTM2IDYuMzQ5LTQuMzY4IDEyLjIxMy03LjM3NSAxOC4xMjVsLTEuMzAzIDIuNTgxYy00Ljk3IDkuNzMyLTEwLjM2IDE5LjIyMy0xNS44MjIgMjguNjg2YTY4OC4zMSA2ODguMzEgMCAwIDAtMy44NDggNi43ODhjLTUuNDUgOS42MTktMTEuNTI2IDE4LjgxMi0xNy42NTIgMjguMDA3bC0xLjI3IDEuOTA5Yy03LjczNyAxMS42MDMtMTUuNTggMjMuMTkzLTI0LjI5MyAzNC4wOTFsLTEuMzc0IDEuNzM2YTg5Ni42NzIgODk2LjY3MiAwIDAgMS0xMC45ODkgMTMuNTIyYy0yLjY0NSAzLjI1OC01LjE2NiA2LjYwMi03LjY2NCA5Ljk3M0w2NjIgMjg1aC0yYy0xLjIyNy0xLjUwNC0xLjIyNy0xLjUwNC0yLjYyNS0zLjU2My02LjQ2NS04Ljc3NS0xMy42NzgtMTMuNzktMjQuMzc1LTE2LjQzNy0xMS41MTQtMS4zNTUtMjEuMjY3LjM3Mi0zMC43NSA3LjEyNS00Ljc0IDMuOTY4LTguMTIzIDguNTctMTEuMjUgMTMuODc1bC0xLjA5OCAxLjgyYy0zLjk2NCA4LjIyMy0zLjEyNSAyMC42NjktLjM0IDI5LjE4IDMuNTgzIDguMjU0IDguNjU4IDE0LjA1NCAxNi4zMjUgMTguNzEgMi4xNDcgMS4zMSA0LjEyMyAyLjc1NCA2LjExMyA0LjI5LTYuNTcyIDYuMTM2LTEzLjIwNSAxMi4xMDMtMjAuMjEgMTcuNzQ2LTMuMDAyIDIuNDI1LTUuOTYgNC44OTktOC45MTUgNy4zNzlBNDI3LjQ3NiA0MjcuNDc2IDAgMCAxIDU2OCAzNzdsMi41LjMzMkE4MzkuNzcgODM5Ljc3IDAgMCAxIDU4MiAzNzlsMy45My41OWMxOC41MjYgMi45OTcgMzQuNzM3IDkuNjc0IDQ3LjA3IDI0LjQxIDcuMzU2IDEwLjU3IDEwIDE4Ljk1NiAxMCAzMmgtNDdsLTMtMTFjLTMuMzMyLTYuNzg4LTguMjI3LTguNjM2LTE0Ljk5Mi0xMS4wODItNS4zNC0xLjQ3LTEwLjgyLTEuMzI2LTE2LjMyLTEuMzU2LTEuMDc4LS4wMzItMi4xNTUtLjA2NS0zLjI2NC0uMS03LjQyNi0uMDQ5LTEzLjMxMyAxLjEyNS0xOS40MjQgNS41MzgtMy41NTggNC4wOC0zLjQ1OSA3LjEwNi0zLjI3IDEyLjM4My40NTEgNC4zNzYgMS43MDQgNi4zMTIgNS4wNTEgOS4xMDEgMTAuMTg1IDcuNDU1IDIyLjc0OCA5LjQyNiAzNC44NTMgMTEuODkzIDU0LjAzOSAxMS4wODIgNTQuMDM5IDExLjA4MiA2Ny43ODggMzEuNzk5IDcuNjg0IDEzLjc1MSA2Ljc0MSAyOC4yNjcgMi43NyA0Mi45NzItMS40MDYgNC43Ny0zLjI5MiA4LjgwNS02LjE5MiAxMi44NTItLjU2NS44MTctMS4xMyAxLjYzNS0xLjcxIDIuNDc3LTExLjU2OCAxNS42MjYtMjkuNTc5IDIyLjY5My00OC4xNjEgMjYuMDkzLTI5LjAzNCAzLjk4OC02MS4yMzcgMi44MTctODUuOTY5LTE0LjU2Ni0xMi44MS05Ljg1OC0yMC42MTQtMjMuMDM1LTIzLjE2LTM5LjAwNHYtOWg0N2wzIDEzYzQuODAzIDguMzE4IDExLjcyIDEyLjY2NyAyMC42ODggMTUuODc1IDExLjIyNSAyLjk2IDI0LjE5MyAyLjAwNSAzNC42OS0zLjAxMiA1LjQxMi0zLjE1OSA5LjEwMy03LjA3NyAxMS42MjItMTIuODYzLjgzLTUuMjIzLjM5OC05Ljk5NC0yLjU2Ni0xNC40NDUtMTEuNzM4LTEyLjcyOS0zOC4wNS0xNS4yMjMtNTQuMDg2LTE4LjgzNi0yMC4wNjctNC41NDYtNDAuODc0LTEwLjExLTUyLjY2LTI4LjQ2OS00LjA5NS03Ljc4NS00LjE3LTE2LjYyOC00LjY4OC0yNS4yNWwtMTQgNyAuMzc1IDQuODEzLjIxIDIuNzA3Yy4zNSAyLjkzMy44NTUgNS43MzIgMS40MzUgOC42MjUgMS4xIDUuOTM5IDEuMzI1IDExLjcgMS4yOTMgMTcuNzNsLS4wMTUgMy4yOGMtLjM1NCAyNC43MzQtNS4zNTIgNTAuODMyLTIyLjI5OCA2OS44NDVsLTEuNzYyIDIuMDQzYy0xMS44OSAxMi44ODctMjkuNzc2IDIwLjI3NC00Ny4xNCAyMS4wOTQtMjEuODY1LjY4Ny00Mi4zMTItLjYxLTU5LjU5OC0xNS41NzUtNy43Mi03LjQ5Mi0xMS41MjctMTQuNjE1LTE2LjUtMjQuNTYybC0xIDEwMWgtMTNWMzg0aDEzbDEgNDAgNy0xNGM4LjMxNy0xMi4wODMgMTguNjk1LTIwLjA4MSAzMi0yNmgzdi0ybC0yLjE0NC0uODNjLTUuMTU2LTIuMTEyLTEwLjExMi00LjY0My0xNS4xMDYtNy4xMDhsLTMuMzc1LTEuNjMtMy4yMDMtMS41ODQtMi45MzUtMS40MzhDMzM5IDM2OCAzMzkgMzY4IDMzOCAzNjVjMS4wNDUtMi40NzMgMS4wNDUtMi40NzMgMi42ODQtNS40MThsMS44LTMuMjc2Ljk2Ni0xLjcyN2MxLjMyNy0yLjM3MyAyLjYzLTQuNzU4IDMuOTM1LTcuMTQzLjk2My0xLjc2IDEuOTI5LTMuNTE4IDIuODk0LTUuMjc2IDMuMDU0LTUuNjA5IDUuOTA4LTExLjMwNSA4LjY5My0xNy4wNTEgMS4xNjMtMi4zODYgMi4zNDgtNC43NiAzLjUzMi03LjEzNiAxMy42MS0yNy41ODUgMjQuODI3LTU2Ljc3IDMzLjY0Ni04Ni4yMjggMi4zNjMtNy44MDMgMi4zNjMtNy44MDMgNi4wNTgtMTAuMTQ0bDIuNzE4LTEuNDIxIDIuOTk4LTEuNTgzTDQxMSAyMTdsMi43OTgtMS40OGMyLjc5Mi0xLjQ3NCA1LjU5LTIuOTM3IDguMzktNC4zOTVsMy4wMzUtMS41ODFjNy41OTktMy45NDkgMTUuMjExLTcuODYzIDIyLjkwNC0xMS42MjYgMS4yNC0uNjA4IDIuNDc5LTEuMjIgMy43MTUtMS44MzZDNTA5LjMgMTY3LjUwNCA1NzIuNzI2IDE1MSA2MzYgMTQybDMuNTE2LS41MDdjMjcuMS0zLjggNTQuNTg2LTQuNjcyIDgxLjkyMi00LjY4eiIgZmlsbD0iI0ZGQjUwQSIvPjxwYXRoIGQ9Ik00MjYuNTQyLS4xMjRsMy40NjkuMDAxIDMuOTg1LS4wMDYgNC40MzcuMDA5YzEuNTU2IDAgMy4xMTEtLjAwMiA0LjY2Ny0uMDAzIDQuMjk3LS4wMDIgOC41OTMuMDAyIDEyLjg4OS4wMDcgNC42MjUuMDA0IDkuMjUuMDAzIDEzLjg3NS4wMDIgOC4wMiAwIDE2LjA0LjAwMyAyNC4wNi4wMDggMTEuNTk3LjAwOCAyMy4xOTIuMDExIDM0Ljc4OC4wMTIgMTguODEyLjAwMiAzNy42MjQuMDEgNTYuNDM1LjAxOSAxOC4yNzkuMDA5IDM2LjU1OC4wMTYgNTQuODM2LjAyaDMuNDEybDE2Ljk0My4wMDVDNzA3LjIyNS0uMDQgNzU0LjExMy0uMDIyIDgwMSAwYTE5MzMzLjIwOSAxOTMzMy4yMDkgMCAwIDEtMy44MTkgMTcuMDI2Yy0yLjM3NyAxMC42Mi00LjkyNiAyMS4xNTUtNy45OTQgMzEuNTk5bC0uNjI4IDIuMTY3Qzc4MC4wODMgNzkuOTYgNzY5LjQxIDEwOC4yODUgNzU3IDEzNmwtMi41Mi0uMDI3Yy01Ni4yNjYtLjgzNC01Ni4yNjYtLjgzNC0xMTIuMjg0IDMuNzMzLTIuMTc3LjI5MS00LjM1NS41Ny02LjUzNC44NDUtNzkuMjcyIDEwLjEzLTE2MC42NTIgMzUuNjY4LTIyOS4xNSA3Ny4xMkM0MDQgMjE5IDQwNCAyMTkgNDAxIDIxOWMxLjIzNC03LjUxNSAyLjktMTQuODgzIDQuNzE2LTIyLjI3NiAxNC42MzctNTkuNTc3IDE5LjQ5Ny0xMjAuNDkgMTcuNjAzLTE4MS43MThsLS4wODMtMi44MDNjLS4wNTItMS43NS0uMTEtMy41LS4xNzEtNS4yNS0uMDYtMS45ODMtLjA2OC0zLjk2OC0uMDY1LTUuOTUzIDEtMSAxLTEgMy41NDItMS4xMjR6IiBmaWxsPSIjRkZDMDA1Ii8+PHBhdGggZD0iTTgwMyAwaDIyMXYyMTRsLTE2LThjLTcyLjAwMy0zNS43ODgtMTQ3LjQ1NS01OC43MzctMjMxLTY4bC02LjA2Ni0uNjg4Yy0zLjk3Ny0uNDUtNy45NTUtLjg4Ny0xMS45MzQtMS4zMTJsLjc0My0xLjcyN0M3NjcuMTEzIDExNy4wNyA3NzMuODEzIDk5LjY1OSA3ODAgODJsMS4yODEtMy42NDljNy4zNTctMjEuMjE2IDEyLjgzOC00Mi44MTggMTguMDctNjQuNjQxbC41Ny0yLjM2OC40ODgtMi4wMzhjLjgtMy4xMTkgMS43MDctNi4yMDkgMi41OTEtOS4zMDR6IiBmaWxsPSIjRkZENjAwIi8+PHBhdGggZD0iTTI1NSAzMzZjLS43MyAzLjMyNi0xLjQ2IDQuNzYzLTQgNy4wNjMtMy44OCAzLjcxNC03LjE5NSA3Ljc1LTEwLjU1OSAxMS45MzNhMzQwLjE2MyAzNDAuMTYzIDAgMCAxLTYuMzgzIDcuNTk4Yy02Ljc1IDcuODQ3LTEyLjk0MyAxNi4wNTktMTkuMDU4IDI0LjQwNmwtMS42MDMgMi4xNzdDMTg3LjUyMSA0MjQuMzgyIDE2Ni4yMTggNDYxLjgzIDE0NyA1MDFjLTguNDkuMjQ3LTE2LjgyNy0uNjc1LTI1LjI1LTEuNjI1bC0yLjM3LS4yNjZDMjkuOTQgNDg4Ljk3IDI5Ljk0IDQ4OC45NyAwIDQ3NFYzMDljODcuNDgyLTYuNzMgMTcxLjA5OCAxLjEzMiAyNTUgMjd6IiBmaWxsPSIjRkY5RTE2Ii8+PHBhdGggZD0iTTYyMS43NjYgMzkzLjEwMmMxMC42MjggOS4wMyAxOC4yMTggMTkuMDYgMjEuMjM0IDMyLjg5OHYxMGgtNDdsLTMtMTFjLTMuMzMyLTYuNzg4LTguMjI3LTguNjM2LTE0Ljk5Mi0xMS4wODItNS4zNC0xLjQ3LTEwLjgyLTEuMzI2LTE2LjMyLTEuMzU2bC0zLjI2NC0uMWMtNy40MjYtLjA0OS0xMy4zMTMgMS4xMjUtMTkuNDI0IDUuNTM4LTMuNTU4IDQuMDgtMy40NTkgNy4xMDYtMy4yNyAxMi4zODMuNDUxIDQuMzc2IDEuNzA0IDYuMzEyIDUuMDUxIDkuMTAxIDEwLjE4NSA3LjQ1NSAyMi43NDggOS40MjYgMzQuODUzIDExLjg5MyA1NC4wMzkgMTEuMDgyIDU0LjAzOSAxMS4wODIgNjcuNzg4IDMxLjc5OSA3LjY4NCAxMy43NTEgNi43NDEgMjguMjY3IDIuNzcgNDIuOTcyLTEuNDA2IDQuNzctMy4yOTIgOC44MDUtNi4xOTIgMTIuODUybC0xLjcxIDIuNDc3Yy0xMS41NjggMTUuNjI2LTI5LjU3OSAyMi42OTMtNDguMTYxIDI2LjA5My0yOS4wMzQgMy45ODgtNjEuMjM3IDIuODE3LTg1Ljk2OS0xNC41NjYtMTIuODEtOS44NTgtMjAuNjE0LTIzLjAzNS0yMy4xNi0zOS4wMDR2LTloNDdsMyAxM2M0LjgwMyA4LjMxOCAxMS43MiAxMi42NjcgMjAuNjg4IDE1Ljg3NSAxMS4yMjUgMi45NiAyNC4xOTMgMi4wMDUgMzQuNjktMy4wMTIgNS40MTItMy4xNTkgOS4xMDMtNy4wNzcgMTEuNjIyLTEyLjg2My44My01LjIyMy4zOTgtOS45OTQtMi41NjYtMTQuNDQ1LTExLjczOC0xMi43MjktMzguMDUtMTUuMjIzLTU0LjA4Ni0xOC44MzYtMTguNjM0LTQuMjIxLTQwLjAzNC05LjI1Mi01MS4wNy0yNi4zOTUtNi43NzUtMTEuODM0LTYuNzU1LTI2LjE0Ny00LjE1LTM5LjM5IDMuODM4LTEyLjkyMyAxMi4yNTYtMjIuNjgyIDIzLjU2LTI5Ljc0NyAzMS4yOTgtMTYuOTQ1IDgyLjktMTguNTA3IDExMi4wNzggMy45MTV6IiBmaWxsPSIjRkZGRUZEIi8+PHBhdGggZD0iTTM5MC4xODggMzkxLjY4OGwzLjUwMS0uMDVjMTYuMTktLjAwOCAyOS4wODYgNC44MyA0MS4zMTEgMTUuMzYybDEuODM2IDEuNTQ3QzQ1MC43MTYgNDIxLjIzMyA0NTcuNjcgNDQxLjY1NyA0NTkgNDYwYzEuMDY3IDI3Ljc0Ni0uNDA3IDU1LjEtMTkuMjUgNzcuMTg4LTEyLjEzNCAxMi45OS0yNy41OCAxOS4yOS00NS4xNiAyMC4wNS0xOC42NjUuNDQzLTM0LjQ2OC0zLjcxOC00OC4zMDktMTYuOTAyLTEwLjA0LTEwLjI4LTE1LjA2OS0yMi40My0xOC4yODEtMzYuMzM2bC0uNTUtMi4zMWMtMS42NzMtNy45MzgtMS43NTUtMTUuNzk4LTEuNzEtMjMuODcuMDEtMi4zMTYgMC00LjYzMi0uMDEzLTYuOTQ5LS4wMDgtOC4xNDQuNDA4LTE1LjkxIDIuMjczLTIzLjg3MS4yNi0xLjI2My41Mi0yLjUyNy43OS0zLjgyOEMzMzMuMzAyIDQyNC42OTQgMzQzIDQwOS43MzggMzU5IDM5OWMzLjU3Ny0xLjkzOSA3LjE4Mi0zLjU5NSAxMS01bDMuMDA4LTEuMTEzYzUuNTktMS41MzYgMTEuNDMtMS4yMTUgMTcuMTgtMS4yeiIgZmlsbD0iI0ZGQTExNiIvPjxwYXRoIGQ9Ik0wIDQ3N2MxMS4xOTYgMi4yNCAxMS4xOTYgMi4yNCAxNi4zNzkgMy43IDM3LjUyMyAxMC4zODcgNzUuMzc4IDE3LjM5MiAxMTQuMTU1IDIxLjA0NWwyLjQ3LjIzNWMxLjUzOC4xNDYgMy4wNzYuMjg3IDQuNjE1LjQyNCA1LjE2LjQ4NSA1LjE2LjQ4NSA3LjM4MSAxLjU5Ni0xLjk2NiA2LjI2Ny00LjMzIDEyLjI0My02LjkyMiAxOC4yNzYtNi40MzkgMTUuMDIyLTExLjc4NiAzMC4yNzItMTYuNzgzIDQ1LjgyOGE1NzQuNzU3IDU3NC43NTcgMCAwIDEtMi4wOCA2LjI3M2MtLjcxNCAyLjEyNy0xLjQgNC4yNjQtMi4wMjEgNi40Mi0yLjEyNSA2LjI4Mi02LjA2OCA4LjQ3Ny0xMS44MjIgMTEuNDYzbC0zLjQzNCAxLjY3N2MtMS4xOS42MDUtMi4zNzkgMS4yMTMtMy41NjYgMS44MjNhODIzLjY5IDgyMy42OSAwIDAgMS03LjEyMSAzLjU5OSAyNTkuNDg1IDI1OS40ODUgMCAwIDAtOC4xMDMgNC4yN2MtMjQuMzczIDEzLjM5LTUwLjI1NiAyMy42NjMtNzYuMjI0IDMzLjQ4LTMuNTEyIDEuMzMtMy41MTIgMS4zMy02LjkyNCAyLjg5MVY0Nzd6IiBmaWxsPSIjRkY5RDE3Ii8+PHBhdGggZD0iTTI1OCAzMzhjNy40NSAxLjQ0NiAxNC4zNCAzLjc3IDIxLjQzOCA2LjQzOGwzLjU0NSAxLjMyM0MyOTkuOTIgMzUyLjE1MyAzMTYuNjczIDM1OS4xNjcgMzMzIDM2N2MtMS45NjggNi4zMTUtNC4xOTkgMTIuMjk3LTkgMTctNC4xNS45MzgtNy44MjIuNjgtMTIgMGwuNDIyIDMuMzRjMS4xMjIgMTIuOTIyLTIuNTQ4IDE5Ljc0NS0xMC42NjggMjkuNTI1LTIuMzU3IDIuODctNC41NjcgNS44NC02Ljc5IDguODEzQTQ5Ni4yMjMgNDk2LjIyMyAwIDAgMSAyNzggNDQ3bC0xLjM1NCAxLjYxYy03LjMxNiA4LjY4Ny0xNC44OCAxNy4xMDUtMjIuNjQ2IDI1LjM5bC0xLjkyNSAyLjA2MmMtNC4wNjcgNC4zNTUtOC4xNTQgOC42OS0xMi4yNiAxMy4wMS0xLjYxNCAxLjcxNC0zLjIgMy40NS00Ljc3NiA1LjE5OEwyMzIuNSA0OTdsLTIuMDk0IDIuMzEzYy02LjcxMyA0LjcwOC0xNy43OTcgMi44MzMtMjUuNzM4IDIuODJhNDY2MS44MSA0NjYxLjgxIDAgMCAxLTEzLjczMi0uMDAyIDM5MzEuNjMgMzkzMS42MyAwIDAgMC0xMS44OTcuMDAzYy0zLjA1Ny4wMDQtNi4xMTMuMDAyLTkuMTcgMC0xLjQ2MyAwLTIuOTI1IDAtNC4zODguMDAyLTIuMDQuMDAzLTQuMDc4LS4wMDItNi4xMTctLjAwN2wtMy41MTMtLjAwMkMxNTMgNTAyIDE1MyA1MDIgMTUwIDUwMWMxLjM4NS00LjQ5NSAzLjE3OC04LjYzNCA1LjMxMy0xMi44MTNsMS4wNDItMi4wNTRjLjc3OS0xLjUzIDEuNTYtMy4wNTggMi4zNDItNC41ODUuOTA3LTEuNzc0IDEuODEtMy41NTEgMi43MDctNS4zMyAxOS4zNDItMzguMzE0IDQyLjc4LTc0LjQyIDcwLjE2My0xMDcuNDgxIDIuMDYyLTIuNSA0LjA4Ny01LjAyNyA2LjEyLTcuNTUgMy44NDYtNC43IDcuODk0LTkuMTkgMTIuMDA0LTEzLjY2IDIuODQ2LTMuMTE1IDUuNTg3LTYuMzA0IDguMzA5LTkuNTI3eiIgZmlsbD0iI0ZGOUYxNSIvPjxwYXRoIGQ9Ik00MzkuNjYgMzk0LjI0M0M0NTcuMTMzIDQwOC4yNCA0NjYuNzU2IDQyNy4zOTEgNDcxIDQ0OWwuNTMzIDIuNTA1YzEuMzc1IDYuODM1IDEuODE4IDEzLjQwNiAxLjc4IDIwLjM3bC0uMDE1IDMuMjhjLS4zNTQgMjQuNzM0LTUuMzUyIDUwLjgzMi0yMi4yOTggNjkuODQ1bC0xLjc2MiAyLjA0M2MtMTEuODkgMTIuODg3LTI5Ljc3NiAyMC4yNzQtNDcuMTQgMjEuMDk0LTIxLjg2NS42ODctNDIuMzEyLS42MS01OS41OTgtMTUuNTc0LTcuNzItNy40OTMtMTEuNTI3LTE0LjYxNi0xNi41LTI0LjU2M2wtMSAxMDFoLTEzVjM4NGgxM2wxIDQwIDctMTRjMTAuNDE2LTE1LjEzMiAyNS4zMzktMjUuNzc4IDQzLjUxMi0yOS4zNzEgMjEuOTAyLTMuNDkgNDUuMTM3LjEyMyA2My4xNDggMTMuNjE0em0tOTguMzQ4IDIwLjg4MmMtMTcuMDcgMjMuMTktMTguNDc2IDU2LjI1OS0xNC42MjggODMuODcxLjc5MyA0LjQzNyAxLjkxIDguNzIzIDMuMzE2IDEzLjAwNGwuNjY2IDIuMDU3YzIuODQ3IDguNDg1IDYuNiAxNi4wMyAxMi4zMzQgMjIuOTQzbDEuNzMgMi4xMDVjMTAuMTEgMTEuMTQ0IDI1LjEgMTcuNDcgMzkuOTg1IDE4LjIgMjAuMzE5LjUxMyAzOC4zMjItMy43MjIgNTMuNTM1LTE4LjA1NSAxNi4zOTEtMTcuNDMgMjAuOTI2LTQwLjkzMiAyMC45MzctNjRsLjAzOC0zLjkyMmMuMDEyLTcuOTkyLS42MjgtMTUuNS0yLjIyNS0yMy4zMjhsLS41OC0zLjAyN2MtMi40ODktMTIuNDQtOC45MzUtMjQuNTktMTcuNDItMzMuOTczbC0xLjYwNS0xLjg0OGMtOS40MDktMTAuMTY4LTIyLjU0Mi0xNi41MDUtMzYuMzY0LTE3LjMyOS0zLjM4Ni0uMDY3LTYuNzctLjEwOC0xMC4xNTYtLjEzNWwtMy41MTYtLjA4OGMtMTkuMDE2LS4xMzktMzMuOTk0IDkuMjQtNDYuMDQ3IDIzLjUyNXoiIGZpbGw9IiNGRkZDRjkiLz48cGF0aCBkPSJNMzk0IDIyN2MxLjQzOSA0LjMxNy0uMjQgNy41NDMtMS42NTYgMTEuNjg4bC0uODkgMi42NkExMzE3LjQ2IDEzMTcuNDYgMCAwIDEgMzg4LjUgMjUwbC0xLjAyIDIuOTg0Yy02LjU1NyAxOS4xMDgtMTQuMTA3IDM3LjY0LTIyLjQ4IDU2LjAxNmwtMS40MzMgMy4xN2MtNS44MTUgMTIuODA3LTEyLjM2NCAyNS4xNzgtMTkuMjM2IDM3LjQ0NWE1MzYuODczIDUzNi44NzMgMCAwIDAtMy41MDcgNi40TDMzOSAzNTkuMzEzbC0xLjUgMi43MzljLTEuODA2IDIuMzQ2LTIuNjIgMi41Ni01LjUgMi45NDktMi43MjUtMS4xMy01LjI2Mi0yLjMzNy03Ljg3NS0zLjY4OC04LjQ4Ny00LjE5Ny0xNy4xNDItNy44OC0yNS45MzgtMTEuMzc1bC0xLjkzNS0uNzdDMjg0LjU4OCAzNDQuNTQyIDI3Mi44MyAzNDAuMTgyIDI2MSAzMzZjMy42NDMtNS4wNjIgNy40MDctOS43MTIgMTEuODc1LTE0LjA2M2wxLjU4NS0xLjU2NWEyMDEuMjg2IDIwMS4yODYgMCAwIDEgMTAuNTQ4LTkuNTk5YzIuNDMxLTIuMTY0IDQuNzA0LTQuNDU3IDYuOTkyLTYuNzczIDQuMTc5LTQuMjE3IDguNDgxLTguMTU1IDEzLTEybDMuMTE3LTIuNzFhNTIwLjk1MiA1MjAuOTUyIDAgMCAxIDIzLjE5OC0xOC45ODdjMS42MTItMS4yNDYgMy4yMTctMi41MDEgNC44MjItMy43NTZDMzUyLjE2OCAyNTQuMDc2IDM2OC43NjIgMjQyLjc0IDM4NiAyMzJsNC42NDgtMi45MDZMMzk0IDIyN3oiIGZpbGw9IiNGRkE2MTIiLz48cGF0aCBkPSJNNTE3LjgxMyAyNTcuNjg4bDIuNTgtLjA1YzEyLjY3My0uMDA5IDIzLjM0OSA1LjYyNSAzMi41MzMgMTQuMTIgMTAuNDU0IDExLjMgMTIuNzM1IDI0LjM5NiAxMi4yMDYgMzkuMjI0LS43NTggMTEuNjAzLTcuNjQxIDIxLjI5Ni0xNS44NTkgMjkuMDUtMTAuMDg0IDguNzMyLTIyLjE3NSAxMS45NDQtMzUuNDEgMTEuMzQ3LTEzLjMyMy0xLjMwNy0yNC4yOC04LjI3Ny0zMi44NjMtMTguMzc5LTguNTI1LTEwLjc0LTEwLjExLTIzLjc3My05LTM3IDEuNzk1LTExLjU1NSA4LjU0OS0yMS42NzUgMTcuMzc5LTI5LjA5NCAzLjk2NS0yLjg4MyA4LjA3Ny01LjA4IDEyLjYyMS02LjkwNmwyLjY4NC0xLjExYzQuNDI0LTEuMTg3IDguNTY4LTEuMjIgMTMuMTI4LTEuMjAyeiIgZmlsbD0iI0ZGRkVGRCIvPjxwYXRoIGQ9Ik02NDYgMjY5YzkuMTgyIDYuNTc1IDE2Ljg2NSAxNS42NyAxOSAyNyAxLjM0MiAxMy4wMi0yLjQxOSAyMy42ODUtMTAuNDUzIDMzLjgzNi02LjQ2NyA3LjE5LTE1LjY5NCAxMS42Ni0yNS4zMDkgMTIuMzY3LTExLjkzLjE5MS0yMi4zNDQtMi44MzctMzEuMjgxLTExLjA5LTguODQtOS41OTQtMTEuNTc2LTIwLjA4Ni0xMS4yNjYtMzIuOTEuNTUzLTEwLjMxNSA2LjA3LTE4LjE5MyAxMy4zNzUtMjUuMThDNjEzLjM1NCAyNjEuODUxIDYzMC44MjcgMjYwLjU0NiA2NDYgMjY5eiIgZmlsbD0iI0ZGRkVGQyIvPjxwYXRoIGQ9Ik00ODUgNDMwbC4yMjcgMy45ODhjLjkwMyAxMy4wNCAyLjY0IDIyLjI3MiAxMi4yNzMgMzEuNzYyIDE1LjE5MyAxMi42NDUgMzUuMzMgMTYuNSA1NC4xODggMjAuNDI0QzU2MC4wMDcgNDg3LjkzIDU2Ny45NDIgNDkwLjMgNTc2IDQ5M2wzLjM2My45OTJjNy43MiAyLjMyNyAxMy44NyA1LjExNyAxOC42MzcgMTEuODIgMS41NiA0Ljk3MyAyLjE0NyA5LjQ1My4wODYgMTQuMzY4LTQuNzg0IDguMTc4LTExLjIwOCAxMi4wNi0yMC4wODYgMTQuODItMTMuOTU1IDIuODk4LTI2Ljc1NiAxLjMzMS0zOC43MzgtNi4zNDQtNi43MTItNC45MTQtOS43NjQtMTAuNDgtMTEuMjYyLTE4LjY1NmE4Ny42MjQgODcuNjI0IDAgMCAxIDAtNWwtMi4yNzctLjMwNWMtMy4wMzgtLjc3NS00LjExOC0xLjYwNy02LjI4NS0zLjgxOWwtMS45ODMtMS45OTQtMi4xLTIuMTcxLTIuMjA3LTIuMjMyYTE1ODAuODkgMTU4MC44OSAwIDAgMS02Ljk2LTcuMTA0Yy0yLjMwNy0yLjM1LTQuNjE2LTQuNjk2LTYuOTI4LTcuMDRhOTg3LjE3OSA5ODcuMTc5IDAgMCAxLTQuMjk4LTQuMzg0Yy01LjMyOC01LjQzMi0xMC44NjQtMTAuNTMtMTYuODYtMTUuMjE3LTQuNjgtMy43NDktNy41OTMtNi40NTctOC43MjctMTIuNDg0LS4zNy0zLjQyNC0uNDEyLTYuODA4LS4zNzUtMTAuMjUgMi40NzgtMS4zMzYgNC45NTctMi42NjkgNy40MzctNGwyLjE0My0xLjE1NkM0ODMuODg3IDQzMCA0ODMuODg3IDQzMCA0ODUgNDMweiIgZmlsbD0iI0ZGQTcxNCIvPjxwYXRoIGQ9Ik03MTYuMTg4IDM0Mi43NWM3LjU3OCA2LjA2MiAxMy4yNiAxMy41MzIgMTQuODEyIDIzLjI1IDEuMDU3IDExLjI1LTEuMDggMjAuNTgtOC4zMTMgMjkuNDM4LTcuNDA1IDcuNzA5LTE2LjM2NSAxMS41OTItMjcgMTIuMDYyLTEwLjA1NS0uMjgyLTE4LjQ1Ny00LjE5OS0yNS43MS0xMS4xMS04LjA2NS05Ljc1NC05LjgxOC0yMC4xNjUtOC45NzctMzIuMzkgMS44MzYtOS4wODIgNy45NzQtMTYuMDQgMTUuMTE3LTIxLjY2OCAxMi44NzMtOC41NCAyNy4xNTMtNi42NzQgNDAuMDcuNDE4eiIgZmlsbD0iI0ZGRkVGRCIvPjxwYXRoIGQ9Ik0xNDggNTA0aDc1Yy03LjU3NCA4LjgzNi0xNS45MDcgMTYuMjQ5LTI0Ljk1IDIzLjU0YTY2MS4yNjggNjYxLjI2OCAwIDAgMC02LjYzMiA1LjQyYy0xNS4wNDQgMTIuNDI1LTMwLjc1NyAyMy43MTctNDYuOTggMzQuNTRsLTEuOTQ4IDEuM2MtNy4zODYgNC45MjMtMTQuODE3IDkuNzMtMjIuNDkgMTQuMi0xLjMwNi0zLjkyLS40MDctNS41NTQuODg3LTkuNDU3bC42NDUtMS45NjFhODM0LjQzIDgzNC40MyAwIDAgMSAyLjE1Ni02LjM5NGwuNzQ0LTIuMjEyQzEzMS4yMTUgNTQyLjg1IDEzOS4wOTcgNTIzLjI4OSAxNDggNTA0eiIgZmlsbD0iI0ZGOUUxNyIvPjxwYXRoIGQ9Ik0zMTEgNDA2aDF2ODRjLTMwLjQ0MyA1Ljg1NC0zMC40NDMgNS44NTQtNDAuNSA3LjE4OGwtMy41Ny40ODVDMjU1LjY2MiA0OTkuMjggMjQzLjM0OCA1MDAuMjMgMjMxIDUwMWEzMjMuNjI3IDMyMy42MjcgMCAwIDEgMi43NS0zLjM3NWwxLjU0Ny0xLjg5OEMyMzcgNDk0IDIzNyA0OTQgMjM5LjA3OCA0OTMuMDIzYzIuNDQ4LTEuMzAzIDIuNzgyLTIuNTQyIDMuOTIyLTUuMDIzIDEuNTg1LTEuNzk2IDEuNTg1LTEuNzk2IDMuNDUtMy42MWwyLjA3MS0yLjAzOCAyLjE2Ni0yLjEwMmM1LjM2LTUuMjI2IDEwLjQ1My0xMC41NTYgMTUuMzEzLTE2LjI1YTMwNDQuOTEgMzA0NC45MSAwIDAgMSAyLjkyMi0zLjM1MiA1MjcuNzIxIDUyNy43MjEgMCAwIDAgMTguNTY0LTIyLjcgMTAzNC41NyAxMDM0LjU3IDAgMCAxIDUuMDM0LTYuNDA5YzYuMDM3LTcuNjY1IDExLjg4Ny0xNS4zMDUgMTcuMTI1LTIzLjU0N0wzMTEgNDA2eiIgZmlsbD0iI0ZGOUYxNiIvPjxwYXRoIGQ9Ik03MzkgNDMyYzcuNjkzIDQuNDEgMTMuNzU3IDExLjMyIDE2LjUyNyAxOS44MTMgMS44NCA4LjUxNy41NjEgMTYuNTMtMy41MjcgMjQuMTg3LTUuMTE3IDcuNDQyLTExLjEzMiAxMi43NzItMjAgMTUtMTAuMDExIDEuMTY3LTE4LjAzMy40MTYtMjYuMTgtNS42MTMtNy40ODMtNi4xODItMTEuOTY3LTEzLjM2MS0xMy4xNDQtMjMuMDU5LS4zNy05LjA0MiAyLjE3NS0xNi4wNCA3LjgyNC0yMy4wNzggMTAuNTc5LTExLjAzIDI0LjYzMS0xMy40NTggMzguNS03LjI1em0tMTguMTg3IDg1LjM4M2M1Ljc4MiA0LjI3NSAxMC4yNCA5LjYzMyAxMi4xODcgMTYuNjE3IDEuMDUzIDEwLjE1My0uNDgyIDE3LjYxOC02LjYyNSAyNS43NS01LjUxMSA1Ljg5Ni0xMS44NTYgOC41My0xOS44NzUgOC44MTMtNy45MjctLjM1NS0xNC40MDktMi4zNDEtMjAuMzc1LTcuNjg4LTUuOTUtNi42MjUtNy44NTMtMTQuMTM5LTcuNTA0LTIyLjkxOC45NTctNy40NjggMy43NzUtMTMuNDQ4IDkuNDE4LTE4LjQ4NCA5LjYxMy03LjIyIDIyLjI2LTguMjExIDMyLjc3NC0yLjA5eiIgZmlsbD0iI0ZGRkVGQyIvPjxwYXRoIGQ9Ik02NDUgNjk2bDE2LjEyNS0uMTg4IDUuMDU1LS4wODJjMS4zMzktLjAwOSAyLjY3Ny0uMDE3IDQuMDE1LS4wMjNsMi4wNjYtLjA0NmM1Ljc3NC0uMDA0IDkuNTczIDEuNjYgMTQuMDgzIDUuMTU1IDIuNzI4IDMuNTk3IDIuMTkzIDYuOTY3IDIuMDU0IDExLjMyNS0uNTA2IDMuNjMzLTEuNjEzIDUuNDgzLTQuMzk4IDcuODU5bC0yIDEgMi44MTMgMS42ODhjMy4zMTggMi40MDcgNC43MDcgMy41MyA2LjE4NyA3LjMxMi45MzggNi44MTIuMTUgMTEuNTA0LTQgMTctNS4yOTMgMy45Ny0xMC4xNzIgNC4xNDUtMTYuNjEgNC4wOThsLTEuOTUzLS4wMDNjLTIuMzk2LS4wMDYtNC43OTEtLjAyLTcuMTg3LS4wMzJMNjQ1IDc1MXYtNTV6IiBmaWxsPSIjRkZGREZCIi8+PHBhdGggZD0iTTU5Mi4zMTMgNzExLjM3NUM1OTUgNzEzIDU5NSA3MTMgNTk3IDcxNWwxLTRoMTFjLjEgNS42NzQuMTcyIDExLjM0OC4yMiAxNy4wMjMuMDIgMS45MjcuMDQ3IDMuODU0LjA4MiA1Ljc4MS4wNDkgMi43ODMuMDcxIDUuNTY1LjA4OSA4LjM0OGwuMDYyIDIuNTc3Yy4wMDIgNi4wNzMtMS4yMiAxMS4wNy00LjQ1MyAxNi4yNzEtNy41MTYgNi4xMzYtMTUuNzg4IDUuNjUzLTI1IDUtNC40MTYtMS4yMDYtNi41MDItMy4xOTctOC45MzgtNy4xMjVDNTcwIDc1NiA1NzAgNzU2IDU3MCA3NTRjMy42OTQtLjIzIDcuMzEzLS4zNjUgMTEgMCAyLjE4OCAyIDIuMTg4IDIgNCA0IDMuOTc3Ljg2NyA3LjAxLjU5NCAxMC41LTEuNSAyLjE4NC0zLjY0IDEuNzgtNi4yOTcgMS41LTEwLjVsLTEuODEzIDEuNDM4Yy00LjYyNiAzLjMwNC05LjcxNSAzLjE1Mi0xNS4xODcgMi41NjItNC42MzItMi4wOTgtNy41NjUtNS4xNzYtMTAuMDg2LTkuNTI3LTIuNDc4LTYuNzA1LTEuOTI4LTE1LjIyMi45NjUtMjEuNzU0IDQuOTg1LTcuNjQzIDEyLjc0OS0xMC45NDkgMjEuNDMzLTcuMzQ0em0tMjQ3IDBDMzQ4IDcxMyAzNDggNzEzIDM1MCA3MTVsMS00aDExYy4xIDUuNjc0LjE3MiAxMS4zNDguMjIgMTcuMDIzLjAyIDEuOTI3LjA0NyAzLjg1NC4wODIgNS43ODEuMDQ5IDIuNzgzLjA3MSA1LjU2NS4wODkgOC4zNDhsLjA2MiAyLjU3N2MuMDAyIDYuMDczLTEuMjIgMTEuMDctNC40NTMgMTYuMjcxLTUuNDM0IDQuNDM2LTkuOTg3IDUuMjItMTYuODEzIDUuMzEzbC0yLjExOS4wODdjLTUuMTYuMDYzLTcuOTIzLTEuMTAxLTEyLjA2OC00LjRsLTEuODEzLTEuNDM4Yy0xLjU3NC0yLjA3Mi0xLjczOC00LjAyOS0yLjE4Ny02LjU2MiAzLjY5NC0uMjMgNy4zMTMtLjM2NSAxMSAwIDIuMTg4IDIgMi4xODggMiA0IDQgMy45NzcuODY3IDcuMDEuNTk0IDEwLjUtMS41IDIuMTg0LTMuNjQgMS43OC02LjI5NyAxLjUtMTAuNWwtMS44MTMgMS40MzhjLTQuNjI2IDMuMzA0LTkuNzE1IDMuMTUyLTE1LjE4NyAyLjU2Mi00LjYzMi0yLjA5OC03LjU2NS01LjE3Ni0xMC4wODYtOS41MjctMi40NzgtNi43MDUtMS45MjgtMTUuMjIyLjk2NS0yMS43NTQgNC45ODUtNy42NDMgMTIuNzQ5LTEwLjk0OSAyMS40MzMtNy4zNDR6IiBmaWxsPSIjRkZGQkY3Ii8+PHBhdGggZD0iTTY2Mi40MSA1ODAuODc1YzYuMzE5IDMuNzAxIDExLjI4IDkuMTUyIDEzLjU5IDE2LjEyNSAxLjE2OCA4LjAwMi0uMzg3IDE0LjM4Mi01IDIxLTQuNTAxIDUuMDU2LTguOTk1IDcuNjk2LTE1LjgzMiA4LjIxNS01LjguMTc5LTEwLjI1LjE4MS0xNS4xNjgtMy4yMTVsLTMuMDYzLTIuMDYzYy00LjU3My00LjAzLTcuMjc5LTkuNTEzLTguNDIxLTE1LjQ1Ny0uNDIyLTcuNDQgMi4yMzctMTMuODI2IDcuMTY0LTE5LjM3IDcuMDktNi40OTIgMTcuNTc2LTguNTU5IDI2LjczLTUuMjM1eiIgZmlsbD0iI0ZGRkRGQyIvPjxwYXRoIGQ9Ik03MzIuNzk3IDcxMy40MzRjNC4yMTQgMi45OTYgNi41NjQgNi42NDggOC4yMDMgMTEuNTY2LjcwMiA4LjM1Ni4xMSAxNS4yMTctNS4zMTMgMjEuODEzLTYuMjY3IDUuMS0xMS40NCA1LjcyMi0xOS4zMzIgNS41MzktNS43MDgtLjU5OS04LjU5LTIuNTM5LTEyLjYwNS02LjY2NC00LjMwNC02LjYxLTUuNzA5LTEyLjI0Ni00LjM1Mi0xOS45NSAxLjkzNC03LjM5MyA2LjYtMTEuMzE2IDEyLjk3Ny0xNS4xNzYgNy42MDMtMS42MjkgMTMuNTgyLS45MDMgMjAuNDIyIDIuODcyeiIgZmlsbD0iI0ZGRkJGNyIvPjxwYXRoIGQ9Ik01ODIgNjE1YzUuMjg4IDIuMTk1IDkuODk1IDUuNzE0IDEyLjQxIDEwLjk1MyAxLjY4NSA1Ljg0NSAxLjQ2NSAxMS44NjUtMS4wMzUgMTcuNDIyLTIuNzcyIDQuNzY0LTYuMjAxIDcuNjMzLTExLjI1IDkuOTM4LTUuOTEgMS4zLTEwLjA1OSAxLjYzOS0xNS4zMTMtMS40MzgtNS41MTYtMy44NDgtOS4zMDEtOC4xNDYtMTAuODEyLTE0Ljg3NS0uNjYyLTUuOTYuNjY4LTEwLjEzNCA0LTE1IDYuMzkyLTYuNzY4IDEyLjkzMi04LjI4NiAyMi03eiIgZmlsbD0iI0ZGRkRGQiIvPjxwYXRoIGQ9Ik0zNzMgNjk2aDExbDEgMTkgNS00YzMuNDc0LTEuNzM3IDcuMjAyLTEuNDYgMTEtMSA0LjUwMSAyLjI1IDYuODQ2IDQuNDg4IDkgOWE2NC4wOSA2NC4wOSAwIDAgMSAuMjkzIDcuNzA3bC0uMDEzIDIuMTk4YTczOC4wODYgNzM4LjA4NiAwIDAgMS0uMDkyIDYuOTA4Yy0uMDE2IDEuNTY3LS4wMyAzLjEzNC0uMDQyIDQuNy0uMDMyIDMuODMtLjA4NCA3LjY1OC0uMTQ2IDExLjQ4N2gtMTFsLS4wNDQtMi42MTVjLS4wNjEtMy4yMDMtLjEzNS02LjQwNy0uMjE4LTkuNjFhNTQ3LjkyNiA1NDcuOTI2IDAgMCAxLS4wODQtNC4xNTkgNTcyLjM3OCA1NzIuMzc4IDAgMCAwLS4xNDItNS45OGwtLjA4LTMuNjMzYy0uMTk4LTIuOTY3LS4xOTgtMi45NjctMS43NDUtNC44OS0yLjg5MS0xLjkwNy01LjM1MS0xLjUzLTguNjg3LTEuMTEzLTMuMzIxIDMuMTktMy40MSA2LjA0NS0zLjUxMiAxMC41MTZsLS4xMDcgMy43ODktLjA2OCAzLjk0NS0uMTA0IDMuOTkyYy0uMDgzIDMuMjUzLS4xNTIgNi41MDUtLjIwOSA5Ljc1OGgtMTF2LTU2eiIgZmlsbD0iI0ZGRkJGNiIvPjxwYXRoIGQ9Ik01NTIuMjUgNzExLjEyNWMzLjM2NyAyLjI5NiA0Ljc4NiA0LjMwMiA2Ljc1IDcuODc1LjMzNyAyLjc1LjQ3MiA1LjA3My4zOSA3LjgwNS0uMDA1LjcyNC0uMDEgMS40NDgtLjAxNyAyLjE5NGE1NDYuNzc1IDU0Ni43NzUgMCAwIDEtLjEyMyA2Ljg3NmMtLjAyIDEuNTYyLS4wMzggMy4xMjUtLjA1NSA0LjY4OC0uMDQ0IDMuODEzLS4xMTMgNy42MjUtLjE5NSAxMS40MzdoLTExbC0uMDQ0LTIuNjE1Yy0uMDYxLTMuMjAzLS4xMzUtNi40MDctLjIxOC05LjYxYTU0Ny45MjYgNTQ3LjkyNiAwIDAgMS0uMDg0LTQuMTU5IDU3Mi4zNzggNTcyLjM3OCAwIDAgMC0uMTQyLTUuOThsLS4wOC0zLjYzM2MtLjE5OC0yLjk2OC0uMTk4LTIuOTY4LTEuNzQ1LTQuODk0LTIuODU3LTEuODc4LTUuMzg4LTEuNDYzLTguNjg3LTEuMTA5LTEuODE2IDEuMDQzLTEuODE2IDEuMDQzLTMgMy0uNTA4IDMuMDk3LS41MDggMy4wOTctLjUxMiA2LjYzN2wtLjEwNyAzLjkzNS0uMDY4IDQuMTE1Yy0uMDM0IDEuMzg0LS4wNjggMi43NjctLjEwNCA0LjE1LS4wODMgMy4zODgtLjE1MiA2Ljc3NS0uMjA5IDEwLjE2My0xLjgxMi4wMjctMy42MjUuMDQ2LTUuNDM3LjA2MmwtMy4wNi4wMzZDNTIyIDc1MiA1MjIgNzUyIDUyMSA3NTFhMjQ1LjcgMjQ1LjcgMCAwIDEtLjA5OC04Ljg0OGwuMDA1LTIuNjg2Yy4wMDUtMi44NDMuMDE4LTUuNjg2LjAzLTguNTI5LjAwNi0xLjkyMi4wMS0zLjg0NS4wMTQtNS43NjcuMDExLTQuNzIzLjAyOC05LjQ0Ny4wNDktMTQuMTdoMTFsMSA0IDIuMzEzLTEuOTM4YzUuMjEzLTQgMTAuOTItNC4wMiAxNi45MzctMS45Mzd6IiBmaWxsPSIjRkZGOUYxIi8+PHBhdGggZD0iTTU1OSA3MjVoMXYyN2wxMS03aDNsMSAyYy0uNjQzLjM5Ny0xLjI4Ni43OTQtMS45NSAxLjIwMi0xMi44OTUgNy45Ny0yNS43MjggMTUuOTYxLTM4LjA1IDI0Ljc5OGwtMi4yNiAxLjYyYTU3OS4zMjMgNTc5LjMyMyAwIDAgMC0zMC45OTkgMjMuOTQzYy0yLjUyMyAyLjA4Mi01LjA3MiA0LjEzMS03LjYxNiA2LjE4Ny00LjI5NiAzLjUxNy04LjQ0NiA3LjE2OC0xMi41NDMgMTAuOTE0YTQzMi44MiA0MzIuODIgMCAwIDEtNi40MDIgNS42NjRjLTQuMDMyIDMuNTItNy45NjcgNy4xMzMtMTEuODY4IDEwLjc5N2wtMi4wODEgMS45NTVjLTguNDIzIDcuOTQ2LTE2Ljg3IDE1LjkzOC0yNC4zNjggMjQuNzc1LTIuMDA0IDIuMzA3LTQuMDc2IDQuNTM3LTYuMTYxIDYuNzctNC45NjYgNS4zMTctOS43NTMgMTAuNzEyLTE0LjMwNyAxNi4zOWE1MTAuNzc0IDUxMC43NzQgMCAwIDEtNS4zODMgNi41OTRjLTcuNTQyIDkuMTE4LTE0LjU5OCAxOC41MDItMjEuNDMgMjguMTZhOTcwLjEyMSA5NzAuMTIxIDAgMCAxLTQuNjQ0IDYuNDgxQzM2Mi4zODQgOTU0LjYzIDM0My4wMDcgOTg4Ljg1MiAzMjcgMTAyNGgtM2M5LjUxMi0zMC45ODkgMzAuMDY3LTYxLjI5NSA0OC04OGwxLjMxMy0xLjk2NGMxMC45NzctMTYuMzU1IDIyLjY5LTMyLjEzIDM1LjI1NC00Ny4zIDIuMDYyLTIuNDk4IDQuMDg3LTUuMDI2IDYuMTItNy41NDkgMy44NC00LjY5MSA3Ljg3NS05LjE3NyAxMS45ODEtMTMuNjM2YTI1NC45MjMgMjU0LjkyMyAwIDAgMCA1Ljc3LTYuNTUxYzMuMzItMy44MzIgNi45MDgtNy4zNzggMTAuNTE3LTEwLjkzNCAyLjYyMi0yLjU5NyA1LjExMi01LjIzOCA3LjQ4My04LjA2NiAzLjM5LTMuOTc3IDcuMjEtNy40NCAxMS4wODctMTAuOTMgMi45NDEtMi42NSA1Ljc4NC01LjM1IDguNTM4LTguMTk1IDMuNzk5LTMuODYyIDcuOTM4LTcuMjEgMTIuMTYtMTAuNTk4IDIuNjEyLTIuMTQyIDUuMTA1LTQuMzYzIDcuNTktNi42NTIgNS41MjYtNS4wMjIgMTEuMzU3LTkuNTkyIDE3LjI3LTE0LjE0NSAxLjkzNS0xLjQ5NCAzLjg2LTMgNS43ODQtNC41MDdDNTUyLjYzMSA3NTQgNTUyLjYzMSA3NTQgNTU5IDc1NHYtMjl6IiBmaWxsPSIjRkZBODIyIi8+PHBhdGggZD0iTTI1MyA2OTZoMTN2NDVoMjd2MTFoLTQwdi01NnoiIGZpbGw9IiNGRkY4RUUiLz48cGF0aCBkPSJNNDc5IDcxMGM3LjIzNiAzLjk0NyA3LjIzNiAzLjk0NyA4LjYxOSA3LjY2My41MzIgMy4yNi40OTIgNi40MjQuNDc5IDkuNzI4bC0uMDA1IDIuMTM1Yy0uMDA1IDIuMjQxLS4wMTggNC40ODMtLjAzIDYuNzI0LS4wMDYgMS41MjMtLjAxIDMuMDQ3LS4wMTQgNC41Ny0uMDExIDMuNzI3LS4wMjggNy40NTMtLjA0OSAxMS4xOGgtMTFsLS4wNDQtMi43MjJjLS4wNjEtMy4zMy0uMTM1LTYuNjU3LS4yMTgtOS45ODZhNTg4LjE3OCA1ODguMTc4IDAgMCAxLS4wODQtNC4zMjRjLS4wMzQtMi4wNy0uMDg2LTQuMTQtLjE0Mi02LjIxbC0uMDgtMy43NzdMNDc2IDcyMmMtMy43MDQtMi40Ny01LjYyMS0yLjQ3LTEwLTItMy4zMjQgMy4xODUtMy40MSA2LjA0OC0zLjUxMiAxMC41MTZsLS4xMDcgMy43ODktLjA2OCAzLjk0NS0uMTA0IDMuOTkyYy0uMDgzIDMuMjUzLS4xNTIgNi41MDUtLjIwOSA5Ljc1OGgtMTF2LTQxaDEwbDEgNSAxLjc1LTEuODc1YzQuNjEtNC4zNTQgOS4wODMtNS4wMjMgMTUuMjUtNC4xMjV6IiBmaWxsPSIjRkZGQkY2Ii8+PHBhdGggZD0iTTUwNSA2MTBjNS42NzUgMi4wMDMgOS4zMDcgNS42MTQgMTIgMTEgLjgxMiA2LjUzNi0uMTY0IDEwLjY3Mi00IDE2LTQuNDE0IDQuMDEzLTguNzM3IDQuMzU3LTE0LjQ5NiA0LjI3My0zLjc4Ni0uNDEzLTUuNzM1LTEuNzAxLTguNTA0LTQuMjczLTMuNDM0LTQuNjEtNC42Ny04LjA5OC00LjM4Ny0xMy44NiAxLjAxNS01LjYxNCA0LjkzNC04Ljk3NiA5LjM4Ny0xMi4xNCAzLjIwNC0xLjYwMiA2LjUxNi0xLjM1MiAxMC0xeiIgZmlsbD0iI0ZGRkRGQSIvPjxwYXRoIGQ9Ik03NzYgNjk5aDExdjEyaDh2OGgtOGwxIDIzIDcgMXY5Yy0yLjA0LjEzNi00LjA4Mi4yMzMtNi4xMjUuMzEzbC0zLjQ0NS4xNzVjLTMuNDAyLS40ODQtNS43NTUtMS4xMDQtOC4zMS0zLjQ4OS0yLjY5NC00LjgwOC0xLjcwMi0xMC45ODItMS40OTUtMTYuMzExbC4wODItMy45NzljLjA3LTMuMjM4LjE3LTYuNDczLjI5My05LjcwOWgtN3YtOGg3di0xMnoiIGZpbGw9IiNGRkZCRjUiLz48cGF0aCBkPSJNNDI0IDY5OWgxMXYxMmg4djhoLThsMSAyMyA3IDF2OWEzMTcuMSAzMTcuMSAwIDAgMS01LjY4OC4xODhsLTMuMTk5LjEwNWMtMy41MzEtLjMzMi01LjI5Ni0xLjE3Ni04LjExMy0zLjI5My0yLjM2LTMuNTQtMi4yMzUtNS4wMTEtMi4xOTUtOS4ybC4wMi0zLjY2MS4wNS0zLjgyNy4wMjctMy44NmMuMDI0LTMuMTUxLjA1Ny02LjMwMi4wOTgtOS40NTJoLTd2LThoN3YtMTJ6bTMyNy0zaDExdjU2aC0xMXYtNTZ6IiBmaWxsPSIjRkZGQ0Y3Ii8+PHBhdGggZD0iTTM3NyAzOTJjNi42MzgtLjQ5NSAxMC4yNTQuNjQ4IDE1LjgxMyA0LjE4OGwyLjE5MiAxLjM0M0M0MDMuODc4IDQwMy4wNCA0MTIuNDU3IDQwOC45OTcgNDIxIDQxNWwxLjkyNSAxLjM0NGM4LjAwNSA1LjU5MSAxNS43OTIgMTEuNDM1IDIzLjQ4IDE3LjQ1NWwyLjA3NSAxLjYxMSAxLjg0MSAxLjQ0MmMxLjc5MiAxLjMzOCAxLjc5MiAxLjMzOCA0LjY3OSAyLjE0OGwxIDZjLTIwLjAwMiA5LjM3NC00MC4wNzcgMTcuODU2LTYxIDI1bC0yLjA0Mi43Yy0xNi4zMTEgNS41NzMtMzIuNjk4IDEwLjY5My00OS4zOTYgMTQuOTg4bC0yLjAzMy41MjNDMzMwLjYyNCA0ODkgMzMwLjYyNCA0ODkgMzI3IDQ4OWwtMSA0di03bDMuNDA2LS42NzJjMjkuOTYxLTYuMjI0IDU5LjI1LTE1Ljg5NSA4Ny41OTQtMjcuMzI4IDEuMjQtLjQ5NSAyLjQ3OS0uOTkgMy43MTktMS40ODNDNDM2LjU5IDQ1MC4yNzggNDM2LjU5IDQ1MC4yNzggNDUyIDQ0M2MtMy40NTUtMy43LTcuMzIzLTYuNjI1LTExLjM3NS05LjYyNWwtMi4xNDYtMS41OTdjLTE0Ljc5LTEwLjk3Mi0yOS44NDctMjEuNDcyLTQ1LjYtMzEuMDJhMjgwLjI4OSAyODAuMjg5IDAgMCAxLTcuMzc5LTQuNjk1Yy0yLjc5LTEuNzYyLTUuMTU4LTIuNzUtOC41LTMuMDYzdi0xeiIgZmlsbD0iI0ZGQUUyMSIvPjxwYXRoIGQ9Ik00OTkgNzExaDEyYy4wMjUgNS42NzguMDQzIDExLjM1Ny4wNTUgMTcuMDM1LjAwNSAxLjkzMy4wMTIgMy44NjYuMDIgNS44LjAxMyAyLjc3Mi4wMTggNS41NDUuMDIzIDguMzE3bC4wMTUgMi42MzZjMCAyLjA3MS0uMDUgNC4xNDItLjExMyA2LjIxMmwtMSAxaC0xMXYtNDF6IiBmaWxsPSIjRkZGNUU4Ii8+PHBhdGggZD0iTTMwMSA3MTFoMTF2NDBoLTExdi00MHoiIGZpbGw9IiNGRkZERkEiLz48cGF0aCBkPSJNNzI0IDcxOWMyLjY5MSAyLjE3NiA0LjQ1NSAzLjkxIDYgNyAuNTYgNS45ODEuNDU5IDEwLjg3Ni0zIDE2LTMuNjY4IDIuNDQ1LTYuNzM1IDIuNzIyLTExIDItMi40MzEtMS44Ny0zLjY0LTMuMjgxLTUtNi0xLjA4LTEyLjE3Ny0xLjA4LTEyLjE3NyAyLTE3LjM3NSAzLjgyNi0yLjA3MyA2Ljc0Ni0yLjcyNSAxMS0xLjYyNXoiIGZpbGw9IiNGRkE0MTkiLz48cGF0aCBkPSJNNTkxLjA2MyA3MTguNDY1YzIuNzUyLjc2IDQuNDY2IDIuMjM2IDYuMDkgNC41NTggMS42OTcgMy45NiAxLjU1MyA3Ljc4OC44NDcgMTEuOTc3LTEuNDM4IDMuNTYzLTEuNDM4IDMuNTYzLTQgNi0zLjA2NyAxLjA0MS01Ljc4IDEuMzY3LTkgMS0zLjA3LTIuMTUtMy44MTctMy40NS01LTctLjU3Ny01LjMyNS0uOS05LjU2NCAyLTE0LjE4OCAzLjI5LTEuOTg3IDUuMjY2LTIuNjI4IDkuMDYzLTIuMzQ3eiIgZmlsbD0iI0ZGQTIxQyIvPjxwYXRoIGQ9Ik0zNDQuMDYzIDcxOC40NjVjMi43NTIuNzYgNC40NjYgMi4yMzYgNi4wOSA0LjU1OCAxLjY5NyAzLjk2IDEuNTUzIDcuNzg4Ljg0NyAxMS45NzctMS40MzggMy41NjMtMS40MzggMy41NjMtNCA2LTMuMDY3IDEuMDQxLTUuNzggMS4zNjctOSAxLTMuMDctMi4xNS0zLjgxNy0zLjQ1LTUtNy0uNTc3LTUuMzI1LS45LTkuNTY0IDItMTQuMTg4IDMuMjktMS45ODcgNS4yNjYtMi42MjggOS4wNjMtMi4zNDd6IiBmaWxsPSIjRkY5RjFDIi8+PHBhdGggZD0iTTY1NyA3MjdjMi43NS0uMDU0IDUuNS0uMDk0IDguMjUtLjEyNWwyLjM1NS0uMDVjNy4zNTgtLjA2NCA3LjM1OC0uMDY0IDEwLjM5NSAyLjE3NSAxLjQ0NCAyLjg4OSAxLjM3NyA0Ljc5NiAxIDgtMi4wMDcgMi43MjYtMy41NyA0LjcxNS03LjAwNSA1LjQtMi4yODkuMDkyLTQuNTIuMDM3LTYuODA4LS4wODdsLTIuMzg4LS4wNjlBMzAxLjA1MyAzMDEuMDUzIDAgMCAxIDY1NyA3NDJ2LTE1eiIgZmlsbD0iI0ZGQTIxOCIvPjxwYXRoIGQ9Ik02NTcgNzA2YzIuNzcxLS4wOCA1LjU0LS4xNCA4LjMxMy0uMTg4bDIuMzgtLjA3NiAyLjI5NS0uMDI5IDIuMTEtLjA0OGMyLjUwOS40NSAzLjM3MyAxLjMzNiA0LjkwMiAzLjM0MS42NDQgNS4xNTUuNjQ0IDUuMTU1LTEuMjczIDcuNjctMi4xMDQgMS42Mi0zLjExMiAxLjY4Mi01LjczOSAxLjYyM2wtMi4yOTUtLjAzLTIuMzgtLjA3Ni0yLjQxNy0uMDRBNTI1Ljc2IDUyNS43NiAwIDAgMSA2NTcgNzE4di0xMnoiIGZpbGw9IiNGRkEzMTgiLz48cGF0aCBkPSJNNDcyIDQ1NWM0Ljc4NCAzLjM5MiA5LjA4MyA2LjkyNyAxMy4xNSAxMS4xNTIgMS42NTIgMS42NSAzLjM0MSAzLjE0IDUuMTMxIDQuNjM3IDYuOTIgNi4wMSAxMy4yNjMgMTIuNjUgMTkuNzE5IDE5LjE0OWw0LjA4MiA0LjA5NWMzLjMwOSAzLjMyIDYuNjE0IDYuNjQzIDkuOTE4IDkuOTY3bC00IDEtMi4yMDMtMi40MjJjLTguNzgzLTkuNjExLTE3LjY0My0xOS4yMTYtMjcuNTg2LTI3LjY0OGEyMDQuMjY3IDIwNC4yNjcgMCAwIDEtNS40ODQtNC45ODVsLTEuNzY2LTEuNjU0YTcyMS44MDYgNzIxLjgwNiAwIDAgMS0zLjQ4Mi0zLjI5M2MtMi40NzctMi4zMjEtNC4yMTgtMy45MTEtNy40NzktNC45OTh2LTV6IiBmaWxsPSIjRkZBRjFFIi8+PHBhdGggZD0iTTYwOSAzMzhsMyAyYy02LjU3NCA2LjEzOC0xMy4yMDggMTIuMTA5LTIwLjIxOSAxNy43NS0yLjk2MyAyLjM5Ny01Ljg3IDQuODUyLTguNzgxIDcuMzEzLTMuOTQ3IDMuMjc5LTcuOTIgNi41MS0xMiA5LjYyNWwtMi42MjUgMi4wMTFDNTY2IDM3OCA1NjYgMzc4IDU2My42ODcgMzc3LjcwN0w1NjIgMzc3bDIuNDU3LTEuODcxQzU3OS44MzYgMzYzLjM4MiA1OTQuNjEzIDM1MC45NCA2MDkgMzM4eiIgZmlsbD0iI0ZGQkMxNiIvPjxwYXRoIGQ9Ik02NDQgNjk2aDF2NTVoLTF2LTQwYy0xMC43NzIgNS4yNjEtMTAuNzcyIDUuMjYxLTIxLjU0IDEwLjUzMWwtNC4wNDYgMS45NjljLS43MDIuMzQ1LTEuNDA1LjY5LTIuMTI4IDEuMDQ3QzYxMS4yMjggNzI3IDYxMS4yMjggNzI3IDYwOSA3Mjd2LTNjMy43MTYtMS43OTggNy40MzMtMy41OTUgMTEuMTUxLTUuMzlhNjgzOC42MSA2ODM4LjYxIDAgMCAxIDkuMjU5LTQuNDczbDMuMzE3LTEuNjAzYzMuMzk2LTEuNTkyIDYuODE4LTMuMDc1IDEwLjI3My00LjUzNGwxLTEyeiIgZmlsbD0iI0ZGQUYyRiIvPjxwYXRoIGQ9Ik01MjkgNTExYzUuMTc1IDMuODQ4IDguOTUgOC40MzQgMTIuOTUgMTMuNDc3IDEuOTIgMi40NjUgMS45MiAyLjQ2NSAzLjgyIDQuMjM0QzU0NyA1MzAgNTQ3IDUzMCA1NDcgNTMyYy02LjU5NC0xLjQ4NC0xMS42NzYtNS41MTQtMTUuMzk4LTExLjA5OC0xLjkzOC0zLjY3Ni0yLjYwMi01LjYyNC0yLjYwMi05LjkwMnoiIGZpbGw9IiNGRkFGMjMiLz48cGF0aCBkPSJNMzAxIDY5NmgxMXY5aC0xMXYtOXoiIGZpbGw9IiNGRkZERkMiLz48cGF0aCBkPSJNNTAwIDY5NmgxMHY5aC0xMHYtOXoiIGZpbGw9IiNGRkZFRkUiLz48cGF0aCBkPSJNNDg1IDQyNGMuNzUgMS43NS43NSAxLjc1IDEgNC0yLjg4NiAzLjUxMi02LjAzOCA1LjE4LTEwLjEyNSA3LjA2My00LjY2NSAyLjA3OC00LjY2NSAyLjA3OC03Ljg3NSA1LjkzN2wtMS02IDEuNTQ1LS42ODdhMTA1My4xNiAxMDUzLjE2IDAgMCAwIDYuODkyLTMuMTI1bDIuNDMyLTEuMDggMi4zMTUtMS4wNjUgMi4xNDItLjk2OGMyLjAxMy0xLjA0NSAyLjAxMy0xLjA0NSAyLjY3NC00LjA3NXoiIGZpbGw9IiNGRkI0MjgiLz48L3N2Zz4=); }

.info-icon-svg {
  display: block;
  height: 16px;
  width: 16px;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='16px' height='16px' viewBox='0 0 16 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3Einfo%3C/title%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='info' fill='%23556DC1' fill-rule='nonzero'%3E%3Cpath d='M8,0 C3.58203226,0 0,3.58332258 0,8 C0,12.4192581 3.58203226,16 8,16 C12.4179677,16 16,12.4192581 16,8 C16,3.58332258 12.4179677,0 8,0 Z M8,3.5483871 C8.74825807,3.5483871 9.35483873,4.15496774 9.35483873,4.90322581 C9.35483873,5.65148387 8.74825807,6.25806451 8,6.25806451 C7.25174193,6.25806451 6.64516129,5.65148387 6.64516129,4.90322581 C6.64516129,4.15496774 7.25174193,3.5483871 8,3.5483871 Z M9.8064516,11.7419355 C9.8064516,11.9557097 9.633129,12.1290323 9.41935487,12.1290323 L6.58064516,12.1290323 C6.36687097,12.1290323 6.19354839,11.9557097 6.19354839,11.7419355 L6.19354839,10.9677419 C6.19354839,10.7539677 6.36687097,10.5806451 6.58064516,10.5806451 L6.96774193,10.5806451 L6.96774193,8.516129 L6.58064516,8.516129 C6.36687097,8.516129 6.19354839,8.34280647 6.19354839,8.12903227 L6.19354839,7.35483873 C6.19354839,7.14106453 6.36687097,6.96774193 6.58064516,6.96774193 L8.64516127,6.96774193 C8.85893547,6.96774193 9.03225807,7.14106453 9.03225807,7.35483873 L9.03225807,10.5806451 L9.41935487,10.5806451 C9.633129,10.5806451 9.8064516,10.7539677 9.8064516,10.9677419 L9.8064516,11.7419355 Z' id='Shape'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }

.half-width {
  width: 50% !important; }

.voicemail-svg {
  display: block;
  height: 8px;
  width: 16px;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8"%3F><svg width="16px" height="8px" viewBox="0 0 16 8" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>Shape</title><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="voicemail" fill="%23000000" fill-rule="nonzero"><path d="M3.6,1.2 C4.9254834,1.2 6,2.2745166 6,3.6 C6,4.9254834 4.9254834,6 3.6,6 C2.2745166,6 1.2,4.9254834 1.2,3.6 C1.2,2.2745166 2.2745166,1.2 3.6,1.2 Z M6.2825,6 C6.8525,5.3625 7.2,4.5225 7.2,3.6 C7.2,1.6125 5.5875,0 3.6,0 C1.6125,0 0,1.6125 0,3.6 C0,5.5875 1.6125,7.2 3.6,7.2 L12.4,7.2 C14.3875,7.2 16,5.5875 16,3.6 C16,1.6125 14.3875,0 12.4,0 C10.4125,0 8.8,1.6125 8.8,3.6 C8.8,4.5225 9.1475,5.3625 9.7175,6 L6.2825,6 Z M12.4,1.2 C13.7254834,1.2 14.8,2.2745166 14.8,3.6 C14.8,4.9254834 13.7254834,6 12.4,6 C11.0745166,6 10,4.9254834 10,3.6 C10,2.2745166 11.0745166,1.2 12.4,1.2 L12.4,1.2 Z" id="Shape"></path></g></g></svg>'); }

.disconnect-svg {
  display: block;
  height: 12px;
  width: 14px;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8"%3F><svg width="14px" height="12px" viewBox="0 0 14 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>Shape</title><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="link-horizontal-slash" transform="translate(0, 0.1)" fill="%233B3B3B" fill-rule="nonzero"><path d="M1.05875,0.3215625 L0.643125,1.24466409e-16 L0,0.8290625 L0.415625,1.150625 L12.9390625,10.8740625 L13.3546875,11.195625 L13.9978125,10.3665625 L13.5821875,10.045 L12.5890625,9.275 C13.44,8.710625 14,7.74375 14,6.6478125 C14,4.90875 12.5890625,3.4978125 10.85,3.4978125 L10.5,3.4978125 L10.5,4.8978125 L10.85,4.8978125 C11.816875,4.8978125 12.6,5.6809375 12.6,6.6478125 C12.6,7.4353125 12.079375,8.1025 11.361875,8.32125 L9.0803125,6.549375 C9.5309375,6.006875 9.8,5.3090625 9.8,4.5478125 C9.8,2.80875 8.3890625,1.3978125 6.65,1.3978125 L3.15,1.3978125 C2.935625,1.3978125 2.7278125,1.4196875 2.524375,1.4590625 L1.05875,0.3215625 Z M4.248125,2.7978125 L6.65,2.7978125 C7.616875,2.7978125 8.4,3.5809375 8.4,4.5478125 C8.4,4.9853125 8.2403125,5.3834375 7.975625,5.691875 L4.248125,2.7978125 Z M7.9953125,8.3978125 L7.35,8.3978125 C6.383125,8.3978125 5.6,7.6146875 5.6,6.6478125 C5.6,6.601875 5.6021875,6.558125 5.604375,6.514375 L4.3925,5.560625 C4.2678125,5.8996875 4.2,6.2671875 4.2,6.65 C4.2,8.3890625 5.6109375,9.8 7.35,9.8 L9.77375,9.8 L7.9975,8.4 L7.9953125,8.3978125 Z M0.660625,2.6184375 C0.2471875,3.1521875 0,3.8215625 0,4.5478125 C0,6.286875 1.4109375,7.6978125 3.15,7.6978125 L3.5,7.6978125 L3.5,6.2978125 L3.15,6.2978125 C2.183125,6.2978125 1.4,5.5146875 1.4,4.5478125 C1.4,4.1475 1.5334375,3.78 1.7609375,3.4846875 L0.660625,2.6184375 Z" id="Shape"></path></g></g></svg>'); }

.hangup-svg {
  display: block;
  height: 8px;
  width: 16px;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8"%3F><svg width="16px" height="8px" viewBox="0 0 16 8" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>Path</title><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="phone-hangup" fill="%238E8E8E" fill-rule="nonzero"><path d="M0,3.6 L1.6,7.2 L5.6,6.4 L5.6,3.2 C7.1575,2.68 8.8425,2.68 10.4,3.2 L10.4,6.4 L14.4,7.2 L16,3.6 C15.0675,2.4 12.16,0 8,0 C3.84,0 0.9325,2.4 0,3.6 Z" id="Path"></path></g></g></svg>'); }

.phone-outgoing-svg {
  display: block;
  height: 12px;
  width: 12px;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8"%3F><svg width="12px" height="13px" viewBox="0 0 12 13" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>phone-arrow-up-right</title><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="phone-arrow-up-right" transform="translate(0, 0.9775)" fill="%23000000" fill-rule="nonzero"><path d="M6.9140625,4.28959096 L10.078125,1.12552846 L9,1.12552846 C8.68828125,1.12552846 8.4375,0.874747211 8.4375,0.563028461 C8.4375,0.251309711 8.68828125,0.000528460911 9,0.000528460911 L11.4375,0.000528460911 C11.7492188,0.000528460911 12,0.251309711 12,0.563028461 L12,3.00052846 C12,3.31224721 11.7492188,3.56302846 11.4375,3.56302846 C11.1257812,3.56302846 10.875,3.31224721 10.875,3.00052846 L10.875,1.92005971 L7.7109375,5.08646596 C7.490625,5.30677846 7.134375,5.30677846 6.91640625,5.08646596 C6.6984375,4.86615346 6.69609375,4.50990346 6.91640625,4.29193471 L6.9140625,4.28959096 Z M2.75390625,0.0333409609 C3.20859375,-0.0908777891 3.684375,0.141153461 3.86484375,0.577090961 L4.80234375,2.82709096 C4.96171875,3.20912221 4.8515625,3.65209096 4.53046875,3.91224721 L3.375,4.85912221 C4.15546875,6.50912221 5.49140625,7.84505971 7.14140625,8.62552846 L8.0859375,7.47005971 C8.3484375,7.14896596 8.7890625,7.03880971 9.17109375,7.19818471 L11.4210937,8.13568471 C11.8570312,8.31615346 12.0890625,8.79193471 11.9648438,9.24662221 L11.4023437,11.3091222 C11.2921875,11.7169347 10.921875,12.0005285 10.5,12.0005285 C4.7015625,12.0005285 0,7.29896596 0,1.50052846 C0,1.07865346 0.28359375,0.708340961 0.69140625,0.595840961 L2.75390625,0.0333409609 Z" id="Shape"></path></g></g></svg>'); }

.invalid {
  color: red;
  margin-top: 5px;
  font-size: 12px; }

/*# sourceMappingURL=client-d7e05e38-bundle.css.map*/