@import url('app-blessed1.css?z=8');

@import url('app-blessed2.css?z=8');

@import url('app-blessed3.css?z=8');

@import url('app-blessed4.css?z=8');

@import url('app-blessed5.css?z=8');

@media print, screen and (min-width: 64em) {
  .menu.large-horizontal {
    flex-wrap: nowrap;
  }

  .menu.large-horizontal>li {
    flex: 0 0 auto;
  }

  .menu.large-expanded>li {
    flex: 1 1 0px;
  }

  .menu.large-expanded>li:first-child:last-child {
    width: 100%;
  }

  .menu.large-vertical {
    flex-wrap: wrap;
  }

  .menu.large-vertical>li {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .menu.large-vertical>li>a {
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.menu.simple li {
  display: inline-block;
  vertical-align: top;
  line-height: 1;
}

.menu.simple a {
  padding: 0;
}

.menu.simple li {
  margin-left: 0;
  margin-right: 1rem;
}

.menu.simple.align-right li,
.menu.simple#search-profile-area li {
  margin-right: 0;
  margin-left: 1rem;
}

.menu.align-right,
.menu#search-profile-area {
  justify-content: flex-end;
}

.menu.icon-top>li>a {
  flex-flow: column nowrap;
}

.menu.icon-top>li>a img,
.menu.icon-top>li>a i,
.menu.icon-top>li>a svg {
  align-self: stretch;
  margin-bottom: .25rem;
  text-align: center;
}

.menu.icon-top.vertical a>span,
.off-canvas .menuBar ul.menu.icon-top a>span {
  margin: auto;
}

.menu.nested {
  margin-left: 1rem;
}

.menu .active>a {
  background: #fe9a00;
  color: #fefefe;
}

.menu.menu-bordered li {
  border: 1px solid #e6e6e6;
}

.menu.menu-bordered li:not(:first-child) {
  border-top: 0;
}

.menu.menu-hover li:hover {
  background-color: #e6e6e6;
}

.menu-text {
  padding-top: 0;
  padding-bottom: 0;
  padding: 0.7rem 1rem;
  font-weight: bold;
  line-height: 1;
  color: inherit;
}

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

.menu-centered>.menu {
  display: inline-block;
  vertical-align: top;
}

.no-js [data-responsive-menu] ul {
  display: none;
}

.is-off-canvas-open {
  overflow: hidden;
}

.js-off-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity .5s ease,visibility .5s ease;
  background: rgba(254,254,254,0.25);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

.js-off-canvas-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.js-off-canvas-overlay.is-closable {
  cursor: pointer;
}

.js-off-canvas-overlay.is-overlay-absolute {
  position: absolute;
}

.js-off-canvas-overlay.is-overlay-fixed {
  position: fixed;
}

.off-canvas-wrapper {
  position: relative;
  overflow: hidden;
}

.off-canvas {
  position: fixed;
  z-index: 1;
  transition: transform .5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #e6e6e6;
}

[data-whatinput='mouse'] .off-canvas {
  outline: 0;
}

.off-canvas.is-transition-overlap {
  z-index: 10;
}

.off-canvas.is-transition-overlap.is-open {
  box-shadow: 0 0 10px rgba(10,10,10,0.7);
}

.off-canvas.is-open {
  transform: translate(0, 0);
}

.off-canvas-absolute {
  position: absolute;
  z-index: 1;
  transition: transform .5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #e6e6e6;
}

[data-whatinput='mouse'] .off-canvas-absolute {
  outline: 0;
}

.off-canvas-absolute.is-transition-overlap {
  z-index: 10;
}

.off-canvas-absolute.is-transition-overlap.is-open {
  box-shadow: 0 0 10px rgba(10,10,10,0.7);
}

.off-canvas-absolute.is-open {
  transform: translate(0, 0);
}

.position-left {
  top: 0;
  left: 0;
  width: 250px;
  height: 100%;
  transform: translateX(-250px);
  overflow-y: auto;
}

.position-left.is-open ~ .off-canvas-content {
  transform: translateX(250px);
}

.position-left.is-transition-push::after {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  box-shadow: 0 0 10px rgba(10,10,10,0.7);
  content: " ";
}

.position-left.is-transition-overlap.is-open ~ .off-canvas-content {
  transform: none;
}

.position-right {
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  transform: translateX(250px);
  overflow-y: auto;
}

.position-right.is-open ~ .off-canvas-content {
  transform: translateX(-250px);
}

.position-right.is-transition-push::after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 1px;
  box-shadow: 0 0 10px rgba(10,10,10,0.7);
  content: " ";
}

.position-right.is-transition-overlap.is-open ~ .off-canvas-content {
  transform: none;
}

.position-top {
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  transform: translateY(-250px);
  overflow-x: auto;
}

.position-top.is-open ~ .off-canvas-content {
  transform: translateY(250px);
}

.position-top.is-transition-push::after {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  box-shadow: 0 0 10px rgba(10,10,10,0.7);
  content: " ";
}

.position-top.is-transition-overlap.is-open ~ .off-canvas-content {
  transform: none;
}

.position-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  transform: translateY(250px);
  overflow-x: auto;
}

.position-bottom.is-open ~ .off-canvas-content {
  transform: translateY(-250px);
}

.position-bottom.is-transition-push::after {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
  box-shadow: 0 0 10px rgba(10,10,10,0.7);
  content: " ";
}

.position-bottom.is-transition-overlap.is-open ~ .off-canvas-content {
  transform: none;
}

.off-canvas-content {
  transition: transform .5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media print, screen and (min-width: 40em) {
  .position-left.reveal-for-medium {
    transform: none;
    z-index: 1;
  }

  .position-left.reveal-for-medium ~ .off-canvas-content {
    margin-left: 250px;
  }

  .position-right.reveal-for-medium {
    transform: none;
    z-index: 1;
  }

  .position-right.reveal-for-medium ~ .off-canvas-content {
    margin-right: 250px;
  }

  .position-top.reveal-for-medium {
    transform: none;
    z-index: 1;
  }

  .position-top.reveal-for-medium ~ .off-canvas-content {
    margin-top: 250px;
  }

  .position-bottom.reveal-for-medium {
    transform: none;
    z-index: 1;
  }

  .position-bottom.reveal-for-medium ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}

@media print, screen and (min-width: 64em) {
  .position-left.reveal-for-large {
    transform: none;
    z-index: 1;
  }

  .position-left.reveal-for-large ~ .off-canvas-content {
    margin-left: 250px;
  }

  .position-right.reveal-for-large {
    transform: none;
    z-index: 1;
  }

  .position-right.reveal-for-large ~ .off-canvas-content {
    margin-right: 250px;
  }

  .position-top.reveal-for-large {
    transform: none;
    z-index: 1;
  }

  .position-top.reveal-for-large ~ .off-canvas-content {
    margin-top: 250px;
  }

  .position-bottom.reveal-for-large {
    transform: none;
    z-index: 1;
  }

  .position-bottom.reveal-for-large ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}

.pagination {
  margin-left: 0;
  margin-bottom: 1rem;
}

.pagination::before,
.pagination::after {
  display: table;
  content: ' ';
  flex-basis: 0;
  order: 1;
}

.pagination::after {
  clear: both;
}

.pagination li {
  margin-right: .0625rem;
  border-radius: 0;
  font-size: .875rem;
  display: none;
}

.pagination li:last-child,
.pagination li:first-child {
  display: inline-block;
}

@media print, screen and (min-width: 40em) {
  .pagination li {
    display: inline-block;
  }
}

.pagination a,
.pagination button {
  display: block;
  padding: .1875rem .625rem;
  border-radius: 0;
  color: #0a0a0a;
}

.pagination a:hover,
.pagination button:hover {
  background: #e6e6e6;
}

.pagination .current {
  padding: .1875rem .625rem;
  background: #fe9a00;
  color: #fe9a00;
  cursor: default;
}

.pagination .disabled {
  padding: .1875rem .625rem;
  color: #5e5e5e;
  cursor: not-allowed;
}

.pagination .disabled:hover {
  background: transparent;
}

.pagination .ellipsis::after {
  padding: .1875rem .625rem;
  content: '\2026';
  color: #0a0a0a;
}

.pagination-previous a::before,
.pagination-previous.disabled::before {
  display: inline-block;
  margin-right: 0.5rem;
  content: '\00ab';
}

.pagination-next a::after,
.pagination-next.disabled::after {
  display: inline-block;
  margin-left: 0.5rem;
  content: '\00bb';
}

.sticky-container {
  position: relative;
}

.sticky {
  position: relative;
  z-index: 0;
  transform: translate3d(0, 0, 0);
}

.sticky.is-stuck {
  position: fixed;
  z-index: 5;
}

.sticky.is-stuck.is-at-top {
  top: 0;
}

.sticky.is-stuck.is-at-bottom {
  bottom: 0;
}

.sticky.is-anchored {
  position: relative;
  right: auto;
  left: auto;
}

.sticky.is-anchored.is-at-bottom {
  bottom: 0;
}

body.is-reveal-open {
  overflow: hidden;
}

html.is-reveal-open,
html.is-reveal-open body {
  min-height: 100%;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.reveal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  display: none;
  background-color: rgba(10,10,10,0.45);
  overflow-y: scroll;
}

.reveal {
  z-index: 1006;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: none;
  padding: 1rem;
  border: 1px solid #5e5e5e;
  border-radius: 0;
  background-color: #fefefe;
  position: relative;
  top: 100px;
  margin-right: auto;
  margin-left: auto;
  overflow-y: auto;
}

[data-whatinput='mouse'] .reveal {
  outline: 0;
}

@media print, screen and (min-width: 40em) {
  .reveal {
    min-height: 0;
  }
}

.reveal .column,
.reveal .columns,
.reveal #signin-providers li,
#signin-providers .reveal li,
.reveal #social-processing p,
#social-processing .reveal p,
.reveal .teaser,
.reveal .faqs,
.reveal .document-group .description,
.document-group .reveal .description,
.reveal .pt-form .icon,
.pt-form .reveal .icon,
.reveal .pt-form .accordion-item,
.pt-form .reveal .accordion-item,
.reveal .pt-form .accordion-title,
.pt-form .reveal .accordion-title,
.reveal .profile-action,
.reveal .subscription,
.reveal #view-info-container,
.reveal #viewer-title-container,
.reveal .social-links,
.reveal .copyright,
.reveal .upload-cta,
.reveal .login-cta,
.reveal #new-collection-area,
.reveal .documents,
.reveal .document-thumbnail .info .views,
.document-thumbnail .info .reveal .views,
.reveal .document-thumbnail .info .likes,
.document-thumbnail .info .reveal .likes,
.reveal .user-thumbnail .info .views,
.user-thumbnail .info .reveal .views,
.reveal .user-thumbnail .info .likes,
.user-thumbnail .info .reveal .likes,
.reveal .document-thumbnail .action,
.document-thumbnail .reveal .action,
.reveal .user-thumbnail .action,
.user-thumbnail .reveal .action,
.reveal .document-thumbnail .view,
.document-thumbnail .reveal .view,
.reveal .user-thumbnail .view,
.user-thumbnail .reveal .view,
.reveal #selected-document,
.reveal .viewer-pointer,
.reveal #search-results,
.reveal .search-img,
.reveal .search-meta,
.reveal #social-view-controls,
.reveal #embed-view-controls,
.reveal #share-column,
.reveal #embed-column,
.reveal #esign-column,
.reveal #embed-wrapper .codeblock .input-box,
#embed-wrapper .codeblock .reveal .input-box,
.reveal #embed-wrapper .codeblock .clip-icon,
#embed-wrapper .codeblock .reveal .clip-icon,
.reveal #viewer-container,
.reveal #embed-viewer-container,
.reveal #documentsideimage,
.reveal #doc-view-container,
.reveal #embeded-container,
.reveal #view-doc-text,
.reveal #lead-email-form-container,
.reveal #lead-email-form,
.reveal #payment,
.reveal .pt-form.centered fieldset,
.pt-form.centered .reveal fieldset,
.reveal .page-help-tabs,
.reveal #marketplace-tabs,
.reveal #marketplace-content,
.reveal #analytics #tabs button,
#analytics #tabs .reveal button,
.reveal .leads-title,
.reveal .leads-stats,
.reveal #profile-wrapper,
.reveal #userInfo,
.reveal #userLogo,
.reveal #userStats,
.reveal .connection,
.reveal #legacy-edocr-message,
.reveal #search-profile-area,
.reveal #search-profile-area #search-profile-form,
#search-profile-area .reveal #search-profile-form,
.reveal .search-collection-form,
.reveal #subscriptions-wrapper,
.reveal .followers-title,
.reveal .columns,
.reveal #signin-providers li,
#signin-providers .reveal li,
.reveal #social-processing p,
#social-processing .reveal p,
.reveal .teaser,
.reveal .faqs,
.reveal .document-group .description,
.document-group .reveal .description,
.reveal .pt-form .icon,
.pt-form .reveal .icon,
.reveal .pt-form .accordion-item,
.pt-form .reveal .accordion-item,
.reveal .pt-form .accordion-title,
.pt-form .reveal .accordion-title,
.reveal .profile-action,
.reveal .subscription {
  min-width: 0;
}

.reveal>:last-child {
  margin-bottom: 0;
}

@media print, screen and (min-width: 40em) {
  .reveal {
    width: 600px;
    max-width: 90rem;
  }
}

@media print, screen and (min-width: 40em) {
  .reveal .reveal,
  .reveal .secondary-actions a.reveal.create-account,
  .secondary-actions .reveal a.reveal.create-account,
  .reveal .pt-form a.reveal.cancel,
  .pt-form .reveal a.reveal.cancel,
  .reveal .pt-form .secondary-actions a.reveal.forgot-password,
  .pt-form .secondary-actions .reveal a.reveal.forgot-password,
  .reveal .secondary-actions .pt-form a.reveal.forgot-password,
  .secondary-actions .pt-form .reveal a.reveal.forgot-password,
  .reveal .pt-form button.reveal.cancel,
  .pt-form .reveal button.reveal.cancel,
  .reveal .pt-form .form-action button.reveal,
  .pt-form .form-action .reveal button.reveal,
  .reveal .pt-form .form-action .reveal.publish,
  .pt-form .form-action .reveal .reveal.publish,
  .reveal .pt-form .form-action .reveal.primary-action,
  .pt-form .form-action .reveal .reveal.primary-action {
    right: auto;
    left: auto;
    margin: 0 auto;
  }
}

.reveal.collapse {
  padding: 0;
}

@media print, screen and (min-width: 40em) {
  .reveal.tiny {
    width: 30%;
    max-width: 90rem;
  }
}

@media print, screen and (min-width: 40em) {
  .reveal.small,
  .secondary-actions a.reveal.create-account,
  .pt-form a.reveal.cancel,
  .pt-form .secondary-actions a.reveal.forgot-password,
  .secondary-actions .pt-form a.reveal.forgot-password,
  .pt-form button.reveal.cancel {
    width: 50%;
    max-width: 90rem;
  }
}

@media print, screen and (min-width: 40em) {
  .reveal.large,
  .pt-form .form-action button.reveal,
  .pt-form .form-action .reveal.publish,
  .pt-form .form-action .reveal.primary-action {
    width: 90%;
    max-width: 90rem;
  }
}

.reveal.full {
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  height: 100vh;
  min-height: 100vh;
  margin-left: 0;
  border: 0;
  border-radius: 0;
}

@media screen and (max-width: 39.9375em) {
  .reveal {
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    height: 100vh;
    min-height: 100vh;
    margin-left: 0;
    border: 0;
    border-radius: 0;
  }
}

.reveal.without-overlay {
  position: fixed;
}

table {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0;
}

thead,
tbody,
tfoot {
  border: 1px solid #f1f1f1;
  background-color: #fefefe;
}

caption {
  padding: .5rem .625rem .625rem;
  font-weight: 700;
}

thead {
  background: #f8f8f8;
  color: teal;
}

tfoot {
  background: #f1f1f1;
  color: teal;
}

thead tr,
tfoot tr {
  background: transparent;
}

thead th,
thead td,
tfoot th,
tfoot td {
  padding: .5rem .625rem .625rem;
  font-weight: 700;
  text-align: left;
}

tbody th,
tbody td {
  padding: .5rem .625rem .625rem;
}

tbody tr:nth-child(even) {
  border-bottom: 0;
  background-color: #f1f1f1;
}

table.unstriped tbody {
  background-color: #fefefe;
}

table.unstriped tbody tr {
  border-bottom: 0;
  border-bottom: 1px solid #f1f1f1;
  background-color: #fefefe;
}

@media screen and (max-width: 63.9375em) {
  table.stack thead {
    display: none;
  }

  table.stack tfoot {
    display: none;
  }

  table.stack tr,
  table.stack th,
  table.stack td {
    display: block;
  }

  table.stack td {
    border-top: 0;
  }
}

table.scroll {
  display: block;
  width: 100%;
  overflow-x: auto;
}

table.hover thead tr:hover {
  background-color: #f3f3f3;
}

table.hover tfoot tr:hover {
  background-color: #ececec;
}

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

table.hover:not(.unstriped) tr:nth-of-type(even):hover {
  background-color: #ececec;
}

.table-scroll {
  overflow-x: auto;
}

.table-scroll table {
  width: auto;
}

.tabs {
  margin: 0;
  border: 1px solid #e6e6e6;
  background: #fefefe;
  list-style-type: none;
}

.tabs::before,
.tabs::after {
  display: table;
  content: ' ';
  flex-basis: 0;
  order: 1;
}

.tabs::after {
  clear: both;
}

.tabs.vertical>li,
.off-canvas .menuBar ul.tabs.menu>li {
  display: block;
  float: none;
  width: auto;
}

.tabs.simple>li>a {
  padding: 0;
}

.tabs.simple>li>a:hover {
  background: transparent;
}

.tabs.primary,
#analytics #tabs button.tabs {
  background: #fe9a00;
}

.tabs.primary>li>a,
#analytics #tabs button.tabs>li>a {
  color: #0a0a0a;
}

.tabs.primary>li>a:hover,
#analytics #tabs button.tabs>li>a:hover,
.tabs.primary>li>a:focus,
#analytics #tabs button.tabs>li>a:focus {
  background: #f19200;
}

.tabs-title {
  float: left;
}

.tabs-title>a {
  display: block;
  padding: 1.25rem 1.5rem;
  font-size: .75rem;
  line-height: 1;
  color: #fe9a00;
}

.tabs-title>a:hover {
  background: #fefefe;
  color: #da8400;
}

.tabs-title>a:focus,
.tabs-title>a[aria-selected='true'] {
  background: #e6e6e6;
  color: #fe9a00;
}

.tabs-content {
  border: 1px solid #e6e6e6;
  border-top: 0;
  background: #fefefe;
  color: #fe9a00;
  transition: all 0.5s ease;
}

.tabs-content.vertical,
.off-canvas .menuBar ul.tabs-content.menu {
  border: 1px solid #e6e6e6;
  border-left: 0;
}

.tabs-panel {
  display: none;
  padding: 1rem;
}

.tabs-panel[aria-hidden="false"] {
  display: block;
}

.title-bar {
  padding: .5rem;
  background: #0a0a0a;
  color: #fefefe;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title-bar .menu-icon {
  margin-left: .25rem;
  margin-right: .25rem;
}

.title-bar-left,
.title-bar-right {
  flex: 1 1 0px;
}

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

.title-bar-title {
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
}

.has-tip {
  position: relative;
  display: inline-block;
  border-bottom: dotted 1px #8a8a8a;
  font-weight: 700;
  cursor: help;
}

.tooltip {
  position: absolute;
  top: calc(100% + .866rem);
  z-index: 1200;
  max-width: 10rem;
  padding: .75rem;
  border-radius: 0;
  background-color: #0a0a0a;
  font-size: 80%;
  color: #fefefe;
}

.tooltip::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 1rem;
  content: '';
  border-top-width: 0;
  border-bottom-style: solid;
  border-color: transparent transparent #0a0a0a;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.tooltip.top::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 1rem;
  content: '';
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #0a0a0a transparent transparent;
  top: 100%;
  bottom: auto;
}

.tooltip.left::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 1rem;
  content: '';
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #0a0a0a;
  top: 50%;
  bottom: auto;
  left: 100%;
  transform: translateY(-50%);
}

.tooltip.right::before,
.tooltip.profile-action::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 1rem;
  content: '';
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #0a0a0a transparent transparent;
  top: 50%;
  right: 100%;
  bottom: auto;
  left: auto;
  transform: translateY(-50%);
}

.dropdown-pane {
  position: absolute;
  z-index: 10;
  display: block;
  width: 300px;
  padding: 1rem;
  visibility: hidden;
  border: 1px solid #5e5e5e;
  border-radius: 0;
  background-color: teal;
  font-size: 16rem;
}

.dropdown-pane.is-open {
  visibility: visible;
}

.dropdown-pane.tiny {
  width: 100px;
}

.dropdown-pane.small,
.secondary-actions a.dropdown-pane.create-account,
.pt-form a.dropdown-pane.cancel,
.pt-form .secondary-actions a.dropdown-pane.forgot-password,
.secondary-actions .pt-form a.dropdown-pane.forgot-password,
.pt-form button.dropdown-pane.cancel {
  width: 200px;
}

.dropdown-pane.large,
.pt-form .form-action button.dropdown-pane,
.pt-form .form-action .dropdown-pane.publish,
.pt-form .form-action .dropdown-pane.primary-action {
  width: 400px;
}

.menu-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer;
}

.menu-icon::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #fefefe;
  box-shadow: 0 7px 0 #fefefe,0 14px 0 #fefefe;
  content: '';
}

.menu-icon:hover::after {
  background: #5e5e5e;
  box-shadow: 0 7px 0 #5e5e5e,0 14px 0 #5e5e5e;
}

.menu-icon.dark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer;
}

.menu-icon.dark::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #0a0a0a;
  box-shadow: 0 7px 0 #0a0a0a,0 14px 0 #0a0a0a;
  content: '';
}

.menu-icon.dark:hover::after {
  background: #8a8a8a;
  box-shadow: 0 7px 0 #8a8a8a,0 14px 0 #8a8a8a;
}

.progress {
  height: 1rem;
  margin-bottom: 1rem;
  border-radius: 0;
  background-color: #5e5e5e;
}

.progress.primary .progress-meter,
#analytics #tabs button.progress .progress-meter {
  background-color: #fe9a00;
}

.progress.secondary .progress-meter {
  background-color: teal;
}

.progress.success .progress-meter {
  background-color: #9bb304;
}

.progress.warning .progress-meter {
  background-color: #fe9a00;
}

.progress.alert .progress-meter {
  background-color: #ec5840;
}

.progress-meter {
  position: relative;
  display: block;
  width: 0%;
  height: 100%;
  background-color: #fe9a00;
}

.progress-meter-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  margin: 0;
  font-size: 0.75rem;
  font-weight: bold;
  color: #fefefe;
  white-space: nowrap;
}

.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  border-radius: 0;
  font-size: .8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  background: #fe9a00;
  color: #fff;
}

.label.primary,
#analytics #tabs button.label {
  background: #fe9a00;
  color: #0a0a0a;
}

.label.secondary {
  background: teal;
  color: #fff;
}

.label.success {
  background: #9bb304;
  color: #0a0a0a;
}

.label.warning {
  background: #fe9a00;
  color: #0a0a0a;
}

.label.alert {
  background: #ec5840;
  color: #0a0a0a;
}

.switch {
  height: 2rem;
  position: relative;
  margin-bottom: 1rem;
  outline: 0;
  font-size: .875rem;
  font-weight: bold;
  color: #fefefe;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.switch-input {
  position: absolute;
  margin-bottom: 0;
  opacity: 0;
}

.switch-paddle {
  position: relative;
  display: block;
  width: 4rem;
  height: 2rem;
  border-radius: 0;
  background: #5e5e5e;
  transition: all 0.25s ease-out;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
}

input+.switch-paddle {
  margin: 0;
}

.switch-paddle::after {
  position: absolute;
  top: .25rem;
  left: .25rem;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  transform: translate3d(0, 0, 0);
  border-radius: 0;
  background: #fefefe;
  transition: all 0.25s ease-out;
  content: '';
}

input:checked ~ .switch-paddle {
  background: #fe9a00;
}

input:checked ~ .switch-paddle::after {
  left: 2.25rem;
}

[data-whatinput='mouse'] input:focus ~ .switch-paddle {
  outline: 0;
}

.switch-active,
.switch-inactive {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.switch-active {
  left: 8%;
  display: none;
}

input:checked+label>.switch-active {
  display: block;
}

.switch-inactive {
  right: 15%;
}

input:checked+label>.switch-inactive {
  display: none;
}

.switch.tiny {
  height: 1.5rem;
}

.switch.tiny .switch-paddle {
  width: 3rem;
  height: 1.5rem;
  font-size: .625rem;
}

.switch.tiny .switch-paddle::after {
  top: .25rem;
  left: .25rem;
  width: 1rem;
  height: 1rem;
}

.switch.tiny input:checked ~ .switch-paddle::after {
  left: 1.75rem;
}

.switch.small,
.secondary-actions a.switch.create-account,
.pt-form a.switch.cancel,
.pt-form .secondary-actions a.switch.forgot-password,
.secondary-actions .pt-form a.switch.forgot-password,
.pt-form button.switch.cancel {
  height: 1.75rem;
}

.switch.small .switch-paddle,
.secondary-actions a.switch.create-account .switch-paddle,
.pt-form a.switch.cancel .switch-paddle,
.pt-form .secondary-actions a.switch.forgot-password .switch-paddle,
.secondary-actions .pt-form a.switch.forgot-password .switch-paddle,
.pt-form button.switch.cancel .switch-paddle {
  width: 3.5rem;
  height: 1.75rem;
  font-size: .75rem;
}

.switch.small .switch-paddle::after,
.secondary-actions a.switch.create-account .switch-paddle::after,
.pt-form a.switch.cancel .switch-paddle::after,
.pt-form .secondary-actions a.switch.forgot-password .switch-paddle::after,
.secondary-actions .pt-form a.switch.forgot-password .switch-paddle::after,
.pt-form button.switch.cancel .switch-paddle::after {
  top: .25rem;
  left: .25rem;
  width: 1.25rem;
  height: 1.25rem;
}

.switch.small input:checked ~ .switch-paddle::after,
.secondary-actions a.switch.create-account input:checked ~ .switch-paddle::after,
.pt-form a.switch.cancel input:checked ~ .switch-paddle::after,
.pt-form .secondary-actions a.switch.forgot-password input:checked ~ .switch-paddle::after,
.secondary-actions .pt-form a.switch.forgot-password input:checked ~ .switch-paddle::after,
.pt-form button.switch.cancel input:checked ~ .switch-paddle::after {
  left: 2rem;
}

.switch.large,
.pt-form .form-action button.switch,
.pt-form .form-action .switch.publish,
.pt-form .form-action .switch.primary-action {
  height: 2.5rem;
}

.switch.large .switch-paddle,
.pt-form .form-action button.switch .switch-paddle,
.pt-form .form-action .switch.publish .switch-paddle,
.pt-form .form-action .switch.primary-action .switch-paddle {
  width: 5rem;
  height: 2.5rem;
  font-size: 1rem;
}

.switch.large .switch-paddle::after,
.pt-form .form-action button.switch .switch-paddle::after,
.pt-form .form-action .switch.publish .switch-paddle::after,
.pt-form .form-action .switch.primary-action .switch-paddle::after {
  top: .25rem;
  left: .25rem;
  width: 2rem;
  height: 2rem;
}

.switch.large input:checked ~ .switch-paddle::after,
.pt-form .form-action button.switch input:checked ~ .switch-paddle::after,
.pt-form .form-action .switch.publish input:checked ~ .switch-paddle::after,
.pt-form .form-action .switch.primary-action input:checked ~ .switch-paddle::after {
  left: 2.75rem;
}

.align-right,
#search-profile-area {
  justify-content: flex-end;
}

.align-center,
#selected-document,
.pagination,
#restriction-form,
#lead-email-form-container {
  justify-content: center;
}

.align-justify {
  justify-content: space-between;
}

.align-spaced {
  justify-content: space-around;
}

.align-top,
.pt-form .action-row {
  align-items: flex-start;
}

.align-self-top {
  align-self: flex-start;
}

.align-bottom {
  align-items: flex-end;
}

.align-self-bottom {
  align-self: flex-end;
}

.align-middle,
#leads-wrapper .last-view-date,
.leads-title,
.leads-stats,
.pt-accordion .accordion-item {
  align-items: center;
}

.align-self-middle {
  align-self: center;
}

.align-stretch,
#userInfo,
#userLogo,
#userStats {
  align-items: stretch;
}

.align-self-stretch {
  align-self: stretch;
}

.small-order-1 {
  order: 1;
}

.small-order-2 {
  order: 2;
}

.small-order-3 {
  order: 3;
}

.small-order-4 {
  order: 4;
}

.small-order-5 {
  order: 5;
}

.small-order-6 {
  order: 6;
}

@media print, screen and (min-width: 40em) {
  .medium-order-1 {
    order: 1;
  }

  .medium-order-2 {
    order: 2;
  }

  .medium-order-3 {
    order: 3;
  }

  .medium-order-4 {
    order: 4;
  }

  .medium-order-5 {
    order: 5;
  }

  .medium-order-6 {
    order: 6;
  }
}

@media print, screen and (min-width: 64em) {
  .large-order-1 {
    order: 1;
  }

  .large-order-2 {
    order: 2;
  }

  .large-order-3 {
    order: 3;
  }

  .large-order-4 {
    order: 4;
  }

  .large-order-5 {
    order: 5;
  }

  .large-order-6 {
    order: 6;
  }
}

.centered,
.pt-form.centered fieldset {
  display: block;
  margin: 0 auto;
}

.text-sm {
  font-size: .5rem;
}

.text-md {
  font-size: 1.5rem;
}

.text-lg {
  font-size: 2rem;
}

.truncate,
.document-thumbnail .docTitle,
.user-thumbnail .docTitle {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@-webkit-keyframes wiggle {
  25% {
    transform: rotate(4deg);
  }

  50% {
    transform: rotate(-4deg);
  }

  75% {
    transform: rotate(4deg);
  }
}

@keyframes wiggle {
  25% {
    transform: rotate(4deg);
  }

  50% {
    transform: rotate(-4deg);
  }

  75% {
    transform: rotate(4deg);
  }
}

.wiggle {
  color: #fe9a00;
  -webkit-animation: wiggle 1s;
  animation: wiggle 1s;
}

* {
  outline: none;
}

.no-js ul {
  display: none;
}

body {
  background-color: teal;
  color: black;
  overflow-x: hidden;
}

.off-canvas-content {
  height: 100%;
  min-height: 100vh;
  padding-bottom: 120px;
}

a,
button {
  transition: all 0.5s ease;
  font-family: "Raleway";
}

a.disabled,
button.disabled {
  pointer-events: none;
}

i {
  font-style: normal;
}

.fa.primary,
i.primary,
.primary#no-content::before,
#analytics #tabs button#no-content::before,
#viewer-modal.modal-loading p.primary::before,
.social-links a.primary,
.search-meta a.primary,
.search-meta span.primary,
.pt-form label.primary.custom::before,
#form-error-summary .primary.alert::before,
#form-error-summary #analytics #tabs button.alert::before,
#analytics #tabs #form-error-summary button.alert::before,
.form-error .primary.alert::before,
.form-error #analytics #tabs button.alert::before,
#analytics #tabs .form-error button.alert::before,
.primary.help-tip::before,
#analytics #tabs button.help-tip::before,
.cr input[type=checkbox]+label.primary::before,
.cr input[type=radio]+label.primary::before,
#analytics #tabs button.fa,
#analytics #tabs button.overlay-card::before,
#analytics #tabs button#as-facebook::before,
#analytics #tabs button#as-twitter::before,
#analytics #tabs button#as-linkedin::before,
.dz-preview p.primary[data-dz-remove],
.primary.overlay-card::before,
.primary#as-facebook::before,
.primary#as-twitter::before,
.primary#as-linkedin::before,
a.primary {
  color: #fe9a00;
}

.fa.action,
i.action,
.action#no-content::before,
#viewer-modal.modal-loading p.action::before,
.social-links a.action,
.search-meta a.action,
.search-meta span.action,
.pt-form label.action.custom::before,
#form-error-summary .action.alert::before,
.form-error .action.alert::before,
.action.help-tip::before,
.cr input[type=checkbox]+label.action::before,
.cr input[type=radio]+label.action::before,
.dz-preview p.action[data-dz-remove],
.action.overlay-card::before,
.action#as-facebook::before,
.action#as-twitter::before,
.action#as-linkedin::before,
a.action {
  color: #80cfff;
}

.fa.secondary,
i.secondary,
.secondary#no-content::before,
#viewer-modal.modal-loading p.secondary::before,
.social-links a.secondary,
.search-meta a.secondary,
.search-meta span.secondary,
.pt-form label.secondary.custom::before,
#form-error-summary .secondary.alert::before,
.form-error .secondary.alert::before,
.secondary.help-tip::before,
.cr input[type=checkbox]+label.secondary::before,
.cr input[type=radio]+label.secondary::before,
.dz-preview p.secondary[data-dz-remove],
.secondary.overlay-card::before,
.secondary#as-facebook::before,
.secondary#as-twitter::before,
.secondary#as-linkedin::before,
a.secondary {
  color: teal;
}

.bigger {
  font-size: 150%;
}

.hidden,
#upload-form .url-field {
  display: none;
}

section {
  padding: 1rem 0;
}

.close-button {
  color: #ec5840 !important;
}

.close-button:hover {
  color: rgba(236,88,64,0.5) !important;
}

.input-group-label {
  background-color: inherit;
  border: 0;
  color: #80cfff;
  font-size: 2.5rem;
  padding-right: 20px;
  display: none;
}

@media print, screen and (min-width: 40em) {
  .input-group-label {
    display: table-cell;
  }
}

.has-tip {
  border: 0;
  cursor: pointer;
}

.tooltip {
  font-family: "Raleway";
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 9999;
  text-align: center;
}

.no-wrap,
.social-links {
  white-space: nowrap;
}

.alert {
  color: #ec5840;
  font-weight: 700;
}

.form-error-summary {
  display: none;
}

.is-invalid-input:not(:focus) {
  background-color: #fce6e2;
}

#user-dropdown {
  display: none;
}

#no-content {
  font-family: "Raleway";
  font-size: 2rem;
  text-align: center;
  padding: 5rem 0 3.75rem;
}

#no-content::before {
  content: '\f1ce';
  margin: 0 auto;
}

#no-content::after {
  content: 'Loading...';
  margin-left: 10px;
}

.wide-tip {
  max-width: 20rem !important;
}

.edocr-modal {
  display: none;
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  margin-top: 100px;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #000;
  background-color: rgba(0,0,0,0.4);
}

.edocr-modal-content {
  position: relative;
  background-color: teal;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 50%;
}

.edocr-modal-buttons {
  display: flex;
  justify-content: flex-end;
}

.edocr-modal-buttons a.button,
.edocr-modal-buttons a.btn-add-collection,
.edocr-modal-buttons .document-thumbnail a.action.owner-actions,
.document-thumbnail .edocr-modal-buttons a.action.owner-actions,
.edocr-modal-buttons .user-thumbnail a.action.owner-actions,
.user-thumbnail .edocr-modal-buttons a.action.owner-actions,
.edocr-modal-buttons .document-thumbnail a.view,
.document-thumbnail .edocr-modal-buttons a.view,
.edocr-modal-buttons .user-thumbnail a.view,
.user-thumbnail .edocr-modal-buttons a.view,
.edocr-modal-buttons a.btn-esign,
.edocr-modal-buttons a.btn-share,
.edocr-modal-buttons a.btn-embed,
.edocr-modal-buttons #restriction-form a.btn-purchase,
#restriction-form .edocr-modal-buttons a.btn-purchase,
.edocr-modal-buttons .pt-form a.cancel,
.pt-form .edocr-modal-buttons a.cancel,
.edocr-modal-buttons .pt-form .secondary-actions a.forgot-password,
.pt-form .secondary-actions .edocr-modal-buttons a.forgot-password,
.edocr-modal-buttons .secondary-actions .pt-form a.forgot-password,
.secondary-actions .pt-form .edocr-modal-buttons a.forgot-password,
.edocr-modal-buttons a.btn-subscribe,
.edocr-modal-buttons a.btn-unsubscribe,
.edocr-modal-buttons a.btn-unsubscribe-not-logged-in,
.edocr-modal-buttons #page-top a.btn-subscribe,
#page-top .edocr-modal-buttons a.btn-subscribe,
.edocr-modal-buttons #page-top a.btn-unsubscribe,
#page-top .edocr-modal-buttons a.btn-unsubscribe,
.edocr-modal-buttons #page-top a.btn-unsubscribe-not-logged-in,
#page-top .edocr-modal-buttons a.btn-unsubscribe-not-logged-in,
.edocr-modal-buttons a.btn-add-contributor,
.edocr-modal-buttons a.btn-save-contributor {
  margin-left: 10px;
}

.edocr-modal-close {
  color: #80cfff;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.edocr-modal-close:hover,
.edocr-modal-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.edocr-modal-header {
  padding: 0;
  background-color: teal;
  color: white;
}

.edocr-modal-body {
  padding: 2px 16px;
  color: white;
  background-color: teal;
}

.edocr-modal-footer {
  margin-top: 5px;
  padding: 2px 16px;
  background-color: teal;
  color: white;
}

#viewer-modal {
  position: fixed;
  min-height: 100%;
  z-index: 998;
}

#viewer-modal .loading {
  flex: 1;
  align-self: center;
  text-align: center;
  justify-content: center;
}

@media screen and (max-width: 63.9375em) {
  #viewer-modal {
    z-index: 999;
    padding: 0;
  }
}

#viewer-modal.modal-loading {
  display: flex !important;
  background-color: rgba(10,10,10,0.7);
  text-align: center;
  max-width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#viewer-modal.modal-loading p {
  text-align: center;
  color: #fefefe;
  font-family: "Raleway";
  font-size: 2rem;
  font-weight: 600;
  width: 100%;
}

#viewer-modal.modal-loading p::before {
  content: '\f1ce';
  margin-right: 10px;
}

#view-container {
  background-color: teal;
  color: #fefefe;
  max-width: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3.4375rem 0 0;
}

@media screen and (max-width: 63.9375em) {
  #view-container {
    padding: 0;
    z-index: 999;
  }
}

#view-container .close-button {
  font-size: 3.125rem;
  margin-top: 2.1875rem;
  color: #fefefe !important;
}

#view-container .close-button:hover {
  color: #80cfff !important;
}

#view-info-container {
  background-color: #fefefe;
  color: teal;
  padding-top: .5rem;
  overflow: scroll;
  height: calc(100% - 67px);
}

@media print, screen and (min-width: 64em) {
  #view-info-container {
    padding-left: 2rem;
    position: relative;
  }
}

@media screen and (max-width: 63.9375em) {
  #view-info-container {
    width: 350px;
    position: absolute;
    right: -320px;
    box-shadow: 1px 1px 20px 0 #0a0a0a;
    padding-left: 2rem;
    z-index: 3;
  }
}

@media screen and (max-width: 63.9375em) and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  #view-info-container {
    margin-top: 4rem;
  }
}

#view-info-container img,
#view-info-container-small img {
  max-height: 300px;
}

#infoCollapseBtn {
  width: 20px;
}

@media screen and (max-width: 63.9375em) {
  #infoCollapseBtn {
    display: none;
  }
}

#infoCollapseBtn #infoCollapseIcon {
  left: 0;
}

#infoSlideBtn {
  width: 20px;
}

@media print, screen and (min-width: 64em) {
  #infoSlideBtn {
    display: none;
  }
}

#infoSlideBtn #infoSlideIcon {
  left: 0;
}

@media screen and (max-width: 63.9375em) {
  #info-expand-tab {
    position: absolute;
    left: .25rem;
    height: 100%;
  }

  #info-expand-tab button {
    height: 100%;
  }

  #info-expand-tab button i {
    position: absolute;
    top: 0;
  }
}

@media print, screen and (min-width: 64em) {
  #info-expand-tab {
    position: absolute;
    left: .25rem;
    height: 100%;
  }

  #info-expand-tab button {
    height: 100%;
  }

  #info-expand-tab button i {
    position: absolute;
    top: 0;
  }
}

#tag-cloud {
  list-style: none;
  margin-left: 0;
}

#tag-cloud li,
#tag-cloud h4,
#tag-cloud h3,
#tag-cloud h2,
#tag-cloud .pt-form.centered fieldset legend,
.pt-form.centered fieldset #tag-cloud legend {
  display: inline;
  font-size: 1rem;
  font-family: "Raleway";
}

.tag-cloud-link {
  padding-right: .75rem;
}

#viewer-title-container {
  align-items: center;
}

@media screen and (min-width: 64em) {
  #viewer-title-container.image-padding {
    padding-left: 160px;
  }
}

#viewer-title-container h3 {
  margin-bottom: .1rem;
  margin-right: 2rem;
}

@media screen and (max-width: 63.9375em) {
  #viewer-title-container {
    padding: .5rem 1rem;
  }

  #viewer-title-container .close-button {
    margin: 0;
  }
}

.btn-like {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: rgba(0,0,0,0);
  color: #fefefe;
  font-size: inherit;
  padding: 0;
  color: #80cfff;
}

[data-whatinput='mouse'] .btn-like {
  outline: 0;
}

.btn-like:hover,
.btn-like:focus {
  background-color: rgba(0,0,0,0);
  color: #fefefe;
}

.btn-refresh {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: rgba(0,0,0,0);
  color: #fefefe;
  font-size: inherit;
  padding: 0;
  color: #80cfff;
}

[data-whatinput='mouse'] .btn-refresh {
  outline: 0;
}

.btn-refresh:hover,
.btn-refresh:focus {
  background-color: rgba(0,0,0,0);
  color: #fefefe;
}

#viewer-details {
  font-size: .8rem;
  margin-bottom: .5rem;
}

@media screen and (max-width: 63.9375em) {
  #viewer-details {
    margin-bottom: 0;
  }
}

#view-comments .input-group-label {
  display: none;
}

.comment {
  word-break: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  background-color: #e6e6e6;
  margin: .5rem 0;
  padding: .5rem;
}

.comment h6 {
  margin-bottom: 0;
}

#btn-submit-comment {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #80cfff;
  color: #fefefe;
  height: 50px;
}

[data-whatinput='mouse'] #btn-submit-comment {
  outline: 0;
}

#btn-submit-comment:hover,
#btn-submit-comment:focus {
  background-color: #47b9ff;
  color: #fefefe;
}

.btn-delete-comment {
  color: #ec5840;
}

#refresh-modal,
#annotations-modal {
  background-color: teal;
  color: #fefefe;
}

.hexagon {
  position: relative;
  height: 100px;
  width: 100px;
  background: teal;
  opacity: 0.6;
}

.hexagon:before,
.double:after {
  position: absolute;
  content: '';
}

.hexagon:before {
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  width: calc(100% - 8px);
  background: white;
}

.hexagon,
.hexagon:before,
.double:after {
  -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.hexagon {
  display: inline-block;
  margin: 20px;
}

.hextext {
  font-family: "MuseoSlab","Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;
}

.hexlabel {
  font-family: "MuseoSlab","Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;
  font-weight: bold;
}

#global-header {
  transition: all 0.5s ease;
  max-width: 100%;
  background-color: teal;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 999;
  border-bottom: 2px dotted rgba(254,254,254,0.4);
}

#global-header .mobileMenu {
  align-items: center;
  display: flex;
  justify-content: flex-start;
}

#global-header .mobileMenu .menu-icon::after {
  transition: all 0.5s ease;
}

#global-header .mobileMenu .menu-icon:hover::after {
  box-shadow: 0 7px 0 #80cfff,0 14px 0 #80cfff;
  background-color: #80cfff;
}

#nav {
  max-width: 100%;
}

#nav .logo img {
  height: 3.2rem;
  padding: 0.5rem 0;
  width: auto;
}

#nav.expandSearch .searchInput {
  background-color: #009a9a;
  width: 100%;
  opacity: 1;
  font-family: "Raleway";
}

.menuBar .menu a,
.menuBar .menu button,
.utilities .menu a,
.utilities .menu button {
  padding: 1rem;
  color: #fefefe;
  font-weight: 600;
  line-height: 1rem;
}

@media screen and (max-width: 63.9375em) {
  .menuBar .menu a,
  .menuBar .menu button,
  .utilities .menu a,
  .utilities .menu button {
    position: relative;
    padding: 1rem 0.5rem;
  }
}

#siteSearchForm>form {
  visibility: hidden;
  max-height: 30px;
  padding: 0.5rem;
}

#nav.expandSearch>#site-nav>div>#siteSearchForm>form {
  visibility: visible;
}

.searchInput {
  color: #fefefe;
  height: 30px;
}

.menuBar {
  position: relative;
}

.menuBar .searchInput {
  border: 0;
  top: -.25rem;
  background-color: teal;
  color: #fefefe;
  padding: 0.5rem;
  width: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: width 0.5s, opacity 0.5s ease-out, padding-left 0.5s, padding-right 0.5s;
}

.menuBar .doSearch {
  display: none;
  color: #fefefe;
}

.searchBar {
  color: #fefefe;
  transition: max-width 1s;
}

.searchBar .menu a,
.searchBar .menu button {
  padding: 0.5rem !important;
}

.searchBar .searchButton {
  transition: all 0.5s ease;
  color: white;
}

.searchBar .searchButton:hover {
  color: #fe9a00;
}

.utilities {
  padding: 0;
}

.utilities .menu {
  width: auto;
}

.utilities .menu.signInUp {
  padding-right: 1rem;
}

@media screen and (max-width: 39.9375em) {
  .utilities .menu.signInUp {
    padding-right: 0;
  }
}

.is-accordion-submenu-parent {
  padding-right: 1.5rem;
}

@media screen and (max-width: 39.9375em) {
  .is-accordion-submenu-parent {
    padding-right: 1rem;
  }
}

.is-accordion-submenu-parent>a::after {
  right: 0;
  border-color: #80cfff transparent transparent;
}

.is-accordion-submenu-parent[aria-expanded='true'] {
  background-color: #00b3b3;
}

.is-accordion-submenu-parent[aria-expanded='true']>a::after {
  transform-origin: 50% 25%;
  transform: scaleY(-1);
}

#profile-trigger {
  padding: 0.5rem !important;
  width: auto;
}

#profile-trigger .profile-badge {
  border: 1px solid rgba(0,128,128,0.5);
}

#profile-trigger .profile-name {
  padding: 0 0.75rem;
}

@media screen and (max-width: 39.9375em) {
  #user-trigger {
    padding: 1rem 0.5rem !important;
  }
}

@media screen and (max-width: 63.9375em) {
  #profile-trigger,
  #user-trigger {
    top: 0;
  }
}

#profile-menu .profile-badge {
  max-width: 2.25rem;
  min-width: 2.25rem;
  height: 2.25rem;
  width: 2.25rem;
}

#profile-menu .profile-badge .profile-letter {
  font-size: 1.125rem;
}

#profile-menu .profile-name {
  display: flex;
  align-items: center;
  width: calc(100% - 2.25rem);
}

#profile-menu,
#user-menu {
  position: relative;
  padding: 0;
  width: auto;
  transition: 0.1s linear all;
}

#profile-menu li:hover,
#user-menu li:hover {
  background-color: rgba(0,179,179,0.5);
}

#profile-dropdown {
  max-width: 180%;
}

#user-dropdown,
#profile-dropdown {
  background-color: #00b3b3;
  padding: 0;
  right: 0;
  margin: 0;
  min-width: 18rem;
  width: auto;
}

@media screen and (max-width: 63.9375em) {
  #user-dropdown,
  #profile-dropdown {
    min-width: 12rem;
  }
}

#user-dropdown li.premium-link a,
#profile-dropdown li.premium-link a {
  background-color: #fe9a00;
}

#user-dropdown li.premium-link a:hover,
#profile-dropdown li.premium-link a:hover {
  background-color: #ffb84c;
}

#user-dropdown a,
#profile-dropdown a {
  border-bottom: 1px solid rgba(254,254,254,0.15);
  color: #fefefe;
  padding: 1rem;
  background-color: #00b3b3;
}

#user-dropdown a.contributor-select,
#profile-dropdown a.contributor-select {
  padding: .5rem;
  display: flex;
  align-items: center;
}

#user-dropdown a.contributor-select .profile-name,
#profile-dropdown a.contributor-select .profile-name {
  padding-left: .5rem;
}

#user-dropdown a.contributor-select .profile-name .label,
#profile-dropdown a.contributor-select .profile-name .label {
  background: #7da1b2;
  margin-left: .5rem;
}

@media screen and (max-width: 39.9375em) {
  #user-dropdown a,
  #profile-dropdown a {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
}

#user-dropdown a:hover,
#profile-dropdown a:hover {
  color: #fefefe !important;
  background-color: #01ffff;
}

#user-dropdown a.disabled,
#profile-dropdown a.disabled {
  color: rgba(254,254,254,0.4);
}

#user-dropdown a.disabled.premium-feature,
#profile-dropdown a.disabled.premium-feature {
  justify-content: space-between;
  align-items: center;
}

#user-dropdown a.disabled.premium-feature .title,
#profile-dropdown a.disabled.premium-feature .title {
  padding-right: 1rem;
}

#user-dropdown a.disabled:hover,
#profile-dropdown a.disabled:hover {
  color: rgba(254,254,254,0.4) !important;
  background-color: #00cdcd;
}

#user-dropdown li:last-child a,
#profile-dropdown li:last-child a {
  border: 0;
}

#user-dropdown li .none-found,
#profile-dropdown li .none-found {
  padding: .5rem;
  color: rgba(254,254,254,0.5);
}

.off-canvas a {
  color: #fefefe;
  font-weight: normal !important;
  margin: 0 1rem;
}

.off-canvas.position-right {
  z-index: 9999;
  padding-top: 3rem;
  right: -250px;
  width: 250px;
  height: 100%;
  background-color: teal;
  color: #fefefe;
}

.off-canvas .menuBar {
  background-color: teal;
  margin-top: 50px;
}

.off-canvas .menuBar .searchInput {
  background-color: #009a9a;
  opacity: 1;
  position: relative;
  width: 100%;
  top: 0;
  padding: .5rem 1.5rem .5rem .5rem;
}

.off-canvas .doSearch {
  display: block;
  position: absolute;
  bottom: 10px;
  right: 18px;
}

.off-canvas .searchBar {
  display: none;
}

.js-off-canvas-exit {
  z-index: 999;
}

#offCanvasRight {
  background-color: teal;
}

.eet {
  position: fixed;
  bottom: 0;
  right: -200px;
  width: 200px;
  height: 207px;
  background-image: url("fonts/2FEE0B_T_0.eot");
}

#signin-providers {
  list-style: none;
  margin-bottom: 0;
}

#signin-providers li {
  font-size: 3rem;
}

#signin-providers a {
  color: #00e6e6;
}

#signin-providers a:hover {
  color: #80cfff;
}

.g-signin2 {
  margin-top: 15px;
  margin-right: 15px;
}

.g-signin2 span {
  display: inline-block;
}

#signin-form legend {
  display: none;
}

.auth-container {
  max-width: 960px;
  margin: 0 auto;
}

#captcha,
#accountCaptcha {
  margin-left: 95px;
  margin-bottom: 15px;
}

.secondary-actions a,
.secondary-actions button {
  padding-right: 0 !important;
}

.secondary-actions a.forgot-password,
.secondary-actions a.forgot-password,
.secondary-actions .cancel {
  border: 0 !important;
}

.secondary-actions a.create-account {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  border: 1px solid #80cfff;
  color: #80cfff;
  border: 0;
}

[data-whatinput='mouse'] .secondary-actions a.create-account {
  outline: 0;
}

.secondary-actions a.create-account,
.secondary-actions a.create-account:hover,
.secondary-actions a.create-account:focus {
  background-color: transparent;
}

.secondary-actions a.create-account:hover,
.secondary-actions a.create-account:focus {
  border-color: #0077c0;
  color: #0077c0;
}

.authButtonAlign {
  margin-left: 1rem;
}

.disclaimer {
  font-family: "MuseoSlab";
  font-size: .7rem;
  font-weight: 400;
  text-align: center;
  margin-top: 20px;
}

#social-processing p {
  font-size: 2rem;
  font-weight: 500;
  margin: 0 auto;
}

.account-header {
  padding: 1.875rem 1.25rem 1.25rem;
  width: 100%;
}

.account-header section {
  text-align: center;
}

.account-header .welcome-content {
  text-align: left;
}

.account-header h1 {
  color: #80cfff;
  font-family: "Raleway";
  font-size: 2rem;
  font-weight: 500;
  padding: .5rem 0;
  text-align: center;
}

.account-header a {
  background-color: #80cfff;
  color: teal;
  font-size: 1.5rem;
}

.account-header a:hover {
  background-color: #b3e2ff;
  color: teal;
}

.account-header a.cancel,
.account-header .secondary-actions a.forgot-password,
.secondary-actions .account-header a.forgot-password {
  background-color: inherit;
  color: #fe9a00;
  font-size: 1rem;
}

.welcome-user {
  color: #fe9a00;
  padding: .625rem 0;
}

.welcome-user i {
  font-size: 4rem;
}

.welcome-user p {
  font-size: 3rem;
}

footer {
  background-color: teal;
  color: #fefefe;
  margin-top: 1rem;
  height: 120px;
  padding: 1rem;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.action-bar,
.footer-nav {
  margin: 0 auto;
}

.action-bar {
  border-bottom: .125rem dotted #fefefe;
  padding-bottom: .625rem;
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 39.9375em) {
  .action-bar {
    display: none;
  }
}

.social-links {
  margin-top: 15px;
  text-align: center;
}

.social-links a {
  transition: all 0.5s ease;
  color: #fefefe;
  margin: 0 5px;
}

@media screen and (max-width: 63.9375em) {
  .nav-links {
    text-align: center;
  }
}

.nav-links a {
  transition: all 0.5s ease;
  color: #fefefe;
  font-weight: 700;
  font-size: 0.8rem;
  white-space: nowrap;
}

@media screen and (max-width: 39.9375em) {
  .nav-links a {
    padding: 0.5rem;
  }
}

.nav-links a:hover {
  color: #fe9a00;
}

.copyright {
  margin-top: 7px;
  text-align: right;
  font-size: 0.6rem;
}

.copyright a {
  display: block;
  margin-bottom: 10px;
}

.copyright img {
  width: 150px;
  max-width: 100%;
}

#page-top-wrap {
  margin-top: 0;
  margin-bottom: 0 !important;
  padding: 3.25rem 0 0;
  background-color: teal;
  overflow: hidden;
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
  color: #fefefe;
}

#page-top {
  margin: 0 auto;
  min-width: 100%;
  max-width: 100%;
}

.upload-cta {
  padding-top: 1rem;
}

@media screen and (max-width: 39.9375em) {
  .upload-cta {
    padding-top: 0;
  }
}

.faq-lower-image {
  max-width: 500px;
  margin: 0 auto;
}

@media screen and (max-width: 63.9375em) {
  .faq-lower-image {
    display: none;
  }
}

.login-cta {
  margin-top: 2rem;
  max-width: 100%;
}

.login-cta .btn-login,
.login-cta .btn-sign-up,
.login-cta .btn-forgot,
.login-cta .btn-profile {
  font-family: "Raleway";
  transition: all .5s ease;
  display: block;
  font-weight: 600;
}

.login-cta .welcome-back-msg {
  font-size: 1.25rem;
}

.login-cta .btn-login {
  font-size: 1.5rem;
}

.login-cta .btn-login,
.login-cta .btn-profile {
  color: #80cfff;
  padding: 0;
  color: #fe9a00;
}

.login-cta .btn-login:hover,
.login-cta .btn-profile:hover {
  color: #d88300;
}

.login-cta .btn-sign-up {
  font-size: 1.5rem;
  color: #fe9a00;
  padding: 0;
}

.login-cta .btn-sign-up:hover {
  color: #d8d8d8;
}

.login-cta .btn-forgot {
  font-size: small;
  color: #fefefe;
  padding: 0;
}

.login-cta .btn-forgot:hover {
  color: #d8d8d8;
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .login-cta {
    margin-top: 1rem;
  }

  .login-cta p {
    margin-bottom: 0;
  }
}

.faq-content {
  margin: 0 auto !important;
  max-width: 960px;
}

.faq-content .premium-feature-list {
  list-style: none;
  direction: rtl;
}

.faq-content .premium-feature-list li::before {
  margin-left: .5em;
  content: '✔';
  color: #fe9a00;
}

.faq-content .premium-feature-list li {
  position: relative;
  text-indent: -1.5em;
  padding: .33333rem;
}

.faq-content .row,
.faq-content #social-view-row,
.faq-content #embed-wrapper .codeblock,
#embed-wrapper .faq-content .codeblock {
  margin-left: 5px;
  margin-right: 5px;
}

.faq-content .columns,
.faq-content #signin-providers li,
#signin-providers .faq-content li,
.faq-content #social-processing p,
#social-processing .faq-content p,
.faq-content .teaser,
.faq-content .faqs,
.faq-content .document-group .description,
.document-group .faq-content .description,
.faq-content .pt-form .icon,
.pt-form .faq-content .icon,
.faq-content .pt-form .accordion-item,
.pt-form .faq-content .accordion-item,
.faq-content .pt-form .accordion-title,
.pt-form .faq-content .accordion-title,
.faq-content .profile-action,
.faq-content .subscription {
  padding: 2rem 2rem 1rem 1rem;
  border-left: 2px dotted rgba(254,254,254,0.4);
}

@media screen and (max-width: 63.9375em) {
  .faq-content .columns,
  .faq-content #signin-providers li,
  #signin-providers .faq-content li,
  .faq-content #social-processing p,
  #social-processing .faq-content p,
  .faq-content .teaser,
  .faq-content .faqs,
  .faq-content .document-group .description,
  .document-group .faq-content .description,
  .faq-content .pt-form .icon,
  .pt-form .faq-content .icon,
  .faq-content .pt-form .accordion-item,
  .pt-form .faq-content .accordion-item,
  .faq-content .pt-form .accordion-title,
  .pt-form .faq-content .accordion-title,
  .faq-content .profile-action,
  .faq-content .subscription {
    padding: 1rem;
  }
}

.faq-content .columns:first-child,
.faq-content #signin-providers li:first-child,
#signin-providers .faq-content li:first-child,
.faq-content #social-processing p:first-child,
#social-processing .faq-content p:first-child,
.faq-content .teaser:first-child,
.faq-content .faqs:first-child,
.faq-content .document-group .description:first-child,
.document-group .faq-content .description:first-child,
.faq-content .pt-form .icon:first-child,
.pt-form .faq-content .icon:first-child,
.faq-content .pt-form .accordion-item:first-child,
.pt-form .faq-content .accordion-item:first-child,
.faq-content .pt-form .accordion-title:first-child,
.pt-form .faq-content .accordion-title:first-child,
.faq-content .profile-action:first-child,
.faq-content .subscription:first-child {
  border-left: 0;
}

.teaser {
  min-height: 255px;
  text-align: justify;
}

@media screen and (max-width: 39.9375em) {
  .teaser {
    min-height: 0;
  }
}

.teaser a {
  text-decoration: underline;
}

.teaser h2,
.teaser .pt-form.centered fieldset legend,
.pt-form.centered fieldset .teaser legend,
.teaser h3 {
  font-weight: bold;
  color: #fe9a00;
}

.teaser b {
  color: #fe9a00;
}

.teaser ul {
  list-style: none;
}

.teaser ul li::before {
  content: '✔';
  color: #fe9a00;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

#nowserving {
  float: right;
  color: white;
  font-weight: bold;
  font-size: small;
  background: #83BC6F;
  padding: 10px;
  border-radius: 10px;
}

@media only screen and (max-width: 1024px) {
  #nowserving {
    display: none;
  }
}

@media screen and (max-width: 1225px) {
  #nowserving-hero {
    display: none;
  }
}

#blurb {
  font-weight: bold;
}

@media screen and (max-width: 600px) {
  #blurb a {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  p.blurb-body1 {
    display: none;
  }
}

@media screen and (max-width: 900px) {
  p.blurb-body3 {
    display: none;
  }
}

@media screen and (max-width: 1050px) {
  p.blurb-stats {
    display: none;
  }
}

@media screen and (max-width: 1150px) {
  p.blurb-body2 {
    display: none;
  }
}

div.full-article {
  display: none;
}

div.full-article ul {
  list-style-type: none;
}

div.full-article ul i {
  width: 3rem;
}

.tabs-title.is-active i,
.faqs .active i {
  color: #fe9a00;
}

.nobullets li {
  list-style-type: none;
}

.faqs ul {
  list-style-type: none;
  margin: 0;
}

.faqs li {
  list-style-type: none;
}

.faqs i {
  color: rgba(254,254,254,0.5);
  margin-right: 1rem;
  transition: all 0.5s ease;
}

.faqs a,
.faqs button {
  display: block;
  color: #fefefe;
  padding: .5rem;
}

.faqs a:hover,
.faqs button:hover {
  color: #fe9a00;
  font-weight: bold;
}

.faqs a.active-faq {
  font-weight: bold;
}

.faqs .faq-collapse,
.faqs .faq-expand {
  float: right;
  color: #fe9a00;
}

.faqs .faq-collapse:hover,
.faqs .faq-expand:hover {
  color: #d88300;
}

.faqs .more-faqs,
.faqs .faq-collapse {
  display: none;
}

.faqs.show-all .more-faqs,
.faqs.show-all .faq-collapse {
  display: block;
}

.faqs.show-all .faq-expand {
  display: none;
}

#new-collection-area {
  margin-top: 3rem;
}

#new-collection-area .btn-publish {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #fe9a00;
  color: #fefefe;
  margin: 0 0.7rem 0 0;
}

[data-whatinput='mouse'] #new-collection-area .btn-publish {
  outline: 0;
}

#new-collection-area .btn-publish:hover,
#new-collection-area .btn-publish:focus {
  background-color: #d88300;
  color: #fefefe;
}

#new-collection-area .btn-add-password {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  border: 1px solid #fe9a00;
  color: #fe9a00;
  margin: 0 0.7rem 0 0;
}

[data-whatinput='mouse'] #new-collection-area .btn-add-password {
  outline: 0;
}

#new-collection-area .btn-add-password,
#new-collection-area .btn-add-password:hover,
#new-collection-area .btn-add-password:focus {
  background-color: transparent;
}

#new-collection-area .btn-add-password:hover,
#new-collection-area .btn-add-password:focus {
  border-color: #7f4d00;
  color: #7f4d00;
}

.btn-add-collection {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  border: 1px solid #8a8a8a;
  color: #8a8a8a;
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  font-size: 1.5rem;
  border: 2px dotted;
}

[data-whatinput='mouse'] .btn-add-collection {
  outline: 0;
}

.btn-add-collection,
.btn-add-collection:hover,
.btn-add-collection:focus {
  background-color: transparent;
}

.btn-add-collection:hover,
.btn-add-collection:focus {
  border-color: #454545;
  color: #454545;
}

#content {
  background-color: #fefefe;
  margin: 0;
  padding-top: 1rem;
  min-height: 200px;
}

.document-group {
  position: relative;
}

.document-group .title,
.document-group .title .fa-fw,
.document-group .title i {
  font-size: 1.5625rem;
}

.document-group .title .fa,
.document-group .title i,
.document-group .title #no-content::before,
.document-group .title #viewer-modal.modal-loading p::before,
#viewer-modal.modal-loading .document-group .title p::before,
.document-group .title .social-links a,
.social-links .document-group .title a,
.document-group .title .search-meta a,
.search-meta .document-group .title a,
.document-group .title .search-meta span,
.search-meta .document-group .title span,
.document-group .title .pt-form label.custom::before,
.pt-form .document-group .title label.custom::before,
.document-group .title #form-error-summary .alert::before,
#form-error-summary .document-group .title .alert::before,
.document-group .title .form-error .alert::before,
.form-error .document-group .title .alert::before,
.document-group .title .help-tip::before,
.document-group .title .cr input[type=checkbox]+label::before,
.cr .document-group .title input[type=checkbox]+label::before,
.document-group .title .cr input[type=radio]+label::before,
.cr .document-group .title input[type=radio]+label::before,
.document-group .title .dz-preview p[data-dz-remove],
.dz-preview .document-group .title p[data-dz-remove],
.document-group .title .overlay-card::before,
.document-group .title #as-facebook::before,
.document-group .title #as-twitter::before,
.document-group .title #as-linkedin::before,
.document-group .title .fa-fw .fa,
.document-group .title i .fa,
.document-group .title .fa-fw i,
.document-group .title i i,
.document-group .title .fa-fw #no-content::before,
.document-group .title i #no-content::before,
.document-group .title .fa-fw #viewer-modal.modal-loading p::before,
#viewer-modal.modal-loading .document-group .title .fa-fw p::before,
.document-group .title i #viewer-modal.modal-loading p::before,
#viewer-modal.modal-loading .document-group .title i p::before,
.document-group .title .fa-fw .social-links a,
.social-links .document-group .title .fa-fw a,
.document-group .title i .social-links a,
.social-links .document-group .title i a,
.document-group .title .fa-fw .search-meta a,
.search-meta .document-group .title .fa-fw a,
.document-group .title i .search-meta a,
.search-meta .document-group .title i a,
.document-group .title .fa-fw .search-meta span,
.search-meta .document-group .title .fa-fw span,
.document-group .title i .search-meta span,
.search-meta .document-group .title i span,
.document-group .title .fa-fw .pt-form label.custom::before,
.pt-form .document-group .title .fa-fw label.custom::before,
.document-group .title i .pt-form label.custom::before,
.pt-form .document-group .title i label.custom::before,
.document-group .title .fa-fw #form-error-summary .alert::before,
#form-error-summary .document-group .title .fa-fw .alert::before,
.document-group .title i #form-error-summary .alert::before,
#form-error-summary .document-group .title i .alert::before,
.document-group .title .fa-fw .form-error .alert::before,
.form-error .document-group .title .fa-fw .alert::before,
.document-group .title i .form-error .alert::before,
.form-error .document-group .title i .alert::before,
.document-group .title .fa-fw .help-tip::before,
.document-group .title i .help-tip::before,
.document-group .title .fa-fw .cr input[type=checkbox]+label::before,
.cr .document-group .title .fa-fw input[type=checkbox]+label::before,
.document-group .title i .cr input[type=checkbox]+label::before,
.cr .document-group .title i input[type=checkbox]+label::before,
.document-group .title .fa-fw .cr input[type=radio]+label::before,
.cr .document-group .title .fa-fw input[type=radio]+label::before,
.document-group .title i .cr input[type=radio]+label::before,
.cr .document-group .title i input[type=radio]+label::before,
.document-group .title .fa-fw .dz-preview p[data-dz-remove],
.dz-preview .document-group .title .fa-fw p[data-dz-remove],
.document-group .title i .dz-preview p[data-dz-remove],
.dz-preview .document-group .title i p[data-dz-remove],
.document-group .title .fa-fw .overlay-card::before,
.document-group .title i .overlay-card::before,
.document-group .title .fa-fw #as-facebook::before,
.document-group .title i #as-facebook::before,
.document-group .title .fa-fw #as-twitter::before,
.document-group .title i #as-twitter::before,
.document-group .title .fa-fw #as-linkedin::before,
.document-group .title i #as-linkedin::before {
  color: #fe9a00;
}

.document-group .fa,
.document-group i,
.document-group #no-content::before,
.document-group #viewer-modal.modal-loading p::before,
#viewer-modal.modal-loading .document-group p::before,
.document-group .social-links a,
.social-links .document-group a,
.document-group .search-meta a,
.search-meta .document-group a,
.document-group .search-meta span,
.search-meta .document-group span,
.document-group .pt-form label.custom::before,
.pt-form .document-group label.custom::before,
.document-group #form-error-summary .alert::before,
#form-error-summary .document-group .alert::before,
.document-group .form-error .alert::before,
.form-error .document-group .alert::before,
.document-group .help-tip::before,
.document-group .cr input[type=checkbox]+label::before,
.cr .document-group input[type=checkbox]+label::before,
.document-group .cr input[type=radio]+label::before,
.cr .document-group input[type=radio]+label::before,
.document-group .dz-preview p[data-dz-remove],
.dz-preview .document-group p[data-dz-remove],
.document-group .overlay-card::before,
.document-group #as-facebook::before,
.document-group #as-twitter::before,
.document-group #as-linkedin::before {
  color: #78bcb3;
  margin: 0;
}

.document-group a {
  color: #78bcb3;
}

.document-group .dropdown-pane {
  font-size: 1rem !important;
  padding: 0;
  list-style: none;
  width: auto;
}

.document-group .dropdown-pane a {
  display: inline-block;
}

.document-group .dropdown-pane a i {
  color: #80cfff;
}

.document-group .dropdown-pane.is-open * {
  visibility: visible;
}

.document-group .dropdown-pane * {
  visibility: hidden;
}

.document-group .dropdown-pane a,
.document-group .dropdown-pane button {
  cursor: pointer;
  color: #fefefe;
  width: 200px;
  padding: 0.5rem 0;
  margin: 0 0.5rem;
  text-align: left;
}

.document-group .dropdown-pane a i,
.document-group .dropdown-pane button i {
  margin: 0;
}

.document-group .collection-controls {
  display: flex;
}

.document-group .collection-controls>.fa,
.document-group .collection-controls>i,
.document-group .collection-controls>#no-content::before,
.document-group #viewer-modal.modal-loading .collection-controls>p::before,
#viewer-modal.modal-loading .document-group .collection-controls>p::before,
.document-group .social-links .collection-controls>a,
.social-links .document-group .collection-controls>a,
.document-group .search-meta .collection-controls>a,
.search-meta .document-group .collection-controls>a,
.document-group .search-meta .collection-controls>span,
.search-meta .document-group .collection-controls>span,
.document-group .pt-form .collection-controls>label.custom::before,
.pt-form .document-group .collection-controls>label.custom::before,
.document-group #form-error-summary .collection-controls>.alert::before,
#form-error-summary .document-group .collection-controls>.alert::before,
.document-group .form-error .collection-controls>.alert::before,
.form-error .document-group .collection-controls>.alert::before,
.document-group .collection-controls>.help-tip::before,
.document-group .cr .collection-controls>input[type=checkbox]+label::before,
.cr .document-group .collection-controls>input[type=checkbox]+label::before,
.document-group .cr .collection-controls>input[type=radio]+label::before,
.cr .document-group .collection-controls>input[type=radio]+label::before,
.document-group .dz-preview .collection-controls>p[data-dz-remove],
.dz-preview .document-group .collection-controls>p[data-dz-remove],
.document-group .collection-controls>.overlay-card::before,
.document-group .collection-controls>#as-facebook::before,
.document-group .collection-controls>#as-twitter::before,
.document-group .collection-controls>#as-linkedin::before {
  transition: all 0.5s ease;
}

.document-group .btn-delete-collection>.fa,
.document-group .btn-delete-collection>i,
.document-group .btn-delete-collection>#no-content::before,
.document-group #viewer-modal.modal-loading .btn-delete-collection>p::before,
#viewer-modal.modal-loading .document-group .btn-delete-collection>p::before,
.document-group .social-links .btn-delete-collection>a,
.social-links .document-group .btn-delete-collection>a,
.document-group .search-meta .btn-delete-collection>a,
.search-meta .document-group .btn-delete-collection>a,
.document-group .search-meta .btn-delete-collection>span,
.search-meta .document-group .btn-delete-collection>span,
.document-group .pt-form .btn-delete-collection>label.custom::before,
.pt-form .document-group .btn-delete-collection>label.custom::before,
.document-group #form-error-summary .btn-delete-collection>.alert::before,
#form-error-summary .document-group .btn-delete-collection>.alert::before,
.document-group .form-error .btn-delete-collection>.alert::before,
.form-error .document-group .btn-delete-collection>.alert::before,
.document-group .btn-delete-collection>.help-tip::before,
.document-group .cr .btn-delete-collection>input[type=checkbox]+label::before,
.cr .document-group .btn-delete-collection>input[type=checkbox]+label::before,
.document-group .cr .btn-delete-collection>input[type=radio]+label::before,
.cr .document-group .btn-delete-collection>input[type=radio]+label::before,
.document-group .dz-preview .btn-delete-collection>p[data-dz-remove],
.dz-preview .document-group .btn-delete-collection>p[data-dz-remove],
.document-group .btn-delete-collection>.overlay-card::before,
.document-group .btn-delete-collection>#as-facebook::before,
.document-group .btn-delete-collection>#as-twitter::before,
.document-group .btn-delete-collection>#as-linkedin::before {
  color: #ec5840;
}

.document-group .btn-delete-collection>.fa:hover,
.document-group .btn-delete-collection>i:hover,
.document-group .btn-delete-collection>#no-content:hover::before,
.document-group #viewer-modal.modal-loading .btn-delete-collection>p:hover::before,
#viewer-modal.modal-loading .document-group .btn-delete-collection>p:hover::before,
.document-group .social-links .btn-delete-collection>a:hover,
.social-links .document-group .btn-delete-collection>a:hover,
.document-group .search-meta .btn-delete-collection>a:hover,
.search-meta .document-group .btn-delete-collection>a:hover,
.document-group .search-meta .btn-delete-collection>span:hover,
.search-meta .document-group .btn-delete-collection>span:hover,
.document-group .pt-form .btn-delete-collection>label.custom:hover::before,
.pt-form .document-group .btn-delete-collection>label.custom:hover::before,
.document-group #form-error-summary .btn-delete-collection>.alert:hover::before,
#form-error-summary .document-group .btn-delete-collection>.alert:hover::before,
.document-group .form-error .btn-delete-collection>.alert:hover::before,
.form-error .document-group .btn-delete-collection>.alert:hover::before,
.document-group .btn-delete-collection>.help-tip:hover::before,
.document-group .cr .btn-delete-collection>input[type=checkbox]+label:hover::before,
.cr .document-group .btn-delete-collection>input[type=checkbox]+label:hover::before,
.document-group .cr .btn-delete-collection>input[type=radio]+label:hover::before,
.cr .document-group .btn-delete-collection>input[type=radio]+label:hover::before,
.document-group .dz-preview .btn-delete-collection>p:hover[data-dz-remove],
.dz-preview .document-group .btn-delete-collection>p:hover[data-dz-remove],
.document-group .btn-delete-collection>.overlay-card:hover::before,
.document-group .btn-delete-collection>#as-facebook:hover::before,
.document-group .btn-delete-collection>#as-twitter:hover::before,
.document-group .btn-delete-collection>#as-linkedin:hover::before {
  color: #cb2e14;
}

.document-group .btn-edit-collection>.fa,
.document-group .btn-edit-collection>i,
.document-group .btn-edit-collection>#no-content::before,
.document-group #viewer-modal.modal-loading .btn-edit-collection>p::before,
#viewer-modal.modal-loading .document-group .btn-edit-collection>p::before,
.document-group .social-links .btn-edit-collection>a,
.social-links .document-group .btn-edit-collection>a,
.document-group .search-meta .btn-edit-collection>a,
.search-meta .document-group .btn-edit-collection>a,
.document-group .search-meta .btn-edit-collection>span,
.search-meta .document-group .btn-edit-collection>span,
.document-group .pt-form .btn-edit-collection>label.custom::before,
.pt-form .document-group .btn-edit-collection>label.custom::before,
.document-group #form-error-summary .btn-edit-collection>.alert::before,
#form-error-summary .document-group .btn-edit-collection>.alert::before,
.document-group .form-error .btn-edit-collection>.alert::before,
.form-error .document-group .btn-edit-collection>.alert::before,
.document-group .btn-edit-collection>.help-tip::before,
.document-group .cr .btn-edit-collection>input[type=checkbox]+label::before,
.cr .document-group .btn-edit-collection>input[type=checkbox]+label::before,
.document-group .cr .btn-edit-collection>input[type=radio]+label::before,
.cr .document-group .btn-edit-collection>input[type=radio]+label::before,
.document-group .dz-preview .btn-edit-collection>p[data-dz-remove],
.dz-preview .document-group .btn-edit-collection>p[data-dz-remove],
.document-group .btn-edit-collection>.overlay-card::before,
.document-group .btn-edit-collection>#as-facebook::before,
.document-group .btn-edit-collection>#as-twitter::before,
.document-group .btn-edit-collection>#as-linkedin::before {
  color: #fe9a00;
}

.document-group .btn-edit-collection>.fa:hover,
.document-group .btn-edit-collection>i:hover,
.document-group .btn-edit-collection>#no-content:hover::before,
.document-group #viewer-modal.modal-loading .btn-edit-collection>p:hover::before,
#viewer-modal.modal-loading .document-group .btn-edit-collection>p:hover::before,
.document-group .social-links .btn-edit-collection>a:hover,
.social-links .document-group .btn-edit-collection>a:hover,
.document-group .search-meta .btn-edit-collection>a:hover,
.search-meta .document-group .btn-edit-collection>a:hover,
.document-group .search-meta .btn-edit-collection>span:hover,
.search-meta .document-group .btn-edit-collection>span:hover,
.document-group .pt-form .btn-edit-collection>label.custom:hover::before,
.pt-form .document-group .btn-edit-collection>label.custom:hover::before,
.document-group #form-error-summary .btn-edit-collection>.alert:hover::before,
#form-error-summary .document-group .btn-edit-collection>.alert:hover::before,
.document-group .form-error .btn-edit-collection>.alert:hover::before,
.form-error .document-group .btn-edit-collection>.alert:hover::before,
.document-group .btn-edit-collection>.help-tip:hover::before,
.document-group .cr .btn-edit-collection>input[type=checkbox]+label:hover::before,
.cr .document-group .btn-edit-collection>input[type=checkbox]+label:hover::before,
.document-group .cr .btn-edit-collection>input[type=radio]+label:hover::before,
.cr .document-group .btn-edit-collection>input[type=radio]+label:hover::before,
.document-group .dz-preview .btn-edit-collection>p:hover[data-dz-remove],
.dz-preview .document-group .btn-edit-collection>p:hover[data-dz-remove],
.document-group .btn-edit-collection>.overlay-card:hover::before,
.document-group .btn-edit-collection>#as-facebook:hover::before,
.document-group .btn-edit-collection>#as-twitter:hover::before,
.document-group .btn-edit-collection>#as-linkedin:hover::before {
  color: #b26c00;
}

.document-group .btn-move-collection {
  display: none;
}

.document-group .btn-move-collection.show-button {
  display: inline;
}

.document-group .btn-move-collection>.fa,
.document-group .btn-move-collection>i,
.document-group .btn-move-collection>#no-content::before,
.document-group #viewer-modal.modal-loading .btn-move-collection>p::before,
#viewer-modal.modal-loading .document-group .btn-move-collection>p::before,
.document-group .social-links .btn-move-collection>a,
.social-links .document-group .btn-move-collection>a,
.document-group .search-meta .btn-move-collection>a,
.search-meta .document-group .btn-move-collection>a,
.document-group .search-meta .btn-move-collection>span,
.search-meta .document-group .btn-move-collection>span,
.document-group .pt-form .btn-move-collection>label.custom::before,
.pt-form .document-group .btn-move-collection>label.custom::before,
.document-group #form-error-summary .btn-move-collection>.alert::before,
#form-error-summary .document-group .btn-move-collection>.alert::before,
.document-group .form-error .btn-move-collection>.alert::before,
.form-error .document-group .btn-move-collection>.alert::before,
.document-group .btn-move-collection>.help-tip::before,
.document-group .cr .btn-move-collection>input[type=checkbox]+label::before,
.cr .document-group .btn-move-collection>input[type=checkbox]+label::before,
.document-group .cr .btn-move-collection>input[type=radio]+label::before,
.cr .document-group .btn-move-collection>input[type=radio]+label::before,
.document-group .dz-preview .btn-move-collection>p[data-dz-remove],
.dz-preview .document-group .btn-move-collection>p[data-dz-remove],
.document-group .btn-move-collection>.overlay-card::before,
.document-group .btn-move-collection>#as-facebook::before,
.document-group .btn-move-collection>#as-twitter::before,
.document-group .btn-move-collection>#as-linkedin::before {
  color: #fe9a00;
}

.document-group .btn-move-collection>.fa:hover,
.document-group .btn-move-collection>i:hover,
.document-group .btn-move-collection>#no-content:hover::before,
.document-group #viewer-modal.modal-loading .btn-move-collection>p:hover::before,
#viewer-modal.modal-loading .document-group .btn-move-collection>p:hover::before,
.document-group .social-links .btn-move-collection>a:hover,
.social-links .document-group .btn-move-collection>a:hover,
.document-group .search-meta .btn-move-collection>a:hover,
.search-meta .document-group .btn-move-collection>a:hover,
.document-group .search-meta .btn-move-collection>span:hover,
.search-meta .document-group .btn-move-collection>span:hover,
.document-group .pt-form .btn-move-collection>label.custom:hover::before,
.pt-form .document-group .btn-move-collection>label.custom:hover::before,
.document-group #form-error-summary .btn-move-collection>.alert:hover::before,
#form-error-summary .document-group .btn-move-collection>.alert:hover::before,
.document-group .form-error .btn-move-collection>.alert:hover::before,
.form-error .document-group .btn-move-collection>.alert:hover::before,
.document-group .btn-move-collection>.help-tip:hover::before,
.document-group .cr .btn-move-collection>input[type=checkbox]+label:hover::before,
.cr .document-group .btn-move-collection>input[type=checkbox]+label:hover::before,
.document-group .cr .btn-move-collection>input[type=radio]+label:hover::before,
.cr .document-group .btn-move-collection>input[type=radio]+label:hover::before,
.document-group .dz-preview .btn-move-collection>p:hover[data-dz-remove],
.dz-preview .document-group .btn-move-collection>p:hover[data-dz-remove],
.document-group .btn-move-collection>.overlay-card:hover::before,
.document-group .btn-move-collection>#as-facebook:hover::before,
.document-group .btn-move-collection>#as-twitter:hover::before,
.document-group .btn-move-collection>#as-linkedin:hover::before {
  color: #b26c00;
}

.document-group:hover .slick-arrow,
.document-group:focus .slick-arrow,
.document-group:active .slick-arrow {
  opacity: 1;
}

.document-group .slick-slide {
  transition: opacity 0.5s ease;
}

.document-group .slick-arrow {
  transition: all 0.5s ease;
  position: absolute;
  top: 116px;
  outline: none;
  z-index: 2;
  opacity: 0;
  background-color: #fefefe;
  border: 0.4rem solid teal;
  font-size: 2rem;
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 3.5rem;
}

.document-group .slick-arrow.slick-disabled {
  visibility: hidden;
}

.document-group .slick-arrow:hover {
  color: #fe9a00;
}

.document-group .slick-arrow.slick-prev {
  left: 0;
}

.document-group .slick-arrow.slick-prev i {
  right: 2px;
}

.document-group .slick-arrow.slick-next {
  right: 0;
}

.document-group .slick-arrow.slick-next i {
  left: 2px;
}

.document-group .slick-arrow i {
  position: relative;
  top: 2px;
  color: teal;
}

.collection-slide-up {
  -webkit-animation-name: slide-in-up-100;
  animation-name: slide-in-up-100;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
}

@-webkit-keyframes slide-in-up-100 {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes slide-in-up-100 {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(0);
  }
}

.collection-slide-down {
  -webkit-animation-name: slide-in-down-100;
  animation-name: slide-in-down-100;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
}

@-webkit-keyframes slide-in-down-100 {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes slide-in-down-100 {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.document-full-page,
.users-full-page {
  width: 100%;
  height: 100%;
  margin: 0;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: left;
}

.document-full-page .loading-wrapper,
.users-full-page .loading-wrapper {
  min-height: 275px;
}

.document-full-page .loading,
.users-full-page .loading {
  font-size: 3rem;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50%;
  color: #8a8a8a;
}

.document-full-page .slide-wrapper,
.users-full-page .slide-wrapper {
  margin: 0 !important;
  outline: none;
}

.document-full-page .document-thumbnail-wrapper,
.document-full-page .user-thumbnail-wrapper,
.users-full-page .document-thumbnail-wrapper,
.users-full-page .user-thumbnail-wrapper {
  width: 100%;
  float: left;
  padding-right: .9375rem;
  padding-left: .9375rem;
  margin: 0 auto;
  padding: 0 15px;
  margin-top: 1rem;
  margin-bottom: 10px;
}

.document-full-page .document-thumbnail-wrapper:last-child:not(:first-child),
.document-full-page .user-thumbnail-wrapper:last-child:not(:first-child),
.users-full-page .document-thumbnail-wrapper:last-child:not(:first-child),
.users-full-page .user-thumbnail-wrapper:last-child:not(:first-child) {
  float: right;
}

@media print, screen and (min-width: 40em) {
  .document-full-page .document-thumbnail-wrapper,
  .document-full-page .user-thumbnail-wrapper,
  .users-full-page .document-thumbnail-wrapper,
  .users-full-page .user-thumbnail-wrapper {
    width: 33.33333%;
    float: left;
    padding-right: .9375rem;
    padding-left: .9375rem;
  }

  .document-full-page .document-thumbnail-wrapper:last-child:not(:first-child),
  .document-full-page .user-thumbnail-wrapper:last-child:not(:first-child),
  .users-full-page .document-thumbnail-wrapper:last-child:not(:first-child),
  .users-full-page .user-thumbnail-wrapper:last-child:not(:first-child) {
    float: right;
  }
}

@media print, screen and (min-width: 64em) {
  .document-full-page .document-thumbnail-wrapper,
  .document-full-page .user-thumbnail-wrapper,
  .users-full-page .document-thumbnail-wrapper,
  .users-full-page .user-thumbnail-wrapper {
    width: 25%;
    float: left;
    padding-right: .9375rem;
    padding-left: .9375rem;
  }

  .document-full-page .document-thumbnail-wrapper:last-child:not(:first-child),
  .document-full-page .user-thumbnail-wrapper:last-child:not(:first-child),
  .users-full-page .document-thumbnail-wrapper:last-child:not(:first-child),
  .users-full-page .user-thumbnail-wrapper:last-child:not(:first-child) {
    float: right;
  }
}

@media screen and (max-width: 39.9375em) {
  .document-full-page.homepage-row {
    height: 300px;
  }
}

@media screen and (max-width: 39.9375em) {
  .users-full-page.homepage-row {
    height: 300px;
  }
}

.users-full-page {
  width: 100%;
  height: 100%;
  margin: 0;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: left;
}

.users-full-page .loading-wrapper {
  min-height: 275px;
}

.users-full-page .loading {
  font-size: 3rem;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50%;
  color: #8a8a8a;
}

.users-full-page .slide-wrapper {
  margin: 0 !important;
  outline: none;
}

.documents {
  position: relative;
}

.documents .loading-wrapper {
  min-height: 275px;
}

.documents .loading {
  font-size: 3rem;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50%;
  color: #8a8a8a;
}

.documents .slide-wrapper {
  margin: 0 !important;
  outline: none;
}

.documents .document-thumbnail-wrapper {
  width: 20%;
  float: left;
  padding-right: .9375rem;
  padding-left: .9375rem;
  padding: 0 15px;
  margin-top: 1rem;
}

.documents .document-thumbnail-wrapper:last-child:not(:first-child) {
  float: right;
}

#document-pagination {
  margin-top: 1.25rem;
}

#document-pagination .align-left {
  float: left;
  color: #fe9a00;
  font-size: 20;
  font-weight: bold;
  background-color: teal;
  padding-left: 10px;
  padding-right: 10px;
}

#document-pagination .align-right,
#document-pagination #search-profile-area {
  float: right;
  color: #fe9a00;
  font-size: 20;
  font-weight: bold;
  background-color: teal;
  padding-left: 10px;
  padding-right: 10px;
}

#document-pagination [disabled] {
  display: none !important;
}

.documents .document-thumbnail-wrapper:last-child:not(:first-child) {
  float: left !important;
}

.document-group .row .documents .document-thumbnail-wrapper,
.document-group #social-view-row .documents .document-thumbnail-wrapper,
.document-group #embed-wrapper .codeblock .documents .document-thumbnail-wrapper,
#embed-wrapper .document-group .codeblock .documents .document-thumbnail-wrapper {
  width: 262px !important;
  padding: 5px !important;
  margin-right: 10px !important;
}

@media (max-width: 90rem) {
  .thumbnail-4 {
    display: none;
  }
}

@media (max-width: 72rem) {
  .thumbnail-3 {
    display: none;
  }
}

@media (max-width: 54rem) {
  .thumbnail-2 {
    display: none;
  }
}

@media (max-width: 37rem) {
  .thumbnail-1 {
    display: none;
  }
}

.document-thumbnail {
  position: relative;
  box-shadow: -5px 7px 5px rgba(0,0,0,0.8);
}

.document-thumbnail:before {
  content: "";
  position: absolute;
  top: 0%;
  right: 0%;
  width: 0px;
  height: 0px;
  border-bottom: 35px solid #eee;
  border-right: 35px solid transparent;
  box-shadow: -7px 7px 7px rgba(0,0,0,0.3);
}

.document-thumbnail:after {
  content: "";
  position: absolute;
  top: 0%;
  right: 0%;
  width: 0px;
  height: 0px;
  border-top: 35px solid #fefefe;
  border-left: 35px solid #ddd;
}

.document-thumbnail,
.user-thumbnail {
  overflow: hidden;
}

.document-thumbnail .img,
.user-thumbnail .img {
  position: relative;
  height: 250px;
  overflow: hidden;
  border: 1px solid #7da1b2;
  border-bottom: 0;
}

.document-thumbnail .img img,
.user-thumbnail .img img {
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.document-thumbnail .img span.refresh-spinner,
.document-thumbnail .img span.document-problem,
.user-thumbnail .img span.refresh-spinner,
.user-thumbnail .img span.document-problem {
  min-height: 100%;
  min-width: 100%;
  line-height: 250px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
  background-color: black;
  opacity: 0.5;
}

.document-thumbnail .img span.document-problem,
.user-thumbnail .img span.document-problem {
  display: block;
  opacity: 0.75;
}

.document-thumbnail .img span.refresh-spinner i,
.user-thumbnail .img span.refresh-spinner i {
  color: #7da1b2;
}

.document-thumbnail .img span.document-problem i,
.user-thumbnail .img span.document-problem i {
  color: #ff0000;
}

.document-thumbnail .profile-badge,
.user-thumbnail .profile-badge {
  position: absolute;
  top: 0.33em;
  left: 0.33em;
  height: 3.2rem;
  width: 3.2rem;
  box-shadow: 0 0 0.1em rgba(10,10,10,0.5);
  border: 1px solid rgba(254,254,254,0.75);
}

.document-thumbnail .profile-badge .badge-letter,
.user-thumbnail .profile-badge .badge-letter {
  font-size: 1.6rem;
}

.document-thumbnail .document-pinned,
.user-thumbnail .document-pinned {
  position: absolute;
  top: 0.33em;
  left: 0.33em;
  height: 3.2em;
  width: 3.2em;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  flex: 1;
  border-radius: 50%;
  background: rgba(0,128,128,0.85);
  background-size: cover;
  background-position: center center;
  box-shadow: 0 0 0.1em rgba(10,10,10,0.3);
  border: 1px solid rgba(10,10,10,0.6);
}

.document-thumbnail .document-pinned .pin,
.user-thumbnail .document-pinned .pin {
  font-size: 150%;
  color: #fefefe;
}

.document-thumbnail .document-pinned.is-pinned,
.user-thumbnail .document-pinned.is-pinned {
  display: flex;
}

.document-thumbnail .document-ontask-ready,
.user-thumbnail .document-ontask-ready {
  position: absolute;
  bottom: 1.5em;
  right: 0.33em;
  height: 3.2em;
  width: 3.2em;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  flex: 1;
  border-radius: 50%;
  background: rgba(0,128,128,0.85);
  background-size: cover;
  background-position: center center;
  box-shadow: 0 0 0.1em rgba(10,10,10,0.3);
  border: 1px solid rgba(10,10,10,0.6);
  color: #fff;
  background-color: #84bc6f;
  display: flex;
}

.document-thumbnail .document-ontask-ready .check,
.user-thumbnail .document-ontask-ready .check {
  font-size: 150%;
}

.document-thumbnail .document-ontask-ready .check i,
.user-thumbnail .document-ontask-ready .check i {
  color: #fff;
}

.document-thumbnail .details,
.user-thumbnail .details {
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0,128,128,0.75);
  color: #fefefe;
  padding: 0.25rem 0;
  line-height: 0.75rem;
  font-size: 0.75rem;
}

.document-thumbnail .info,
.user-thumbnail .info {
  margin: 0;
  padding: .5rem 0;
  line-height: 0.4rem;
}

.document-thumbnail .info .views,
.document-thumbnail .info .likes,
.user-thumbnail .info .views,
.user-thumbnail .info .likes {
  padding-left: 0;
  padding-right: 0;
  padding-top: 4px;
  padding-bottom: 4px;
  white-space: nowrap;
  color: #fefefe;
  text-align: center;
}

.document-thumbnail div.info.row,
.document-thumbnail div.info#social-view-row,
.document-thumbnail #embed-wrapper div.info.codeblock,
#embed-wrapper .document-thumbnail div.info.codeblock,
.user-thumbnail div.info.row,
.user-thumbnail div.info#social-view-row,
.user-thumbnail #embed-wrapper div.info.codeblock,
#embed-wrapper .user-thumbnail div.info.codeblock {
  background-color: #008080;
  color: #fefefe;
  padding: 0.25rem;
}

.document-thumbnail .action-buttons,
.user-thumbnail .action-buttons {
  margin: 0 !important;
}

.document-thumbnail .action-buttons a,
.user-thumbnail .action-buttons a {
  margin: 0;
}

.document-thumbnail div.action-buttons,
.user-thumbnail div.action-buttons {
  overflow: hidden;
}

.document-thumbnail .action.marketplace,
.user-thumbnail .action.marketplace {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #9bb304;
  color: #fefefe;
}

[data-whatinput='mouse'] .document-thumbnail .action.marketplace,
[data-whatinput='mouse'] .user-thumbnail .action.marketplace {
  outline: 0;
}

.document-thumbnail .action.marketplace:hover,
.document-thumbnail .action.marketplace:focus,
.user-thumbnail .action.marketplace:hover,
.user-thumbnail .action.marketplace:focus {
  background-color: #9bb304;
  color: #fefefe;
}

.document-thumbnail .action.leads,
.user-thumbnail .action.leads {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #80cfff;
  color: #fefefe;
}

[data-whatinput='mouse'] .document-thumbnail .action.leads,
[data-whatinput='mouse'] .user-thumbnail .action.leads {
  outline: 0;
}

.document-thumbnail .action.leads:hover,
.document-thumbnail .action.leads:focus,
.user-thumbnail .action.leads:hover,
.user-thumbnail .action.leads:focus {
  background-color: #80cfff;
  color: #fefefe;
}

.document-thumbnail .action.marketplace,
.document-thumbnail .action.leads,
.user-thumbnail .action.marketplace,
.user-thumbnail .action.leads {
  cursor: auto;
}

.document-thumbnail .action.owner-actions,
.user-thumbnail .action.owner-actions {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #fe9a00;
  color: #fefefe;
  padding: 0;
}

[data-whatinput='mouse'] .document-thumbnail .action.owner-actions,
[data-whatinput='mouse'] .user-thumbnail .action.owner-actions {
  outline: 0;
}

.document-thumbnail .action.owner-actions:hover,
.document-thumbnail .action.owner-actions:focus,
.user-thumbnail .action.owner-actions:hover,
.user-thumbnail .action.owner-actions:focus {
  background-color: #d88300;
  color: #fefefe;
}

.document-thumbnail .action.owner-actions i,
.user-thumbnail .action.owner-actions i {
  color: #fefefe;
}

.document-thumbnail .view,
.user-thumbnail .view {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #7da1b2;
  color: #fefefe;
}

[data-whatinput='mouse'] .document-thumbnail .view,
[data-whatinput='mouse'] .user-thumbnail .view {
  outline: 0;
}

.document-thumbnail .view:hover,
.document-thumbnail .view:focus,
.user-thumbnail .view:hover,
.user-thumbnail .view:focus {
  background-color: #608ca1;
  color: #fefefe;
}

.document-thumbnail .fa-user,
.user-thumbnail .fa-user {
  color: black;
  width: 100%;
  height: 100%;
  margin: auto;
  font-size: 10em;
  opacity: 0.3;
}

.owner-actions-dropdown {
  display: none;
  position: absolute;
  background-color: teal;
  padding: .25rem .5rem;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 2;
}

.owner-actions-dropdown .action {
  font-size: 14px;
  line-height: normal;
  width: 100%;
  display: block;
  border-bottom: 1px dotted #7da1b2;
  color: #fefefe;
  text-align: left;
  padding: .25rem 0;
}

.owner-actions-dropdown .action i {
  padding: 0 .25rem;
  display: inline;
}

.owner-actions-dropdown .action:hover {
  opacity: .5;
}

.thumb-label,
.thumb-value {
  color: #fefefe;
  font-family: "Raleway";
  font-size: .75rem;
  font-weight: bold;
}

#selected-document {
  background-color: teal;
  color: #7da1b2;
}

.deleted-doc.alert {
  color: #ec5840;
}

.viewer-pointer {
  text-align: center;
  margin: auto;
  padding: .5rem .25rem;
  color: #7da1b2;
  background-color: teal;
}

#search-form {
  margin: 0 auto;
}

#search-form input {
  text-align: center;
}

#search-form label {
  cursor: pointer;
}

#search-form .search-filters {
  padding: 1rem;
}

#search-form .search-filters div {
  display: inline-block;
}

#search-results {
  margin: 0 auto;
  padding-top: 0;
}

#search-results h2,
#search-results .pt-form.centered fieldset legend,
.pt-form.centered fieldset #search-results legend {
  border-bottom: 1px dashed #80ffff;
  margin-bottom: 1rem;
  padding: 1rem;
}

#search-results .results {
  max-width: 100%;
  padding: 0 1rem;
}

#search-results .results ul {
  margin: 0;
  width: 100%;
}

#search-results h4 {
  font-weight: 700;
  margin-bottom: 3px;
}

#search-results img {
  border: 1px solid #8a8a8a;
  border-radius: 0 10px 0 0;
  max-width: 100px;
}

#search-results ul {
  list-style: none;
}

.search-result {
  transition: all 0.5s ease;
  padding: 1rem 0;
  padding: 2rem 1rem !important;
  width: 100%;
}

.search-result:hover {
  background-color: #edf2f4;
  box-shadow: 0 0 5px #edf2f4;
}

.search-img {
  display: block;
  padding: 0;
  margin-left: 1rem;
}

.search-meta a,
.search-meta span {
  font-size: 0.8rem;
  margin: 0 5px;
}

.search-meta a::before,
.search-meta span::before {
  font-size: 0.9rem;
  margin-right: 3px;
}

.search-meta p {
  margin: 0;
}

.search-desc {
  max-height: 100px;
  overflow: hidden;
}

.search-desc-empty {
  font-style: italic;
  color: #8a8a8a;
}

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

.pagination {
  margin-top: 1.25rem;
}

.pagination [disabled] {
  display: none !important;
}

#search-captcha {
  margin-left: 0px;
  margin-bottom: 15px;
  margin-top: 15px;
}

#sharing-wrapper .dropdown-pane h5,
#sharing-wrapper .dropdown-pane h3 {
  color: #fefefe;
}

#embed-wrapper .dropdown-pane h5,
#embed-wrapper .dropdown-pane h3 {
  color: #fefefe;
}

#share-column,
#embed-column {
  padding: 3px;
}

#esign-column {
  padding: 3px;
}

#eisgn-column {
  padding-right: 6px;
}

.btn-esign {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #fefefe;
  color: #8a8a8a;
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  font-weight: 500;
  color: #84bc6f;
  border: 2px solid #8a8a8a;
}

[data-whatinput='mouse'] .btn-esign {
  outline: 0;
}

.btn-esign:hover,
.btn-esign:focus {
  background-color: #e2e2e2;
  color: #8a8a8a;
}

.btn-share {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #fefefe;
  color: #8a8a8a;
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  margin-left: 1px;
  font-weight: 500;
  color: #8a8a8a;
  border: 2px solid #8a8a8a;
}

[data-whatinput='mouse'] .btn-share {
  outline: 0;
}

.btn-share:hover,
.btn-share:focus {
  background-color: #e2e2e2;
  color: #8a8a8a;
}

.btn-embed {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #fefefe;
  color: #8a8a8a;
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  margin-left: 1px;
  font-weight: 500;
  color: #8a8a8a;
  border: 2px solid #8a8a8a;
}

[data-whatinput='mouse'] .btn-embed {
  outline: 0;
}

.btn-embed:hover,
.btn-embed:focus {
  background-color: #e2e2e2;
  color: #8a8a8a;
}

#embedAccordion {
  width: 200px;
}

#embedAccordion textarea {
  resize: none;
}

#embedAccordion text {
  resize: none;
  margin: 0px;
}

#embed-wrapper {
  margin: 3px;
  padding: 0px;
  font-size: 1.5rem;
}

#embed-wrapper i {
  color: #80cfff;
  display: inline;
  font-size: 1.5rem;
}

#embed-wrapper #row {
  max-height: 25;
}

.btn-esign,
.btn-share,
.btn-embed {
  border-radius: 6px;
  min-width: 100px;
  font-family: "Raleway";
  margin-bottom: 7px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

#shareAccordion {
  width: 195px;
}

#viewer-container {
  height: 100%;
}

#viewer-container>.row,
#viewer-container>#social-view-row,
#embed-wrapper #viewer-container>.codeblock {
  height: 100%;
  margin: 0;
}

@media screen and (max-width: 63.9375em) {
  #viewer-container {
    padding: 0;
  }
}

#embed-viewer-container {
  height: 100%;
  padding: 0 0;
}

#embed-viewer-container>.row,
#embed-viewer-container>#social-view-row,
#embed-wrapper #embed-viewer-container>.codeblock {
  height: 100%;
  margin: 0;
}

#documentprofileimage {
  margin-top: 15px;
  margin-left: 15px;
}

#documentsideimage {
  min-width: 140px;
  display: inline-block;
  height: calc(100% - 67px);
}

#doc-view-container {
  display: flex;
  flex-direction: column;
  height: calc(100% - 67px);
  z-index: 2;
  padding: 0;
  overflow: hidden;
}

#doc-view-container.embedded {
  height: 100%;
  margin: auto;
  padding: 0 0;
}

#embeded-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: auto;
  padding: 0 0;
}

#owner-restriction-notice {
  background-color: #ec5840;
  padding: .5rem;
  margin-bottom: .5rem;
}

@media screen and (max-width: 63.9375em) {
  #owner-restriction-notice {
    text-align: center;
  }
}

#owner-restriction-notice i {
  margin-right: .5rem;
}

#owner-restriction-notice .view-as-link {
  color: rgba(254,254,254,0.8);
  font-weight: bold;
  transition: 0.1s all;
}

#owner-restriction-notice .view-as-link:hover {
  color: #fefefe;
}

#documentviewer {
  width: 100%;
  flex-grow: 1;
}

#documentviewer .pcc-icon-firstpage,
#documentviewer .pcc-icon-prevpage {
  float: left;
  margin-top: auto;
}

#documentviewer [type='number'] {
  float: left;
  height: 100%;
  font-size: .75rem;
}

@media screen and (max-width: 63.9375em) {
  #documentviewer.site.pccv .pcc-tab-pane.pcc-tab-vertical {
    display: none;
  }

  #documentviewer.site.pccv [data-pcc-pagelist].pcc-vertical-offset-left {
    padding: 0 0 1rem;
    padding-top: 2rem;
  }
}

#restriction-wrapper {
  max-height: calc(100% + 20px);
}

.documents #restriction-form {
  margin: 0 auto;
  padding: 2rem 1rem;
}

#preview-thumbnail .accordion-item {
  padding: 0 0 1rem 0;
}

#preview-thumbnail .accordion-item.is-active .accordion-title .fa,
#preview-thumbnail .accordion-item.is-active .accordion-title i,
#preview-thumbnail .accordion-item.is-active .accordion-title #no-content::before,
#preview-thumbnail .accordion-item.is-active .accordion-title #viewer-modal.modal-loading p::before,
#viewer-modal.modal-loading #preview-thumbnail .accordion-item.is-active .accordion-title p::before,
#preview-thumbnail .accordion-item.is-active .accordion-title .social-links a,
.social-links #preview-thumbnail .accordion-item.is-active .accordion-title a,
#preview-thumbnail .accordion-item.is-active .accordion-title .search-meta a,
.search-meta #preview-thumbnail .accordion-item.is-active .accordion-title a,
#preview-thumbnail .accordion-item.is-active .accordion-title .search-meta span,
.search-meta #preview-thumbnail .accordion-item.is-active .accordion-title span,
#preview-thumbnail .accordion-item.is-active .accordion-title .pt-form label.custom::before,
.pt-form #preview-thumbnail .accordion-item.is-active .accordion-title label.custom::before,
#preview-thumbnail .accordion-item.is-active .accordion-title #form-error-summary .alert::before,
#form-error-summary #preview-thumbnail .accordion-item.is-active .accordion-title .alert::before,
#preview-thumbnail .accordion-item.is-active .accordion-title .form-error .alert::before,
.form-error #preview-thumbnail .accordion-item.is-active .accordion-title .alert::before,
#preview-thumbnail .accordion-item.is-active .accordion-title .help-tip::before,
#preview-thumbnail .accordion-item.is-active .accordion-title .cr input[type=checkbox]+label::before,
.cr #preview-thumbnail .accordion-item.is-active .accordion-title input[type=checkbox]+label::before,
#preview-thumbnail .accordion-item.is-active .accordion-title .cr input[type=radio]+label::before,
.cr #preview-thumbnail .accordion-item.is-active .accordion-title input[type=radio]+label::before,
#preview-thumbnail .accordion-item.is-active .accordion-title .dz-preview p[data-dz-remove],
.dz-preview #preview-thumbnail .accordion-item.is-active .accordion-title p[data-dz-remove],
#preview-thumbnail .accordion-item.is-active .accordion-title .overlay-card::before,
#preview-thumbnail .accordion-item.is-active .accordion-title #as-facebook::before,
#preview-thumbnail .accordion-item.is-active .accordion-title #as-twitter::before,
#preview-thumbnail .accordion-item.is-active .accordion-title #as-linkedin::before {
  transform: rotate(90deg);
}

#preview-thumbnail a {
  padding: 0 0 1rem 0 !important;
}

#restriction-form {
  margin: 1rem auto;
  padding: 2rem 1rem;
  background-color: #009393;
  color: #fefefe;
  overflow-y: auto;
}

@media screen and (max-width: 39.9375em) {
  #restriction-form {
    margin: 1rem auto;
    padding: 1rem;
  }
}

#restriction-form h4 {
  font-size: 1.6rem;
}

@media screen and (max-width: 39.9375em) {
  #restriction-form h4 {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 39.9375em) {
  #restriction-form p {
    font-size: 0.8rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }
}

@media screen and (max-width: 39.9375em) {
  #restriction-form #signin-providers li {
    font-size: 1.5rem;
  }
}

#restriction-form .btn-signin {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  border: 1px solid #80cfff;
  color: #80cfff;
  margin: 0 .7rem;
}

[data-whatinput='mouse'] #restriction-form .btn-signin {
  outline: 0;
}

#restriction-form .btn-signin,
#restriction-form .btn-signin:hover,
#restriction-form .btn-signin:focus {
  background-color: transparent;
}

#restriction-form .btn-signin:hover,
#restriction-form .btn-signin:focus {
  border-color: #0077c0;
  color: #0077c0;
}

#restriction-form .btn-signin i {
  color: inherit;
}

#restriction-form .btn-create-account,
#restriction-form .btn-share-email {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #80cfff;
  color: #fefefe;
  color: teal;
  margin: 0 .7rem;
}

[data-whatinput='mouse'] #restriction-form .btn-create-account,
[data-whatinput='mouse'] #restriction-form .btn-share-email {
  outline: 0;
}

#restriction-form .btn-create-account:hover,
#restriction-form .btn-create-account:focus,
#restriction-form .btn-share-email:hover,
#restriction-form .btn-share-email:focus {
  background-color: #47b9ff;
  color: #fefefe;
}

#restriction-form .btn-create-account i,
#restriction-form .btn-share-email i {
  color: inherit;
}

#restriction-form .btn-create-account:hover,
#restriction-form .btn-share-email:hover {
  color: teal;
}

#restriction-form .payment-form-field .payment-input-wrapper {
  height: 2.4375rem;
  margin-bottom: .75rem;
  background-color: #fefefe;
  padding: .5rem;
}

#restriction-form .payment-form-field .payment-input-wrapper iframe {
  background-color: inherit;
  padding: initial;
  margin: 0;
  box-shadow: none;
}

#restriction-form .btn-purchase {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #9bb304;
  color: solid;
}

[data-whatinput='mouse'] #restriction-form .btn-purchase {
  outline: 0;
}

#restriction-form .btn-purchase:hover,
#restriction-form .btn-purchase:focus {
  background-color: #849803;
  color: solid;
}

#restriction-form .btn-purchase i {
  color: inherit;
}

#payment-total {
  font-size: 1.5rem;
}

#view-doc-text {
  color: #fefefe;
  flex: 1;
  height: calc(100% - 67px);
  display: none;
  overflow: auto;
}

#view-doc-text .back-to-viewer {
  color: #fe9a00;
}

#view-doc-text .back-to-viewer span {
  padding-left: 0.25em;
  font-weight: bold;
}

#view-doc-text .back-to-viewer:hover {
  cursor: pointer;
  text-decoration: underline;
}

#lead-email-form-container {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 39.9375em) {
  #lead-email-form-container {
    max-width: 75rem;
  }
}

#lead-email-form,
#payment {
  padding: 0 !important;
}

@media screen and (max-width: 39.9375em) {
  #lead-email-form label,
  #payment label {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 39.9375em) {
  #lead-email-form input,
  #payment input {
    margin-bottom: 0.25rem;
  }
}

#lead-email-form .button,
#lead-email-form .btn-add-collection,
#lead-email-form .document-thumbnail .action.owner-actions,
.document-thumbnail #lead-email-form .action.owner-actions,
#lead-email-form .user-thumbnail .action.owner-actions,
.user-thumbnail #lead-email-form .action.owner-actions,
#lead-email-form .document-thumbnail .view,
.document-thumbnail #lead-email-form .view,
#lead-email-form .user-thumbnail .view,
.user-thumbnail #lead-email-form .view,
#lead-email-form .btn-esign,
#lead-email-form .btn-share,
#lead-email-form .btn-embed,
#lead-email-form #restriction-form .btn-purchase,
#restriction-form #lead-email-form .btn-purchase,
#lead-email-form .pt-form a.cancel,
.pt-form #lead-email-form a.cancel,
#lead-email-form .pt-form .secondary-actions a.forgot-password,
.pt-form .secondary-actions #lead-email-form a.forgot-password,
#lead-email-form .secondary-actions .pt-form a.forgot-password,
.secondary-actions .pt-form #lead-email-form a.forgot-password,
#lead-email-form .pt-form button.cancel,
.pt-form #lead-email-form button.cancel,
#lead-email-form .pt-form .form-action button,
.pt-form .form-action #lead-email-form button,
#lead-email-form #analytics #tabs button,
#analytics #tabs #lead-email-form button,
#lead-email-form .btn-subscribe,
#lead-email-form .btn-unsubscribe,
#lead-email-form .btn-unsubscribe-not-logged-in,
#lead-email-form .btn-add-contributor,
#lead-email-form .btn-save-contributor,
#payment .button,
#payment .btn-add-collection,
#payment .document-thumbnail .action.owner-actions,
.document-thumbnail #payment .action.owner-actions,
#payment .user-thumbnail .action.owner-actions,
.user-thumbnail #payment .action.owner-actions,
#payment .document-thumbnail .view,
.document-thumbnail #payment .view,
#payment .user-thumbnail .view,
.user-thumbnail #payment .view,
#payment .btn-esign,
#payment .btn-share,
#payment .btn-embed,
#payment #restriction-form .btn-purchase,
#restriction-form #payment .btn-purchase,
#payment .pt-form a.cancel,
.pt-form #payment a.cancel,
#payment .pt-form .secondary-actions a.forgot-password,
.pt-form .secondary-actions #payment a.forgot-password,
#payment .secondary-actions .pt-form a.forgot-password,
.secondary-actions .pt-form #payment a.forgot-password,
#payment .pt-form button.cancel,
.pt-form #payment button.cancel,
#payment .pt-form .form-action button,
.pt-form .form-action #payment button,
#payment #analytics #tabs button,
#analytics #tabs #payment button,
#payment .btn-subscribe,
#payment .btn-unsubscribe,
#payment .btn-unsubscribe-not-logged-in,
#payment .btn-add-contributor,
#payment .btn-save-contributor {
  font-size: 1rem;
}

@media screen and (max-width: 39.9375em) {
  #lead-email-form .button,
  #lead-email-form .btn-add-collection,
  #lead-email-form .document-thumbnail .action.owner-actions,
  .document-thumbnail #lead-email-form .action.owner-actions,
  #lead-email-form .user-thumbnail .action.owner-actions,
  .user-thumbnail #lead-email-form .action.owner-actions,
  #lead-email-form .document-thumbnail .view,
  .document-thumbnail #lead-email-form .view,
  #lead-email-form .user-thumbnail .view,
  .user-thumbnail #lead-email-form .view,
  #lead-email-form .btn-esign,
  #lead-email-form .btn-share,
  #lead-email-form .btn-embed,
  #lead-email-form #restriction-form .btn-purchase,
  #restriction-form #lead-email-form .btn-purchase,
  #lead-email-form .pt-form a.cancel,
  .pt-form #lead-email-form a.cancel,
  #lead-email-form .pt-form .secondary-actions a.forgot-password,
  .pt-form .secondary-actions #lead-email-form a.forgot-password,
  #lead-email-form .secondary-actions .pt-form a.forgot-password,
  .secondary-actions .pt-form #lead-email-form a.forgot-password,
  #lead-email-form .pt-form button.cancel,
  .pt-form #lead-email-form button.cancel,
  #lead-email-form .pt-form .form-action button,
  .pt-form .form-action #lead-email-form button,
  #lead-email-form #analytics #tabs button,
  #analytics #tabs #lead-email-form button,
  #lead-email-form .btn-subscribe,
  #lead-email-form .btn-unsubscribe,
  #lead-email-form .btn-unsubscribe-not-logged-in,
  #lead-email-form .btn-add-contributor,
  #lead-email-form .btn-save-contributor,
  #payment .button,
  #payment .btn-add-collection,
  #payment .document-thumbnail .action.owner-actions,
  .document-thumbnail #payment .action.owner-actions,
  #payment .user-thumbnail .action.owner-actions,
  .user-thumbnail #payment .action.owner-actions,
  #payment .document-thumbnail .view,
  .document-thumbnail #payment .view,
  #payment .user-thumbnail .view,
  .user-thumbnail #payment .view,
  #payment .btn-esign,
  #payment .btn-share,
  #payment .btn-embed,
  #payment #restriction-form .btn-purchase,
  #restriction-form #payment .btn-purchase,
  #payment .pt-form a.cancel,
  .pt-form #payment a.cancel,
  #payment .pt-form .secondary-actions a.forgot-password,
  .pt-form .secondary-actions #payment a.forgot-password,
  #payment .secondary-actions .pt-form a.forgot-password,
  .secondary-actions .pt-form #payment a.forgot-password,
  #payment .pt-form button.cancel,
  .pt-form #payment button.cancel,
  #payment .pt-form .form-action button,
  .pt-form .form-action #payment button,
  #payment #analytics #tabs button,
  #analytics #tabs #payment button,
  #payment .btn-subscribe,
  #payment .btn-unsubscribe,
  #payment .btn-unsubscribe-not-logged-in,
  #payment .btn-add-contributor,
  #payment .btn-save-contributor {
    font-size: 0.75rem;
    width: 100%;
  }
}

.pcc-slideshow-controls {
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  height: 25px;
  line-height: 25px;
  color: white;
  cursor: pointer;
  width: 120px;
  text-align: center;
  z-index: 10;
}

@media screen and (max-width: 39.9375em) {
  .pcc-slideshow-controls {
    width: 50px;
    left: 30%;
    right: auto;
  }
}

.pcc-powered-by-edocr {
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  height: 25px;
  line-height: 25px;
  color: white;
  cursor: pointer;
  width: 120px;
  text-align: center;
  z-index: 10;
}

@media screen and (max-width: 39.9375em) {
  .pcc-powered-by-edocr {
    width: 120px;
    left: 25%;
    right: auto;
  }
}

.pcc-powered-by-edocr a {
  color: white;
}

.pt-form {
  font-family: "Raleway";
  font-weight: 600;
  position: relative;
  padding: 1.875rem 1.25rem 1.25rem;
}

@media screen and (max-width: 39.9375em) {
  .pt-form {
    padding: 1rem 0 !important;
    margin: 0 !important;
  }

  .pt-form .accordion .accordion-content {
    padding: 0 !important;
  }
}

.pt-form button .fa,
.pt-form button i,
.pt-form button #no-content::before,
.pt-form button #viewer-modal.modal-loading p::before,
#viewer-modal.modal-loading .pt-form button p::before,
.pt-form button .social-links a,
.social-links .pt-form button a,
.pt-form button .search-meta a,
.search-meta .pt-form button a,
.pt-form button .search-meta span,
.search-meta .pt-form button span,
.pt-form button label.custom::before,
.pt-form button #form-error-summary .alert::before,
#form-error-summary .pt-form button .alert::before,
.pt-form button .form-error .alert::before,
.form-error .pt-form button .alert::before,
.pt-form button .help-tip::before,
.pt-form button .cr input[type=checkbox]+label::before,
.cr .pt-form button input[type=checkbox]+label::before,
.pt-form button .cr input[type=radio]+label::before,
.cr .pt-form button input[type=radio]+label::before,
.pt-form button .dz-preview p[data-dz-remove],
.dz-preview .pt-form button p[data-dz-remove],
.pt-form button .overlay-card::before,
.pt-form button #as-facebook::before,
.pt-form button #as-twitter::before,
.pt-form button #as-linkedin::before {
  transition: all .5s ease;
  color: #80cfff;
}

.pt-form button .processing {
  color: teal;
}

.pt-form button:disabled:hover .fa,
.pt-form button:disabled:hover i,
.pt-form button:disabled:hover #no-content::before,
.pt-form button:disabled:hover #viewer-modal.modal-loading p::before,
#viewer-modal.modal-loading .pt-form button:disabled:hover p::before,
.pt-form button:disabled:hover .social-links a,
.social-links .pt-form button:disabled:hover a,
.pt-form button:disabled:hover .search-meta a,
.search-meta .pt-form button:disabled:hover a,
.pt-form button:disabled:hover .search-meta span,
.search-meta .pt-form button:disabled:hover span,
.pt-form button:disabled:hover label.custom::before,
.pt-form button:disabled:hover #form-error-summary .alert::before,
#form-error-summary .pt-form button:disabled:hover .alert::before,
.pt-form button:disabled:hover .form-error .alert::before,
.form-error .pt-form button:disabled:hover .alert::before,
.pt-form button:disabled:hover .help-tip::before,
.pt-form button:disabled:hover .cr input[type=checkbox]+label::before,
.cr .pt-form button:disabled:hover input[type=checkbox]+label::before,
.pt-form button:disabled:hover .cr input[type=radio]+label::before,
.cr .pt-form button:disabled:hover input[type=radio]+label::before,
.pt-form button:disabled:hover .dz-preview p[data-dz-remove],
.dz-preview .pt-form button:disabled:hover p[data-dz-remove],
.pt-form button:disabled:hover .overlay-card::before,
.pt-form button:disabled:hover #as-facebook::before,
.pt-form button:disabled:hover #as-twitter::before,
.pt-form button:disabled:hover #as-linkedin::before {
  color: #80cfff;
}

.pt-form ul {
  margin: 0;
}

.pt-form .or {
  color: #fefefe;
  font-size: 150%;
  margin: 0;
  padding: 1rem;
  text-align: center;
}

.pt-form h2,
.pt-form.centered fieldset legend {
  color: #80cfff;
}

.pt-form fieldset {
  width: 100%;
  margin: 0 auto !important;
}

.pt-form .help-text,
.pt-form #collection-privacy-msg {
  padding: 0 0.5rem;
  color: #ffffee;
}

.pt-form #collection-privacy-msg {
  font-size: 1rem;
}

.pt-form legend,
.pt-form .legend {
  background: none;
  font-size: 150%;
  color: #ffffee;
  padding: 0 .5rem;
  font-weight: 500;
}

.pt-form .input-group,
.pt-form .sub-input-group {
  padding: .5rem;
  margin: 0;
}

.pt-form .input-group.has-icon,
.pt-form .has-icon.sub-input-group {
  margin-bottom: 0;
}

.pt-form .input-group.has-icon input,
.pt-form .has-icon.sub-input-group input {
  margin-bottom: 1.5rem;
}

.pt-form .input-group div,
.pt-form .sub-input-group div {
  width: 100%;
}

.pt-form .input-group-label {
  background-color: inherit;
  border: 0;
  color: #80cfff;
  font-size: 2rem;
  line-height: normal;
  padding: 1rem;
}

.pt-form label {
  font-weight: 600;
}

.pt-form label.custom::before {
  display: inline-block;
}

.pt-form [type='submit'] {
  background-color: #80cfff;
  color: white;
  font-size: 1.5rem;
  font-weight: 500;
}

.pt-form [type='submit']:hover {
  background-color: #b3e2ff;
  color: white;
}

.pt-form input[disabled],
.pt-form input[readonly] {
  background-color: transparent;
  border: 0;
  box-shadow: none;
  color: #fefefe;
  padding: 0;
}

.pt-form .secondary-actions {
  text-align: right;
}

.pt-form.centered fieldset legend {
  text-align: center;
}

.pt-form input,
.pt-form select,
.pt-form textarea {
  margin: 0;
}

.pt-form input .hide-file,
.pt-form select .hide-file,
.pt-form textarea .hide-file {
  visibility: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  margin: 0;
}

.pt-form .accordion {
  background-color: transparent;
  border: 0;
}

.pt-form .accordion-item {
  border: 0;
  background-color: transparent;
}

.pt-form .accordion-item .fa,
.pt-form .accordion-item i,
.pt-form .accordion-item #no-content::before,
.pt-form .accordion-item #viewer-modal.modal-loading p::before,
#viewer-modal.modal-loading .pt-form .accordion-item p::before,
.pt-form .accordion-item .social-links a,
.social-links .pt-form .accordion-item a,
.pt-form .accordion-item .search-meta a,
.search-meta .pt-form .accordion-item a,
.pt-form .accordion-item .search-meta span,
.search-meta .pt-form .accordion-item span,
.pt-form .accordion-item label.custom::before,
.pt-form .accordion-item #form-error-summary .alert::before,
#form-error-summary .pt-form .accordion-item .alert::before,
.pt-form .accordion-item .form-error .alert::before,
.form-error .pt-form .accordion-item .alert::before,
.pt-form .accordion-item .help-tip::before,
.pt-form .accordion-item .cr input[type=checkbox]+label::before,
.cr .pt-form .accordion-item input[type=checkbox]+label::before,
.pt-form .accordion-item .cr input[type=radio]+label::before,
.cr .pt-form .accordion-item input[type=radio]+label::before,
.pt-form .accordion-item .dz-preview p[data-dz-remove],
.dz-preview .pt-form .accordion-item p[data-dz-remove],
.pt-form .accordion-item .overlay-card::before,
.pt-form .accordion-item #as-facebook::before,
.pt-form .accordion-item #as-twitter::before,
.pt-form .accordion-item #as-linkedin::before {
  transition: all 0.1s ease;
}

.pt-form .accordion-item.is-active .accordion-content {
  display: block !important;
}

.pt-form .accordion-item.is-active .accordion-title .fa,
.pt-form .accordion-item.is-active .accordion-title i,
.pt-form .accordion-item.is-active .accordion-title #no-content::before,
.pt-form .accordion-item.is-active .accordion-title #viewer-modal.modal-loading p::before,
#viewer-modal.modal-loading .pt-form .accordion-item.is-active .accordion-title p::before,
.pt-form .accordion-item.is-active .accordion-title .social-links a,
.social-links .pt-form .accordion-item.is-active .accordion-title a,
.pt-form .accordion-item.is-active .accordion-title .search-meta a,
.search-meta .pt-form .accordion-item.is-active .accordion-title a,
.pt-form .accordion-item.is-active .accordion-title .search-meta span,
.search-meta .pt-form .accordion-item.is-active .accordion-title span,
.pt-form .accordion-item.is-active .accordion-title label.custom::before,
.pt-form .accordion-item.is-active .accordion-title #form-error-summary .alert::before,
#form-error-summary .pt-form .accordion-item.is-active .accordion-title .alert::before,
.pt-form .accordion-item.is-active .accordion-title .form-error .alert::before,
.form-error .pt-form .accordion-item.is-active .accordion-title .alert::before,
.pt-form .accordion-item.is-active .accordion-title .help-tip::before,
.pt-form .accordion-item.is-active .accordion-title .cr input[type=checkbox]+label::before,
.cr .pt-form .accordion-item.is-active .accordion-title input[type=checkbox]+label::before,
.pt-form .accordion-item.is-active .accordion-title .cr input[type=radio]+label::before,
.cr .pt-form .accordion-item.is-active .accordion-title input[type=radio]+label::before,
.pt-form .accordion-item.is-active .accordion-title .dz-preview p[data-dz-remove],
.dz-preview .pt-form .accordion-item.is-active .accordion-title p[data-dz-remove],
.pt-form .accordion-item.is-active .accordion-title .overlay-card::before,
.pt-form .accordion-item.is-active .accordion-title #as-facebook::before,
.pt-form .accordion-item.is-active .accordion-title #as-twitter::before,
.pt-form .accordion-item.is-active .accordion-title #as-linkedin::before {
  transform: rotate(-90deg);
}

.pt-form .accordion-title {
  color: #80cfff;
  border: 0;
  padding: 1rem !important;
}

.pt-form .accordion-title h2,
.pt-form.centered .accordion-title fieldset legend,
.pt-form.centered fieldset .accordion-title legend {
  margin: 0;
}

.pt-form .accordion-title:hover,
.pt-form .accordion-title:focus {
  background-color: transparent;
}

.pt-form .accordion-title::before {
  content: '';
}

.pt-form .accordion-content {
  border: 0;
  padding: 0 2rem;
}

.pt-form .accordion-content .lead,
.pt-form .accordion-content .document-group .description,
.document-group .pt-form .accordion-content .description {
  margin-bottom: 0;
}

.pt-form .accordion-content .columns,
.pt-form .accordion-content #signin-providers li,
#signin-providers .pt-form .accordion-content li,
.pt-form .accordion-content #social-processing p,
#social-processing .pt-form .accordion-content p,
.pt-form .accordion-content .teaser,
.pt-form .accordion-content .faqs,
.pt-form .accordion-content .document-group .description,
.document-group .pt-form .accordion-content .description,
.pt-form .accordion-content .icon,
.pt-form .accordion-content .accordion-item,
.pt-form .accordion-content .accordion-title,
.pt-form .accordion-content .profile-action,
.pt-form .accordion-content .subscription {
  padding: 0.5rem 1rem;
}

.pt-form .form-action {
  padding-bottom: 1rem;
}

.pt-form .form-action .columns,
.pt-form .form-action #signin-providers li,
#signin-providers .pt-form .form-action li,
.pt-form .form-action #social-processing p,
#social-processing .pt-form .form-action p,
.pt-form .form-action .teaser,
.pt-form .form-action .faqs,
.pt-form .form-action .document-group .description,
.document-group .pt-form .form-action .description,
.pt-form .form-action .icon,
.pt-form .form-action .accordion-item,
.pt-form .form-action .accordion-title,
.pt-form .form-action .profile-action,
.pt-form .form-action .subscription {
  padding-top: 1rem;
}

@media screen and (max-width: 39.9375em) {
  .pt-form .form-action .sticky {
    width: 100%;
  }
}

.pt-form .form-action .publish,
.pt-form .form-action .primary-action {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #80cfff;
  color: #fff;
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  color: white !important;
}

[data-whatinput='mouse'] .pt-form .form-action .publish,
[data-whatinput='mouse'] .pt-form .form-action .primary-action {
  outline: 0;
}

.pt-form .form-action .publish:hover,
.pt-form .form-action .publish:focus,
.pt-form .form-action .primary-action:hover,
.pt-form .form-action .primary-action:focus {
  background-color: #33b2ff;
  color: #fff;
}

#navigator {
  position: relative;
}

#navigator .sticky {
  width: 100%;
}

@media screen and (max-width: 39.9375em) {
  #navigator .sticky {
    position: relative;
  }
}

#navigator .sticky .columns,
#navigator .sticky #signin-providers li,
#signin-providers #navigator .sticky li,
#navigator .sticky #social-processing p,
#social-processing #navigator .sticky p,
#navigator .sticky .teaser,
#navigator .sticky .faqs,
#navigator .sticky .document-group .description,
.document-group #navigator .sticky .description,
#navigator .sticky .pt-form .icon,
.pt-form #navigator .sticky .icon,
#navigator .sticky .pt-form .accordion-item,
.pt-form #navigator .sticky .accordion-item,
#navigator .sticky .pt-form .accordion-title,
.pt-form #navigator .sticky .accordion-title,
#navigator .sticky .profile-action,
#navigator .sticky .subscription {
  min-width: 240px;
}

#form-error-summary,
.form-error {
  display: none;
}

#form-error-summary .alert::before,
.form-error .alert::before {
  color: #ec5840;
  content: '\f06a';
  margin-right: 5px;
}

#form-error-summary a,
.form-error a {
  color: #ec5840;
  text-decoration: underline;
}

#form-error-summary a:hover,
.form-error a:hover {
  color: #9d2310;
}

#form-error-summary p,
.form-error p {
  width: 100%;
}

.form-error {
  display: block;
  margin-top: -2rem;
}

.sub-input-group {
  padding: 0 !important;
}

.sub-input-group .input-group-label {
  display: table-cell !important;
}

.sub-label {
  font-size: .8rem;
}

.help-tip {
  margin-left: 5px;
}

.help-tip::before {
  color: rgba(254,254,254,0.5);
  content: '\f059';
  display: inline-block;
  padding-right: 5px;
}

.cr input[type=checkbox],
.cr input[type=radio] {
  display: none;
  margin: 0 0.5rem;
}

.cr input[type=checkbox]+label::before,
.cr input[type=radio]+label::before {
  font-size: 1.3rem;
  display: inline-block;
  width: 19px;
  height: 19px;
  margin: -3px 4px 0 0;
  vertical-align: middle;
  cursor: pointer;
}

.cr input[type=checkbox]+label::before {
  content: '\f096';
}

.cr input[type=checkbox]:checked+label::before {
  content: '\f046';
  color: #fe9a00;
}

.cr input[type=radio]+label::before {
  content: '\f10c';
}

.cr input[type=radio]:checked+label::before {
  content: '\f192';
  color: #fe9a00;
}

.cr label {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[disabled] i.please-wait {
  color: teal !important;
}

#collection-form.pt-form {
  padding: 1.25rem;
}

#collection-form.pt-form .row.align-center.align-middle,
#collection-form.pt-form .row.align-middle#selected-document,
#collection-form.pt-form #embed-wrapper .align-middle#selected-document.codeblock,
#embed-wrapper #collection-form.pt-form .align-middle#selected-document.codeblock,
#collection-form.pt-form #embed-wrapper #leads-wrapper #selected-document.codeblock.last-view-date,
#embed-wrapper #leads-wrapper #collection-form.pt-form #selected-document.codeblock.last-view-date,
#collection-form.pt-form #leads-wrapper #embed-wrapper #selected-document.codeblock.last-view-date,
#leads-wrapper #embed-wrapper #collection-form.pt-form #selected-document.codeblock.last-view-date,
#collection-form.pt-form #embed-wrapper #selected-document.codeblock.leads-title,
#embed-wrapper #collection-form.pt-form #selected-document.codeblock.leads-title,
#collection-form.pt-form #embed-wrapper #selected-document.codeblock.leads-stats,
#embed-wrapper #collection-form.pt-form #selected-document.codeblock.leads-stats,
#collection-form.pt-form #embed-wrapper .pt-accordion #selected-document.codeblock.accordion-item,
#embed-wrapper .pt-accordion #collection-form.pt-form #selected-document.codeblock.accordion-item,
#collection-form.pt-form .pt-accordion #embed-wrapper #selected-document.codeblock.accordion-item,
.pt-accordion #embed-wrapper #collection-form.pt-form #selected-document.codeblock.accordion-item,
#collection-form.pt-form #leads-wrapper .row#selected-document.last-view-date,
#leads-wrapper #collection-form.pt-form .row#selected-document.last-view-date,
#collection-form.pt-form .row#selected-document.leads-title,
#collection-form.pt-form .row#selected-document.leads-stats,
#collection-form.pt-form .pt-accordion .row#selected-document.accordion-item,
.pt-accordion #collection-form.pt-form .row#selected-document.accordion-item,
#collection-form.pt-form .row.align-middle.pagination,
#collection-form.pt-form .align-middle.pagination#social-view-row,
#collection-form.pt-form #leads-wrapper .pagination#social-view-row.last-view-date,
#leads-wrapper #collection-form.pt-form .pagination#social-view-row.last-view-date,
#collection-form.pt-form .pagination#social-view-row.leads-title,
#collection-form.pt-form .pagination#social-view-row.leads-stats,
#collection-form.pt-form .pt-accordion .pagination#social-view-row.accordion-item,
.pt-accordion #collection-form.pt-form .pagination#social-view-row.accordion-item,
#collection-form.pt-form #embed-wrapper .align-middle.pagination.codeblock,
#embed-wrapper #collection-form.pt-form .align-middle.pagination.codeblock,
#collection-form.pt-form #embed-wrapper #leads-wrapper .pagination.codeblock.last-view-date,
#embed-wrapper #leads-wrapper #collection-form.pt-form .pagination.codeblock.last-view-date,
#collection-form.pt-form #leads-wrapper #embed-wrapper .pagination.codeblock.last-view-date,
#leads-wrapper #embed-wrapper #collection-form.pt-form .pagination.codeblock.last-view-date,
#collection-form.pt-form #embed-wrapper .pagination.codeblock.leads-title,
#embed-wrapper #collection-form.pt-form .pagination.codeblock.leads-title,
#collection-form.pt-form #embed-wrapper .pagination.codeblock.leads-stats,
#embed-wrapper #collection-form.pt-form .pagination.codeblock.leads-stats,
#collection-form.pt-form #embed-wrapper .pt-accordion .pagination.codeblock.accordion-item,
#embed-wrapper .pt-accordion #collection-form.pt-form .pagination.codeblock.accordion-item,
#collection-form.pt-form .pt-accordion #embed-wrapper .pagination.codeblock.accordion-item,
.pt-accordion #embed-wrapper #collection-form.pt-form .pagination.codeblock.accordion-item,
#collection-form.pt-form #leads-wrapper .row.pagination.last-view-date,
#leads-wrapper #collection-form.pt-form .row.pagination.last-view-date,
#collection-form.pt-form .row.pagination.leads-title,
#collection-form.pt-form .row.pagination.leads-stats,
#collection-form.pt-form .pt-accordion .row.pagination.accordion-item,
.pt-accordion #collection-form.pt-form .row.pagination.accordion-item,
#collection-form.pt-form .align-center.align-middle#social-view-row,
#collection-form.pt-form #leads-wrapper .align-center#social-view-row.last-view-date,
#leads-wrapper #collection-form.pt-form .align-center#social-view-row.last-view-date,
#collection-form.pt-form .align-center#social-view-row.leads-title,
#collection-form.pt-form .align-center#social-view-row.leads-stats,
#collection-form.pt-form .pt-accordion .align-center#social-view-row.accordion-item,
.pt-accordion #collection-form.pt-form .align-center#social-view-row.accordion-item,
#collection-form.pt-form #embed-wrapper .align-center.align-middle.codeblock,
#embed-wrapper #collection-form.pt-form .align-center.align-middle.codeblock,
#collection-form.pt-form #embed-wrapper .align-middle.codeblock#restriction-form,
#embed-wrapper #collection-form.pt-form .align-middle.codeblock#restriction-form,
#collection-form.pt-form #embed-wrapper #leads-wrapper .codeblock#restriction-form.last-view-date,
#embed-wrapper #leads-wrapper #collection-form.pt-form .codeblock#restriction-form.last-view-date,
#collection-form.pt-form #leads-wrapper #embed-wrapper .codeblock#restriction-form.last-view-date,
#leads-wrapper #embed-wrapper #collection-form.pt-form .codeblock#restriction-form.last-view-date,
#collection-form.pt-form #embed-wrapper .codeblock#restriction-form.leads-title,
#embed-wrapper #collection-form.pt-form .codeblock#restriction-form.leads-title,
#collection-form.pt-form #embed-wrapper .codeblock#restriction-form.leads-stats,
#embed-wrapper #collection-form.pt-form .codeblock#restriction-form.leads-stats,
#collection-form.pt-form #embed-wrapper .pt-accordion .codeblock#restriction-form.accordion-item,
#embed-wrapper .pt-accordion #collection-form.pt-form .codeblock#restriction-form.accordion-item,
#collection-form.pt-form .pt-accordion #embed-wrapper .codeblock#restriction-form.accordion-item,
.pt-accordion #embed-wrapper #collection-form.pt-form .codeblock#restriction-form.accordion-item,
#collection-form.pt-form #embed-wrapper .align-middle.codeblock#lead-email-form-container,
#embed-wrapper #collection-form.pt-form .align-middle.codeblock#lead-email-form-container,
#collection-form.pt-form #embed-wrapper #leads-wrapper .codeblock#lead-email-form-container.last-view-date,
#embed-wrapper #leads-wrapper #collection-form.pt-form .codeblock#lead-email-form-container.last-view-date,
#collection-form.pt-form #leads-wrapper #embed-wrapper .codeblock#lead-email-form-container.last-view-date,
#leads-wrapper #embed-wrapper #collection-form.pt-form .codeblock#lead-email-form-container.last-view-date,
#collection-form.pt-form #embed-wrapper .codeblock#lead-email-form-container.leads-title,
#embed-wrapper #collection-form.pt-form .codeblock#lead-email-form-container.leads-title,
#collection-form.pt-form #embed-wrapper .codeblock#lead-email-form-container.leads-stats,
#embed-wrapper #collection-form.pt-form .codeblock#lead-email-form-container.leads-stats,
#collection-form.pt-form #embed-wrapper .pt-accordion .codeblock#lead-email-form-container.accordion-item,
#embed-wrapper .pt-accordion #collection-form.pt-form .codeblock#lead-email-form-container.accordion-item,
#collection-form.pt-form .pt-accordion #embed-wrapper .codeblock#lead-email-form-container.accordion-item,
.pt-accordion #embed-wrapper #collection-form.pt-form .codeblock#lead-email-form-container.accordion-item,
#collection-form.pt-form #embed-wrapper #leads-wrapper .align-center.codeblock.last-view-date,
#embed-wrapper #leads-wrapper #collection-form.pt-form .align-center.codeblock.last-view-date,
#collection-form.pt-form #leads-wrapper #embed-wrapper .align-center.codeblock.last-view-date,
#leads-wrapper #embed-wrapper #collection-form.pt-form .align-center.codeblock.last-view-date,
#collection-form.pt-form #embed-wrapper .align-center.codeblock.leads-title,
#embed-wrapper #collection-form.pt-form .align-center.codeblock.leads-title,
#collection-form.pt-form #embed-wrapper .align-center.codeblock.leads-stats,
#embed-wrapper #collection-form.pt-form .align-center.codeblock.leads-stats,
#collection-form.pt-form #embed-wrapper .pt-accordion .align-center.codeblock.accordion-item,
#embed-wrapper .pt-accordion #collection-form.pt-form .align-center.codeblock.accordion-item,
#collection-form.pt-form .pt-accordion #embed-wrapper .align-center.codeblock.accordion-item,
.pt-accordion #embed-wrapper #collection-form.pt-form .align-center.codeblock.accordion-item,
#collection-form.pt-form .row.align-middle#restriction-form,
#collection-form.pt-form #leads-wrapper .row#restriction-form.last-view-date,
#leads-wrapper #collection-form.pt-form .row#restriction-form.last-view-date,
#collection-form.pt-form .row#restriction-form.leads-title,
#collection-form.pt-form .row#restriction-form.leads-stats,
#collection-form.pt-form .pt-accordion .row#restriction-form.accordion-item,
.pt-accordion #collection-form.pt-form .row#restriction-form.accordion-item,
#collection-form.pt-form .row.align-middle#lead-email-form-container,
#collection-form.pt-form #leads-wrapper .row#lead-email-form-container.last-view-date,
#leads-wrapper #collection-form.pt-form .row#lead-email-form-container.last-view-date,
#collection-form.pt-form .row#lead-email-form-container.leads-title,
#collection-form.pt-form .row#lead-email-form-container.leads-stats,
#collection-form.pt-form .pt-accordion .row#lead-email-form-container.accordion-item,
.pt-accordion #collection-form.pt-form .row#lead-email-form-container.accordion-item,
#collection-form.pt-form #leads-wrapper .row.align-center.last-view-date,
#leads-wrapper #collection-form.pt-form .row.align-center.last-view-date,
#collection-form.pt-form .row.align-center.leads-title,
#collection-form.pt-form .row.align-center.leads-stats,
#collection-form.pt-form .pt-accordion .row.align-center.accordion-item,
.pt-accordion #collection-form.pt-form .row.align-center.accordion-item {
  margin-bottom: 1.25rem;
}

#collection-form.pt-form #form-error-summary,
#collection-form.pt-form .form-error .input-group-label {
  display: none;
}

#collection-form input:disabled,
#collection-form input.disabled,
#collection-form input[disabled],
#collection-form label:disabled,
#collection-form label.disabled,
#collection-form label[disabled],
#collection-form select:disabled,
#collection-form select.disabled,
#collection-form select[disabled],
#collection-form .fieldset input:disabled,
#collection-form .fieldset input.disabled,
#collection-form .fieldset input[disabled],
#collection-form button:disabled,
#collection-form button.disabled,
#collection-form button[disabled] {
  opacity: .25;
}

.page-title {
  font-family: "Raleway";
  color: #80cfff;
  font-weight: 300;
  font-size: 2rem;
}

.non-refundable {
  padding: 0.85em 1em;
}

.btn-request-refund {
  border: 1px solid transparent;
  padding: 0.85em 1em;
}

.btn-request-refund:hover {
  border: 1px solid #fefefe;
}

.btn-request-refund.button,
.btn-request-refund.btn-add-collection,
.document-thumbnail .btn-request-refund.action.owner-actions,
.user-thumbnail .btn-request-refund.action.owner-actions,
.document-thumbnail .btn-request-refund.view,
.user-thumbnail .btn-request-refund.view,
.btn-request-refund.btn-esign,
.btn-request-refund.btn-share,
.btn-request-refund.btn-embed,
#restriction-form .btn-request-refund.btn-purchase,
.pt-form a.btn-request-refund.cancel,
.pt-form .secondary-actions a.btn-request-refund.forgot-password,
.secondary-actions .pt-form a.btn-request-refund.forgot-password,
.pt-form button.btn-request-refund.cancel,
.pt-form .form-action button.btn-request-refund,
#analytics #tabs button.btn-request-refund,
.btn-request-refund.btn-subscribe,
.btn-request-refund.btn-unsubscribe,
.btn-request-refund.btn-unsubscribe-not-logged-in,
#page-top .btn-request-refund.btn-subscribe,
#page-top .btn-request-refund.btn-unsubscribe,
#page-top .btn-request-refund.btn-unsubscribe-not-logged-in,
.btn-request-refund.btn-add-contributor,
.btn-request-refund.btn-save-contributor {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: rgba(0,0,0,0);
  color: #fefefe;
  font-size: 1rem;
  padding: 0.85em 1em;
}

[data-whatinput='mouse'] .btn-request-refund.button,
[data-whatinput='mouse'] .btn-request-refund.btn-add-collection,
[data-whatinput='mouse'] .document-thumbnail .btn-request-refund.action.owner-actions,
.document-thumbnail [data-whatinput='mouse'] .btn-request-refund.action.owner-actions,
[data-whatinput='mouse'] .user-thumbnail .btn-request-refund.action.owner-actions,
.user-thumbnail [data-whatinput='mouse'] .btn-request-refund.action.owner-actions,
[data-whatinput='mouse'] .document-thumbnail .btn-request-refund.view,
.document-thumbnail [data-whatinput='mouse'] .btn-request-refund.view,
[data-whatinput='mouse'] .user-thumbnail .btn-request-refund.view,
.user-thumbnail [data-whatinput='mouse'] .btn-request-refund.view,
[data-whatinput='mouse'] .btn-request-refund.btn-esign,
[data-whatinput='mouse'] .btn-request-refund.btn-share,
[data-whatinput='mouse'] .btn-request-refund.btn-embed,
[data-whatinput='mouse'] #restriction-form .btn-request-refund.btn-purchase,
#restriction-form [data-whatinput='mouse'] .btn-request-refund.btn-purchase,
[data-whatinput='mouse'] .pt-form a.btn-request-refund.cancel,
.pt-form [data-whatinput='mouse'] a.btn-request-refund.cancel,
[data-whatinput='mouse'] .pt-form .secondary-actions a.btn-request-refund.forgot-password,
.pt-form .secondary-actions [data-whatinput='mouse'] a.btn-request-refund.forgot-password,
[data-whatinput='mouse'] .secondary-actions .pt-form a.btn-request-refund.forgot-password,
.secondary-actions .pt-form [data-whatinput='mouse'] a.btn-request-refund.forgot-password,
[data-whatinput='mouse'] .pt-form button.btn-request-refund.cancel,
.pt-form [data-whatinput='mouse'] button.btn-request-refund.cancel,
[data-whatinput='mouse'] .pt-form .form-action button.btn-request-refund,
.pt-form .form-action [data-whatinput='mouse'] button.btn-request-refund,
[data-whatinput='mouse'] #analytics #tabs button.btn-request-refund,
#analytics #tabs [data-whatinput='mouse'] button.btn-request-refund,
[data-whatinput='mouse'] .btn-request-refund.btn-subscribe,
[data-whatinput='mouse'] .btn-request-refund.btn-unsubscribe,
[data-whatinput='mouse'] .btn-request-refund.btn-unsubscribe-not-logged-in,
[data-whatinput='mouse'] #page-top .btn-request-refund.btn-subscribe,
#page-top [data-whatinput='mouse'] .btn-request-refund.btn-subscribe,
[data-whatinput='mouse'] #page-top .btn-request-refund.btn-unsubscribe,
#page-top [data-whatinput='mouse'] .btn-request-refund.btn-unsubscribe,
[data-whatinput='mouse'] #page-top .btn-request-refund.btn-unsubscribe-not-logged-in,
#page-top [data-whatinput='mouse'] .btn-request-refund.btn-unsubscribe-not-logged-in,
[data-whatinput='mouse'] .btn-request-refund.btn-add-contributor,
[data-whatinput='mouse'] .btn-request-refund.btn-save-contributor {
  outline: 0;
}

.btn-request-refund.button:hover,
.btn-request-refund.btn-add-collection:hover,
.document-thumbnail .btn-request-refund.action.owner-actions:hover,
.user-thumbnail .btn-request-refund.action.owner-actions:hover,
.document-thumbnail .btn-request-refund.view:hover,
.user-thumbnail .btn-request-refund.view:hover,
.btn-request-refund.btn-esign:hover,
.btn-request-refund.btn-share:hover,
.btn-request-refund.btn-embed:hover,
#restriction-form .btn-request-refund.btn-purchase:hover,
.pt-form a.btn-request-refund.cancel:hover,
.pt-form .secondary-actions a.btn-request-refund.forgot-password:hover,
.secondary-actions .pt-form a.btn-request-refund.forgot-password:hover,
.pt-form button.btn-request-refund.cancel:hover,
.pt-form .form-action button.btn-request-refund:hover,
#analytics #tabs button.btn-request-refund:hover,
.btn-request-refund.btn-subscribe:hover,
.btn-request-refund.btn-unsubscribe:hover,
.btn-request-refund.btn-unsubscribe-not-logged-in:hover,
#page-top .btn-request-refund.btn-subscribe:hover,
#page-top .btn-request-refund.btn-unsubscribe:hover,
#page-top .btn-request-refund.btn-unsubscribe-not-logged-in:hover,
.btn-request-refund.btn-add-contributor:hover,
.btn-request-refund.btn-save-contributor:hover,
.btn-request-refund.button:focus,
.btn-request-refund.btn-add-collection:focus,
.document-thumbnail .btn-request-refund.action.owner-actions:focus,
.user-thumbnail .btn-request-refund.action.owner-actions:focus,
.document-thumbnail .btn-request-refund.view:focus,
.user-thumbnail .btn-request-refund.view:focus,
.btn-request-refund.btn-esign:focus,
.btn-request-refund.btn-share:focus,
.btn-request-refund.btn-embed:focus,
#restriction-form .btn-request-refund.btn-purchase:focus,
.pt-form a.btn-request-refund.cancel:focus,
.pt-form .secondary-actions a.btn-request-refund.forgot-password:focus,
.secondary-actions .pt-form a.btn-request-refund.forgot-password:focus,
.pt-form button.btn-request-refund.cancel:focus,
.pt-form .form-action button.btn-request-refund:focus,
#analytics #tabs button.btn-request-refund:focus,
.btn-request-refund.btn-subscribe:focus,
.btn-request-refund.btn-unsubscribe:focus,
.btn-request-refund.btn-unsubscribe-not-logged-in:focus,
#page-top .btn-request-refund.btn-subscribe:focus,
#page-top .btn-request-refund.btn-unsubscribe:focus,
#page-top .btn-request-refund.btn-unsubscribe-not-logged-in:focus,
.btn-request-refund.btn-add-contributor:focus,
.btn-request-refund.btn-save-contributor:focus {
  background-color: rgba(0,0,0,0);
  color: #fefefe;
}

#no-sold-wrapper .btn-publish,
#no-sold-wrapper .btn-explore,
#no-purchases-wrapper .btn-publish,
#no-purchases-wrapper .btn-explore {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #fe9a00;
  color: #fefefe;
  margin: 0 .7rem 0 0;
}

[data-whatinput='mouse'] #no-sold-wrapper .btn-publish,
[data-whatinput='mouse'] #no-sold-wrapper .btn-explore,
[data-whatinput='mouse'] #no-purchases-wrapper .btn-publish,
[data-whatinput='mouse'] #no-purchases-wrapper .btn-explore {
  outline: 0;
}

#no-sold-wrapper .btn-publish:hover,
#no-sold-wrapper .btn-publish:focus,
#no-sold-wrapper .btn-explore:hover,
#no-sold-wrapper .btn-explore:focus,
#no-purchases-wrapper .btn-publish:hover,
#no-purchases-wrapper .btn-publish:focus,
#no-purchases-wrapper .btn-explore:hover,
#no-purchases-wrapper .btn-explore:focus {
  background-color: #d88300;
  color: #fefefe;
}

#no-sold-wrapper .btn-edit,
#no-purchases-wrapper .btn-edit {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  border: 1px solid #fe9a00;
  color: #fe9a00;
  margin: 0 .7rem 0 0;
}

[data-whatinput='mouse'] #no-sold-wrapper .btn-edit,
[data-whatinput='mouse'] #no-purchases-wrapper .btn-edit {
  outline: 0;
}

#no-sold-wrapper .btn-edit,
#no-sold-wrapper .btn-edit:hover,
#no-sold-wrapper .btn-edit:focus,
#no-purchases-wrapper .btn-edit,
#no-purchases-wrapper .btn-edit:hover,
#no-purchases-wrapper .btn-edit:focus {
  background-color: transparent;
}

#no-sold-wrapper .btn-edit:hover,
#no-sold-wrapper .btn-edit:focus,
#no-purchases-wrapper .btn-edit:hover,
#no-purchases-wrapper .btn-edit:focus {
  border-color: #7f4d00;
  color: #7f4d00;
}

.btn-market-enabled {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #80cfff;
  color: solid;
  color: teal;
}

[data-whatinput='mouse'] .btn-market-enabled {
  outline: 0;
}

.btn-market-enabled:hover,
.btn-market-enabled:focus {
  background-color: #47b9ff;
  color: solid;
}

.btn-market-enabled:hover {
  color: teal;
}

.page-help-tabs .small-7,
.page-help-tabs .leads-title {
  border-right: 2px dotted rgba(254,254,254,0.4);
}

.page-help-tabs .tabs-content {
  background-color: transparent;
  border: 0;
}

.page-help-tabs .tabs-title a {
  font-size: 1rem;
  display: block;
  color: #fefefe;
  padding: .5rem;
}

.page-help-tabs .tabs-title a:hover {
  color: #fe9a00;
  background: transparent;
}

.page-help-tabs .tabs-title a:focus,
.page-help-tabs .tabs-title a[aria-selected='true'] {
  background: transparent;
}

.page-help-tabs .tabs-title i {
  transition: all 0.5s ease;
  color: rgba(254,254,254,0.5);
  margin-right: 1rem;
}

.page-help-tabs .tabs-title.is-active i,
.page-help-tabs .tabs-title.active i {
  color: #fe9a00;
}

.page-help-tabs .tabs.vertical,
.page-help-tabs .off-canvas .menuBar ul.tabs.menu,
.off-canvas .menuBar .page-help-tabs ul.tabs.menu {
  margin: 3rem 0 1rem;
  background: transparent;
  border: 0;
}

.pt-table thead,
.pt-table tbody,
.pt-table tfoot {
  color: #fefefe;
  border: 0;
}

.pt-table thead {
  background-color: transparent;
}

.pt-table th,
.pt-table td {
  border-right: 1px solid rgba(128,207,255,0.1);
  border-left: 1px solid rgba(128,207,255,0.1);
}

.pt-table th:nth-last-child,
.pt-table td:nth-last-child {
  border-right: 0;
}

.pt-table tbody {
  background-color: transparent;
}

.pt-table tbody td {
  padding: 1rem .5rem;
}

.pt-table a.view {
  color: #fefefe;
  text-decoration: underline;
}

.pt-table a.view:hover {
  color: #dadada;
}

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

#marketplace-tabs,
#marketplace-content {
  background-color: transparent;
  border: 0;
}

#marketplace-tabs {
  margin-top: 1rem;
  border-bottom: 1px solid #80cfff;
}

#marketplace-tabs .tabs-title>a {
  font-size: 1.25rem;
  margin: 0 .5rem;
  padding: 1rem 2rem;
  border: 1px solid #80cfff;
  border-bottom: 0;
  color: #80cfff;
}

#marketplace-tabs .tabs-title>a:hover,
#marketplace-tabs .tabs-title>a:focus,
#marketplace-tabs .tabs-title>a[aria-selected='true'] {
  background-color: #80cfff;
  color: teal;
}

#marketplace-external-tabs {
  margin: 0;
}

#marketplace-external-tabs li {
  margin: 0;
}

#analytics {
  padding: 2rem 0 0 0;
}

#analytics .accordion {
  width: 100%;
  background-color: transparent;
  border: 0;
}

#analytics #startDate,
#analytics #endDate {
  width: 6.5rem;
  height: 1.3rem;
  display: inline-block;
}

#analytics label #startDate,
#analytics #endDate {
  height: 1.5rem;
}

#analytics #startDate,
#analytics #endDate,
#analytics .prefix {
  display: inline-block;
  color: white;
  background-color: rgba(128,207,255,0.25);
}

#analytics .calendar {
  margin-top: 0.8rem;
  display: none;
}

#analytics .accordion-item .accordion-title .fa,
#analytics .accordion-item .accordion-title i,
#analytics .accordion-item .accordion-title #no-content::before,
#analytics .accordion-item .accordion-title #viewer-modal.modal-loading p::before,
#viewer-modal.modal-loading #analytics .accordion-item .accordion-title p::before,
#analytics .accordion-item .accordion-title .social-links a,
.social-links #analytics .accordion-item .accordion-title a,
#analytics .accordion-item .accordion-title .search-meta a,
.search-meta #analytics .accordion-item .accordion-title a,
#analytics .accordion-item .accordion-title .search-meta span,
.search-meta #analytics .accordion-item .accordion-title span,
#analytics .accordion-item .accordion-title .pt-form label.custom::before,
.pt-form #analytics .accordion-item .accordion-title label.custom::before,
#analytics .accordion-item .accordion-title #form-error-summary .alert::before,
#form-error-summary #analytics .accordion-item .accordion-title .alert::before,
#analytics .accordion-item .accordion-title .form-error .alert::before,
.form-error #analytics .accordion-item .accordion-title .alert::before,
#analytics .accordion-item .accordion-title .help-tip::before,
#analytics .accordion-item .accordion-title .cr input[type=checkbox]+label::before,
.cr #analytics .accordion-item .accordion-title input[type=checkbox]+label::before,
#analytics .accordion-item .accordion-title .cr input[type=radio]+label::before,
.cr #analytics .accordion-item .accordion-title input[type=radio]+label::before,
#analytics .accordion-item .accordion-title .dz-preview p[data-dz-remove],
.dz-preview #analytics .accordion-item .accordion-title p[data-dz-remove],
#analytics .accordion-item .accordion-title .overlay-card::before,
#analytics .accordion-item .accordion-title #as-facebook::before,
#analytics .accordion-item .accordion-title #as-twitter::before,
#analytics .accordion-item .accordion-title #as-linkedin::before {
  position: absolute;
  right: .5rem;
}

#analytics .accordion-item.is-active {
  background-color: rgba(10,10,10,0.25);
}

#analytics .accordion-item.is-active.is-active .accordion-title .fa,
#analytics .accordion-item.is-active.is-active .accordion-title i,
#analytics .accordion-item.is-active.is-active .accordion-title #no-content::before,
#analytics .accordion-item.is-active.is-active .accordion-title #viewer-modal.modal-loading p::before,
#viewer-modal.modal-loading #analytics .accordion-item.is-active.is-active .accordion-title p::before,
#analytics .accordion-item.is-active.is-active .accordion-title .social-links a,
.social-links #analytics .accordion-item.is-active.is-active .accordion-title a,
#analytics .accordion-item.is-active.is-active .accordion-title .search-meta a,
.search-meta #analytics .accordion-item.is-active.is-active .accordion-title a,
#analytics .accordion-item.is-active.is-active .accordion-title .search-meta span,
.search-meta #analytics .accordion-item.is-active.is-active .accordion-title span,
#analytics .accordion-item.is-active.is-active .accordion-title .pt-form label.custom::before,
.pt-form #analytics .accordion-item.is-active.is-active .accordion-title label.custom::before,
#analytics .accordion-item.is-active.is-active .accordion-title #form-error-summary .alert::before,
#form-error-summary #analytics .accordion-item.is-active.is-active .accordion-title .alert::before,
#analytics .accordion-item.is-active.is-active .accordion-title .form-error .alert::before,
.form-error #analytics .accordion-item.is-active.is-active .accordion-title .alert::before,
#analytics .accordion-item.is-active.is-active .accordion-title .help-tip::before,
#analytics .accordion-item.is-active.is-active .accordion-title .cr input[type=checkbox]+label::before,
.cr #analytics .accordion-item.is-active.is-active .accordion-title input[type=checkbox]+label::before,
#analytics .accordion-item.is-active.is-active .accordion-title .cr input[type=radio]+label::before,
.cr #analytics .accordion-item.is-active.is-active .accordion-title input[type=radio]+label::before,
#analytics .accordion-item.is-active.is-active .accordion-title .dz-preview p[data-dz-remove],
.dz-preview #analytics .accordion-item.is-active.is-active .accordion-title p[data-dz-remove],
#analytics .accordion-item.is-active.is-active .accordion-title .overlay-card::before,
#analytics .accordion-item.is-active.is-active .accordion-title #as-facebook::before,
#analytics .accordion-item.is-active.is-active .accordion-title #as-twitter::before,
#analytics .accordion-item.is-active.is-active .accordion-title #as-linkedin::before {
  transform: rotate(-90deg);
}

#analytics .accordion-item img {
  max-height: 100px;
  padding: 1rem 0;
}

#analytics #summary {
  text-align: center;
  font-size: 18px;
}

#analytics .accordion-title {
  color: #fefefe;
  border: 0;
  font-size: 16px;
  padding: 1rem 1rem;
}

#analytics .accordion-title:hover,
#analytics .accordion-title:focus {
  background-color: transparent;
}

#analytics .accordion-title::before {
  content: '';
}

#analytics .accordion-content {
  list-style-type: none;
  margin: 0;
  border: 0;
  border-top: 1px dotted rgba(254,254,254,0.5);
  padding: .25rem 1rem;
  font-size: 14px;
}

#analytics .accordion-content li {
  padding: .25rem 0;
}

#analytics #tabs button {
  background-color: rgba(128,207,255,0.25);
  text-align: left;
  font-size: 16px;
}

#analytics #tabs button.active {
  background-color: #fe9a00;
}

@media print, screen and (min-width: 40em) {
  #analytics #tabs button {
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 39.9375em) {
  #analytics #tabs button {
    font-size: 12px;
  }
}

#analytics #analytics-msg-container {
  min-height: 8em;
  justify-content: center;
  align-items: center;
}

#analytics #analytics-msg-container h3 {
  text-align: center;
}

#analytics #analytics-chart {
  padding-top: 15px;
  padding-left: 15px;
  height: 100%;
  width: 100%;
}

#analytics #documentList {
  background-color: rgba(128,207,255,0.25);
  overflow-y: auto;
  height: 300px;
}

@media screen and (max-width: 39.9375em) {
  #analytics #documentList {
    height: 150px;
    font-size: 14px;
  }
}

#no-leads-wrapper,
#no-merchant-id-wrapper,
#no-templates-wrapper {
  padding: 1rem 0 1.5rem;
  border-top: 2px dotted rgba(254,254,254,0.4);
  margin: 0 auto;
}

@media screen and (max-width: 39.9375em) {
  #no-leads-wrapper,
  #no-merchant-id-wrapper,
  #no-templates-wrapper {
    border-top: 0;
  }
}

@media screen and (min-width: 64em) {
  #no-leads-wrapper,
  #no-merchant-id-wrapper,
  #no-templates-wrapper {
    max-width: 960px;
  }
}

.btn-publish {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #80cfff;
  color: solid;
  color: teal;
  margin: 0 .7rem 0 0;
}

[data-whatinput='mouse'] .btn-publish {
  outline: 0;
}

.btn-publish:hover,
.btn-publish:focus {
  background-color: #47b9ff;
  color: solid;
}

.btn-publish:hover {
  color: teal;
}

.btn-edit {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  border: 1px solid #80cfff;
  color: #80cfff;
  margin: 0 .7rem 0 0;
}

[data-whatinput='mouse'] .btn-edit {
  outline: 0;
}

.btn-edit,
.btn-edit:hover,
.btn-edit:focus {
  background-color: transparent;
}

.btn-edit:hover,
.btn-edit:focus {
  border-color: #0077c0;
  color: #0077c0;
}

#leads-wrapper {
  margin: 0 auto;
}

#leads-wrapper h2,
#leads-wrapper .pt-form.centered fieldset legend,
.pt-form.centered fieldset #leads-wrapper legend {
  border-bottom: 2px rgba(254,254,254,0.2) dotted;
}

#leads-wrapper .accordion-content {
  padding-top: .5rem;
}

#leads-wrapper .lead,
#leads-wrapper .document-group .description,
.document-group #leads-wrapper .description {
  font-size: 1.1rem;
}

@media screen and (min-width: 64em) {
  #leads-wrapper {
    max-width: 960px;
  }
}

.leads-counts {
  font-size: .75rem;
  margin-top: .1rem;
}

.leads-stats {
  color: #fefefe;
}

#base-modal {
  background-color: teal;
  color: #fefefe;
}

.modal-message {
  padding: 1rem 0;
}

@media screen and (max-width: 39.9375em) {
  .modal-buttons button {
    text-align: center !important;
    display: block !important;
    margin: auto !important;
    margin-bottom: 1rem !important;
  }
}

.modal-buttons .button.confirm,
.modal-buttons .confirm.btn-add-collection,
.modal-buttons .document-thumbnail .confirm.action.owner-actions,
.document-thumbnail .modal-buttons .confirm.action.owner-actions,
.modal-buttons .user-thumbnail .confirm.action.owner-actions,
.user-thumbnail .modal-buttons .confirm.action.owner-actions,
.modal-buttons .document-thumbnail .confirm.view,
.document-thumbnail .modal-buttons .confirm.view,
.modal-buttons .user-thumbnail .confirm.view,
.user-thumbnail .modal-buttons .confirm.view,
.modal-buttons .confirm.btn-esign,
.modal-buttons .confirm.btn-share,
.modal-buttons .confirm.btn-embed,
.modal-buttons #restriction-form .confirm.btn-purchase,
#restriction-form .modal-buttons .confirm.btn-purchase,
.modal-buttons .pt-form a.confirm.cancel,
.pt-form .modal-buttons a.confirm.cancel,
.modal-buttons .pt-form .secondary-actions a.confirm.forgot-password,
.pt-form .secondary-actions .modal-buttons a.confirm.forgot-password,
.modal-buttons .secondary-actions .pt-form a.confirm.forgot-password,
.secondary-actions .pt-form .modal-buttons a.confirm.forgot-password,
.modal-buttons .pt-form button.confirm.cancel,
.pt-form .modal-buttons button.confirm.cancel,
.modal-buttons .pt-form .form-action button.confirm,
.pt-form .form-action .modal-buttons button.confirm,
.modal-buttons #analytics #tabs button.confirm,
#analytics #tabs .modal-buttons button.confirm,
.modal-buttons .confirm.btn-subscribe,
.modal-buttons .confirm.btn-unsubscribe,
.modal-buttons .confirm.btn-unsubscribe-not-logged-in,
.modal-buttons #page-top .confirm.btn-subscribe,
#page-top .modal-buttons .confirm.btn-subscribe,
.modal-buttons #page-top .confirm.btn-unsubscribe,
#page-top .modal-buttons .confirm.btn-unsubscribe,
.modal-buttons #page-top .confirm.btn-unsubscribe-not-logged-in,
#page-top .modal-buttons .confirm.btn-unsubscribe-not-logged-in,
.modal-buttons .confirm.btn-add-contributor,
.modal-buttons .confirm.btn-save-contributor {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #80cfff;
  color: #fefefe;
  margin-right: .5rem;
  color: teal;
}

[data-whatinput='mouse'] .modal-buttons .button.confirm,
[data-whatinput='mouse'] .modal-buttons .confirm.btn-add-collection,
[data-whatinput='mouse'] .modal-buttons .document-thumbnail .confirm.action.owner-actions,
.document-thumbnail [data-whatinput='mouse'] .modal-buttons .confirm.action.owner-actions,
[data-whatinput='mouse'] .modal-buttons .user-thumbnail .confirm.action.owner-actions,
.user-thumbnail [data-whatinput='mouse'] .modal-buttons .confirm.action.owner-actions,
[data-whatinput='mouse'] .modal-buttons .document-thumbnail .confirm.view,
.document-thumbnail [data-whatinput='mouse'] .modal-buttons .confirm.view,
[data-whatinput='mouse'] .modal-buttons .user-thumbnail .confirm.view,
.user-thumbnail [data-whatinput='mouse'] .modal-buttons .confirm.view,
[data-whatinput='mouse'] .modal-buttons .confirm.btn-esign,
[data-whatinput='mouse'] .modal-buttons .confirm.btn-share,
[data-whatinput='mouse'] .modal-buttons .confirm.btn-embed,
[data-whatinput='mouse'] .modal-buttons #restriction-form .confirm.btn-purchase,
#restriction-form [data-whatinput='mouse'] .modal-buttons .confirm.btn-purchase,
[data-whatinput='mouse'] .modal-buttons .pt-form a.confirm.cancel,
.pt-form [data-whatinput='mouse'] .modal-buttons a.confirm.cancel,
[data-whatinput='mouse'] .modal-buttons .pt-form .secondary-actions a.confirm.forgot-password,
.pt-form .secondary-actions [data-whatinput='mouse'] .modal-buttons a.confirm.forgot-password,
[data-whatinput='mouse'] .modal-buttons .secondary-actions .pt-form a.confirm.forgot-password,
.secondary-actions .pt-form [data-whatinput='mouse'] .modal-buttons a.confirm.forgot-password,
[data-whatinput='mouse'] .modal-buttons .pt-form button.confirm.cancel,
.pt-form [data-whatinput='mouse'] .modal-buttons button.confirm.cancel,
[data-whatinput='mouse'] .modal-buttons .pt-form .form-action button.confirm,
.pt-form .form-action [data-whatinput='mouse'] .modal-buttons button.confirm,
[data-whatinput='mouse'] .modal-buttons #analytics #tabs button.confirm,
#analytics #tabs [data-whatinput='mouse'] .modal-buttons button.confirm,
[data-whatinput='mouse'] .modal-buttons .confirm.btn-subscribe,
[data-whatinput='mouse'] .modal-buttons .confirm.btn-unsubscribe,
[data-whatinput='mouse'] .modal-buttons .confirm.btn-unsubscribe-not-logged-in,
[data-whatinput='mouse'] .modal-buttons #page-top .confirm.btn-subscribe,
#page-top [data-whatinput='mouse'] .modal-buttons .confirm.btn-subscribe,
[data-whatinput='mouse'] .modal-buttons #page-top .confirm.btn-unsubscribe,
#page-top [data-whatinput='mouse'] .modal-buttons .confirm.btn-unsubscribe,
[data-whatinput='mouse'] .modal-buttons #page-top .confirm.btn-unsubscribe-not-logged-in,
#page-top [data-whatinput='mouse'] .modal-buttons .confirm.btn-unsubscribe-not-logged-in,
[data-whatinput='mouse'] .modal-buttons .confirm.btn-add-contributor,
[data-whatinput='mouse'] .modal-buttons .confirm.btn-save-contributor {
  outline: 0;
}

.modal-buttons .button.confirm:hover,
.modal-buttons .confirm.btn-add-collection:hover,
.modal-buttons .document-thumbnail .confirm.action.owner-actions:hover,
.document-thumbnail .modal-buttons .confirm.action.owner-actions:hover,
.modal-buttons .user-thumbnail .confirm.action.owner-actions:hover,
.user-thumbnail .modal-buttons .confirm.action.owner-actions:hover,
.modal-buttons .document-thumbnail .confirm.view:hover,
.document-thumbnail .modal-buttons .confirm.view:hover,
.modal-buttons .user-thumbnail .confirm.view:hover,
.user-thumbnail .modal-buttons .confirm.view:hover,
.modal-buttons .confirm.btn-esign:hover,
.modal-buttons .confirm.btn-share:hover,
.modal-buttons .confirm.btn-embed:hover,
.modal-buttons #restriction-form .confirm.btn-purchase:hover,
#restriction-form .modal-buttons .confirm.btn-purchase:hover,
.modal-buttons .pt-form a.confirm.cancel:hover,
.pt-form .modal-buttons a.confirm.cancel:hover,
.modal-buttons .pt-form .secondary-actions a.confirm.forgot-password:hover,
.pt-form .secondary-actions .modal-buttons a.confirm.forgot-password:hover,
.modal-buttons .secondary-actions .pt-form a.confirm.forgot-password:hover,
.secondary-actions .pt-form .modal-buttons a.confirm.forgot-password:hover,
.modal-buttons .pt-form button.confirm.cancel:hover,
.pt-form .modal-buttons button.confirm.cancel:hover,
.modal-buttons .pt-form .form-action button.confirm:hover,
.pt-form .form-action .modal-buttons button.confirm:hover,
.modal-buttons #analytics #tabs button.confirm:hover,
#analytics #tabs .modal-buttons button.confirm:hover,
.modal-buttons .confirm.btn-subscribe:hover,
.modal-buttons .confirm.btn-unsubscribe:hover,
.modal-buttons .confirm.btn-unsubscribe-not-logged-in:hover,
.modal-buttons #page-top .confirm.btn-subscribe:hover,
#page-top .modal-buttons .confirm.btn-subscribe:hover,
.modal-buttons #page-top .confirm.btn-unsubscribe:hover,
#page-top .modal-buttons .confirm.btn-unsubscribe:hover,
.modal-buttons #page-top .confirm.btn-unsubscribe-not-logged-in:hover,
#page-top .modal-buttons .confirm.btn-unsubscribe-not-logged-in:hover,
.modal-buttons .confirm.btn-add-contributor:hover,
.modal-buttons .confirm.btn-save-contributor:hover,
.modal-buttons .button.confirm:focus,
.modal-buttons .confirm.btn-add-collection:focus,
.modal-buttons .document-thumbnail .confirm.action.owner-actions:focus,
.document-thumbnail .modal-buttons .confirm.action.owner-actions:focus,
.modal-buttons .user-thumbnail .confirm.action.owner-actions:focus,
.user-thumbnail .modal-buttons .confirm.action.owner-actions:focus,
.modal-buttons .document-thumbnail .confirm.view:focus,
.document-thumbnail .modal-buttons .confirm.view:focus,
.modal-buttons .user-thumbnail .confirm.view:focus,
.user-thumbnail .modal-buttons .confirm.view:focus,
.modal-buttons .confirm.btn-esign:focus,
.modal-buttons .confirm.btn-share:focus,
.modal-buttons .confirm.btn-embed:focus,
.modal-buttons #restriction-form .confirm.btn-purchase:focus,
#restriction-form .modal-buttons .confirm.btn-purchase:focus,
.modal-buttons .pt-form a.confirm.cancel:focus,
.pt-form .modal-buttons a.confirm.cancel:focus,
.modal-buttons .pt-form .secondary-actions a.confirm.forgot-password:focus,
.pt-form .secondary-actions .modal-buttons a.confirm.forgot-password:focus,
.modal-buttons .secondary-actions .pt-form a.confirm.forgot-password:focus,
.secondary-actions .pt-form .modal-buttons a.confirm.forgot-password:focus,
.modal-buttons .pt-form button.confirm.cancel:focus,
.pt-form .modal-buttons button.confirm.cancel:focus,
.modal-buttons .pt-form .form-action button.confirm:focus,
.pt-form .form-action .modal-buttons button.confirm:focus,
.modal-buttons #analytics #tabs button.confirm:focus,
#analytics #tabs .modal-buttons button.confirm:focus,
.modal-buttons .confirm.btn-subscribe:focus,
.modal-buttons .confirm.btn-unsubscribe:focus,
.modal-buttons .confirm.btn-unsubscribe-not-logged-in:focus,
.modal-buttons #page-top .confirm.btn-subscribe:focus,
#page-top .modal-buttons .confirm.btn-subscribe:focus,
.modal-buttons #page-top .confirm.btn-unsubscribe:focus,
#page-top .modal-buttons .confirm.btn-unsubscribe:focus,
.modal-buttons #page-top .confirm.btn-unsubscribe-not-logged-in:focus,
#page-top .modal-buttons .confirm.btn-unsubscribe-not-logged-in:focus,
.modal-buttons .confirm.btn-add-contributor:focus,
.modal-buttons .confirm.btn-save-contributor:focus {
  background-color: #47b9ff;
  color: #fefefe;
}

.modal-buttons .button.confirm:hover,
.modal-buttons .confirm.btn-add-collection:hover,
.modal-buttons .document-thumbnail .confirm.action.owner-actions:hover,
.document-thumbnail .modal-buttons .confirm.action.owner-actions:hover,
.modal-buttons .user-thumbnail .confirm.action.owner-actions:hover,
.user-thumbnail .modal-buttons .confirm.action.owner-actions:hover,
.modal-buttons .document-thumbnail .confirm.view:hover,
.document-thumbnail .modal-buttons .confirm.view:hover,
.modal-buttons .user-thumbnail .confirm.view:hover,
.user-thumbnail .modal-buttons .confirm.view:hover,
.modal-buttons .confirm.btn-esign:hover,
.modal-buttons .confirm.btn-share:hover,
.modal-buttons .confirm.btn-embed:hover,
.modal-buttons #restriction-form .confirm.btn-purchase:hover,
#restriction-form .modal-buttons .confirm.btn-purchase:hover,
.modal-buttons .pt-form a.confirm.cancel:hover,
.pt-form .modal-buttons a.confirm.cancel:hover,
.modal-buttons .pt-form .secondary-actions a.confirm.forgot-password:hover,
.pt-form .secondary-actions .modal-buttons a.confirm.forgot-password:hover,
.modal-buttons .secondary-actions .pt-form a.confirm.forgot-password:hover,
.secondary-actions .pt-form .modal-buttons a.confirm.forgot-password:hover,
.modal-buttons .pt-form button.confirm.cancel:hover,
.pt-form .modal-buttons button.confirm.cancel:hover,
.modal-buttons .pt-form .form-action button.confirm:hover,
.pt-form .form-action .modal-buttons button.confirm:hover,
.modal-buttons #analytics #tabs button.confirm:hover,
#analytics #tabs .modal-buttons button.confirm:hover,
.modal-buttons .confirm.btn-subscribe:hover,
.modal-buttons .confirm.btn-unsubscribe:hover,
.modal-buttons .confirm.btn-unsubscribe-not-logged-in:hover,
.modal-buttons #page-top .confirm.btn-subscribe:hover,
#page-top .modal-buttons .confirm.btn-subscribe:hover,
.modal-buttons #page-top .confirm.btn-unsubscribe:hover,
#page-top .modal-buttons .confirm.btn-unsubscribe:hover,
.modal-buttons #page-top .confirm.btn-unsubscribe-not-logged-in:hover,
#page-top .modal-buttons .confirm.btn-unsubscribe-not-logged-in:hover,
.modal-buttons .confirm.btn-add-contributor:hover,
.modal-buttons .confirm.btn-save-contributor:hover {
  color: teal;
}

.pt-accordion .accordion {
  background-color: transparent;
  border: 0;
  margin-top: 1rem;
}

.pt-accordion .accordion-item.is-active .accordion-title i.fa-plus-circle::before {
  content: '\f056';
}

.pt-accordion .accordion-item img {
  max-height: 100px;
  padding: 1rem 0;
}

.pt-accordion .accordion-title {
  color: #fefefe;
  border: 0;
  font-size: 1.3rem;
}

.pt-accordion .accordion-title .fa-plus-circle {
  color: #80cfff;
  margin-right: .5rem;
}

.pt-accordion .accordion-title:hover,
.pt-accordion .accordion-title:focus {
  background-color: transparent;
}

.pt-accordion .accordion-title::before {
  content: '';
}

.pt-accordion .accordion-content {
  border: 0;
  border-top: 1px solid rgba(128,207,255,0.1);
}

.pt-accordion .accordion-content h2,
.pt-accordion .accordion-content .pt-form.centered fieldset legend,
.pt-form.centered fieldset .pt-accordion .accordion-content legend,
.pt-accordion .accordion-content h3,
.pt-accordion .accordion-content h4 {
  color: #80cfff;
}

.template .accordion-title {
  padding: 0;
}

.template-logo {
  border-right: 1px solid rgba(128,207,255,0.1);
  border-left: 1px solid rgba(128,207,255,0.1);
}

.template-controls {
  padding: .5rem;
}

@media screen and (max-width: 63.9375em) {
  .template-controls .btn-set-default {
    margin-right: 0;
  }

  .template-controls .btn-set-default,
  .template-controls .btn-publish-template,
  .template-controls .btn-delete-template {
    width: 100%;
  }
}

.btn-set-default {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  border: 1px solid #80cfff;
  color: #80cfff;
  margin: 0 .7rem 0 0;
}

[data-whatinput='mouse'] .btn-set-default {
  outline: 0;
}

.btn-set-default,
.btn-set-default:hover,
.btn-set-default:focus {
  background-color: transparent;
}

.btn-set-default:hover,
.btn-set-default:focus {
  border-color: #0077c0;
  color: #0077c0;
}

.btn-publish-template {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #80cfff;
  color: solid;
  color: teal;
}

[data-whatinput='mouse'] .btn-publish-template {
  outline: 0;
}

.btn-publish-template:hover,
.btn-publish-template:focus {
  background-color: #47b9ff;
  color: solid;
}

.btn-publish-template:hover {
  color: teal;
}

.btn-delete-template {
  padding: 0.85em 1em;
  color: #fe9a00;
  display: block;
}

.no-logo {
  font-size: 1rem;
  padding: 1rem 0;
}

.no-logo p {
  margin-bottom: 0;
}

.no-logo i {
  display: inline;
  opacity: .25;
}

.pt-accordion li.accordion-item,
.pt-table tbody tr,
.contributors-wrapper li,
.contributing-wrapper li {
  background-color: rgba(128,207,255,0.25);
}

.pt-accordion li.accordion-item:nth-child(even),
.pt-table tbody tr:nth-child(even),
.contributors-wrapper li:nth-child(even),
.contributing-wrapper li:nth-child(even) {
  background-color: rgba(128,207,255,0.1);
}

#templates-wrapper {
  margin: 0 auto;
}

@media screen and (min-width: 64em) {
  #templates-wrapper {
    max-width: 960px;
  }
}

.dz-clickable {
  border: .0625rem dashed #7f7f7f;
  border-radius: .3125rem;
  cursor: pointer;
  padding: .625rem;
}

.dz-clickable:hover {
  border-color: #fefefe;
}

.dz-disabled {
  border: .0625rem dashed #bebebe;
  border-radius: .3125rem;
  cursor: not-allowed;
  color: #fefefe;
  opacity: 25%;
}

.dz-pre-upload,
.dz-pre-upload-disabled {
  pointer-events: none;
}

.dz-pre-upload span,
.dz-pre-upload-disabled span {
  color: #80ffff;
  display: block;
  font-size: .7rem;
  font-style: italic;
}

.dz-max-files-reached:not(.dz-drag-hover):not(.dz-dragging) {
  border: 0;
}

.dz-drag-hover {
  border-style: dashed;
  border-color: #fefefe;
  background-color: #005080;
  padding: .5625rem;
}

.dz-dragging {
  border-style: dashed;
  border-color: #7f7f7f;
  padding: .5625rem;
}

.dz-preview {
  margin: 0 auto;
  display: inline-block;
  position: relative;
  width: auto !important;
}

.dz-preview img[data-dz-thumbnail] {
  max-width: 250px;
  max-height: 250px;
  box-shadow: 0 0 5px #0a0a0a;
  cursor: default;
}

.dz-preview p[data-dz-remove] {
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
  opacity: .5;
  text-shadow: 0 0 10px #0a0a0a;
}

.dz-preview p[data-dz-remove]:hover {
  opacity: 1;
  color: #db4a39;
  text-shadow: none;
}

.fallback {
  display: none;
}

#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #fe9a00;
  position: fixed;
  z-index: 999999999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

#nprogress .peg {
  display: block;
  position: absolute;
  right: 0;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #fe9a00,0 0 5px #fe9a00;
  opacity: 1;
  transform: rotate(3deg) translate(0, -4px);
}

#nprogress .spinner {
  display: none;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes nprogress-spinner {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#upload-form {
  max-width: 960px;
  margin: 0 auto;
}

#upload-form #form-error-summary ul {
  margin-left: 1.25rem;
}

#upload-form input:disabled,
#upload-form input.disabled,
#upload-form input[disabled],
#upload-form label:disabled,
#upload-form label.disabled,
#upload-form label[disabled],
#upload-form select:disabled,
#upload-form select.disabled,
#upload-form select[disabled],
#upload-form .fieldset input:disabled,
#upload-form .fieldset input.disabled,
#upload-form .fieldset input[disabled],
#upload-form button:disabled,
#upload-form button.disabled,
#upload-form button[disabled] {
  opacity: .25;
}

#additional-info select,
#template select {
  color: black;
}

#slideshow-speed {
  width: 40px;
  color: black;
  margin-left: 10px;
}

.slideshow-label {
  color: #7da1b2;
}

#captcha {
  margin-left: 45px;
  margin-bottom: 15px;
}

.file-selected,
.url-selected {
  display: none;
}

.file-selected::before,
.url-selected::before {
  color: #9bb304;
  position: relative;
  top: 5px;
  left: 35px;
}

.segmented-group {
  display: flex;
}

.segmented-group .segmented-item {
  list-style-type: none;
  padding: 0;
  flex: 1;
  border: 1px solid #7da1b2;
  margin: 0 -1px -1px 0;
}

.segmented-group .segmented-input {
  position: absolute;
  visibility: hidden;
}

.segmented-group .segmented-input:checked+.segmented-label {
  background: #7da1b2;
  color: #fefefe;
}

.segmented-group .segmented-input:checked+.segmented-label .help-text {
  color: #fefefe;
}

.segmented-group .segmented-label {
  display: block;
  cursor: pointer;
  padding: .5rem 1rem;
  margin: 0;
  text-align: center;
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 39.9375em) {
  .segmented-group .segmented-label {
    padding: .5rem 0;
  }
}

.segmented-group .segmented-label .help-text {
  padding-top: .5rem;
  display: block;
  line-height: normal;
}

.segmented-group .segmented-label:hover {
  background-color: rgba(125,161,178,0.4);
  color: #fefefe;
}

.segmented-group .segmented-label:hover .help-text {
  color: #fefefe;
}

.typeahead {
  background-color: #00b3b3;
  list-style: none;
  position: absolute;
}

.typeahead a {
  color: #fefefe;
  display: block;
  padding: 1rem;
}

.typeahead a strong {
  color: #fe9a00;
}

.typeahead .active {
  background-color: #01ffff;
}

.bootstrap-tagsinput .tag [data-role='remove']::before {
  color: #fefefe;
  content: 'x';
  cursor: pointer;
  font-weight: 800;
  margin-left: .625rem;
}

#profile-wrapper {
  margin: 0 auto;
}

@media screen and (min-width: 64em) {
  #profile-wrapper {
    max-width: 960px;
  }
}

#userProfile,
#userSocial {
  padding-top: 2rem;
}

.contact-details {
  padding-top: .5rem;
}

#userSocial {
  padding-bottom: 2rem;
}

#userInfo,
#userLogo {
  border-right: 2px rgba(254,254,254,0.2) dotted;
}

@media screen and (max-width: 63.9375em) {
  #userInfo {
    border-right: 0;
  }
}

#userLogo.default {
  justify-content: center;
  align-items: center;
  display: flex;
}

#userLogo .profile-badge {
  height: 9rem;
  min-width: 9rem;
  max-width: 9rem;
}

#userLogo .profile-badge .badge-letter {
  font-size: 4.5rem;
}

#userInfo h1,
#userDescription,
#userContact,
#read-more {
  word-break: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  text-align: justify;
}

#userLogo {
  position: relative;
}

#userLogo i {
  font-size: 10rem;
  opacity: .25;
  color: #7da1b2;
}

@media screen and (max-width: 39.9375em) {
  #userLogo i {
    font-size: 6rem;
  }
}

#userLogo img {
  max-height: 300px;
}

#btn-add-logo {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: rgba(0,0,0,0);
  color: #fefefe;
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  font-family: "Raleway";
  font-size: 1.5rem;
  color: #80cfff;
}

[data-whatinput='mouse'] #btn-add-logo {
  outline: 0;
}

#btn-add-logo:hover,
#btn-add-logo:focus {
  background-color: rgba(0,0,0,0);
  color: #fefefe;
}

#btn-add-logo span {
  display: block;
}

@media screen and (max-width: 39.9375em) {
  #btn-add-logo {
    font-size: 1.25rem;
  }
}

#userStats h4 {
  margin-bottom: 0;
}

#userStats ul {
  list-style: none;
  margin: 0 0 .75rem;
}

#userStats button,
#userStats a {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: rgba(0,0,0,0);
  color: #fefefe;
  font-size: 1rem;
  padding: 0;
  color: #80cfff;
}

[data-whatinput='mouse'] #userStats button,
[data-whatinput='mouse'] #userStats a {
  outline: 0;
}

#userStats button:hover,
#userStats button:focus,
#userStats a:hover,
#userStats a:focus {
  background-color: rgba(0,0,0,0);
  color: #fefefe;
}

#btn-setup-profile {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #80cfff;
  color: #fefefe;
  color: teal;
  font-family: "Raleway";
  margin-bottom: 1.25rem;
}

[data-whatinput='mouse'] #btn-setup-profile {
  outline: 0;
}

#btn-setup-profile:hover,
#btn-setup-profile:focus {
  background-color: #47b9ff;
  color: #fefefe;
}

#btn-setup-profile:hover {
  color: teal;
}

#btn-edit-profile {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #80cfff;
  color: #fefefe;
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  color: teal;
  font-family: "Raleway";
  margin-left: -.95rem;
  position: absolute;
  bottom: 0;
}

[data-whatinput='mouse'] #btn-edit-profile {
  outline: 0;
}

#btn-edit-profile:hover,
#btn-edit-profile:focus {
  background-color: #47b9ff;
  color: #fefefe;
}

#btn-edit-profile:hover {
  color: teal;
}

.connection {
  margin-bottom: .5rem;
  border-right: 2px rgba(254,254,254,0.4) dotted;
}

.connection a {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: rgba(0,0,0,0);
  color: #fefefe;
  color: #80cfff;
  padding: .25rem 0;
}

[data-whatinput='mouse'] .connection a {
  outline: 0;
}

.connection a:hover,
.connection a:focus {
  background-color: rgba(0,0,0,0);
  color: #fefefe;
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .connection:nth-of-type(6) {
    border-right: 0;
  }
}

@media screen and (max-width: 39.9375em) {
  .connection:nth-of-type(4) {
    border-right: 0;
  }
}

.connection:last-of-type,
#userProfile div:last-of-type {
  border-right: 0;
}

#legacy-edocr-message {
  margin: 0 auto;
  padding: .3125rem;
  border: 1px solid #b8860b;
  background-color: #fffad0;
}

#legacy-edocr-message p {
  margin: 0;
}

#search-profile-area {
  display: flex;
}

#search-profile-area #search-profile-form {
  padding: 0;
  display: flex;
}

#search-profile-area #search-profile-form input {
  flex: 1;
  box-shadow: 0;
  border: 1px solid #008080;
  height: 2rem;
}

#search-profile-area #search-profile-form ::-moz-placeholder {
  color: #008080;
}

#search-profile-area #search-profile-form :-ms-input-placeholder {
  color: #008080;
}

#search-profile-area #search-profile-form ::placeholder {
  color: #008080;
}

.search-collection-form {
  padding: 0;
  display: flex;
}

.search-collection-form input {
  flex: 1;
  box-shadow: 0;
  border: 1px solid #008080;
  height: 2rem;
}

.search-collection-form ::-moz-placeholder {
  color: #008080;
}

.search-collection-form :-ms-input-placeholder {
  color: #008080;
}

.search-collection-form ::placeholder {
  color: #008080;
}

#editaccount-form fieldset {
  border: 0;
}

#editaccount-form legend {
  text-align: left;
}

#editaccount-form textarea {
  min-height: 6.25rem;
}

#editaccount-form button.primary-action {
  max-width: 100px;
  float: right;
}

#profile-image,
#document-logo,
.upload-image {
  text-align: center;
  margin: 0 auto !important;
}

#profile-image i,
#document-logo i,
.upload-image i {
  display: inline-block;
  font-size: 6rem;
  margin: -1.875rem 0;
  text-align: center;
  width: 100%;
}

#profile-image p,
#document-logo p,
.upload-image p {
  margin: 0;
}

#change-password {
  font-size: 0.8rem;
  width: auto;
  float: right;
  margin-top: -30px;
}

#change-password-group {
  display: none;
  width: 100%;
}

.profile-action .sticky {
  padding-bottom: 6.25rem;
}

.profile-action button {
  display: block;
  margin-top: .5rem;
}

.profile-action a {
  margin-top: .5rem;
}

#profileUrlLabel {
  font-size: 1.25rem;
  padding-right: 2px;
}

.twitterhandle {
  background-color: #d6d6d6 !important;
  color: #0a0a0a !important;
  font-size: 1.8rem !important;
  padding: 0 0.5rem !important;
}

#marketplace-form label,
.integration-form label,
#new-integration-settings label {
  font-family: "Raleway";
  font-weight: 600;
}

#marketplace-form #form-error-summary .input-group-label,
.integration-form #form-error-summary .input-group-label,
#new-integration-settings #form-error-summary .input-group-label {
  display: none;
}

#marketplace-form .input-group,
#marketplace-form .sub-input-group,
.integration-form .input-group,
.integration-form .sub-input-group,
#new-integration-settings .input-group,
#new-integration-settings .sub-input-group {
  display: block !important;
}

#show-ads-status {
  display: flex;
  justify-content: space-between;
}

.info-message {
  border: 1px solid #b8860b;
  background-color: #fffad0;
  color: #0a0a0a;
  vertical-align: middle;
}

.info-message .input-group-label i {
  color: #b8860b;
}

.info-message p {
  line-height: 3;
  margin: 0;
}

#leads-integrations,
#api-integrations {
  width: 100%;
  position: relative;
}

#leads-content {
  padding-bottom: 2rem;
}

#generateApiKeyBtn {
  background-color: #fe9a00;
  color: #fefefe;
  padding: .625rem;
}

#generateApiKeyBtn:hover {
  background-color: #cb7b00;
}

.overlay-card,
#as-facebook,
#as-twitter,
#as-linkedin {
  height: 100px;
  width: 100%;
  padding: 1em;
  color: #fefefe;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.overlay-card::before,
#as-facebook::before,
#as-twitter::before,
#as-linkedin::before {
  content: '\f058';
  font-size: 10em;
  position: absolute;
  width: 100%;
  top: -163px;
  left: 40px;
  line-height: 3;
  opacity: 0.2;
  text-align: right;
  pointer-events: none;
}

.overlay-card.new-integration::before,
#as-facebook.new-integration::before,
#as-twitter.new-integration::before,
#as-linkedin.new-integration::before {
  content: '\f055';
}

.overlay-card.disabled {
  opacity: .25;
  pointer-events: none;
  cursor: default;
}

.overlay-card.new-integration {
  border: 2px dotted rgba(254,254,254,0.2);
  background: transparent;
}

.overlay-card.new-integration:hover {
  transform: scale(1.05);
  background: rgba(10,10,10,0.1);
}

.overlay-card.hubspot {
  background: #F3773A;
}

.overlay-card.hubspot:hover {
  transform: scale(1.05);
  background: #ec570e;
}

.overlay-card.capsulecrm {
  background: #EB4824;
}

.overlay-card.capsulecrm:hover {
  transform: scale(1.05);
  background: #ca3412;
}

.overlay-card.marketo {
  background: #8C70C7;
}

.overlay-card.marketo:hover {
  transform: scale(1.05);
  background: #6f4bb9;
}

.overlay-card.nimble {
  background: #0079C2;
}

.overlay-card.nimble:hover {
  transform: scale(1.05);
  background: #00598f;
}

.overlay-card.mailigen {
  background: #ADC751;
}

.overlay-card.mailigen:hover {
  transform: scale(1.05);
  background: #93ad38;
}

.overlay-card.salesforce {
  background: #009CDB;
}

.overlay-card.salesforce:hover {
  transform: scale(1.05);
  background: #0078a8;
}

.overlay-card.sugarcrm {
  background: #CE2022;
}

.overlay-card.sugarcrm:hover {
  transform: scale(1.05);
  background: #a2191b;
}

.overlay-card.infor {
  background: #48A74A;
}

.overlay-card.infor:hover {
  background: #39833a;
}

#integration-fields {
  display: none;
}

.integration-form {
  width: 100%;
}

#publicApiToken {
  background: transparent;
  resize: none;
  color: #fefefe;
  box-shadow: none;
}

#as-facebook i,
#as-twitter i,
#as-linkedin i {
  color: #fefefe;
}

#as-facebook {
  background: #3b5998;
}

#as-facebook:hover {
  transform: scale(1.05);
  background: #2d4373;
}

#as-twitter {
  background: #1daced;
}

#as-twitter:hover {
  transform: scale(1.05);
  background: #108ec7;
}

#as-linkedin {
  background: #0077b5;
}

#as-linkedin:hover {
  transform: scale(1.05);
  background: #005582;
}

#profile-edit-wrapper {
  margin: 0 auto;
}

@media screen and (min-width: 64em) {
  #profile-edit-wrapper {
    max-width: 960px;
  }
}

.error-page {
  text-align: center;
  width: 100%;
}

.error-page section {
  position: relative;
  z-index: 50;
}

.error-page form {
  margin: 20px auto 0;
}

.error-page form input {
  font-weight: 600;
}

.error-page form button {
  border: 0;
  margin-left: -1px;
}

.status-code {
  color: #009a9a;
  position: absolute;
  z-index: 1;
  font-family: "Raleway";
  font-size: 55vw;
  font-weight: 700;
  line-height: 0;
  top: 50%;
  left: -1%;
}

.error-actions {
  margin: 40px 0;
}

.error-actions a {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 10px;
}

.error-actions .tweet {
  background-color: #80cfff;
}

.error-actions .tweet:hover {
  background-color: #1aa8ff;
}

.stack-trace {
  border-top: 1px dotted #005080;
  margin: 20px auto 0;
  padding-top: 20px;
  text-align: left;
}

.stack-trace h3 {
  font-size: 1rem;
  font-weight: 700;
}

.stack-trace pre {
  background-color: #ffd698;
  border: 1px solid #fe9a00;
  color: #0a0a0a;
  font-size: 0.8rem;
  padding: 5px;
}

.progress {
  position: relative;
}

.progress .progress-meter {
  z-index: 1;
  max-width: 100%;
}

.progress .progress-meter-text {
  z-index: 2;
}

.profile-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  border-radius: 50%;
  background: #7da1b2;
  background-size: cover;
  background-position: center center;
}

.profile-badge .badge-letter {
  font-family: "Raleway";
  color: #fefefe;
}

.profile-badge.a,
.profile-badge.e,
.profile-badge.i,
.profile-badge.m,
.profile-badge.q,
.profile-badge.u,
.profile-badge.y {
  background: #9bb304;
}

.profile-badge.b,
.profile-badge.f,
.profile-badge.j,
.profile-badge.n,
.profile-badge.r,
.profile-badge.v,
.profile-badge.z {
  background: #fe9a00;
}

.profile-badge.c,
.profile-badge.g,
.profile-badge.k,
.profile-badge.o,
.profile-badge.s,
.profile-badge.w {
  background: #7da1b2;
}

.profile-badge.d,
.profile-badge.h,
.profile-badge.l,
.profile-badge.p,
.profile-badge.t,
.profile-badge.x {
  background: #80cfff;
}

#subscriptions-wrapper {
  margin: 0 auto;
}

@media screen and (min-width: 64em) {
  #subscriptions-wrapper {
    max-width: 960px;
  }
}

#subscription-items {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.subscription {
  margin-top: .5rem;
  margin-bottom: .5rem;
}

.subscription .collection-user {
  display: block;
  font-size: .75rem;
}

.subscription a {
  color: #fefefe;
}

.subscription a:hover {
  color: #d8d8d8;
}

.subscription .img {
  height: 46px;
  width: 44px;
  padding-right: 2px;
  background: no-repeat center;
  background-size: cover;
}

.subscription i {
  vertical-align: middle;
  font-size: 2.237rem;
  padding-right: 2px;
}

.subscription .collection span,
.subscription .category span,
.subscription .user span {
  padding-left: .5rem;
}

.subscription .profile-badge {
  margin-right: .5rem;
  height: 2.5rem;
  width: 2.5rem;
  border: 1px solid rgba(254,254,254,0.75);
}

.subscription .profile-badge .badge-letter {
  font-size: 1.25rem;
}

.btn-subscribe {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #80cfff;
  color: #fefefe;
  padding: .5rem;
  font-size: 1rem;
}

[data-whatinput='mouse'] .btn-subscribe {
  outline: 0;
}

.btn-subscribe:hover,
.btn-subscribe:focus {
  background-color: #47b9ff;
  color: #fefefe;
}

.btn-subscribe .fa.fa-plus,
.btn-subscribe i.fa-plus,
.btn-subscribe .fa-plus#no-content::before,
.btn-subscribe #viewer-modal.modal-loading p.fa-plus::before,
#viewer-modal.modal-loading .btn-subscribe p.fa-plus::before,
.btn-subscribe .social-links a.fa-plus,
.social-links .btn-subscribe a.fa-plus,
.btn-subscribe .search-meta a.fa-plus,
.search-meta .btn-subscribe a.fa-plus,
.btn-subscribe .search-meta span.fa-plus,
.search-meta .btn-subscribe span.fa-plus,
.btn-subscribe .pt-form label.fa-plus.custom::before,
.pt-form .btn-subscribe label.fa-plus.custom::before,
.btn-subscribe #form-error-summary .fa-plus.alert::before,
#form-error-summary .btn-subscribe .fa-plus.alert::before,
.btn-subscribe .form-error .fa-plus.alert::before,
.form-error .btn-subscribe .fa-plus.alert::before,
.btn-subscribe .fa-plus.help-tip::before,
.btn-subscribe .cr input[type=checkbox]+label.fa-plus::before,
.cr .btn-subscribe input[type=checkbox]+label.fa-plus::before,
.btn-subscribe .cr input[type=radio]+label.fa-plus::before,
.cr .btn-subscribe input[type=radio]+label.fa-plus::before,
.btn-subscribe .dz-preview p.fa-plus[data-dz-remove],
.dz-preview .btn-subscribe p.fa-plus[data-dz-remove],
.btn-subscribe .fa-plus.overlay-card::before,
.btn-subscribe .fa-plus#as-facebook::before,
.btn-subscribe .fa-plus#as-twitter::before,
.btn-subscribe .fa-plus#as-linkedin::before {
  color: #fefefe;
  font-size: 1rem;
  margin-bottom: .2rem;
}

.btn-unsubscribe {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #80cfff;
  color: #fefefe;
  padding: .5rem;
  font-size: 1rem;
}

[data-whatinput='mouse'] .btn-unsubscribe {
  outline: 0;
}

.btn-unsubscribe:hover,
.btn-unsubscribe:focus {
  background-color: #fe9a00;
  color: #fefefe;
}

.btn-unsubscribe .fa.fa-check,
.btn-unsubscribe i.fa-check,
.btn-unsubscribe .fa-check#no-content::before,
.btn-unsubscribe #viewer-modal.modal-loading p.fa-check::before,
#viewer-modal.modal-loading .btn-unsubscribe p.fa-check::before,
.btn-unsubscribe .social-links a.fa-check,
.social-links .btn-unsubscribe a.fa-check,
.btn-unsubscribe .search-meta a.fa-check,
.search-meta .btn-unsubscribe a.fa-check,
.btn-unsubscribe .search-meta span.fa-check,
.search-meta .btn-unsubscribe span.fa-check,
.btn-unsubscribe .pt-form label.fa-check.custom::before,
.pt-form .btn-unsubscribe label.fa-check.custom::before,
.btn-unsubscribe #form-error-summary .fa-check.alert::before,
#form-error-summary .btn-unsubscribe .fa-check.alert::before,
.btn-unsubscribe .form-error .fa-check.alert::before,
.form-error .btn-unsubscribe .fa-check.alert::before,
.btn-unsubscribe .fa-check.help-tip::before,
.btn-unsubscribe .cr input[type=checkbox]+label.fa-check::before,
.cr .btn-unsubscribe input[type=checkbox]+label.fa-check::before,
.btn-unsubscribe .cr input[type=radio]+label.fa-check::before,
.cr .btn-unsubscribe input[type=radio]+label.fa-check::before,
.btn-unsubscribe .dz-preview p.fa-check[data-dz-remove],
.dz-preview .btn-unsubscribe p.fa-check[data-dz-remove],
.btn-unsubscribe .fa-check.overlay-card::before,
.btn-unsubscribe .fa-check#as-facebook::before,
.btn-unsubscribe .fa-check#as-twitter::before,
.btn-unsubscribe .fa-check#as-linkedin::before,
.btn-unsubscribe .fa.fa-times,
.btn-unsubscribe i.fa-times,
.btn-unsubscribe .fa-times#no-content::before,
.btn-unsubscribe #viewer-modal.modal-loading p.fa-times::before,
#viewer-modal.modal-loading .btn-unsubscribe p.fa-times::before,
.btn-unsubscribe .social-links a.fa-times,
.social-links .btn-unsubscribe a.fa-times,
.btn-unsubscribe .search-meta a.fa-times,
.search-meta .btn-unsubscribe a.fa-times,
.btn-unsubscribe .search-meta span.fa-times,
.search-meta .btn-unsubscribe span.fa-times,
.btn-unsubscribe .pt-form label.fa-times.custom::before,
.pt-form .btn-unsubscribe label.fa-times.custom::before,
.btn-unsubscribe #form-error-summary .fa-times.alert::before,
#form-error-summary .btn-unsubscribe .fa-times.alert::before,
.btn-unsubscribe .form-error .fa-times.alert::before,
.form-error .btn-unsubscribe .fa-times.alert::before,
.btn-unsubscribe .fa-times.help-tip::before,
.btn-unsubscribe .cr input[type=checkbox]+label.fa-times::before,
.cr .btn-unsubscribe input[type=checkbox]+label.fa-times::before,
.btn-unsubscribe .cr input[type=radio]+label.fa-times::before,
.cr .btn-unsubscribe input[type=radio]+label.fa-times::before,
.btn-unsubscribe .dz-preview p.fa-times[data-dz-remove],
.dz-preview .btn-unsubscribe p.fa-times[data-dz-remove],
.btn-unsubscribe .fa-times.overlay-card::before,
.btn-unsubscribe .fa-times#as-facebook::before,
.btn-unsubscribe .fa-times#as-twitter::before,
.btn-unsubscribe .fa-times#as-linkedin::before {
  color: #fefefe;
  font-size: 1rem;
  margin-bottom: .2rem;
}

.btn-unsubscribe-not-logged-in {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #80cfff;
  color: #fefefe;
  padding: .5rem;
  font-size: 1rem;
}

[data-whatinput='mouse'] .btn-unsubscribe-not-logged-in {
  outline: 0;
}

.btn-unsubscribe-not-logged-in:hover,
.btn-unsubscribe-not-logged-in:focus {
  background-color: #80cfff;
  color: #fefefe;
}

.btn-unsubscribe-not-logged-in .fa.fa-check,
.btn-unsubscribe-not-logged-in i.fa-check,
.btn-unsubscribe-not-logged-in .fa-check#no-content::before,
.btn-unsubscribe-not-logged-in #viewer-modal.modal-loading p.fa-check::before,
#viewer-modal.modal-loading .btn-unsubscribe-not-logged-in p.fa-check::before,
.btn-unsubscribe-not-logged-in .social-links a.fa-check,
.social-links .btn-unsubscribe-not-logged-in a.fa-check,
.btn-unsubscribe-not-logged-in .search-meta a.fa-check,
.search-meta .btn-unsubscribe-not-logged-in a.fa-check,
.btn-unsubscribe-not-logged-in .search-meta span.fa-check,
.search-meta .btn-unsubscribe-not-logged-in span.fa-check,
.btn-unsubscribe-not-logged-in .pt-form label.fa-check.custom::before,
.pt-form .btn-unsubscribe-not-logged-in label.fa-check.custom::before,
.btn-unsubscribe-not-logged-in #form-error-summary .fa-check.alert::before,
#form-error-summary .btn-unsubscribe-not-logged-in .fa-check.alert::before,
.btn-unsubscribe-not-logged-in .form-error .fa-check.alert::before,
.form-error .btn-unsubscribe-not-logged-in .fa-check.alert::before,
.btn-unsubscribe-not-logged-in .fa-check.help-tip::before,
.btn-unsubscribe-not-logged-in .cr input[type=checkbox]+label.fa-check::before,
.cr .btn-unsubscribe-not-logged-in input[type=checkbox]+label.fa-check::before,
.btn-unsubscribe-not-logged-in .cr input[type=radio]+label.fa-check::before,
.cr .btn-unsubscribe-not-logged-in input[type=radio]+label.fa-check::before,
.btn-unsubscribe-not-logged-in .dz-preview p.fa-check[data-dz-remove],
.dz-preview .btn-unsubscribe-not-logged-in p.fa-check[data-dz-remove],
.btn-unsubscribe-not-logged-in .fa-check.overlay-card::before,
.btn-unsubscribe-not-logged-in .fa-check#as-facebook::before,
.btn-unsubscribe-not-logged-in .fa-check#as-twitter::before,
.btn-unsubscribe-not-logged-in .fa-check#as-linkedin::before,
.btn-unsubscribe-not-logged-in .fa.fa-times,
.btn-unsubscribe-not-logged-in i.fa-times,
.btn-unsubscribe-not-logged-in .fa-times#no-content::before,
.btn-unsubscribe-not-logged-in #viewer-modal.modal-loading p.fa-times::before,
#viewer-modal.modal-loading .btn-unsubscribe-not-logged-in p.fa-times::before,
.btn-unsubscribe-not-logged-in .social-links a.fa-times,
.social-links .btn-unsubscribe-not-logged-in a.fa-times,
.btn-unsubscribe-not-logged-in .search-meta a.fa-times,
.search-meta .btn-unsubscribe-not-logged-in a.fa-times,
.btn-unsubscribe-not-logged-in .search-meta span.fa-times,
.search-meta .btn-unsubscribe-not-logged-in span.fa-times,
.btn-unsubscribe-not-logged-in .pt-form label.fa-times.custom::before,
.pt-form .btn-unsubscribe-not-logged-in label.fa-times.custom::before,
.btn-unsubscribe-not-logged-in #form-error-summary .fa-times.alert::before,
#form-error-summary .btn-unsubscribe-not-logged-in .fa-times.alert::before,
.btn-unsubscribe-not-logged-in .form-error .fa-times.alert::before,
.form-error .btn-unsubscribe-not-logged-in .fa-times.alert::before,
.btn-unsubscribe-not-logged-in .fa-times.help-tip::before,
.btn-unsubscribe-not-logged-in .cr input[type=checkbox]+label.fa-times::before,
.cr .btn-unsubscribe-not-logged-in input[type=checkbox]+label.fa-times::before,
.btn-unsubscribe-not-logged-in .cr input[type=radio]+label.fa-times::before,
.cr .btn-unsubscribe-not-logged-in input[type=radio]+label.fa-times::before,
.btn-unsubscribe-not-logged-in .dz-preview p.fa-times[data-dz-remove],
.dz-preview .btn-unsubscribe-not-logged-in p.fa-times[data-dz-remove],
.btn-unsubscribe-not-logged-in .fa-times.overlay-card::before,
.btn-unsubscribe-not-logged-in .fa-times#as-facebook::before,
.btn-unsubscribe-not-logged-in .fa-times#as-twitter::before,
.btn-unsubscribe-not-logged-in .fa-times#as-linkedin::before {
  color: #fefefe;
  font-size: 1rem;
  margin-bottom: .2rem;
}

#page-top .btn-subscribe {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  border: 1px solid #80cfff;
  color: #80cfff;
  font-size: .75rem;
  padding: .5rem;
  margin-bottom: 0.5rem;
}

[data-whatinput='mouse'] #page-top .btn-subscribe {
  outline: 0;
}

#page-top .btn-subscribe,
#page-top .btn-subscribe:hover,
#page-top .btn-subscribe:focus {
  background-color: transparent;
}

#page-top .btn-subscribe:hover,
#page-top .btn-subscribe:focus {
  border-color: #0077c0;
  color: #0077c0;
}

#page-top .btn-subscribe.small,
#page-top .secondary-actions a.btn-subscribe.create-account,
.secondary-actions #page-top a.btn-subscribe.create-account,
#page-top .pt-form a.btn-subscribe.cancel,
.pt-form #page-top a.btn-subscribe.cancel,
#page-top .pt-form .secondary-actions a.btn-subscribe.forgot-password,
.pt-form .secondary-actions #page-top a.btn-subscribe.forgot-password,
#page-top .secondary-actions .pt-form a.btn-subscribe.forgot-password,
.secondary-actions .pt-form #page-top a.btn-subscribe.forgot-password,
#page-top .pt-form button.btn-subscribe.cancel,
.pt-form #page-top button.btn-subscribe.cancel {
  margin-top: .25rem;
  margin-bottom: .25rem;
}

#page-top .btn-subscribe:hover .fa.fa-plus,
#page-top .btn-subscribe:hover i.fa-plus,
#page-top .btn-subscribe:hover .fa-plus#no-content::before,
#page-top .btn-subscribe:hover #viewer-modal.modal-loading p.fa-plus::before,
#viewer-modal.modal-loading #page-top .btn-subscribe:hover p.fa-plus::before,
#page-top .btn-subscribe:hover .social-links a.fa-plus,
.social-links #page-top .btn-subscribe:hover a.fa-plus,
#page-top .btn-subscribe:hover .search-meta a.fa-plus,
.search-meta #page-top .btn-subscribe:hover a.fa-plus,
#page-top .btn-subscribe:hover .search-meta span.fa-plus,
.search-meta #page-top .btn-subscribe:hover span.fa-plus,
#page-top .btn-subscribe:hover .pt-form label.fa-plus.custom::before,
.pt-form #page-top .btn-subscribe:hover label.fa-plus.custom::before,
#page-top .btn-subscribe:hover #form-error-summary .fa-plus.alert::before,
#form-error-summary #page-top .btn-subscribe:hover .fa-plus.alert::before,
#page-top .btn-subscribe:hover .form-error .fa-plus.alert::before,
.form-error #page-top .btn-subscribe:hover .fa-plus.alert::before,
#page-top .btn-subscribe:hover .fa-plus.help-tip::before,
#page-top .btn-subscribe:hover .cr input[type=checkbox]+label.fa-plus::before,
.cr #page-top .btn-subscribe:hover input[type=checkbox]+label.fa-plus::before,
#page-top .btn-subscribe:hover .cr input[type=radio]+label.fa-plus::before,
.cr #page-top .btn-subscribe:hover input[type=radio]+label.fa-plus::before,
#page-top .btn-subscribe:hover .dz-preview p.fa-plus[data-dz-remove],
.dz-preview #page-top .btn-subscribe:hover p.fa-plus[data-dz-remove],
#page-top .btn-subscribe:hover .fa-plus.overlay-card::before,
#page-top .btn-subscribe:hover .fa-plus#as-facebook::before,
#page-top .btn-subscribe:hover .fa-plus#as-twitter::before,
#page-top .btn-subscribe:hover .fa-plus#as-linkedin::before {
  color: #47b9ff;
}

#page-top .btn-subscribe .fa.fa-plus,
#page-top .btn-subscribe i.fa-plus,
#page-top .btn-subscribe .fa-plus#no-content::before,
#page-top .btn-subscribe #viewer-modal.modal-loading p.fa-plus::before,
#viewer-modal.modal-loading #page-top .btn-subscribe p.fa-plus::before,
#page-top .btn-subscribe .social-links a.fa-plus,
.social-links #page-top .btn-subscribe a.fa-plus,
#page-top .btn-subscribe .search-meta a.fa-plus,
.search-meta #page-top .btn-subscribe a.fa-plus,
#page-top .btn-subscribe .search-meta span.fa-plus,
.search-meta #page-top .btn-subscribe span.fa-plus,
#page-top .btn-subscribe .pt-form label.fa-plus.custom::before,
.pt-form #page-top .btn-subscribe label.fa-plus.custom::before,
#page-top .btn-subscribe #form-error-summary .fa-plus.alert::before,
#form-error-summary #page-top .btn-subscribe .fa-plus.alert::before,
#page-top .btn-subscribe .form-error .fa-plus.alert::before,
.form-error #page-top .btn-subscribe .fa-plus.alert::before,
#page-top .btn-subscribe .fa-plus.help-tip::before,
#page-top .btn-subscribe .cr input[type=checkbox]+label.fa-plus::before,
.cr #page-top .btn-subscribe input[type=checkbox]+label.fa-plus::before,
#page-top .btn-subscribe .cr input[type=radio]+label.fa-plus::before,
.cr #page-top .btn-subscribe input[type=radio]+label.fa-plus::before,
#page-top .btn-subscribe .dz-preview p.fa-plus[data-dz-remove],
.dz-preview #page-top .btn-subscribe p.fa-plus[data-dz-remove],
#page-top .btn-subscribe .fa-plus.overlay-card::before,
#page-top .btn-subscribe .fa-plus#as-facebook::before,
#page-top .btn-subscribe .fa-plus#as-twitter::before,
#page-top .btn-subscribe .fa-plus#as-linkedin::before {
  color: #80cfff;
  font-size: .75rem;
  margin-bottom: 0;
}

#page-top .btn-unsubscribe {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  border: 1px solid #80cfff;
  color: #80cfff;
  font-size: .75rem;
  padding: .5rem;
  margin-bottom: 0.5rem;
}

[data-whatinput='mouse'] #page-top .btn-unsubscribe {
  outline: 0;
}

#page-top .btn-unsubscribe,
#page-top .btn-unsubscribe:hover,
#page-top .btn-unsubscribe:focus {
  background-color: transparent;
}

#page-top .btn-unsubscribe:hover,
#page-top .btn-unsubscribe:focus {
  border-color: #0077c0;
  color: #0077c0;
}

#page-top .btn-unsubscribe.small,
#page-top .secondary-actions a.btn-unsubscribe.create-account,
.secondary-actions #page-top a.btn-unsubscribe.create-account,
#page-top .pt-form a.btn-unsubscribe.cancel,
.pt-form #page-top a.btn-unsubscribe.cancel,
#page-top .pt-form .secondary-actions a.btn-unsubscribe.forgot-password,
.pt-form .secondary-actions #page-top a.btn-unsubscribe.forgot-password,
#page-top .secondary-actions .pt-form a.btn-unsubscribe.forgot-password,
.secondary-actions .pt-form #page-top a.btn-unsubscribe.forgot-password,
#page-top .pt-form button.btn-unsubscribe.cancel,
.pt-form #page-top button.btn-unsubscribe.cancel {
  margin-top: .25rem;
  margin-bottom: .25rem;
}

#page-top .btn-unsubscribe:hover {
  border-color: #fe9a00;
  color: #fe9a00;
}

#page-top .btn-unsubscribe:hover .fa.fa-check,
#page-top .btn-unsubscribe:hover i.fa-check,
#page-top .btn-unsubscribe:hover .fa-check#no-content::before,
#page-top .btn-unsubscribe:hover #viewer-modal.modal-loading p.fa-check::before,
#viewer-modal.modal-loading #page-top .btn-unsubscribe:hover p.fa-check::before,
#page-top .btn-unsubscribe:hover .social-links a.fa-check,
.social-links #page-top .btn-unsubscribe:hover a.fa-check,
#page-top .btn-unsubscribe:hover .search-meta a.fa-check,
.search-meta #page-top .btn-unsubscribe:hover a.fa-check,
#page-top .btn-unsubscribe:hover .search-meta span.fa-check,
.search-meta #page-top .btn-unsubscribe:hover span.fa-check,
#page-top .btn-unsubscribe:hover .pt-form label.fa-check.custom::before,
.pt-form #page-top .btn-unsubscribe:hover label.fa-check.custom::before,
#page-top .btn-unsubscribe:hover #form-error-summary .fa-check.alert::before,
#form-error-summary #page-top .btn-unsubscribe:hover .fa-check.alert::before,
#page-top .btn-unsubscribe:hover .form-error .fa-check.alert::before,
.form-error #page-top .btn-unsubscribe:hover .fa-check.alert::before,
#page-top .btn-unsubscribe:hover .fa-check.help-tip::before,
#page-top .btn-unsubscribe:hover .cr input[type=checkbox]+label.fa-check::before,
.cr #page-top .btn-unsubscribe:hover input[type=checkbox]+label.fa-check::before,
#page-top .btn-unsubscribe:hover .cr input[type=radio]+label.fa-check::before,
.cr #page-top .btn-unsubscribe:hover input[type=radio]+label.fa-check::before,
#page-top .btn-unsubscribe:hover .dz-preview p.fa-check[data-dz-remove],
.dz-preview #page-top .btn-unsubscribe:hover p.fa-check[data-dz-remove],
#page-top .btn-unsubscribe:hover .fa-check.overlay-card::before,
#page-top .btn-unsubscribe:hover .fa-check#as-facebook::before,
#page-top .btn-unsubscribe:hover .fa-check#as-twitter::before,
#page-top .btn-unsubscribe:hover .fa-check#as-linkedin::before,
#page-top .btn-unsubscribe:hover .fa.fa-times,
#page-top .btn-unsubscribe:hover i.fa-times,
#page-top .btn-unsubscribe:hover .fa-times#no-content::before,
#page-top .btn-unsubscribe:hover #viewer-modal.modal-loading p.fa-times::before,
#viewer-modal.modal-loading #page-top .btn-unsubscribe:hover p.fa-times::before,
#page-top .btn-unsubscribe:hover .social-links a.fa-times,
.social-links #page-top .btn-unsubscribe:hover a.fa-times,
#page-top .btn-unsubscribe:hover .search-meta a.fa-times,
.search-meta #page-top .btn-unsubscribe:hover a.fa-times,
#page-top .btn-unsubscribe:hover .search-meta span.fa-times,
.search-meta #page-top .btn-unsubscribe:hover span.fa-times,
#page-top .btn-unsubscribe:hover .pt-form label.fa-times.custom::before,
.pt-form #page-top .btn-unsubscribe:hover label.fa-times.custom::before,
#page-top .btn-unsubscribe:hover #form-error-summary .fa-times.alert::before,
#form-error-summary #page-top .btn-unsubscribe:hover .fa-times.alert::before,
#page-top .btn-unsubscribe:hover .form-error .fa-times.alert::before,
.form-error #page-top .btn-unsubscribe:hover .fa-times.alert::before,
#page-top .btn-unsubscribe:hover .fa-times.help-tip::before,
#page-top .btn-unsubscribe:hover .cr input[type=checkbox]+label.fa-times::before,
.cr #page-top .btn-unsubscribe:hover input[type=checkbox]+label.fa-times::before,
#page-top .btn-unsubscribe:hover .cr input[type=radio]+label.fa-times::before,
.cr #page-top .btn-unsubscribe:hover input[type=radio]+label.fa-times::before,
#page-top .btn-unsubscribe:hover .dz-preview p.fa-times[data-dz-remove],
.dz-preview #page-top .btn-unsubscribe:hover p.fa-times[data-dz-remove],
#page-top .btn-unsubscribe:hover .fa-times.overlay-card::before,
#page-top .btn-unsubscribe:hover .fa-times#as-facebook::before,
#page-top .btn-unsubscribe:hover .fa-times#as-twitter::before,
#page-top .btn-unsubscribe:hover .fa-times#as-linkedin::before {
  color: #fe9a00;
}

#page-top .btn-unsubscribe .fa.fa-check,
#page-top .btn-unsubscribe i.fa-check,
#page-top .btn-unsubscribe .fa-check#no-content::before,
#page-top .btn-unsubscribe #viewer-modal.modal-loading p.fa-check::before,
#viewer-modal.modal-loading #page-top .btn-unsubscribe p.fa-check::before,
#page-top .btn-unsubscribe .social-links a.fa-check,
.social-links #page-top .btn-unsubscribe a.fa-check,
#page-top .btn-unsubscribe .search-meta a.fa-check,
.search-meta #page-top .btn-unsubscribe a.fa-check,
#page-top .btn-unsubscribe .search-meta span.fa-check,
.search-meta #page-top .btn-unsubscribe span.fa-check,
#page-top .btn-unsubscribe .pt-form label.fa-check.custom::before,
.pt-form #page-top .btn-unsubscribe label.fa-check.custom::before,
#page-top .btn-unsubscribe #form-error-summary .fa-check.alert::before,
#form-error-summary #page-top .btn-unsubscribe .fa-check.alert::before,
#page-top .btn-unsubscribe .form-error .fa-check.alert::before,
.form-error #page-top .btn-unsubscribe .fa-check.alert::before,
#page-top .btn-unsubscribe .fa-check.help-tip::before,
#page-top .btn-unsubscribe .cr input[type=checkbox]+label.fa-check::before,
.cr #page-top .btn-unsubscribe input[type=checkbox]+label.fa-check::before,
#page-top .btn-unsubscribe .cr input[type=radio]+label.fa-check::before,
.cr #page-top .btn-unsubscribe input[type=radio]+label.fa-check::before,
#page-top .btn-unsubscribe .dz-preview p.fa-check[data-dz-remove],
.dz-preview #page-top .btn-unsubscribe p.fa-check[data-dz-remove],
#page-top .btn-unsubscribe .fa-check.overlay-card::before,
#page-top .btn-unsubscribe .fa-check#as-facebook::before,
#page-top .btn-unsubscribe .fa-check#as-twitter::before,
#page-top .btn-unsubscribe .fa-check#as-linkedin::before,
#page-top .btn-unsubscribe .fa.fa-times,
#page-top .btn-unsubscribe i.fa-times,
#page-top .btn-unsubscribe .fa-times#no-content::before,
#page-top .btn-unsubscribe #viewer-modal.modal-loading p.fa-times::before,
#viewer-modal.modal-loading #page-top .btn-unsubscribe p.fa-times::before,
#page-top .btn-unsubscribe .social-links a.fa-times,
.social-links #page-top .btn-unsubscribe a.fa-times,
#page-top .btn-unsubscribe .search-meta a.fa-times,
.search-meta #page-top .btn-unsubscribe a.fa-times,
#page-top .btn-unsubscribe .search-meta span.fa-times,
.search-meta #page-top .btn-unsubscribe span.fa-times,
#page-top .btn-unsubscribe .pt-form label.fa-times.custom::before,
.pt-form #page-top .btn-unsubscribe label.fa-times.custom::before,
#page-top .btn-unsubscribe #form-error-summary .fa-times.alert::before,
#form-error-summary #page-top .btn-unsubscribe .fa-times.alert::before,
#page-top .btn-unsubscribe .form-error .fa-times.alert::before,
.form-error #page-top .btn-unsubscribe .fa-times.alert::before,
#page-top .btn-unsubscribe .fa-times.help-tip::before,
#page-top .btn-unsubscribe .cr input[type=checkbox]+label.fa-times::before,
.cr #page-top .btn-unsubscribe input[type=checkbox]+label.fa-times::before,
#page-top .btn-unsubscribe .cr input[type=radio]+label.fa-times::before,
.cr #page-top .btn-unsubscribe input[type=radio]+label.fa-times::before,
#page-top .btn-unsubscribe .dz-preview p.fa-times[data-dz-remove],
.dz-preview #page-top .btn-unsubscribe p.fa-times[data-dz-remove],
#page-top .btn-unsubscribe .fa-times.overlay-card::before,
#page-top .btn-unsubscribe .fa-times#as-facebook::before,
#page-top .btn-unsubscribe .fa-times#as-twitter::before,
#page-top .btn-unsubscribe .fa-times#as-linkedin::before {
  color: #80cfff;
  font-size: .75rem;
  margin-bottom: 0;
}

#page-top .btn-unsubscribe-not-logged-in {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  border: 1px solid #80cfff;
  color: #80cfff;
  font-size: .75rem;
  padding: .5rem;
  margin-bottom: 0.5rem;
}

[data-whatinput='mouse'] #page-top .btn-unsubscribe-not-logged-in {
  outline: 0;
}

#page-top .btn-unsubscribe-not-logged-in,
#page-top .btn-unsubscribe-not-logged-in:hover,
#page-top .btn-unsubscribe-not-logged-in:focus {
  background-color: transparent;
}

#page-top .btn-unsubscribe-not-logged-in:hover,
#page-top .btn-unsubscribe-not-logged-in:focus {
  border-color: #0077c0;
  color: #0077c0;
}

#page-top .btn-unsubscribe-not-logged-in.small,
#page-top .secondary-actions a.btn-unsubscribe-not-logged-in.create-account,
.secondary-actions #page-top a.btn-unsubscribe-not-logged-in.create-account,
#page-top .pt-form a.btn-unsubscribe-not-logged-in.cancel,
.pt-form #page-top a.btn-unsubscribe-not-logged-in.cancel,
#page-top .pt-form .secondary-actions a.btn-unsubscribe-not-logged-in.forgot-password,
.pt-form .secondary-actions #page-top a.btn-unsubscribe-not-logged-in.forgot-password,
#page-top .secondary-actions .pt-form a.btn-unsubscribe-not-logged-in.forgot-password,
.secondary-actions .pt-form #page-top a.btn-unsubscribe-not-logged-in.forgot-password,
#page-top .pt-form button.btn-unsubscribe-not-logged-in.cancel,
.pt-form #page-top button.btn-unsubscribe-not-logged-in.cancel {
  margin-top: .25rem;
  margin-bottom: .25rem;
}

#page-top .btn-unsubscribe-not-logged-in .fa.fa-check,
#page-top .btn-unsubscribe-not-logged-in i.fa-check,
#page-top .btn-unsubscribe-not-logged-in .fa-check#no-content::before,
#page-top .btn-unsubscribe-not-logged-in #viewer-modal.modal-loading p.fa-check::before,
#viewer-modal.modal-loading #page-top .btn-unsubscribe-not-logged-in p.fa-check::before,
#page-top .btn-unsubscribe-not-logged-in .social-links a.fa-check,
.social-links #page-top .btn-unsubscribe-not-logged-in a.fa-check,
#page-top .btn-unsubscribe-not-logged-in .search-meta a.fa-check,
.search-meta #page-top .btn-unsubscribe-not-logged-in a.fa-check,
#page-top .btn-unsubscribe-not-logged-in .search-meta span.fa-check,
.search-meta #page-top .btn-unsubscribe-not-logged-in span.fa-check,
#page-top .btn-unsubscribe-not-logged-in .pt-form label.fa-check.custom::before,
.pt-form #page-top .btn-unsubscribe-not-logged-in label.fa-check.custom::before,
#page-top .btn-unsubscribe-not-logged-in #form-error-summary .fa-check.alert::before,
#form-error-summary #page-top .btn-unsubscribe-not-logged-in .fa-check.alert::before,
#page-top .btn-unsubscribe-not-logged-in .form-error .fa-check.alert::before,
.form-error #page-top .btn-unsubscribe-not-logged-in .fa-check.alert::before,
#page-top .btn-unsubscribe-not-logged-in .fa-check.help-tip::before,
#page-top .btn-unsubscribe-not-logged-in .cr input[type=checkbox]+label.fa-check::before,
.cr #page-top .btn-unsubscribe-not-logged-in input[type=checkbox]+label.fa-check::before,
#page-top .btn-unsubscribe-not-logged-in .cr input[type=radio]+label.fa-check::before,
.cr #page-top .btn-unsubscribe-not-logged-in input[type=radio]+label.fa-check::before,
#page-top .btn-unsubscribe-not-logged-in .dz-preview p.fa-check[data-dz-remove],
.dz-preview #page-top .btn-unsubscribe-not-logged-in p.fa-check[data-dz-remove],
#page-top .btn-unsubscribe-not-logged-in .fa-check.overlay-card::before,
#page-top .btn-unsubscribe-not-logged-in .fa-check#as-facebook::before,
#page-top .btn-unsubscribe-not-logged-in .fa-check#as-twitter::before,
#page-top .btn-unsubscribe-not-logged-in .fa-check#as-linkedin::before,
#page-top .btn-unsubscribe-not-logged-in .fa.fa-times,
#page-top .btn-unsubscribe-not-logged-in i.fa-times,
#page-top .btn-unsubscribe-not-logged-in .fa-times#no-content::before,
#page-top .btn-unsubscribe-not-logged-in #viewer-modal.modal-loading p.fa-times::before,
#viewer-modal.modal-loading #page-top .btn-unsubscribe-not-logged-in p.fa-times::before,
#page-top .btn-unsubscribe-not-logged-in .social-links a.fa-times,
.social-links #page-top .btn-unsubscribe-not-logged-in a.fa-times,
#page-top .btn-unsubscribe-not-logged-in .search-meta a.fa-times,
.search-meta #page-top .btn-unsubscribe-not-logged-in a.fa-times,
#page-top .btn-unsubscribe-not-logged-in .search-meta span.fa-times,
.search-meta #page-top .btn-unsubscribe-not-logged-in span.fa-times,
#page-top .btn-unsubscribe-not-logged-in .pt-form label.fa-times.custom::before,
.pt-form #page-top .btn-unsubscribe-not-logged-in label.fa-times.custom::before,
#page-top .btn-unsubscribe-not-logged-in #form-error-summary .fa-times.alert::before,
#form-error-summary #page-top .btn-unsubscribe-not-logged-in .fa-times.alert::before,
#page-top .btn-unsubscribe-not-logged-in .form-error .fa-times.alert::before,
.form-error #page-top .btn-unsubscribe-not-logged-in .fa-times.alert::before,
#page-top .btn-unsubscribe-not-logged-in .fa-times.help-tip::before,
#page-top .btn-unsubscribe-not-logged-in .cr input[type=checkbox]+label.fa-times::before,
.cr #page-top .btn-unsubscribe-not-logged-in input[type=checkbox]+label.fa-times::before,
#page-top .btn-unsubscribe-not-logged-in .cr input[type=radio]+label.fa-times::before,
.cr #page-top .btn-unsubscribe-not-logged-in input[type=radio]+label.fa-times::before,
#page-top .btn-unsubscribe-not-logged-in .dz-preview p.fa-times[data-dz-remove],
.dz-preview #page-top .btn-unsubscribe-not-logged-in p.fa-times[data-dz-remove],
#page-top .btn-unsubscribe-not-logged-in .fa-times.overlay-card::before,
#page-top .btn-unsubscribe-not-logged-in .fa-times#as-facebook::before,
#page-top .btn-unsubscribe-not-logged-in .fa-times#as-twitter::before,
#page-top .btn-unsubscribe-not-logged-in .fa-times#as-linkedin::before {
  color: #80cfff;
  font-size: .75rem;
  margin-bottom: 0;
}

.title {
  color: #fefefe;
}

.likes-section-container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
}

.likes-section-container h2,
.likes-section-container .pt-form.centered fieldset legend,
.pt-form.centered fieldset .likes-section-container legend {
  color: #fefefe;
  margin-bottom: 20px;
}

.liker-header {
  font-size: .9rem;
  font-weight: 600;
  color: #79908e;
}

.liker-item {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  margin-top: 5px;
  display: flex;
  color: #1F303D;
}

@media screen and (min-width: 40em) {
  .liker-item {
    padding: 30px;
  }
}

.liker-item a {
  color: #1F303D;
  font-weight: 500;
}

.liker-item a:hover {
  text-decoration: underline;
}

.liker-item .logo {
  margin-right: 20px;
}

.liker-item .logo .profile-badge {
  width: 40px;
  height: 40px;
  background-color: #7da1b2;
}

@media screen and (min-width: 40em) {
  .liker-item .logo .profile-badge {
    width: 50px;
    height: 50px;
  }
}

.liker-item .logo .profile-badge .badge-letter {
  font-size: 1.5rem;
}

@media screen and (min-width: 40em) {
  .liker-item .content {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }
}

.liker-item .profile-info {
  margin-bottom: 20px;
}

@media screen and (min-width: 40em) {
  .liker-item .profile-info {
    margin: 0;
  }
}

.liker-item .profile-info a {
  color: #7da1b2;
  font-weight: 700;
}

.liker-item .profile-info p {
  font-size: .9rem;
  margin-bottom: 5px;
}

.liker-item .liked-documents {
  list-style: none;
  padding: 0;
  margin: 0;
}

.liker-item .liked-documents li {
  margin-bottom: .25em;
  font-size: .9rem;
  font-weight: 600;
}

.liker-item .liked-documents:last-child {
  margin-bottom: 0;
}

.social i {
  color: #cacaca;
  text-align: left;
}

.social i:hover {
  color: teal;
}

.social i:focus {
  color: #1F303D;
}

.social i:active {
  color: #1F303D;
}

#no-followers-wrapper {
  margin: 0 auto;
}

#no-followers-wrapper h2,
#no-followers-wrapper .pt-form.centered fieldset legend,
.pt-form.centered fieldset #no-followers-wrapper legend {
  border-bottom: 2px rgba(254,254,254,0.2) dotted;
}

#no-followers-wrapper li {
  font-size: 1rem;
}

@media screen and (min-width: 64em) {
  #no-followers-wrapper {
    max-width: 960px;
  }
}

#followers-wrapper {
  margin: 0 auto;
}

#followers-wrapper h2,
#followers-wrapper .pt-form.centered fieldset legend,
.pt-form.centered fieldset #followers-wrapper legend {
  border-bottom: 2px rgba(254,254,254,0.2) dotted;
}

#followers-wrapper .follow {
  font-size: 1.1rem;
}

#followers-wrapper ul {
  list-style: none;
  padding-left: 0px;
  margin-left: 0;
}

#followers-wrapper .profile-badge {
  margin-right: .5rem;
  height: 2.25rem;
  width: 2.25rem;
  padding-right: 0;
}

#followers-wrapper .profile-badge .badge-letter {
  font-size: 1.125rem;
}

@media screen and (min-width: 64em) {
  #followers-wrapper {
    max-width: 960px;
  }
}

#premium-upgrade-wrapper {
  margin-bottom: 2rem;
}

span.follow-item {
  margin-left: 6rem;
}

li.followers-wrapper {
  margin-bottom: 1rem;
}

#follower-wrapper>ul>li>div {
  padding-top: 0.5rem;
}

.follower-wrapper {
  background-color: rgba(128,207,255,0.25);
  margin-bottom: 0.5rem;
}

.follower-wrapper:nth-child(even) {
  background-color: rgba(128,207,255,0.1);
}

.social a,
.social span {
  color: #80cfff;
}

.social a,
.social span:hover {
  color: #fefefe;
}

.social a,
.social span:focus {
  color: #fefefe;
}

.social a,
.social span:active {
  color: #fefefe;
}

.follower-badge {
  margin-left: 0.5rem;
  padding-right: 0;
}

.follower-profile {
  padding-left: 0;
}

#contribute-wrapper {
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin: 0 auto;
}

#contribute-wrapper h2,
#contribute-wrapper .pt-form.centered fieldset legend,
.pt-form.centered fieldset #contribute-wrapper legend {
  display: flex;
}

#contribute-wrapper h2 .premium-label,
#contribute-wrapper .pt-form.centered fieldset legend .premium-label,
.pt-form.centered fieldset #contribute-wrapper legend .premium-label {
  margin-left: 1rem;
  background: #9bb304;
  font-weight: 500;
}

#contribute-wrapper h2 .help-tip,
#contribute-wrapper .pt-form.centered fieldset legend .help-tip,
.pt-form.centered fieldset #contribute-wrapper legend .help-tip {
  font-size: 50%;
  margin-top: .5rem;
}

#contribute-wrapper .profile-badge {
  margin-right: .5rem;
  height: 2.25rem;
  width: 2.25rem;
}

#contribute-wrapper .profile-badge .badge-letter {
  font-size: 1.125rem;
}

@media screen and (min-width: 64em) {
  #contribute-wrapper {
    max-width: 960px;
  }
}

.pending-invitation {
  background-color: teal;
}

.invitation-accepted {
  color: #80cfff;
}

.contributors-wrapper,
.contributing-wrapper {
  margin-bottom: 1rem;
}

.contributor {
  margin-top: .5rem;
  margin-bottom: .5rem;
}

#contributor-form-wrapper {
  margin-bottom: 1rem;
}

#add-contributor-form .input-group,
#add-contributor-form .sub-input-group,
#add-contributor-form input {
  margin-bottom: 0;
}

#add-contributor-form input,
#add-contributor-form .input-group div,
#add-contributor-form .sub-input-group div {
  width: 100%;
}

.btn-accept-contribute,
.btn-resend-contribute {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  border: 1px solid #80cfff;
  color: #80cfff;
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

[data-whatinput='mouse'] .btn-accept-contribute,
[data-whatinput='mouse'] .btn-resend-contribute {
  outline: 0;
}

.btn-accept-contribute,
.btn-accept-contribute:hover,
.btn-accept-contribute:focus,
.btn-resend-contribute,
.btn-resend-contribute:hover,
.btn-resend-contribute:focus {
  background-color: transparent;
}

.btn-accept-contribute:hover,
.btn-accept-contribute:focus,
.btn-resend-contribute:hover,
.btn-resend-contribute:focus {
  border-color: #0077c0;
  color: #0077c0;
}

.btn-leave-contribute {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  border: 1px solid #ec5840;
  color: #ec5840;
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

[data-whatinput='mouse'] .btn-leave-contribute {
  outline: 0;
}

.btn-leave-contribute,
.btn-leave-contribute:hover,
.btn-leave-contribute:focus {
  background-color: transparent;
}

.btn-leave-contribute:hover,
.btn-leave-contribute:focus {
  border-color: #881f0e;
  color: #881f0e;
}

.btn-start-contribute,
.btn-pause-contribute {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  border: 1px solid #80cfff;
  color: #80cfff;
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

[data-whatinput='mouse'] .btn-start-contribute,
[data-whatinput='mouse'] .btn-pause-contribute {
  outline: 0;
}

.btn-start-contribute,
.btn-start-contribute:hover,
.btn-start-contribute:focus,
.btn-pause-contribute,
.btn-pause-contribute:hover,
.btn-pause-contribute:focus {
  background-color: transparent;
}

.btn-start-contribute:hover,
.btn-start-contribute:focus,
.btn-pause-contribute:hover,
.btn-pause-contribute:focus {
  border-color: #0077c0;
  color: #0077c0;
}

.btn-add-contributor,
.btn-save-contributor {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out,color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #80cfff;
  color: teal;
  margin-top: 10px;
}

[data-whatinput='mouse'] .btn-add-contributor,
[data-whatinput='mouse'] .btn-save-contributor {
  outline: 0;
}

.btn-add-contributor:hover,
.btn-add-contributor:focus,
.btn-save-contributor:hover,
.btn-save-contributor:focus {
  background-color: #fefefe;
  color: teal;
}

.removed-contributor.alert {
  color: #ec5840;
}

.max-contributor-reached {
  margin-bottom: .5rem;
  color: #7da1b2;
}

#scribd-wrapper {
  margin: 1rem 0;
}

#scribd-wrapper h4 {
  color: #80cfff;
}

.scribd-pros-list li {
  padding: .5rem;
}

#slidesharing-wrapper {
  margin: 1rem 0;
}

#slidesharing-wrapper h4 {
  color: #80cfff;
}

.slideshare-pros-list li {
  padding: .5rem;
}

#go-premium-wrapper {
  padding: 1rem 0;
  margin: 0 auto;
}

@media screen and (min-width: 64em) {
  #go-premium-wrapper {
    max-width: 960px;
  }
}

#go-premium-wrapper h2,
#go-premium-wrapper .pt-form.centered fieldset legend,
.pt-form.centered fieldset #go-premium-wrapper legend {
  padding-bottom: 2rem;
}

#go-premium-wrapper table {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0;
  color: #0a0a0a;
}

thead,
tbody,
tfoot {
  border: 1px solid #f1f1f1;
  background-color: #fefefe;
}

caption {
  padding: .5rem .625rem .625rem;
  font-weight: 700;
}

thead {
  background: #f8f8f8;
  color: teal;
}

tfoot {
  background: #f1f1f1;
  color: teal;
}

thead tr,
tfoot tr {
  background: transparent;
}

thead th,
thead td,
tfoot th,
tfoot td {
  padding: .5rem .625rem .625rem;
  font-weight: 700;
  text-align: left;
}

tbody th,
tbody td {
  padding: .5rem .625rem .625rem;
}

#go-premium-wrapper table.unstriped tbody {
  background-color: #fefefe;
}

#go-premium-wrapper table.unstriped tbody tr {
  border-bottom: 0;
  border-bottom: 1px solid #f1f1f1;
  background-color: #fefefe;
}

#go-premium-wrapper table thead {
  color: #fefefe;
  background: transparent;
  border: 0;
}

#go-premium-wrapper table thead th:not(.fade-through) {
  border-top: 1px solid rgba(254,254,254,0.4);
  border-left: 1px solid rgba(254,254,254,0.4);
  text-align: center;
}

#go-premium-wrapper table tbody {
  border: 1px solid rgba(254,254,254,0.4);
  color: #fefefe;
  background: #74b45e;
}

#go-premium-wrapper table tbody .full-width {
  background: #83BC6F;
  text-shadow: 1px 1px 1px rgba(0,128,128,0.4);
}

#go-premium-wrapper table tbody td:not(.title) {
  text-align: center;
}

#go-premium-wrapper table tbody tr:nth-child(even) {
  background: #00b3b3;
}

#go-premium-wrapper table tbody tr td:nth-child(2) {
  background: rgba(125,161,178,0.2);
}

#go-premium-wrapper table tbody tr td:last-of-type:not(.full-width) {
  background: rgba(131,188,111,0.2);
}

#go-premium-wrapper table td.checked {
  color: #FE9A00;
  font-weight: bold;
  font-size: 1.5rem;
}

#go-premium-wrapper table td.nope {
  color: gray;
  font-weight: bold;
  font-size: 1.5rem;
}

#go-premium-wrapper table .fade-through {
  opacity: 0;
}

#go-premium-wrapper table .basic-header {
  background: teal;
}

#go-premium-wrapper table .premium-header {
  border-right: 1px solid rgba(254,254,254,0.4);
  background: #fe9a00;
}

@media screen and (max-width: 39.9375em) {
  #premium-feature-table-container {
    order: 0;
    padding-bottom: 1rem;
  }
}

@media screen and (min-width: 64em) {
  #premium-promotion {
    padding-top: 4rem;
  }
}

#premium-promotion .promotional-trial {
  padding: 1rem;
  margin-bottom: 1rem;
}

.trial-expires {
  border: 1px solid #fe9a00;
  padding: 1rem;
}

.trial-expired {
  border: 1px solid #ec5840;
  padding: 1rem;
}

.premium-action-msg .button,
.premium-action-msg .btn-add-collection,
.premium-action-msg .document-thumbnail .action.owner-actions,
.document-thumbnail .premium-action-msg .action.owner-actions,
.premium-action-msg .user-thumbnail .action.owner-actions,
.user-thumbnail .premium-action-msg .action.owner-actions,
.premium-action-msg .document-thumbnail .view,
.document-thumbnail .premium-action-msg .view,
.premium-action-msg .user-thumbnail .view,
.user-thumbnail .premium-action-msg .view,
.premium-action-msg .btn-esign,
.premium-action-msg .btn-share,
.premium-action-msg .btn-embed,
.premium-action-msg #restriction-form .btn-purchase,
#restriction-form .premium-action-msg .btn-purchase,
.premium-action-msg .pt-form a.cancel,
.pt-form .premium-action-msg a.cancel,
.premium-action-msg .pt-form .secondary-actions a.forgot-password,
.pt-form .secondary-actions .premium-action-msg a.forgot-password,
.premium-action-msg .secondary-actions .pt-form a.forgot-password,
.secondary-actions .pt-form .premium-action-msg a.forgot-password,
.premium-action-msg .pt-form button.cancel,
.pt-form .premium-action-msg button.cancel,
.premium-action-msg .pt-form .form-action button,
.pt-form .form-action .premium-action-msg button,
.premium-action-msg #analytics #tabs button,
#analytics #tabs .premium-action-msg button,
.premium-action-msg .btn-subscribe,
.premium-action-msg .btn-unsubscribe,
.premium-action-msg .btn-unsubscribe-not-logged-in,
.premium-action-msg #page-top .btn-subscribe,
#page-top .premium-action-msg .btn-subscribe,
.premium-action-msg #page-top .btn-unsubscribe,
#page-top .premium-action-msg .btn-unsubscribe,
.premium-action-msg #page-top .btn-unsubscribe-not-logged-in,
#page-top .premium-action-msg .btn-unsubscribe-not-logged-in,
.premium-action-msg .btn-add-contributor,
.premium-action-msg .btn-save-contributor {
  background-color: #FE9A00;
  color: white;
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 1rem;
  transition: background-color 0.25s;
}

.premium-action-msg .button:hover,
.premium-action-msg .btn-add-collection:hover,
.premium-action-msg .document-thumbnail .action.owner-actions:hover,
.document-thumbnail .premium-action-msg .action.owner-actions:hover,
.premium-action-msg .user-thumbnail .action.owner-actions:hover,
.user-thumbnail .premium-action-msg .action.owner-actions:hover,
.premium-action-msg .document-thumbnail .view:hover,
.document-thumbnail .premium-action-msg .view:hover,
.premium-action-msg .user-thumbnail .view:hover,
.user-thumbnail .premium-action-msg .view:hover,
.premium-action-msg .btn-esign:hover,
.premium-action-msg .btn-share:hover,
.premium-action-msg .btn-embed:hover,
.premium-action-msg #restriction-form .btn-purchase:hover,
#restriction-form .premium-action-msg .btn-purchase:hover,
.premium-action-msg .pt-form a.cancel:hover,
.pt-form .premium-action-msg a.cancel:hover,
.premium-action-msg .pt-form .secondary-actions a.forgot-password:hover,
.pt-form .secondary-actions .premium-action-msg a.forgot-password:hover,
.premium-action-msg .secondary-actions .pt-form a.forgot-password:hover,
.secondary-actions .pt-form .premium-action-msg a.forgot-password:hover,
.premium-action-msg .pt-form button.cancel:hover,
.pt-form .premium-action-msg button.cancel:hover,
.premium-action-msg .pt-form .form-action button:hover,
.pt-form .form-action .premium-action-msg button:hover,
.premium-action-msg #analytics #tabs button:hover,
#analytics #tabs .premium-action-msg button:hover,
.premium-action-msg .btn-subscribe:hover,
.premium-action-msg .btn-unsubscribe:hover,
.premium-action-msg .btn-unsubscribe-not-logged-in:hover,
.premium-action-msg #page-top .btn-subscribe:hover,
#page-top .premium-action-msg .btn-subscribe:hover,
.premium-action-msg #page-top .btn-unsubscribe:hover,
#page-top .premium-action-msg .btn-unsubscribe:hover,
.premium-action-msg #page-top .btn-unsubscribe-not-logged-in:hover,
#page-top .premium-action-msg .btn-unsubscribe-not-logged-in:hover,
.premium-action-msg .btn-add-contributor:hover,
.premium-action-msg .btn-save-contributor:hover {
  background-color: #b3e2ff;
}

.premium-stack {
  margin-bottom: 16px;
}

.premium-stack .alert {
  color: #ec5840;
  font-size: 24pt;
}

.premium-stack .warning {
  color: #fe9a00;
  font-size: 24pt;
}

.premium-stack .success {
  color: #9bb304;
  font-size: 24pt;
}

.premium-badge {
  color: #fe9a00;
}

#admin-backdrop {
  margin: 10px;
  background-color: #fefefe;
}

.title-row {
  background-color: #37576D;
  width: 100%;
}

.row.full-width,
.full-width#social-view-row,
#embed-wrapper .full-width.codeblock {
  width: 100%;
  max-width: 100%;
}

.admin-title {
  font-weight: bold;
  text-align: left;
}

.admin-title-line {
  font-weight: bold;
  text-align: left;
  font-size: 14pt;
}

.admin-row {
  height: 140px;
  background-color: #37576D;
  margin-bottom: 10px;
}

.admin-item {
  font-size: 10pt;
  color: #fefefe;
}

.admin-thumbnail {
  max-height: 120px;
  max-width: 120px;
  padding-left: 10px;
  padding-top: 10px;
}

.cap {
  text-transform: capitalize;
}

.fix-box-shadow * {
  box-shadow: unset;
}

.fix-box-shadow *:focus {
  box-shadow: unset;
}

.fix-a-tags a,
.fix-a-tags a:hover {
  color: unset;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  z-index: 10;
}

.datepicker {
  display: none;
  position: absolute;
  padding: 4px;
  margin-top: 1px;
  direction: ltr;
}

.datepicker.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  display: none;
  min-width: 160px;
  list-style: none;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  *border-right-width: 2px;
  *border-bottom-width: 2px;
  color: #333;
  font-size: 13px;
  line-height: 18px;
}

.datepicker.dropdown-menu th {
  padding: 4px 5px;
}

.datepicker.dropdown-menu td {
  padding: 4px 5px;
}

.datepicker table {
  border: 0;
  margin: 0;
  width: auto;
}

.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
}

.datepicker td {
  text-align: center;
  width: 20px;
  height: 20px;
  border: 0;
  font-size: 12px;
  padding: 4px 8px;
  background: #fff;
  cursor: pointer;
}

.datepicker td.active.day,
.datepicker td.active.year {
  background: #2ba6cb;
}

.datepicker td.old,
.datepicker td.new {
  color: #999;
}

.datepicker td span.active {
  background: #2ba6cb;
}

.datepicker td.day.disabled {
  color: #eee;
}

.datepicker td span.month.disabled,
.datepicker td span.year.disabled {
  color: #eee;
}

.datepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  border: 0;
  font-size: 12px;
  padding: 4px 8px;
  background: #fff;
  cursor: pointer;
}

.datepicker th.active.day,
.datepicker th.active.year {
  background: #2ba6cb;
}

.datepicker th.date-switch {
  width: 145px;
}

.datepicker th span.active {
  background: #2ba6cb;
}

.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}

.datepicker.days div.datepicker-days {
  display: block;
}

.datepicker.months div.datepicker-months {
  display: block;
}

.datepicker.years div.datepicker-years {
  display: block;
}

.datepicker thead tr:first-child th {
  cursor: pointer;
}

.datepicker thead tr:first-child th.cw {
  cursor: default;
  background-color: transparent;
}

.datepicker tfoot tr:first-child th {
  cursor: pointer;
}

.datepicker-inline {
  width: 220px;
}

.datepicker-rtl {
  direction: rtl;
}

.datepicker-rtl table tr td span {
  float: right;
}

.datepicker-dropdown {
  top: 0;
  left: 0;
}

.datepicker-dropdown:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: 1px solid rgba(0,0,0,0.2);
  position: absolute;
  top: -7px;
  left: 6px;
}

.datepicker-dropdown:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  position: absolute;
  top: -6px;
  left: 7px;
}

.datepicker>div,
.datepicker-dropdown::before,
.datepicker-dropdown::after {
  display: none;
}

.datepicker-close {
  position: absolute;
  top: -30px;
  right: 0;
  width: 15px;
  height: 30px;
  padding: 0;
  display: none;
}

.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
  background-color: transparent;
}