.animated {
	animation-duration: 300ms;
	animation-fill-mode: both;
}
.animated,
.ease-in-out-quart {
	animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
/* slide in from right to left */
@keyframes slideInRight {
	from {
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}
	to {
		transform: translate3d(0, 0, 0);
	}
}
@keyframes slideOutLeft {
	from {
		transform: translate3d(0, 0, 0);
		visibility: visible;
	}
	to {
		transform: translate3d(-100%, 0, 0);
	}
}
/* slide in from left to right */
@keyframes slideInLeft {
	from {
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}
	to {
		transform: translate3d(0, 0, 0);
	}
}
.slideInLeft {
	animation-name: slideInLeft;
}
/* slide out upwards */
@keyframes slideOutUp {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: hidden;
		transform: translate3d(0, -100%, 0);
	}
}
.slideOutUp {
	animation-name: slideOutUp;
}
/* fade in */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.fadeIn {
	animation-name: fadeIn;
}
/* fade out */
@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 2;
	}
}
.fadeOut {
	animation-name: fadeOut;
}

.transition {
	transition: all 250ms ease-out 0s;
}
/* some times it's good to have a little longer transition because the animation
has a long way to go (e.g., post add/edit page sliding all the way from the bottom) */
.transition-300 {
	transition-duration: 300ms;
}
.fade-out {
	opacity: 0;
}
.fade-in {
	opacity: 1;
}
.expanded {
	opacity: 1 !important;
	transform: scale(1) !important;
}
/* horizontal */
.slide-left {
	transform: translateX(-100vw);
}
.slide-left-element-width {
	transform: translateX(-100%);
}
.slide-right {
	transform: translateX(100vw);
}
/* vertical */
.slide-up {
	transform: translateY(-100vh);
}
.slide-down {
	transform: translateY(100vh);
}
.slide-down-element-height {
	transform: translateY(100%) !important;
}

@media screen and (prefers-reduced-motion: reduce) {
	.transition {
		transition: none;
	}
}

/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */

/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */

/* Document
   ========================================================================== */

html {
	font-family: sans-serif; /* 1 */
	line-height: 1.15; /* 2 */
	-ms-text-size-adjust: 100%; /* 3 */
	-webkit-text-size-adjust: 100%; /* 3 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

body {
	margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */

article,
aside,
footer,
header,
nav,
section {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

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

/* Grouping content
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */

figcaption,
figure,
main {
	/* 1 */
	display: block;
}

/**
 * Add the correct margin in IE 8.
 */

figure {
	margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
	box-sizing: content-box; /* 1 */
	height: 0; /* 1 */
	overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */

a {
	background-color: transparent; /* 1 */
	-webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */

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

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
	border-bottom: none; /* 1 */
	text-decoration: underline; /* 2 */
	-webkit-text-decoration: underline dotted;
	        text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */

b,
strong {
	font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */

dfn {
	font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */

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

/**
 * Add the correct font size in all browsers.
 */

small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

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

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

audio,
video {
	display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */

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

/**
 * Remove the border on images inside links in IE 10-.
 */

img {
	border-style: none;
}

/**
 * Hide the overflow in IE.
 */

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

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
	font-family: sans-serif; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
	/* 1 */
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
	/* 1 */
	text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */

button,
html [type="button"], /* 1 */
[type="reset"],
[type="submit"] {
	-webkit-appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */

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

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
	box-sizing: border-box; /* 1 */
	color: inherit; /* 2 */
	display: table; /* 1 */
	max-width: 100%; /* 1 */
	padding: 0; /* 3 */
	white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
	display: inline-block; /* 1 */
	vertical-align: baseline; /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */

textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */

[type='checkbox'],
[type='radio'] {
	box-sizing: border-box; /* 1 */
	padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

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

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type='search'] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */

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

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */

details, /* 1 */
menu {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
	display: list-item;
}

/* Scripting
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

canvas {
	display: inline-block;
}

/**
 * Add the correct display in IE.
 */

template {
	display: none;
}

/* Hidden
   ========================================================================== */

/**
 * Add the correct display in IE 10-.
 */

[hidden] {
	display: none;
}

/*

What should go in this file:
1. Font declarations
2. General html elements (no classes or ids)
3. Form styles (no classes or ids)

*/

/* fonts.com fonts */
h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6,
.heading {
	font-family: Roboto, Helvetica, Arial, sans-serif;
	font-weight: bold;
}
.heading-italic,
h1 i,
h2 i,
h3 i,
h4 i,
h5 i,
h6 i,
h1 em,
h2 em,
h3 em,
h4 em,
h5 em,
h6 em {
	font-family: Roboto, Helvetica, Arial, sans-serif;
	font-weight: bold;
	font-style: italic;
}
/* general html elements */
*,
*:before,
*:after {
	box-sizing: border-box;
	word-wrap: break-word;
}
body {
	color: #333;
	font: normal 14px/130% Roboto, Helvetica, Arial, sans-serif;
}
main {
	/* drag and drop zone should always fill browser viewport */
	min-height: 100vh;
}
table {
	border-spacing: 0;
}
table caption {
	font-size: 16px;
	color: #444;
	text-align: left;
	margin-top: 10px;
}
a {
	text-decoration: none;
}
img {
	border: none;
	vertical-align: bottom;
}
select {
	font-family: Roboto, Helvetica, Arial, sans-serif;
	font-size: 14px;
	float: none;
	position: relative;
}
h1,
.h1 {
	font-weight: normal;
	font-size: 24px;
	line-height: 100%;
	margin-bottom: 3px;
}
h3 {
	font-weight: normal;
	font-size: 17px;
	margin: 1em 0 0.5em;
}
/* forms */
fieldset {
	margin: 0 !important; /* need important to override prizmdoc css */
}
input {
	border: 1px solid #cccccc;
	padding: 3px;
}
input:focus {
	background-color: #ffffff;
	border-color: #999999;
}
input[type='radio'],
input[type='checkbox'] {
	margin: 0 4px 0 0;
}
legend input[type='radio'],
legend input[type='checkbox'] {
	margin: 4px 0 0 0;
}
input[type='text'],
input[type='email'],
textarea {
	-webkit-appearance: none;
}
input[type='text'][readonly] {
	background-color: transparent;
	padding-top: 0;
	border: none !important;
	font: 14px Roboto, Helvetica, Arial, sans-serif;
	margin-left: -4px;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
	color: #888888 !important;
	font-weight: normal !important;
	opacity: 1;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
	color: #888888 !important;
	font-weight: normal !important;
	opacity: 1;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #888888 !important;
	font-weight: normal !important;
	opacity: 1;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #888888 !important;
	font-weight: normal !important;
	opacity: 1;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
	color: #888888 !important;
	font-weight: normal !important;
	opacity: 1;
}
input::placeholder,
textarea::placeholder {
	color: #888888 !important;
	font-weight: normal !important;
	opacity: 1;
}
input:focus,
select:focus,
textarea:focus {
	/* prevent webkit form field outline */
	outline: none;
}
/* pixel whose visibility is tracked by an intersection observer */
.intersection-box {
	width: 14px;
	height: 14px;
}
.intersection-box.debug {
	background-color: magenta;
}
/* if there is a mismatch between <img /> size and image size, keep aspect ratio and auto trim */
img {
	object-fit: cover;
}

/*

What should go in this file:
1. Reusable grid and layout classes

example usage:
<div class="container container-1200">
	<div class="row">
		<div class="col s12">
			<!-- one column with max width of 1200px -->
		</div>
	</div>
</div>

<div class="container container-960"> <!-- max width of 960px -->
	<div class="row">
		<div class="col s6">
			<!-- first column -->
		</div>
		<div class="col s6">
			<!-- second column -->
		</div>
	</div>
</div>

*/
.container {
	margin: 0 auto;
}
.container-1200 {
	width: 1200px;
}
.container-1280 {
	width: 1280px;
}
.container-1400 {
	width: 1400px;
}
.container-1600 {
	width: 1600px;
}
.container-1800 {
	width: 1800px;
}
.container-960 {
	width: 960px;
}
.container-full {
	width: 100%;
	padding: 0 1.5rem;
}
.clearfix:after,
.clear-this:after {
	content: '';
	display: table;
	clear: both;
}
.row.no-margin {
	margin: 0;
}
/*
from materialize css
http://materializecss.com/getting-started.html
*/
.container .row {
	margin-left: -0.75rem;
	margin-right: -0.75rem;
}

.section {
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.section.no-pad {
	padding: 0;
}
.section.no-pad-bot {
	padding-bottom: 0;
}
.section.no-pad-top {
	padding-top: 0;
}

.row {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1rem;
}
.row:after {
	content: '';
	display: table;
	clear: both;
}
.row .col {
	float: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 0.75rem;
}
.row .col.first-col {
	padding: 0;
}
.row .col.s1 {
	width: 8.33333%;
	margin-left: 0;
}
.row .col.s2 {
	width: 16.66667%;
	margin-left: 0;
}
.row .col.s3 {
	width: 25%;
	margin-left: 0;
}
.row .col.s4 {
	width: 33.33333%;
	margin-left: 0;
}
.row .col.s5 {
	width: 41.66667%;
	margin-left: 0;
}
.row .col.s6 {
	width: 50%;
	margin-left: 0;
}
.row .col.s7 {
	width: 58.33333%;
	margin-left: 0;
}
.row .col.s8 {
	width: 66.66667%;
	margin-left: 0;
}
.row .col.s9 {
	width: 75%;
	margin-left: 0;
}
.row .col.s10 {
	width: 83.33333%;
	margin-left: 0;
}
.row .col.s11 {
	width: 91.66667%;
	margin-left: 0;
}
.row .col.s12 {
	width: 100%;
	margin-left: 0;
}
.row .col.offset-s1 {
	margin-left: 8.33333%;
}
.row .col.offset-s2 {
	margin-left: 16.66667%;
}
.row .col.offset-s3 {
	margin-left: 25%;
}
.row .col.offset-s4 {
	margin-left: 33.33333%;
}
.row .col.offset-s5 {
	margin-left: 41.66667%;
}
.row .col.offset-s6 {
	margin-left: 50%;
}
.row .col.offset-s7 {
	margin-left: 58.33333%;
}
.row .col.offset-s8 {
	margin-left: 66.66667%;
}
.row .col.offset-s9 {
	margin-left: 75%;
}
.row .col.offset-s10 {
	margin-left: 83.33333%;
}
.row .col.offset-s11 {
	margin-left: 91.66667%;
}
.row .col.offset-s12 {
	margin-left: 100%;
}
@media only screen and (min-width: 601px) {
	.row .col.m1 {
		width: 8.33333%;
		margin-left: 0;
	}
	.row .col.m2 {
		width: 16.66667%;
		margin-left: 0;
	}
	.row .col.m3 {
		width: 25%;
		margin-left: 0;
	}
	.row .col.m4 {
		width: 33.33333%;
		margin-left: 0;
	}
	.row .col.m5 {
		width: 41.66667%;
		margin-left: 0;
	}
	.row .col.m6 {
		width: 50%;
		margin-left: 0;
	}
	.row .col.m7 {
		width: 58.33333%;
		margin-left: 0;
	}
	.row .col.m8 {
		width: 66.66667%;
		margin-left: 0;
	}
	.row .col.m9 {
		width: 75%;
		margin-left: 0;
	}
	.row .col.m10 {
		width: 83.33333%;
		margin-left: 0;
	}
	.row .col.m11 {
		width: 91.66667%;
		margin-left: 0;
	}
	.row .col.m12 {
		width: 100%;
		margin-left: 0;
	}
	.row .col.offset-m1 {
		margin-left: 8.33333%;
	}
	.row .col.offset-m2 {
		margin-left: 16.66667%;
	}
	.row .col.offset-m3 {
		margin-left: 25%;
	}
	.row .col.offset-m4 {
		margin-left: 33.33333%;
	}
	.row .col.offset-m5 {
		margin-left: 41.66667%;
	}
	.row .col.offset-m6 {
		margin-left: 50%;
	}
	.row .col.offset-m7 {
		margin-left: 58.33333%;
	}
	.row .col.offset-m8 {
		margin-left: 66.66667%;
	}
	.row .col.offset-m9 {
		margin-left: 75%;
	}
	.row .col.offset-m10 {
		margin-left: 83.33333%;
	}
	.row .col.offset-m11 {
		margin-left: 91.66667%;
	}
	.row .col.offset-m12 {
		margin-left: 100%;
	}
}
@media only screen and (min-width: 993px) {
	.row .col.l1 {
		width: 8.33333%;
		margin-left: 0;
	}
	.row .col.l2 {
		width: 16.66667%;
		margin-left: 0;
	}
	.row .col.l3 {
		width: 25%;
		margin-left: 0;
	}
	.row .col.l4 {
		width: 33.33333%;
		margin-left: 0;
	}
	.row .col.l5 {
		width: 41.66667%;
		margin-left: 0;
	}
	.row .col.l6 {
		width: 50%;
		margin-left: 0;
	}
	.row .col.l7 {
		width: 58.33333%;
		margin-left: 0;
	}
	.row .col.l8 {
		width: 66.66667%;
		margin-left: 0;
	}
	.row .col.l9 {
		width: 75%;
		margin-left: 0;
	}
	.row .col.l10 {
		width: 83.33333%;
		margin-left: 0;
	}
	.row .col.l11 {
		width: 91.66667%;
		margin-left: 0;
	}
	.row .col.l12 {
		width: 100%;
		margin-left: 0;
	}
	.row .col.offset-l1 {
		margin-left: 8.33333%;
	}
	.row .col.offset-l2 {
		margin-left: 16.66667%;
	}
	.row .col.offset-l3 {
		margin-left: 25%;
	}
	.row .col.offset-l4 {
		margin-left: 33.33333%;
	}
	.row .col.offset-l5 {
		margin-left: 41.66667%;
	}
	.row .col.offset-l6 {
		margin-left: 50%;
	}
	.row .col.offset-l7 {
		margin-left: 58.33333%;
	}
	.row .col.offset-l8 {
		margin-left: 66.66667%;
	}
	.row .col.offset-l9 {
		margin-left: 75%;
	}
	.row .col.offset-l10 {
		margin-left: 83.33333%;
	}
	.row .col.offset-l11 {
		margin-left: 91.66667%;
	}
	.row .col.offset-l12 {
		margin-left: 100%;
	}
}

/**
# Primary buttons

Uses the theme's primary color. `.btn-action`

```html
<button class="btn btn-action">Regular</button>
<button class="btn btn-action btn-med">Medium</button>
<button class="btn btn-action btn-sm">Small</button>
<button class="btn btn-action btn-xs">Extra Small</button>
```
*/
.btn {
	border-radius: 4px;
	text-transform: uppercase;
	border: none;
	display: inline-block;
	background-color: #ee5834; /* default in case theme css fails to load */
	cursor: pointer;
	vertical-align: middle;
	white-space: nowrap;
}
.btn img {
	vertical-align: middle;
}
.btn:hover,
.btn:focus {
	text-decoration: none;
}
/* buttons can have icons to the left of the button text */
.btn .icons {
	margin-right: 0.1em;
	vertical-align: bottom;
}
.btn.right-icon .icons {
	margin-right: 0;
	margin-left: 0.25em;
}
.btn[disabled] .icons {
	color: #e0e0e0;
}
[disabled] .icons {
	color: #e0e0e0;
}
.btn:focus {
	outline: 0;
}
.btn[disabled],
.btn[disabled]:hover,
.btn [disabled],
.btn [disabled]:hover,
[disabled] .btn:hover,
[disabled] .btn {
	background-color: #d3d4d6;
	color: #fff;
	cursor: not-allowed;
}
.btn-action[disabled] {
	opacity: 0.4;
}
.btn-action:not(.btn-action-select) {
	color: #fff;
	border: 1px solid transparent;
}
.btn-action:hover,
.btn-action:focus {
	outline: 0;
	background-color: #333333;
}
/**
# Secondary buttons

Uses the theme's secondary color

```html
<button class="btn btn-secondary">Regular</button>
<button class="btn btn-secondary btn-med">Medium</button>
<button class="btn btn-secondary btn-sm">Small</button>
<button class="btn btn-secondary btn-xs">Extra Small</button>
```
*/
.btn-secondary {
	color: #fff;
}
.btn-secondary:hover,
.btn-secondary:focus {
	outline: 0;
	background-color: #5e5e5e;
	color: #fff;
}
/**
# Outlined buttons

Uses a simple outline

```html
<button class="btn btn-outline">Regular</button>
<button class="btn btn-outline btn-med">Medium</button>
<button class="btn btn-outline btn-sm">Small</button>
<button class="btn btn-outline btn-xs">Extra Small</button>
```
*/
.btn-outline {
	color: #333333;
	border: 1px solid #333333;
	background-color: white;
}
.btn-outline:hover,
.btn-outline:focus {
	outline: 0;
	color: #333333;
	background-color: #edeeef;
}
/**
# Muted buttons

```html
<button class="btn btn-muted">Regular</button>
<button class="btn btn-muted btn-med">Medium</button>
<button class="btn btn-muted btn-sm">Small</button>
<button class="btn btn-muted btn-xs">Extra Small</button>
```
*/
.btn-muted {
	outline: 0;
	background-color: white;
	color: #adb3b6;
	border: 1px solid #adb3b6;
}
.btn-muted:hover,
.btn-muted:focus {
	outline: 0;
	color: #5e5e5e;
	background-color: white;
	border: 1px solid #5e5e5e;
}
.btn-cancel {
	padding-left: 0;
	padding-right: 0;
	color: #adb3b6;
	background-color: transparent;
}
.btn-cancel:hover,
.btn-cancel:focus {
	outline: 0;
	color: #5e5e5e;
}
.btn-gray-addon {
	border: 1px solid #333333;
	background-color: #edeeef;
	text-transform: none;
}
.btn-gray-addon:hover {
	background-color: #d3d4d6;
}
.ribbon .btn-cancel,
.ribbon .btn-cancel:hover,
.ribbon .btn-cancel:focus {
	color: white;
}
/* button sizes */
.btn {
	height: 36px;
	line-height: 36px;
	font-size: 16px;
	padding: 0 30px;
}
.btn-med {
	height: 32px;
	line-height: 32px;
	font-size: 14px;
	padding: 0 15px;
}
.btn-sm {
	height: 28px;
	line-height: 28px;
	font-size: 13px;
	padding: 0 10px;
}
.btn-xs {
	font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif;
	height: 24px;
	line-height: 24px;
	font-size: 12px;
	padding: 0 5px;
}
.form-input-select-container + .btn,
.btn + .btn {
	margin-left: 20px;
}
.form-input-select-container + .btn-med,
.btn + .btn-med {
	margin-left: 10px;
}
.form-input-select-container + .btn-sm,
.btn + .btn-sm {
	margin-left: 7px;
}
.form-input-select-container + .btn-xs,
.btn + .btn-xs {
	margin-left: 5px;
}
.form-input-select-container + .btn-cancel,
.btn + .btn-cancel {
	margin-left: 0;
}
/**
# More/less buttons

Buttons with gray background that show/hide full post text

*/
.btn-more-less {
	letter-spacing: 0.1em;
	padding: 0 8px;
	border: none;
	color: #5e5e5e;
	background-color: #ddd;
	height: 20px;
	line-height: 20px;
	font-size: 12px;
	text-transform: uppercase;
	border-radius: 4px;
	cursor: pointer;
	display: inline-block;
}
.btn-more-less:hover {
	background-color: #ccc;
	color: #5e5e5e;
}
/**
# Ribbon buttons

Button with tight padding, transparent bg, white border outline, and border radius.
- `.icons` are optional.
- If button has disabled attribute, outline and font color change to gray.

```html
<div class="ribbon">
	<button class="btn btn-ribbon">
		<i class="icons icon-pencil2"></i> Edit
	</button>
</div>
```
*/
a.btn-ribbon,
a:hover.btn-ribbon {
	color: #ffffff;
}
.btn-ribbon {
	cursor: pointer;
	border-width: 1px;
	border-style: solid;
	border-color: #ffffff;
	color: #ffffff;
	background: transparent;
}
.btn-ribbon.user-like-btn,
.btn-ribbon.user-comment-btn {
	padding: 0px 6px;
	height: 28px;
	line-height: 28px;
	font-size: 14px;
}
.btn-ribbon:not([disabled]):hover {
	background-color: rgba(255, 255, 255, 0.1);
}
.btn-ribbon .icons {
	font-size: 16px;
}
[disabled] .btn-ribbon,
.btn-ribbon[disabled] {
	cursor: default;
}
.btn-ribbon.btn-ribbon-active[disabled],
.btn-ribbon.btn-ribbon-active[disabled]:hover {
	color: rgba(255, 255, 255, 0.4);
}
/**
# Danger / success buttons

```html
<button class="btn btn-danger">Warning</button>
<button class="btn btn-success">Success</button>
```
*/
.btn-danger {
	color: #d0021b;
	border: 1px solid #d0021b;
	background-color: #fff;
}
.btn-danger:hover,
.btn-danger:focus {
	outline: 0;
	color: #fff;
	background-color: #d0021b;
}
.btn-success {
	background-color: #6fb91f;
	color: #ffffff;
}
/**
# Trigger Buttons

Button that acts like a trigger. Usually has an icon-thin-down child to
look like a select.

Use the `only-open` and `only-closed` classes to conditionally show
and hide children such as icons by adding an `is-open` class to the
button.

Use the `drawer-front` classes to darken button and show a neck when
the `is-open` class is applied.

```html
<button class="btn btn-med btn-natcase btn-trigger">
	Including 42 hubs <i class="icons icon-thin-down"></i>
</button>

<button class="btn btn-med btn-natcase btn-trigger">
	Closed state
	<i class="icons icon-thin-up only-open"></i>
	<i class="icons icon-thin-down only-closed"></i>
</button>

<button class="btn btn-med btn-natcase btn-trigger is-open">
	Open state
	<i class="icons icon-thin-up only-open"></i>
	<i class="icons icon-thin-down only-closed"></i>
</button>

<button class="btn btn-med btn-natcase btn-trigger drawer-front is-open">
	Open with .drawer-front
	<i class="icons icon-thin-up only-open"></i>
	<i class="icons icon-thin-down only-closed"></i>
</button>
```
*/
.btn-trigger,
.btn-trigger:hover {
	position: relative;
	border: 1px solid #adb3b6;
	color: #5e5e5e;
	background-color: white;
}
.btn-trigger .icons {
	margin-left: 4px;
}
.btn-trigger.drawer-front.is-open {
	background-color: #f6f6f7;
}
.btn-trigger.drawer-front.is-open:after {
	content: '';
	position: absolute;
	left: -1px;
	bottom: -9px;
	height: 12px;
	right: -1px;
	border-left: 1px solid #adb3b6;
	border-right: 1px solid #adb3b6;
	background-color: #f6f6f7;
	z-index: 3;
}
/* handle only-open and only-closed children */
.btn-trigger.is-open .only-open {
	display: inline;
}
.btn-trigger .only-open,
.btn-trigger.is-open .only-closed {
	display: none;
}
/**
# Full-width buttons

```html
<button class="btn btn-action btn-full">Full Width Super Button</button>
```
*/
.btn-full {
	width: 100%;
	height: 50px;
	line-height: 50px;
	text-transform: uppercase;
	text-align: center;
}
/**
# Butt with next

Smash one button up against its neighbor

```html
<button class="btn btn-action btn-med btn-butt-next">Copy posts to hub:</button>
<div class="form-input-select-container">
	<select><option>Hub one</option><option>Hub two</option><option>Hub three</option></select>
</div>
```
*/
.btn-butt-next {
	vertical-align: bottom;
	margin-top: 3px;
	border-radius: 4px 0 0 4px !important;
}
.btn-butt-next + .btn,
.btn-butt-next + .form-input,
.btn-butt-next + .form-input-select-container select {
	vertical-align: bottom;
	border-radius: 0 4px 4px 0;
	border-left-width: 0;
	transform: translate(-4px, 0);
}
.btn-butt-next + .form-input-select-container select {
	transform: translate(-4px, -2px);
}
.btn-butt-next + .form-input-select-container {
	top: 1px;
}
.float-right.btn-butt-next,
.float-left.btn-butt-next {
	margin-top: 2px;
}
/* butt up against previous neighbor */
.form-input-select-container + .btn-butt-prev,
.btn-butt-prev {
	margin-left: 0;
	vertical-align: top;
}
/**
# Reversed Buttons

```html
<p class="ribbon">
	<button class="btn btn-reversed">Reversed</button>
	<button class="btn btn-reversed" disabled>Disabled</button>
	<button class="btn btn-reversed borderless">Borderless</button>
</p>
```
*/
.btn-reversed,
.btn-reversed:hover {
	color: white;
	background: transparent;
	border: 1px solid white;
}
.btn-reversed[disabled],
.btn-reversed[disabled]:hover {
	background: transparent;
	opacity: 0.4;
}
/**
# Avoiding Uppercase

```html
<button class="btn btn-action btn-natcase">Natural Case</button>
```
*/
.btn-natcase {
	text-transform: none;
}
.btn-mtop {
	margin-top: 10px;
}
.btn-borderless,
.btn-borderless:hover {
	border: 1px solid transparent;
}
/**
# Buttons at the bottom of forms that float right

```html
<div class="form-actions">
	<button class="btn btn-cancel btn-med">Cancel</button>
	<button class="btn btn-action btn-med">Save</button>
</div>
```
*/
.form-actions {
	display: flex;
	justify-content: flex-end;
}

.flex {
	display: flex;
}
.flex-row {
	flex-direction: row;
}
.flex-row-reverse {
	flex-direction: row-reverse;
}
.flex-col {
	flex-direction: column;
}
.flex-col-reverse {
	flex-direction: column-reverse;
}
.flex-wrap {
	flex-wrap: wrap;
}
.flex-wrap-reverse {
	flex-wrap: wrap-reverse;
}
.flex-no-wrap {
	flex-wrap: nowrap;
}
.justify-start {
	justify-content: flex-start;
}
.justify-end {
	justify-content: flex-end;
}
.justify-center {
	justify-content: center;
}
.justify-between {
	justify-content: space-between;
}
.justify-around {
	justify-content: space-around;
}
.justify-evenly {
	justify-content: space-evenly;
}
.items-start {
	align-items: flex-start;
}
.items-end {
	align-items: flex-end;
}
.items-center {
	align-items: center;
}
.items-baseline {
	align-items: baseline;
}
.items-stretch {
	align-items: stretch;
}

/* remove the X field in IE inputs */
::-ms-clear {
	width: 0;
	height: 0;
}
/* hide 1Password icons and prompt on loggedin pages */
.state-loggedin com-1password-op-button,
.state-loggedin #op-popup {
	display: none !important;
}
/* form containers */
.form-table {
	width: 100%;
	border-collapse: collapse;
}
.form-table.auto-width,
.form-table.auto-width > .td,
.form-table.auto-width > tbody > tr > td,
.form-table.auto-width > .th,
.form-table.auto-width > tbody > tr > th {
	width: auto;
}
.form-table > .td,
.form-table > tbody > tr > td,
.form-table > .th,
.form-table > tbody > tr > th {
	padding-right: 12px;
}
.form-table > .td:last-child,
.form-table > tbody > tr > td:last-child,
.form-table > .th:last-child,
.form-table > tbody > tr > th:last-child {
	padding-right: 0;
}
.form-table > .th,
.form-table > tbody > tr > th {
	/* give width to form columns */
	width: 10%;
	font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif;
	font-weight: normal;
	font-size: 14px;
	padding: 16px 32px 0 0;
	vertical-align: middle;
	text-align: left;
	text-transform: uppercase;
	white-space: nowrap;
}
.form-table > .td,
.form-table > tbody > tr > td {
	padding-top: 8px;
	padding-bottom: 8px;
}
.form-table .th.section-label,
.form-table th.section-label {
	font-family: Roboto, Helvetica, Arial, sans-serif;
	font-weight: bold;
	border-bottom: 1px solid #666;
	text-transform: none;
	padding-bottom: 4px;
}
tr > td {
	transition: background-color 300ms ease-in-out;
}
tr.is-saving > td,
.is-saving {
	background-color: #e1f3de;
}
.condensed {
	font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif;
	text-transform: uppercase;
}
label {
	font-weight: normal;
	font-size: 14px;
	vertical-align: middle;
}
.form-table > .td,
.form-table > tbody > tr > td {
	vertical-align: middle;
}
.form-table > .th,
.form-table > tbody > tr > th {
	vertical-align: top;
}
.form-table.horiz-ruled > .th,
.form-table.horiz-ruled > tbody > tr > th,
.form-table.horiz-ruled > .td,
.form-table.horiz-ruled > tbody > tr > td {
	border-top: 1px solid #d3d4d6;
	border-bottom: 1px solid #d3d4d6;
	padding-top: 8px;
	padding-bottom: 8px;
}
.form-table.ruled > .td,
.form-table.ruled > tbody > tr > td {
	border: 1px solid #d3d4d6;
	padding: 8px 12px;
}
.form-table-break > tbody > tr > td,
.form-table-break > tbody > tr > th,
.form-table-break > .td,
.form-table-break > .th {
	padding-top: 10px;
}

.form-table > tbody > tr > td .form-input {
	width: 100%;
}
.form-table .footer-actions {
	text-align: right;
	padding-top: 8px;
}
/* form elements */
.form-input {
	font-family: Roboto, Helvetica, Arial, sans-serif;
	border: 1px solid #5e5e5e;
	color: #333333;
	font-size: 14px;
	background-color: #fff;
	border-radius: 4px;
	font-weight: 700;
	display: inline-block;
}
.small-inputs .form-input {
	font-size: 12px;
	font-weight: normal;
}
input.form-input {
	padding: 0 12px;
	height: 32px;
	line-height: 32px;
}
input.auto-width {
	width: auto !important;
}
.small-inputs input.form-input {
	padding: 0 8px;
	height: 24px;
	line-height: 24px;
}
textarea.form-input {
	padding: 7px 12px;
	line-height: 130%;
}
.small-inputs textarea.form-input {
	padding: 5px 8px;
}
.form-input:-ms-input-placeholder {
	color: #adb3b6 !important;
}
.form-input::placeholder {
	color: #adb3b6 !important;
}
.form-input-muted {
	border-color: #adb3b6;
	color: #adb3b6;
}
.form-input.form-select {
	font-weight: 400;
}
.form-input-stealth,
.form-input-stealth:focus {
	border: none !important;
	padding: 0 !important;
	color: #333333 !important;
	font-weight: normal !important;
	resize: none;
}
.when-prev-focus {
	display: none;
}
input:focus + .when-prev-focus {
	display: block;
}
.input-hint {
	font-size: 11px;
	margin-top: 3px;
}
.form-input.margin-top-s {
	margin-top: 6px;
}
.form-input-disabled {
	background-color: #f6f6f7;
}
/**
# Input Group

Smash an addon or button against a full-width input

```html
<div style="width:400px">
	<div class="input-group">
		<input class="form-input" placeholder="Search term...">
		<span class="input-group-btn">
			<button class="btn btn-action btn-med">Search</button>
		</span>
	</div>
	<br>
	<div class="input-group">
		<input class="form-input" placeholder="Username">
		<span class="input-group-addon">
			<span class="icons icon-checkmark2"></span>
		</span>
	</div>
	<br>
	<div class="input-group">
		<span class="input-group-addon">
			<span class="icons icon-envelope"></span>
		</span>
		<input class="form-input" placeholder="Email address">
	</div>
</div>
```
*/
.input-group {
	width: 100%;
	position: relative;
	display: table;
	border-collapse: separate;
}
.input-group .form-input:first-child {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.input-group .form-input:last-child {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.input-group .form-input {
	display: table-cell;
	position: relative;
	z-index: 2;
	float: left;
	width: 100%;
	margin-bottom: 0;
}
.input-group .form-input:disabled {
	cursor: not-allowed;
}
.input-group-addon {
	width: 1%;
	white-space: nowrap;
	vertical-align: middle;
	display: table-cell;
	border: 1px solid #333333;
	background-color: #edeeef;
	padding: 0 12px;
}
.input-group-addon:first-child {
	border-right: none;
	border-radius: 4px 0 0 4px;
}
.input-group-btn .btn,
.input-group-addon:last-child {
	border-left: none;
	border-radius: 0 4px 4px 0;
}
.input-group-btn {
	position: relative;
	font-size: 0;
	line-height: 0;
	white-space: nowrap;
	display: table-cell;
	width: 1%;
	vertical-align: middle;
}
.input-group-btn .btn {
	z-index: 2;
}
/**
# Faux Checkbox

Note that the label class must be `faux-checkbox` and the input must be followed by a span, even if empty.

```html
<label class="faux-checkbox">
	<input type="checkbox"> <span>Check me</span>
</label>
<br>
<label class="faux-checkbox">
	Or label to the left &nbsp; <input type="checkbox"> <span></span>
</label>
```
*/
/**
# Faux Radio

Note that the label class must be `faux-radio` and the input must be followed by a span, even if empty.

```html
<label class="faux-radio">
	<input type="radio" name="one"> <span>Check me</span>
</label>
<br>
<label class="faux-radio">
	<input type="radio" name="one"> <span>Or me here</span>
</label>
```
*/
.faux-radio,
.faux-checkbox {
	cursor: pointer;
	margin-top: 0.2em;
	margin-left: 0.5em;
	word-break: break-all;
}
.app-mobile .faux-radio,
.app-mobile .faux-checkbox {
	margin-top: 1em;
	margin-left: 8px;
	font-size: 16px;
}
.faux-radio input,
.faux-checkbox input {
	/* attempt to hide browser checkbox/radio in case it peeks beneath icon */
	opacity: 0;
	font-size: 1px;
	vertical-align: top;
}
.faux-radio input + span,
.faux-checkbox input + span {
	position: relative;
	margin-left: 0.25em;
	display: inline-block;
	vertical-align: top;
}
.faux-radio input + span:before,
.faux-checkbox input + span:before {
	background-color: white;
	color: #5e5e5e;
	font-size: 1.3em;
	border-radius: 2px;
	cursor: pointer;
	position: absolute;
	top: 0;
	left: -1.5em;
}
.faux-radio input + span:empty:before,
.faux-checkbox input + span:empty:before {
	/* when span is empty it sits farther left */
	left: -1.3em;
}
.faux-checkbox.centered {
	display: block;
	text-align: center;
	position: relative;
	margin: 0 auto;
	width: 16px;
}
.faux-checkbox.centered input + span {
	margin-left: 0;
}
.faux-checkbox.centered input + span:before {
	left: 0;
}
.faux-radio input + span:before {
	border-radius: 0.45em;
}
.faux-radio input[disabled] + span:before,
.faux-checkbox input[disabled] + span:before {
	color: #d3d4d6 !important;
	cursor: not-allowed;
}
.faux-checkbox input + span:before {
	content: '\e908';
}
.faux-radio input + span:before {
	content: '\e907';
}
.faux-checkbox:hover input + span:before {
	content: '\e909';
}
.faux-radio input:checked + span:before {
	content: '\e906';
}
.faux-checkbox input:checked + span:before {
	content: '\e90a';
}
.faux-checkbox input:indeterminate + span:before {
	content: '\e909';
	color: #bbb !important;
}
/* add more space if buttons and or checkboxes are on the same line */
.faux-checkbox + .faux-checkbox,
.faux-radio + .faux-radio,
.faux-radio + .faux-checkbox,
.faux-checkbox + .faux-radio,
.form-input-select-container + .form-input-select-container,
.form-input + .radio,
.form-input-select-container + .faux-radio,
.btn + .faux-radio,
.form-input + .faux-checkbox,
.form-input-select-container + .faux-checkbox,
.btn + .faux-checkbox {
	margin-left: 1.75em;
}
/* but allow using .one-per-line to use normal spacing */
.one-per-line .faux-checkbox,
.one-per-line .faux-radio,
.one-per-line.faux-checkbox,
.one-per-line.faux-radio {
	display: flex;
	margin-left: 0.5em;
}
/**
# Faux Outline

For radios and checkboxes on a colored background, you can add the `faux-outline` class.
Note that the span must have a background color applied by css or inline.

```html
<div style="background: #ec2e7b; padding: 10px">
	<label class="faux-checkbox faux-outline">
		<input type="checkbox"> <span style="background: #ec2e7b">Check me</span>
	</label>
	<label class="faux-radio faux-outline">
		<input type="radio" name="one"> <span style="background: #ec2e7b">Check me</span>
	</label>
	<br>
	<label class="faux-radio faux-outline">
		<input type="radio" name="one"> <span style="background: #ec2e7b">Or me here</span>
	</label>
</div>
```
*/
.faux-radio.faux-outline input + span:before,
.faux-checkbox.faux-outline input + span:before {
	background-color: inherit;
	color: white !important;
}
.inline-input {
	display: inline-block;
	padding: 9px 12px;
	margin: 0 10px 0 0;
	vertical-align: middle;
}
.inline-label {
	padding-right: 10px;
}
/**
# Select

Select dropdown for new theme
These need to be wrapped with a container

```html
<div class="form-input-select-container">
	<select>
		<option value="1">One</option>
		<option value="2">Two</option>
		<option value="3">Three</option>
	</select>
</div>
<br><br><hr><br>
<div>
	<label class="form-input-select-container">
		<span class="condensed form-input-select-label">Number of cats</span>
		<select>
			<option value="1">One</option>
			<option value="2">Two</option>
			<option value="3">Three</option>
		</select>
	</label>
</div>
```
*/
.form-input-select-container {
	font-size: 14px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
}
td .form-input-select-container,
th .form-input-select-container {
	top: 0;
	vertical-align: inherit;
}
.small-inputs .form-input-select-container {
	font-size: 12px;
}
.form-input-select-label {
	margin-right: 5px;
}
label .form-input-select-container {
	margin-left: 0.35em;
}
.form-input-select-container:after {
	content: '\e632';
	position: absolute;
	top: 0.7em;
	right: 12px;
	pointer-events: none;
	color: #5e5e5e;
}
.small-inputs .form-input-select-container:after {
	right: 8px;
}
.form-input-select-container .select-like,
.form-input-select-container select {
	height: 32px;
	border-radius: 4px;
	background-color: #ffffff;
	border: solid 1px #5e5e5e;
	padding: 3px 38px 3px 12px;
	-webkit-appearance: none;
	-moz-appearance: none;
}
.form-input-select-container select::-ms-expand {
	display: none;
}
.small-inputs .form-input-select-container .select-like,
.small-inputs .form-input-select-container select {
	height: 24px;
	line-height: 20px;
	border-radius: 3px;
	padding: 2px 38px 2px 8px;
}
.form-input-select-container.stealth select {
	padding: 0 15px 0 3px;
	border: none;
	background-color: transparent;
}
.form-input-select-container.stealth:after {
	right: 3px;
}
.dependent-select {
	margin-top: 0.75em;
}
label.over-input {
	font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif;
	font-size: 12px;
	color: #5e5e5e;
	display: block;
	line-height: 12px;
	text-transform: uppercase;
}
.form-input-label + .form-input,
.follows-input {
	margin-left: 10px;
}
fieldset.bordered {
	border: 1px solid #adb3b6;
	margin: 0.75em 0 !important;
	padding: 0.75em 1.25em 1.5em 1.25em;
	background-color: #fafafa;
	border-radius: 2px;
}
fieldset.bordered legend {
	color: #5e5e5e;
	padding: 0 0.5em;
	margin-left: -0.45em;
}
fieldset.bordered > p:first-child {
	margin-top: 8px;
}
fieldset.bordered > p:last-child {
	margin-bottom: 0;
}
/**
# Checkbox

Checkbox toggle button. The "on" color is overridden with the theme color if the input element also has
a "themed" class name.

Default:
```html
<input
	id="toggle-1"
	class="checkbox-toggle checkbox-toggle-round"
	type="checkbox"
/>
<label for="toggle-1" data-on="ON" data-off="OFF" ></label>
```

Themed:
```html
<input
	id="toggle-2"
	class="themed checkbox-toggle checkbox-toggle-round"
	type="checkbox"
/>
<label for="toggle-2" data-on="ON" data-off="OFF" ></label>
```
*/
input.checkbox-toggle {
	position: absolute;
	left: -9999px;
	opacity: 0;
}

.checkbox-toggle + label {
	display: block;
	position: relative;
	cursor: pointer;
	outline: none;
	-webkit-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}
.checkbox-toggle[disabled] + label {
	cursor: not-allowed;
}

input.checkbox-toggle:checked + label:before {
	text-align: center;
	content: attr(data-on);
	padding: 0 20px 0 0;
}

input.checkbox-toggle:not(:checked) + label:before {
	text-align: center;
	content: attr(data-off);
	padding: 0 0 0 18px;
}

input.checkbox-toggle-round + label {
	padding: 2px;
	width: 55px;
	height: 20px;
	background-color: #dddddd;
	border-radius: 25px;
}

input.checkbox-toggle-round + label:before,
input.checkbox-toggle-round + label:after {
	display: block;
	position: absolute;
	top: 1px;
	left: 1px;
	bottom: 1px;
	content: '';
}

input.checkbox-toggle-round + label:before {
	right: 1px;
	border-radius: 25px;
	transition: background 0.4s;
}

input.checkbox-toggle-round + label:after {
	width: 20px;
	background-color: #fff;
	border-radius: 25px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	transition: margin 0.4s;
}

input.checkbox-toggle-round:checked + label:after {
	margin-left: 34px;
}

input.checkbox-toggle-round:checked + label:before {
	background-color: #4db346;
	color: white;
}

input.checkbox-toggle-round:not(:checked) + label:before {
	background-color: #edeeef;
	color: #888;
}

/**
# Standard Tables

```html
<table class="std-table">
	<tr>
		<th></th>
		<th>Col A</th>
		<th>Col B</th>
	</tr>
	<tr>
		<td>Row 1</td>
		<td>A1</td>
		<td>B1</td>
	</tr>
	<tr>
		<td>Row 2</td>
		<td>A2</td>
		<td>B2</td>
	</tr>
</table>
```
*/
.std-table {
	width: 100%;
	border-collapse: collapse;
}
.std-table.auto-width {
	width: auto;
}
.std-table .tr.is-dragging {
	/* faux border top */
	box-shadow: 0 1px inset #edeeef;
}
.std-table .th:first-child,
.std-table .td:first-child,
.std-table th:first-child,
.std-table td:first-child {
	padding-left: 20px;
	padding-right: 20px;
}
.std-table .th,
.std-table th {
	font-weight: normal;
	text-align: left;
	vertical-align: bottom;
	text-transform: uppercase;
	border-bottom: 1px solid #666;
	padding: 10px 20px 10px 0;
	color: #adb3b6;
	font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif;
}
.std-table.gridded .th,
.std-table.gridded th {
	padding: 10px;
}
.std-table .td,
.std-table td {
	padding: 10px 20px 10px 0;
	vertical-align: middle;
	border-bottom: 1px solid #edeeef;
}
.std-table.gridded .td,
.std-table.gridded td {
	padding: 10px;
	border-bottom: 1px solid #d3d4d6;
	border-left: 1px solid #d3d4d6;
	border-right: 1px solid #d3d4d6;
}
.std-table.striped .tr:nth-child(2n + 1) .td,
.std-table.striped tr:nth-child(2n + 1) td {
	background-color: #fafafa;
}
.std-table tr.clickable:hover .td,
.std-table tr.clickable:hover td {
	background-color: #f6f6f7;
}
.std-table.striped .tr.clickable:nth-child(2n + 1):hover .td,
.std-table.striped tr.clickable:nth-child(2n + 1):hover td {
	background-color: #edeeef;
}
.action-pipe {
	font-size: 16px;
	line-height: 0;
	color: #adb3b6;
	margin: 0 3px;
}
.std-table-filters {
	padding-bottom: 15px;
}
.std-table-filters > * {
	margin-left: 0 !important;
	margin-right: 10px !important;
	vertical-align: middle;
}
.std-table .action-footer {
	border-bottom: none;
}
.std-table .totals-row td {
	border-bottom: none;
	font-weight: bold;
}
.std-table.condensed-table .th:first-child,
.std-table.condensed-table .td:first-child,
.std-table.condensed-table th:first-child,
.std-table.condensed-table td:first-child {
	padding-left: 0;
	padding-right: 0;
}
.std-table.condensed-table .th,
.std-table.condensed-table .td,
.std-table.condensed-table th,
.std-table.condensed-table td {
	padding: 5px 10px 5px 0;
}
/**
# Flexbox table

The std-table in flexbox. In use in hub#/admin/account/hubs/:id.

```html
<div class="flexbox-t">
	<div class="flexbox-t-row">
		<div class="flexbox-t-cell flexbox-t-left-column">Name</div>
		<div class="flexbox-t-cell">Age</div>
	</div>
	<div class="flexbox-t-row">
		<div class="flexbox-t-cell flexbox-t-left-column">Sam</div>
		<div class="flexbox-t-cell">38</div>
	</div>
	<div class="flexbox-t-row">
		<div class="flexbox-t-cell flexbox-t-left-column">Bobby</div>
		<div class="flexbox-t-cell">32</div>
	</div>
	<div class="flexbox-t-row flexbox-t-row-stacked">
		<div class="flexbox-t-cell">Stacked</div>
		<div class="flexbox-t-cell">One</div>
		<div class="flexbox-t-cell">On Top</div>
		<div class="flexbox-t-cell">Of Another</div>
	</div>
</div>
```
*/
.flexbox-t {
	width: auto;
	max-width: 454px;
}
.flexbox-t-row {
	display: flex;
	justify-content: flex-start;
	border-bottom: 1px solid #edeeef;
	align-items: center;
}
.flexbox-t-row-stacked {
	flex-direction: column;
	align-items: flex-start;
}
.flexbox-t-cell {
	padding: 10px 0;
	width: 50%;
}
.flexbox-t-row-stacked .flexbox-t-cell {
	width: 100%;
	padding-left: 20px;
}
.flexbox-t-left-column {
	padding-left: 20px;
}
/**
# Regular elements

```html
<div class="display-table">
	<div class="tr">
		<div class="td">A1</div>
		<div class="td">B1</div>
	</div>
	<div class="tr">
		<div class="td">A2</div>
		<div class="td">B2</div>
	</div>
</div>
```
*/
.std-table,
.display-table {
	display: table;
}
.thead,
.tbody,
.tfoot {
	display: table-row-group;
}
.tr,
.display-row {
	display: table-row;
}
.td,
.th,
.display-cell {
	display: table-cell;
}
/**
# Layout table with basic padding

```html
<table class="layout-table">
	<tr>
		<th></th>
		<th>Col A</th>
		<th>Col B</th>
	</tr>
	<tr>
		<td>Row 1</td>
		<td>A1</td>
		<td>B1</td>
	</tr>
	<tr>
		<td>Row 2</td>
		<td>A2</td>
		<td>B2</td>
	</tr>
</table>
```
*/
.layout-table {
	width: auto;
}
.layout-table th:last-child,
.layout-table td:last-child {
	padding-right: 0;
}
.layout-table th {
	font-weight: bold;
	text-align: left;
	padding: 4px 8px 4px 0;
}
.layout-table td {
	padding: 4px 8px 4px 0;
	vertical-align: middle;
}
.layout-table.striped tr:nth-child(2n + 1) th,
.layout-table.striped tr:nth-child(2n + 1) td {
	background-color: #fafafa;
}
.gravity-top th,
.gravity-top td {
	vertical-align: top !important;
}
.table-heading {
	margin-bottom: 5px;
}
.std-table + .table-heading {
	margin-top: 35px;
}
/**
# Vertical line between columns

```html
<table class="layout-table">
	<tr>
		<th>Left Side</th>
		<th rowspan="2" class="table-column-lined"></th>
		<th rowspan="2" class="table-column-lined"></th>
		<th>Right Side</th>
	</tr>
	<tr>
		<td>Left content</td>
		<td>Right content</td>
	</tr>
</table>
```
*/
.table-column-lined {
	padding-left: 7px !important;
	border-right: 1px solid #adb3b6;
}
.table-column-lined + .table-column-lined {
	padding-left: 15px !important;
	border: none;
}

/*

What should go in this file:
1. Icons font face declaration
2. Icons content codes
3. Classes to augment icon color

*/
/* see app/views/helpers/svg_icon.php for information on updating icon font */
@font-face {
	font-family: 'icons32';
	src: url('/assets/fonts/Icons/icons32.eot?-50bcjp');
	src:
		url('/assets/fonts/Icons/icons32.eot?#iefix-50bcjp') format('embedded-opentype'),
		url('/assets/fonts/Icons/icons32.woff?-50bcjp') format('woff'),
		url('/assets/fonts/Icons/icons32.ttf?-50bcjp') format('truetype'),
		url('/assets/fonts/Icons/icons32.svg?-50bcjp#icons32') format('svg');
	font-weight: normal;
	font-style: normal;
}
.icons {
	position: relative;
}

.faux-checkbox input + span:before,
.faux-radio input + span:before,
.glyphicon-chevron-left:after,
.glyphicon-chevron-right:after,
.form-input-select-container:after,
.custom-color-swatch:after,
.icons:after {
	font-family: 'icons32';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-feature-settings: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.icons:hover,
a:hover .icons {
	text-decoration: none;
}

/* reverse pin direction */
.icon-pin-empty,
.icon-pin-filled {
	display: inline-block;
	transform: scaleX(-1);
}

/* standard icon colors */
.googleplus-red {
	color: #dd4b38;
}
.evernote-green {
	color: #5fb822;
}
.linkedin-blue {
	color: #007ab6;
}
.facebook-blue {
	color: #3b5a98;
}
.twitter-blue {
	color: #00aced;
}
.tumblr-blue {
	color: #314f6d;
}
.email-gray {
	color: #494949;
}

/* these declarations are generated with JS from the icomoon demo.html file:
	var css = [];

	[].slice.call(document.querySelectorAll('.glyph')).forEach(function(div) {
		var name = div.querySelector('.mls, .glyphName').innerHTML.trim().replace(/^icon-icon/,'icon').replace(/(linkedin|twitter|tumblr)2/, '$1');
		var hex = div.querySelector('input.unit, input.ng-valid').value;

		var rule = '.' + name + ':after {content: "\\' + hex + '";}\n';

		css.push(rule);
	});

	css = css.sort().join('');
	console.log(css);

	// nice way to get the output into clipboard, but doesn't preserve new lines
	// window.prompt("Copy to clipboard: Cmd+C, Enter", css);
*/
.icon-a-text:after {
	content: '\e660';
}
.icon-address-book:after {
	content: '\e610';
}
.icon-addressbook:after {
	content: '\e630';
}
.icon-arrow-down:after {
	content: '\e29c';
}
.icon-arrow-left2:after {
	content: '\e29d';
}
.icon-arrow-left:after {
	content: '\e943';
}
.icon-arrow-right22:after {
	content: '\e29b';
}
.icon-arrow-right2:after {
	content: '\e944';
}
.icon-arrow-right:after {
	content: '\e647';
}
.icon-arrow-up-left:after {
	content: '\e2a6';
}
.icon-arrow-up-right:after {
	content: '\e2a8';
}
.icon-arrow-up22:after {
	content: '\e2a7';
}
.icon-arrow-up2:after {
	content: '\e29a';
}
.icon-arrow-up:after {
	content: '\e901';
}
.icon-arrow-wave:after {
	content: '\e950';
}
.icon-arrows-merge:after {
	content: '\e946';
}
.icon-attachment:after {
	content: '\e1e7';
}
.icon-blog:after {
	content: '\e65a';
}
.icon-blogger:after {
	content: '\e61a';
}
.icon-bold:after {
	content: '\e910';
}
.icon-bookmark:after {
	content: '\e715';
}
.icon-bubble-heart:after {
	content: '\e7e1';
}
.icon-bubble-question:after {
	content: '\e7da';
}
.icon-bubble-solid:after {
	content: '\e0e2';
}
.icon-bubble-square:after {
	content: '\e0e9';
}
.icon-bubble:after {
	content: '\e7d6';
}
.icon-bubbles:after {
	content: '\e7d7';
}
.icon-calendar-full:after {
	content: '\e789';
}
.icon-cancel-circle:after {
	content: '\e252';
}
.icon-cancel:after {
	content: '\e664';
}
.icon-chart-growth:after {
	content: '\e7fb';
}
.icon-check-empty:after {
	content: '\e908';
}
.icon-check-hover:after {
	content: '\e909';
}
.icon-check-selected:after {
	content: '\e90a';
}
.icon-check:after {
	content: '\e934';
}
.icon-checkmark-circle2:after {
	content: '\e66a';
}
.icon-checkmark-circle:after {
	content: '\e254';
}
.icon-checkmark2:after {
	content: '\e669';
}
.icon-checkmark:after {
	content: '\e644';
}
.icon-chevron-left:after {
	content: '\e93b';
}
.icon-chevron-right:after {
	content: '\e93c';
}
.icon-circletri-down:after {
	content: '\e63a';
}
.icon-circletri-right:after {
	content: '\e639';
}
.icon-client2:after {
	content: '\e92f';
}
.icon-client:after {
	content: '\e604';
}
.icon-clipboard-check:after {
	content: '\e6cc';
}
.icon-clipboard:after {
	content: '\e65b';
}
.icon-close:after {
	content: '\e257';
}
.icon-cloud-gear:after {
	content: '\e65d';
}
.icon-cloud-upload:after {
	content: '\e64b';
}
.icon-cog2:after {
	content: '\e144';
}
.icon-cog:after {
	content: '\e672';
}
.icon-columnizer:after {
	content: '\e637';
}
.icon-copy2:after {
	content: '\e05a';
}
.icon-copy:after {
	content: '\e6b8';
}
.icon-creditcard:after {
	content: '\e648';
}
.icon-crop:after {
	content: '\e618';
}
.icon-cross2:after {
	content: '\e90d';
}
.icon-cross:after {
	content: '\e92a';
}
.icon-delete2:after {
	content: '\e601';
}
.icon-delete:after {
	content: '\e794';
}
.icon-diagonalline:after {
	content: '\e661';
}
.icon-done-balloon:after {
	content: '\e649';
}
.icon-done-drink:after {
	content: '\e64a';
}
.icon-done-duck:after {
	content: '\e64c';
}
.icon-done-flower:after {
	content: '\e64d';
}
.icon-done-hipster:after {
	content: '\e64e';
}
.icon-done-icecream:after {
	content: '\e64f';
}
.icon-done-scuba:after {
	content: '\e650';
}
.icon-done-sun:after {
	content: '\e651';
}
.icon-done-watermelon:after {
	content: '\e652';
}
.icon-download2:after {
	content: '\e8f5';
}
.icon-download:after {
	content: '\e613';
}
.icon-drawer:after {
	content: '\e0cb';
}
.icon-drilldown:after {
	content: '\e634';
}
.icon-drop:after {
	content: '\e663';
}
.icon-earth:after {
	content: '\e60c';
}
.icon-edit:after {
	content: '\e600';
}
.icon-enter-down:after {
	content: '\e8f8';
}
.icon-envelope2:after {
	content: '\e0a1';
}
.icon-envelope:after {
	content: '\e696';
}
.icon-equalizer:after {
	content: '\e6f2';
}
.icon-exec:after {
	content: '\e636';
}
.icon-expand:after {
	content: '\e94a';
}
.icon-eye:after {
	content: '\e1ec';
}
.icon-facebook:after {
	content: '\e61c';
}
.icon-feed:after {
	content: '\e61b';
}
.icon-file-empty:after {
	content: '\e665';
}
.icon-file-excel-o:after {
	content: '\e905';
}
.icon-file-excel:after {
	content: '\e61f';
}
.icon-file-pdf:after {
	content: '\e61d';
}
.icon-file-powerpoint:after {
	content: '\e621';
}
.icon-file-ppt:after {
	content: '\e926';
}
.icon-file-word:after {
	content: '\e61e';
}
.icon-file-zip:after {
	content: '\e620';
}
.icon-file:after {
	content: '\e617';
}
.icon-files:after {
	content: '\e6b7';
}
.icon-film-play:after {
	content: '\e6f8';
}
.icon-filter:after {
	content: '\e667';
}
.icon-flag:after {
	content: '\e1e3';
}
.icon-folder-add:after {
	content: '\e629';
}
.icon-folder-open:after {
	content: '\e06c';
}
.icon-folder2:after {
	content: '\e62a';
}
.icon-folder3:after {
	content: '\e623';
}
.icon-folder:after {
	content: '\e6ba';
}
.icon-glasses:after {
	content: '\e877';
}
.icon-global-search:after {
	content: '\e92e';
}
.icon-globe:after {
	content: '\e606';
}
.icon-google-plus:after {
	content: '\e911';
}
.icon-graph:after {
	content: '\e7fa';
}
.icon-grid:after {
	content: '\e1c1';
}
.icon-hand-waving:after {
	content: '\e72e';
}
.icon-home6:after {
	content: '\e605';
}
.icon-hubspot-circle:after {
	content: '\e658';
}
.icon-hubspot:after {
	content: '\e659';
}
.icon-image:after {
	content: '\e622';
}
.icon-images:after {
	content: '\e60e';
}
.icon-info:after {
	content: '\e615';
}
.icon-instagram:after {
	content: '\e32e';
}
.icon-italic:after {
	content: '\e90f';
}
.icon-line-spacing:after {
	content: '\e9ac';
}
.icon-link-thick:after {
	content: '\e1df';
}
.icon-link:after {
	content: '\e924';
}
.icon-linkedin:after {
	content: '\e628';
}
.icon-list-boxes:after {
	content: '\e1bd';
}
.icon-list-bullets:after {
	content: '\e1be';
}
.icon-list-numbers:after {
	content: '\e92d';
}
.icon-list:after {
	content: '\e92c';
}
.icon-location:after {
	content: '\e0a5';
}
.icon-lock2:after {
	content: '\e13c';
}
.icon-lock:after {
	content: '\e900';
}
.icon-magic-wand:after {
	content: '\e62b';
}
.icon-magnifier:after {
	content: '\e922';
}
.icon-marker:after {
	content: '\e012';
}
.icon-medium-x:after {
	content: '\e653';
}
.icon-menu2:after {
	content: '\e92b';
}
.icon-menu:after {
	content: '\e903';
}
.icon-menuspace:after {
	content: '\e646';
}
.icon-minus-circle2:after {
	content: '\e24d';
}
.icon-minus-circle:after {
	content: '\e916';
}
.icon-mobile:after {
	content: '\e611';
}
.icon-move:after {
	content: '\e94f';
}
.icon-movie:after {
	content: '\e029';
}
.icon-mute:after {
	content: '\e8b4';
}
.icon-neutral:after {
	content: '\e238';
}
.icon-newspaper:after {
	content: '\e008';
}
.icon-nope:after {
	content: '\e928';
}
.icon-numbered-list:after {
	content: '\e1bf';
}
.icon-openadmin:after {
	content: '\e602';
}
.icon-paper-plane:after {
	content: '\e699';
}
.icon-paperclip2:after {
	content: '\e608';
}
.icon-paperclip:after {
	content: '\e698';
}
.icon-pen:after {
	content: '\e60f';
}
.icon-pencil:after {
	content: '\e60d';
}
.icon-picture:after {
	content: '\e70f';
}
.icon-pin-empty:after {
	content: '\e90c';
}
.icon-pin-filled:after {
	content: '\e90b';
}
.icon-pinterest:after {
	content: '\e368';
}
.icon-play:after {
	content: '\e266';
}
.icon-playbutton:after {
	content: '\e923';
}
.icon-plus-circle:after {
	content: '\e24b';
}
.icon-plus2:after {
	content: '\e936';
}
.icon-plus:after {
	content: '\e919';
}
.icon-portfolio:after {
	content: '\e62d';
}
.icon-questionmark:after {
	content: '\e631';
}
.icon-radio-empty:after {
	content: '\e907';
}
.icon-radio-selected:after {
	content: '\e906';
}
.icon-redo:after {
	content: '\e0de';
}
.icon-remove:after {
	content: '\e192';
}
.icon-rocket:after {
	content: '\e837';
}
.icon-rotate:after {
	content: '\e0da';
}
.icon-screen2:after {
	content: '\e0c3';
}
.icon-screen:after {
	content: '\e798';
}
.icon-search:after {
	content: '\e12d';
}
.icon-settings:after {
	content: '\e140';
}
.icon-share2:after {
	content: '\e31f';
}
.icon-share:after {
	content: '\e318';
}
.icon-shared:after {
	content: '\e603';
}
.icon-shield-check:after {
	content: '\e668';
}
.icon-signup:after {
	content: '\e1bc';
}
.icon-skype:after {
	content: '\e624';
}
.icon-small-delete:after {
	content: '\e627';
}
.icon-small-minus:after {
	content: '\e625';
}
.icon-small-plus:after {
	content: '\e626';
}
.icon-social-add:after {
	content: '\e65f';
}
.icon-social-delicious:after {
	content: '\e654';
}
.icon-social-email:after {
	content: '\e65e';
}
.icon-social-evernote:after {
	content: '\e641';
}
.icon-social-facebook:after {
	content: '\e643';
}
.icon-social-googleplus:after {
	content: '\e63f';
}
.icon-social-instagram:after {
	content: '\e655';
}
.icon-social-linkedin:after {
	content: '\e63e';
}
.icon-social-pinterest:after {
	content: '\e656';
}
.icon-social-stumbleupon:after {
	content: '\e657';
}
.icon-social-tumblr:after {
	content: '\e642';
}
.icon-social-twitter:after {
	content: '\e63d';
}
.icon-social-youtube:after {
	content: '\e65c';
}
.icon-social:after {
	content: '\e62c';
}
.icon-square-right:after {
	content: '\e666';
}
.icon-square:after {
	content: '\e662';
}
.icon-stack-empty:after {
	content: '\e921';
}
.icon-stacked:after {
	content: '\e638';
}
.icon-stats:after {
	content: '\e159';
}
.icon-stopwatch:after {
	content: '\e0b8';
}
.icon-sync:after {
	content: '\e904';
}
.icon-tablet:after {
	content: '\e612';
}
.icon-tag2:after {
	content: '\e076';
}
.icon-tag:after {
	content: '\e755';
}
.icon-theater:after {
	content: '\e6f3';
}
.icon-thick-back:after {
	content: '\e62e';
}
.icon-thick-next:after {
	content: '\e62f';
}
.icon-thin-back:after {
	content: '\e60b';
}
.icon-thin-down:after {
	content: '\e632';
}
.icon-thin-next:after {
	content: '\e60a';
}
.icon-thin-up:after {
	content: '\e633';
}
.icon-thin-x:after {
	content: '\e609';
}
.icon-thumbs-up2:after {
	content: '\e929';
}
.icon-thumbs-up3:after {
	content: '\e219';
}
.icon-thumbs-up:after {
	content: '\e902';
}
.icon-trash2:after {
	content: '\e681';
}
.icon-tree:after {
	content: '\e1c6';
}
.icon-triangle-down2:after {
	content: '\e63b';
}
.icon-triangle-down:after {
	content: '\e91b';
}
.icon-triangle-up:after {
	content: '\e91a';
}
.icon-triangle:after {
	content: '\e635';
}
.icon-trophy:after {
	content: '\e170';
}
.icon-tumblr:after {
	content: '\e355';
}
.icon-twitter-square:after {
	content: '\e914';
}
.icon-twitter:after {
	content: '\e32f';
}
.icon-twitter2:after {
	content: '\e915';
}
.icon-umbrella2:after {
	content: '\e640';
}
.icon-undo2:after {
	content: '\e0dd';
}
.icon-undo:after {
	content: '\e90e';
}
.icon-unlink:after {
	content: '\e1dc';
}
.icon-unlocked2:after {
	content: '\e13d';
}
.icon-unlocked:after {
	content: '\e13b';
}
.icon-upload:after {
	content: '\e614';
}
.icon-user-block:after {
	content: '\e111';
}
.icon-user:after {
	content: '\e10a';
}
.icon-useroutline:after {
	content: '\e91f';
}
.icon-warning:after {
	content: '\e955';
}
.icon-weather-rain:after {
	content: '\e1f7';
}
.icon-wordpress:after {
	content: '\e607';
}
.icon-zoom-in:after {
	content: '\e925';
}

/**
# Intel Bubble

```html
<div class="intel-bubble">
	<textarea class="bubble-text"></textarea>
</span>
```
*/
.intel-bubble {
	margin-bottom: 13px;
	color: #ffffff;
	position: relative;
	text-align: left;
	padding: 11px 14px 6px 14px;
	border-radius: 11px;
}
.intel-bubble .intel-text,
.intel-bubble .bubble-text {
	border: none;
	background: none;
	color: #ffffff !important;
	width: 100%;
	font-family: Roboto, Helvetica, Arial, sans-serif;
	line-height: 120%;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
/* normal size tail */
.intel-bubble:after {
	content: '';
	width: 0;
	height: 0;
	position: absolute;
	bottom: -22px;
	right: 40px;
	border-style: solid;
	border-width: 24px 25px 0 0;
	transform: rotate(17deg);
	transform-origin: 100% 0;
	z-index: 2;
}
.intel-bubble textarea:-moz-placeholder {
	color: rgba(255, 255, 255, 0.8) !important;
}
.intel-bubble textarea::-moz-placeholder {
	color: rgba(255, 255, 255, 0.8) !important;
}
.intel-bubble textarea::-webkit-input-placeholder {
	color: rgba(255, 255, 255, 0.8) !important;
}
.intel-bubble textarea::-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.8) !important;
}
.intel-bubble textarea::input-placeholder {
	color: rgba(255, 255, 255, 0.8) !important;
}
.intel-bubble.small {
	padding: 5px 7px;
}
.intel-bubble.small:after {
	left: inherit;
	right: 27px;
	bottom: -14px;
	border-width: 14px 14px 0 0;
	transform: rotate(21deg);
}
.unthemed .intel-bubble {
	background-color: #aaa;
}
.unthemed .intel-bubble:after {
	border-color: #aaa transparent transparent transparent;
}

.lini {
	display: inline-block;
}
.lini-alarm {
	transform: translateX(0.03em);
}
.lini-bicycle2 {
	transform: translateY(-0.15em);
}
.lini-broadcast {
	transform: scale(1.2);
}
.lini-border-all {
	transform: scale(1.07);
}
.lini-car {
	transform: translateY(-0.23em);
}
.lini-envelope {
	transform: translateY(-0.1em);
}
.lini-mute {
	transform: translateX(0.22em);
}
.lini-star,
.lini-star-empty {
	transform: scale(1.1);
}
.lini-tag,
.lini-tags {
	transform: scale(1.06);
}
.lini-truck {
	transform: translateY(-0.18em);
}
.lini-warning {
	transform: scale(1.05);
	transform-origin: bottom left;
}

/*
angular-loading-bar colors
Note: we use `body` to ensure higher specificity than plugin
*/
body #loading-bar-spinner .spinner-icon {
	border-top-color: #adb3b6;
	border-left-color: #adb3b6;
}
body #loading-bar .peg {
	box-shadow: #adb3b6 1px 0 6px 1px;
}
body #loading-bar .bar {
	background: #adb3b6;
	height: 2px;
	box-shadow: rgba(255, 255, 255, 0.5) 1px 0 6px 1px;
}

/* page toolbar (e.g. categories bar) */
.page-toolbar {
	display: block;
	clear: both;
	position: relative;
	padding-right: 110px;
}
/*a.page-toolbar-overflow {*/
/*display: block;*/
/*position: absolute;*/
/*right: 0;*/
/*bottom: 0;*/
/*font-size: 15px;*/
/*font-weight: bold;*/
/*height: 32px;*/
/*padding: 0 8px;*/
/*line-height: 32px;*/
/*text-align: center;*/
/*border-left: 1px solid #ccc;*/
/*color: #666;*/
/*text-decoration: none;*/
/*}*/
/*a.page-toolbar-overflow:hover {*/
/*color: #000;*/
/*text-decoration: none;*/
/*}*/
/*a.page-toolbar-overflow.page-toolbar-overflow-open {*/
/*border-left: none;*/
/*}*/
a.page-toolbar-item {
	display: inline-block;
	box-sizing: border-box;
	padding: 0 10px;
	vertical-align: middle;
	text-decoration: none;
}
a.page-toolbar-item span {
	display: inline-block;
	font-size: 15px;
	font-weight: bold;
	color: #333333;
	padding: 5px 0 4px;
	line-height: 1;
	text-transform: uppercase;
	font-weight: bold;
}
a.page-toolbar-item.is-on span,
a.page-toolbar-item.is-on:hover span {
	border-bottom: 2px solid #333333;
}
a.page-toolbar-item .icons {
	font-size: 16px;
	font-weight: normal;
	padding: 4px 6px;
}
a.page-toolbar-item:hover span {
	color: #000;
}
.page-toolbar-more {
	display: block;
}

.post-add-edit {
	background-color: #f6f6f7;
	height: 100vh;
}
sh-modal .post-add-edit {
	height: 587px;
}
.post-add-edit .edit-area-container {
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	height: 100%;
	position: relative;
}
.post-add-edit .bookmarklet-client-chooser,
.post-add-edit .external-client-chooser {
	background-color: #333333;
	padding: 3px 20px 8px 20px;
	display: flex;
	flex: 1;
}
.post-add-edit .external-client-chooser {
	flex: 1 0 45px;
}
.post-add-edit.is-in-window .bookmarklet-client-chooser,
.post-add-edit.is-in-window .external-client-chooser {
	padding-top: 10px;
	padding-right: 20px;
}
.post-add-edit .chooser-label {
	margin-right: 7px;
	color: #777;
	text-transform: uppercase;
	font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif;
	line-height: 27px;
}
.post-add-edit sh-client-chooser input.form-input {
	background-color: #333333 !important;
	width: 600px;
}
.post-add-edit sh-client-chooser,
.post-add-edit sh-client-chooser .client-switcher .current-client {
	width: 100%;
}
.post-add-edit sh-client-chooser .client-switcher-dropdown {
	max-height: 428px;
	overflow: auto;
}
.post-add-edit .edit-area {
	flex: 100%;
	overflow: auto;
}
.post-add-edit .edit-section-inner {
	padding: 20px;
}
.post-add-edit .edit-section-inner > h3:first-child {
	margin-top: 0;
}
.post-add-edit .fetching-rich-text {
	margin-left: 15px;
}
.post-add-edit .edit-section-main .edit-section-inner {
	display: flex;
	justify-content: space-between;
}
.post-add-edit .no-image {
	padding-top: 5px;
}
.post-add-edit .edit-section-inner .form-table {
	margin-top: -8px;
}
.post-add-edit .intel-text {
	font-size: 17px;
}
.post-add-edit .edit-text {
	flex: 1;
	margin-right: 20px;
}
.post-add-edit .meta-area {
	width: 235px;
	overflow: visible;
}
.post-add-edit .edit-headline {
	font-weight: bold;
	font-size: 17px;
	line-height: 120%;
	margin-top: -2px;
	border: 1px solid transparent;
	background-color: transparent;
	padding: 8px 14px;
	width: 100%;
	transition: border-color 300ms ease-in-out;
}
.post-add-edit .edit-headline:focus {
	border-color: #adb3b6;
	background-color: white;
}
.post-add-edit .edit-area sh-richtext {
	margin-top: -10px;
}
.post-add-edit .edit-image {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #edeeef;
	position: relative;
	width: 235px;
	min-height: 135px;
}
.post-add-edit .add-image-tools {
	height: 135px;
}
.post-add-edit .edit-image img {
	max-width: 235px;
	max-height: 135px;
}
.post-add-edit .edit-image-size,
.post-add-edit .edit-image-overlay {
	display: none;
}
.post-add-edit .edit-image:hover .edit-image-size {
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 20px;
	line-height: 20px;
	font-size: 12px;
	color: white;
	font-weight: normal;
	background: rgba(51, 51, 51, 0.8);
	text-align: center;
}
.post-add-edit .edit-image:hover .edit-image-overlay {
	display: flex;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 20px;
	left: 0;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	text-transform: uppercase;
	color: white;
	background: rgba(51, 51, 51, 0.8);
	cursor: pointer;
	font-weight: normal;
	z-index: 3;
}
.post-add-edit .edit-image:hover .edit-image-overlay .icons {
	font-size: 18px;
	margin-right: 7px;
}
.post-add-edit .add-image {
	display: flex;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
	color: #929a9d;
	cursor: pointer;
}
.post-add-edit .add-image .icons {
	margin-right: 4px;
}
.post-add-edit .add-image.customize-image {
	color: transparent;
}
.post-add-edit .add-image.customize-image:hover,
.post-add-edit .add-image:hover {
	color: white;
	background: rgba(51, 51, 51, 0.8);
}
.post-add-edit .edit-tagging {
	margin-top: 15px;
}
.post-add-edit .edit-tagging-item {
	display: flex;
	flex-direction: row;
	width: 100%;
	margin-top: 4px;
}

.post-add-edit .edit-visual-tag-empty {
	margin-top: 1px;
	margin-left: 2px;
}
.post-add-edit .visual-tag-icon {
	margin: 0 8px 0 0;
}
.post-add-edit .edit-visual-tag {
	cursor: pointer;
	margin-top: 6px;
}
.post-add-edit sh-visual-tag-display {
	padding-top: 4px;
}
.post-add-edit .edit-tagging-label {
	width: 20px;
	margin-top: 6px;
	margin-left: 4px;
	font-size: 16px;
	color: #5e5e5e;
}
.post-add-edit .edit-tagging-label-category {
	margin-top: 2px;
}
.post-add-edit .edit-tagging-input {
	flex-grow: 1;
}
.post-add-edit .edit-tagging-input select {
	width: 100%;
	color: #5e5e5e;
	font-size: 12px;
}
.post-add-edit .edit-visual-tag .edit-tagging-input {
	align-items: flex-start;
	padding-top: 7px;
}
.post-add-edit .edit-classifications-choices {
	columns: 3;
}
.post-add-edit .edit-classification {
	margin-left: 3px;
	min-height: 32px;
	display: inline-flex;
	flex-basis: 0;
	align-items: center;
	justify-content: flex-start;
	font-size: 12px;
	line-height: 1.1;
	padding: 0 8px 0 0;
	cursor: pointer;
	border-radius: 4px;
	width: 100%;
	position: relative;
}
.post-add-edit .edit-classification.selected:after {
	content: '';
	position: absolute;
	top: -4px;
	right: -4px;
	bottom: -4px;
	left: -4px;
	border: 2px solid #1e65ce;
	border-radius: 5px;
}
.post-add-edit .edit-classifications-choices .edit-classification {
	margin-bottom: 8px;
}
.post-add-edit .edit-classification .lini {
	width: 32px;
	font-size: 18px;
	text-align: center;
}
.post-add-edit .edit-classification .label {
	width: 170px;
}
.post-add-edit .edit-classification-empty {
	color: #5e5e5e;
}
.post-add-edit .pane-content {
	background-color: white;
}
.post-add-edit .url-bar {
	background-color: #333333;
	padding: 0 20px 10px 20px;
}
.post-add-edit .url-bar-input-area {
	height: 22px;
}
.post-add-edit .url-input {
	border: none;
	height: 22px;
	line-height: 22px;
	font-size: 12px;
	display: table-cell;
	width: 100%;
	padding: 0 8px;
	background-color: #777;
	color: white;
}
.post-add-edit .url-input:-ms-input-placeholder {
	color: #bbb !important;
}
.post-add-edit .url-input::placeholder {
	color: #bbb !important;
}
.post-add-edit .url-input:focus {
	background-color: white;
	color: #333333;
}
.post-add-edit .url-bar .submit {
	border: none;
	padding: 0 8px;
	height: 22px;
	line-height: 22px;
	font-size: 12px;
	background-color: #5e5e5e;
	color: white;
	border-radius: 0 11px 11px 0;
	outline: 0;
}
.post-add-edit .url-bar .submit img {
	vertical-align: middle;
}
.post-add-edit .url-bar .url-bar-earth {
	border: none;
	padding: 0;
	height: 22px;
	width: 28px;
	line-height: 21px;
	text-align: center;
	font-size: 12px;
	background-color: #5e5e5e;
	color: white;
	border-radius: 11px 0 0 11px;
}
.post-add-edit .url-bar .icon-earth,
.post-add-edit .url-bar .icon-cancel-circle {
	transform: translateY(1px);
	display: inline-block;
}
.post-add-edit.is-saving .edit-area {
	pointer-events: none;
}
.post-add-edit.is-fetching .edit-area {
	pointer-events: none;
	opacity: 0;
}
.post-add-fetching-message,
.post-add-is-not-allowed,
.post-add-needs-hub-change,
.post-add-fetching-hub-whitelist {
	font-style: italic;
	z-index: 2;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #adb3b6;
}
.post-add-is-not-allowed,
.post-add-needs-hub-change,
.post-add-fetching-hub-whitelist {
	background-color: #fff;
	font-size: 2em;
	padding: 50px;
	line-height: 1em;
	text-align: center;
}
.post-add-edit .post-add-needs-hub-change {
	top: 46px;
}
.post-add-fetching-hub-whitelist img.loading {
	width: 1em;
	height: 1em;
	margin-left: 5px;
}
.post-add-is-not-allowed,
.post-add-fetching-hub-whitelist {
	z-index: 401;
}
.post-add-edit .bubble-notification-area {
	padding-top: 10px;
	margin-top: 4px;
	border-top: 1px dotted rgba(255, 255, 255, 0.4);
}
.post-add-edit .bubble-notification-label {
	color: rgba(255, 255, 255, 0.65);
	margin-right: 3px;
}
.post-add-edit .bubble-notification-user {
	font-size: 11px;
	line-height: 11px;
	color: white;
	padding: 3px 6px 2px 6px;
	background-color: rgba(255, 255, 255, 0.2);
	margin: 0 4px 3px 0;
	display: inline-block;
	border-radius: 2px;
	border: 1px solid white;
}
.post-add-edit .bubble-notification-user .icons:hover {
	cursor: pointer;
	color: white;
}
.post-add-edit .mention-instructions {
	color: #adb3b6;
	font-size: 11px;
	margin: -11px 0 -5px 14px;
	font-style: italic;
}
.post-add-edit {
	background-color: #f6f6f7;
}
.post-add-edit sh-tabs .tab-labels {
	display: block;
}
.post-add-edit sh-tabs .tab-label {
	display: inline-block;
}
.post-add-edit sh-tabs .tab-contents {
	margin-top: -5px;
}
.post-add-edit sh-tabs .tab-content {
	margin-top: -4px;
	position: relative;
	top: auto;
	right: auto;
	bottom: auto;
	left: auto;
	z-index: 0;
}
.post-add-edit .attachments-section-heading {
	font-size: 14px;
	padding: 20px 0 0 0;
	margin-top: 20px;
	font-weight: bold;
}
.post-add-edit .submission-location-fields select,
.post-add-edit .submission-location-fields input {
	width: 100% !important;
}
.post-add-edit .submission-location-fields input {
	margin-top: -1px;
}
.post-add-edit .submission-location-fields td:nth-child(1),
.post-add-edit .submission-location-fields td:nth-child(2) {
	padding-right: 3px;
}
.post-add-edit .custom-image-preview {
	background-color: #d3d4d6;
}
.post-add-edit sh-typeahead-multi .suggestion {
	padding: 3px 7px;
	line-height: 14px;
}
.post-add-edit .ai-summary {
	height: calc(100% - 6px);
}
.post-add-edit .ai-tag-delete {
	padding-left: 20px;
	cursor: pointer;
}
.post-add-edit .ai-tag-delete:hover {
	color: black;
}
.post-add-edit .tab-container {
	background-color: #333333;
	color: #ffffff;
	padding: 0 4px;
	display: flex;
	justify-content: space-between;
}
.post-add-edit.mode-edit .tab-section {
	flex: 1;
}
.post-add-edit.mode-bookmarklet .tab-section {
	top: 47px;
}
.post-add-edit.mode-external .tab-section {
	flex: 1 0 33px;
}
.post-add-edit.not-allowed .tab-section,
.post-add-edit.not-allowed .edit-area,
.post-add-edit.not-allowed .tab-footer {
	display: none;
}
.post-add-edit .tab-btn {
	cursor: pointer;
	border-width: 1px;
	border-style: solid;
	border-color: transparent;
	color: #ffffff;
	background: linear-gradient(0deg, #666, #777 30%);
	border-radius: 6px 6px 0 0;
	text-transform: none;
	font-size: 13px;
}
.post-add-edit .tab-container .tab-group {
	display: flex;
	justify-content: space-around;
	flex-wrap: nowrap;
}
.post-add-edit .tab-group .btn + .btn {
	margin-left: 2px;
	padding: 0 12px;
}
.post-add-edit .selected-tab {
	background: #f6f6f7;
	color: #333333;
}
.post-add-edit .comment-tab {
	display: flex;
	justify-content: center;
	align-items: center;
}
.post-add-edit .tab-footer .tab-group-left {
	display: flex;
	align-items: center;
	text-transform: uppercase;
	font-size: 14px;
}
.post-add-edit .tab-footer .tab-group-left a {
	color: #333333;
}
.post-add-edit .tab-footer .tab-group-left img {
	margin-right: 4px;
}
.post-add-edit .tab-footer {
	border-top: 1px solid #adb3b6;
	color: #ffffff;
	display: flex;
	justify-content: space-between;
	flex: 1;
	padding: 10px 20px;
	align-items: center;
}
.post-add-edit.mode-external .tab-footer {
	flex: 1 0 55px;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	/* IE11 CSS has trouble with flex: 1 in this situation */
	.post-add-edit .tab-footer,
	.post-add-edit.mode-external .tab-footer {
		flex: 0 0 32px;
	}
}
.post-add-edit .tabs-adjusted-height {
	height: 100%;
}
.state-bookmarklet-loggedin-Create .sh-modal-content,
.state-PostCreate .sh-modal-content {
	background-color: #fafafa;
	overflow: hidden;
}
.state-bookmarklet-loggedin-Create sh-overlay {
	background-color: #333333 !important;
}
.state-bookmarklet-loggedin-Create sh-overlay .close {
	left: 20px;
	right: auto;
}
.state-bookmarklet-loggedin-Create sh-overlay .close .icons::after {
	/* left arrow instead of X so we don't have two Xs in view at the same time */
	content: '\E943';
}

/* Taxonomies */
.post-add-edit .taxonomy-section {
	margin-bottom: 10px;
}
.post-add-edit .taxonomy-name {
	font-weight: bold;
	margin-right: 5px;
}
.post-add-edit .taxonomy-max-responses {
	color: #adb3b6;
	font-size: 12px;
}
.post-add-edit .taxonomy-hint {
	font-size: 12px;
	font-style: italic;
	display: block;
	color: #adb3b6;
}
.post-add-edit sh-typeahead-multi {
	width: 300px;
}
/* make them look focused always */
.post-add-edit .taxonomy-section sh-typeahead-multi .typeahead-items {
	border-color: #5e5e5e;
	background-color: #ffffff;
}
.post-add-edit .required-notice {
	margin-top: 30px;
}
.post-add-edit .budget-icon {
	width: 20px;
	color: #5e5e5e;
	display: inline-block;
	text-align: center;
	margin: 0 7px 0 2px;
}
/* hide the $ in the middle of the icon */
.post-add-edit svg.budget-icon > path:nth-child(2) {
	display: none;
}
.post-add-edit .edit-budget {
	margin-top: 15px;
	display: flex;
	align-items: center;
}
.edit-budget + div.edit-tagging {
	margin-top: 7px;
}
.currency-symbol {
	font:
		normal 14px/100% Helvetica,
		Arial,
		sans-serif;
	color: #5a5a5a;
}
.post-add-edit .budget-input {
	border: none;
	background-color: transparent;
	font-size: 12px;
	padding: 3px 0 3px 3px;
	color: #5e5e5e;
}
.post-add-edit .budget-input:-ms-input-placeholder {
	color: #5e5e5e;
}
.post-add-edit .budget-input::placeholder {
	color: #5e5e5e;
}
.post-add-edit .budget-input:focus {
	background-color: transparent;
}

/* end research management */

.icons.tabs-to-menu {
	display: none;
	font-size: 30px;
	cursor: pointer;
}

@media (max-width: 600px) {
	.post-add-edit .edit-section-main .edit-section-inner {
		flex-direction: column-reverse;
	}
	.post-add-edit .edit-area-container {
		padding-bottom: 53px;
	}
	.post-add-edit .edit-text {
		margin-right: 0;
		margin-top: 20px;
	}
	.post-add-edit .edit-image {
		width: 100%;
	}
	.post-add-edit .meta-area {
		width: auto;
	}
	.post-add-edit .url-bar {
		padding-top: 10px;
	}
	.post-add-edit .tab-footer {
		position: fixed;
		bottom: 0;
		width: 100%;
		background-color: #f6f6f7;
	}

	/*	tabs to menu*/
	.post-add-edit .tab-container {
		position: relative;
	}
	.post-add-edit .icons.tabs-to-menu {
		display: block;
	}
	.post-add-edit .tab-container .tab-group {
		flex-wrap: wrap;
		flex-direction: column;
		position: absolute;
		z-index: 100;
		width: 300px;
		top: 30px;
	}
	.post-add-edit .tab-btn {
		background: #666;
		border-radius: 0;
		width: 100%;
		margin-left: 0;
		border-bottom: 1px solid #555;
	}
	.post-add-edit .selected-tab {
		background: #666;
		color: #fff;
	}
	.post-add-edit .tab-group .btn + .btn {
		margin-left: 0;
		padding: 0 16px;
	}
}

/* pin and grid posts */
.pin .intel-bubble,
.postgrid .intel-bubble {
	margin-bottom: 0;
}
.intel-bubble.add-insight {
	cursor: pointer;
}
.intel-bubble.add-insight .bubble-text {
	opacity: 0.75;
}
.post-headline {
	font-weight: bold;
}
.pin .post-headline {
	margin: 0;
	padding-top: 10px;
	font-size: 17px;
	line-height: 120%;
}
.pin .post-body,
.postgrid .post-body {
	padding-bottom: 10px;
}
.pin .post-body ul,
.pin .post-body ol,
.pin .post-body p,
.postgrid .post-body ul,
.postgrid .post-body ol,
.postgrid .post-body p {
	margin-top: 0;
	padding-top: 0.5em;
	-webkit-margin-after: 0;
}
.pin .post-body ul,
.pin .post-body ol {
	padding-left: 1.5em;
}
.post-part-outline {
	background-color: #f6f6f7;
	padding: 0 10px;
	border-right: 1px solid #adb3b6;
	border-left: 1px solid #adb3b6;
}
.post-part-bordered {
	border-top: 1px solid #adb3b6;
}
.post-credit {
	padding: 10px;
}
.post-credit sh-avatar {
	display: inline-block;
	border-radius: 50%;
	overflow: hidden;
	vertical-align: middle;
}
.post-credit .post-insight-by {
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
	width: 188px;
}
.post-visual-tags {
	padding-top: 10px;
	padding-bottom: 4px;
}
.post-indicator-bar {
	padding: 5px 10px;
	vertical-align: middle;
	font-size: 16px;
	text-align: center;
}
.post-indicator-bar *,
.post-indicator-bar a {
	color: #5e5e5e;
}
.post-indicator-bar > * + * {
	margin-left: 5px;
}
.pin > *:last-child {
	border-bottom: 1px solid #adb3b6;
	border-radius: 0 0 5px 5px;
}
.pin .post-has-no-intel .post-img-container,
.postgrid .post-has-no-intel .post-img-container {
	border-radius: 5px 5px 0 0;
	overflow: hidden;
}
.multihub-posts-pin {
	padding-top: 18px;
	padding-bottom: 18px;
}
.pin-med .slideshow-nav,
.postgrid-med .slideshow-nav {
	height: 28px;
	width: 28px;
	line-height: 30px;
	font-size: 20px;
	z-index: 3;
}
.pin-med .pin-slideshow-prev,
.postgrid-med .pin-slideshow-prev {
	left: -8px;
}
.pin-med .pin-slideshow-next,
.postgrid-med .pin-slideshow-next {
	right: -8px;
}
.pin-med .post-body-text img,
.postgrid-med .post-body-text img {
	max-width: 238px;
}
/* intel tab pin */
.pin-intel .intel-bubble {
	padding: 9px 12px;
}
.pin-intel .intel-bubble {
	border-radius: 5px 5px 0 0;
}
/* general post stuff */
.enlarge-text {
	display: block;
	position: absolute;
	bottom: 0;
	z-index: 4;
	pointer-events: auto;
}
.enlarge-link {
	display: none;
	font-size: 14px;
	font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif;
	padding: 10px;
	color: rgba(255, 255, 255, 0.6);
	background-color: rgba(51, 51, 51, 0.6);
}
.post-img-container:hover .enlarge-link {
	display: inline-block;
}
.enlarge-link:hover {
	copacity: 1;
	background-color: rgba(51, 51, 51, 0.9);
	color: white;
}
.post-source-link {
	padding-top: 0.5em;
	display: block;
}
/* post picker for stories and email */
.pick-result {
	border: 1px solid #adb3b6;
	border-radius: 5px;
	padding: 5px;
	margin-bottom: 10px;
}
.pick-action {
	float: left;
	width: 69px;
	height: 69px;
	line-height: 69px;
	text-align: center;
	font-size: 30px;
	background-color: #f6f6f7;
	color: #5e5e5e;
	border-radius: 4px;
	-webkit-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}
.pick-action:hover {
	background-color: #edeeef;
	cursor: pointer;
}
.pick-post-img,
.pick-bubble-headline,
.pick-options {
	float: left;
	margin-left: 5px;
}
.pick-options {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	margin-left: 54px;
	padding-left: 15px;
	border-left: 1px solid #d3d4d6;
	width: 112px;
	height: 69px;
}
.pick-option {
	display: block;
	font-size: 14px;
}
.pick-option .icons {
	margin-right: 4px;
}
.pick-result .intel-bubble {
	width: 400px;
	margin-bottom: 5px;
	border-radius: 5px;
}
.pick-result .intel-text {
	max-height: 16px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.pick-headline {
	max-height: 36px;
	overflow: hidden;
}
.pick-headline {
	font-weight: bold;
	width: 400px;
	padding: 0 7px;
}
.post-image-outer {
	position: relative;
}
.post-upload-progress-area {
	position: absolute;
	top: 1px;
	right: 1px;
	bottom: 1px;
	left: 1px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(255, 255, 255, 0.5);
}
.post-upload-progress-report {
	padding: 20px;
}
.post-upload-progress {
	display: flex;
	align-items: center;
}
.post-upload-progress sh-progress-bar {
	width: 75%;
	margin-right: 6px;
}
.post-hubname-container {
	padding-top: 10px;
}

/* right intel suggester theme */
.sugg-theme-rightintel .sugg-box,
.user-notifications-container .user-notification-box {
	padding: 1px 1px 3px 1px;
}
.intel-bubble .user-notification-box {
	padding: 0;
	margin-left: -3px;
}
.sugg-theme-rightintel .sugg-tag,
.user-notifications-container .user-notification-box-item {
	background: #e0e0e0;
	border: none;
	border-radius: 2px;
	padding: 2px 5px;
	font-family: Arial, Helvetica, sans-serif;
	color: #404040;
	text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.7);
}
.sugg-theme-rightintel .sugg-tag.sugg-focused,
.sugg-theme-rightintel .sugg-tag.sugg-focused:hover {
	background: #d64848;
	color: #fff;
	border: none;
	text-shadow: none;
}
.sugg-theme-rightintel .sugg-box-item,
.user-notifications-container .user-notification-box-item {
	margin: 4px 1px 2px 4px;
}
.sugg-theme-rightintel .sugg-input {
	padding: 0;
}
.sugg-theme-rightintel .sugg-remove,
.user-notifications-container .user-notification-delete {
	color: #999;
	font-size: 14px;
	line-height: 9px;
	font-weight: normal;
	text-shadow: none;
}
.sugg-theme-rightintel .sugg-tag .sugg-remove:hover,
.user-notifications-container .user-notification-delete:hover {
	cursor: pointer;
	color: #000;
}

/*

What should go in this file:
1. Reusable Widget elements you might find in Bootstrap CSS

What should NOT be in this file:
1. ID Selectors (e.g. #MyThing)
2. Element selectors (e.g. div)
3. Descendant selectors over 2 deep (e.g. .list .selected .edit)
4. Styling specific to an angular component or controller
5. Styling specific to a white label theme

*/
.text-muted {
	color: #adb3b6;
}
.clickable {
	cursor: pointer;
}
.clickable-row:hover,
.hover-gray:hover {
	background-color: #fafafa;
	cursor: pointer;
}
.float-left {
	float: left;
}
.float-right {
	float: right;
}
.block {
	display: block;
}
.inline {
	display: inline;
}
.full-width {
	width: 100%;
	max-width: 100%;
}
.hyphenate {
	-ms-hyphens: auto;
	    hyphens: auto;
}
.nowrap {
	white-space: nowrap;
	break-word: none;
}
.text-center {
	text-align: center;
}
a.disabled {
	color: #adb3b6;
	pointer-events: none;
}
/**
# Table display

```html
<div class="display-table">
	<div class="display-row">
		<div class="display-cell">A1</div>
		<div class="display-cell">B1</div>
	</div>
	<div class="display-row">
		<div class="display-cell">A2</div>
		<div class="display-cell">B2</div>
	</div>
</div>
```
*/
.display-table {
	display: table;
}
.display-row {
	display: table-row;
}
.display-cell {
	display: table-cell;
}
/**
# transform an icon or element

```html
<div class="flipped">.flipped</div>
<div class="inverted">.inverted</div>
<div class="rotated-180">.rotated-180</div>
```
*/
.flipped {
	transform: scaleX(-1);
}
.inverted {
	transform: scaleY(-1);
}
.rotated-180 {
	transform: rotate(180deg);
}
/**
# Centering

A horizontally- and vertically-centered element that is absolutely positioned
Element must have a declared height.
	see http://www.smashingmagazine.com/2013/08/absolute-horizontal-vertical-centering-css/

```html
<div class="ribbon">
	<!-- this will be horizontally and vertically centered inside .ribbon -->
	<span style="height: 40px;" class="btn btn-action absolute-centered">SAVE EDITS</span>
</div>
```
*/
.absolutely-centered {
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.skeleton-container {
	position: relative;
}
@keyframes skelslide {
	0% {
		background-position: 0 200%;
	}
	100% {
		background-position: 0 0;
	}
}
.skeleton-animation {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0.6) 0%,
		rgba(255, 255, 255, 0.6) 44%,
		rgba(255, 255, 255, 0) 45%,
		rgba(255, 255, 255, 0) 55%,
		rgba(255, 255, 255, 0.6) 56%,
		rgba(255, 255, 255, 0.6) 100%
	);
	background-position: top left;
	background-repeat-x: no-repeat;
	background-size: 200%;
	animation: skelslide 1300ms linear infinite;
}
.loader-16 {
	min-height: 16px;
	line-height: 16px;
	padding: 0 0 0 24px;
	background: url(/assets/img/loader-responsive-light.gif) no-repeat 0 0 / 16px 16px;
}
.loader-24 {
	min-height: 24px;
	display: flex;
	align-items: center;
	padding: 0 0 0 34px !important;
	background: url(/assets/img/loader-responsive-light.gif) no-repeat 0 0 / 24px 24px;
}
.loader-32 {
	min-height: 32px;
	display: flex;
	align-items: center;
	padding: 0 0 0 42px !important;
	background: url(/assets/img/loader-responsive-light.gif) no-repeat 0 0 / 32px 32px;
}
.dark .loader-24,
.dark.loader-24,
.dark .loader-32,
.dark.loader-32 {
	background-image: url(/assets/img/loader-responsive-dark.gif);
}
.loader-bg {
	background: url(/assets/img/loader-responsive-light.gif) no-repeat 50% 50% / 16px 16px;
}
.dark.loader-bg,
.dark .loader-bg {
	background-image: url(/assets/img/loader-responsive-light.gif);
}
.large.loader-bg,
.large .loader-bg {
	background-size: 32px 32px;
}
.fixed-loader {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: url(/assets/img/loader-responsive-light.gif) no-repeat 50% 50% / 32px 32px;
}
.none-found {
	font-size: 18px;
}
.search-no-more {
	border-top: 1px dashed #adb3b6;
	margin-top: 20px;
	margin-bottom: 120px;
	text-align: center;
	position: relative;
}
.search-no-more-message {
	display: inline-block;
	padding: 0 15px;
	font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif;
	color: #adb3b6;
	background-color: white;
	text-transform: uppercase;
	font-size: 16px;
	transform: translateY(-10px);
}
.search-none-found {
	margin: 40px 0 20px 0;
	text-align: center;
	font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif;
	color: #adb3b6;
	text-transform: uppercase;
	font-size: 16px;
}
.column-orientation {
	flex-direction: column;
}

/**
# Icon button group

Buttons grouped together vertically. First and last items have
rounded borders. Containing element needs no special CSS or class.
Each `btn-group-item` should contain an inline element with icon classes
(`.icon.icon-*`).

<!--
--> are required to remove space between inline-block elements
```html
<a href
   class="btn-group-item btn-group-left-item"
   ng-class="{'is-on': vm.layout=='pin'}"
   ng-click="vm.layout = 'pin'"
   title="Columnar Layout"
>
	<span class="icons icon-columnizer"></span>
</a><!--
// you can put as many `btn-group-middle-item`s as you need
--><a href
	  class="btn-group-item btn-group-middle-item"
	  ng-class="{'is-on': vm.layout=='tabular'}"
	  ng-click="vm.layout = 'tabular'"
	  title="Tabular Layout"
>
	<span class="icons icon-envelope"></span>
</a><!--
--><a href
	  class="btn-group-item btn-group-middle-item"
	  ng-class="{'is-on': vm.layout=='link'}"
	  ng-click="vm.layout = 'link'"
	  title="Link Layout"
>
	<span class="icons icon-link"></span>
</a><!--
--><a href
	  class="btn-group-item btn-group-right-item"
	  ng-class="{'is-on': vm.layout=='list'}"
	  ng-click="vm.layout = 'list'"
	  title="List Layout"
>
	<span class="icons icon-list-boxes"></span>
</a>
```
*/
.btn-group-item {
	display: inline-block;
	vertical-align: middle;
	box-sizing: border-box;
	text-decoration: none;
}
.btn-group-item .icons {
	border: 1px solid #adb3b6;
	padding: 4px 6px;
	font-size: 16px;
}
.btn-group-item.is-on .icons {
	border-color: #333;
}
/* LEFT ITEM */
/* items on the sides have border radius and padding based on side */
.btn-group-item.btn-group-left-item {
	padding-right: 0;
}
.btn-group-item.btn-group-left-item .icons {
	border-radius: 0;
	border-top-left-radius: 2px;
	border-bottom-left-radius: 2px;
	border-right: none;
}
/* MIDDLE ITEMS */
/* items in the middle have no border radius or padding */
.btn-group-item.btn-group-middle-item {
	padding-left: 0;
	padding-right: 0;
}
.btn-group-item.btn-group-middle-item .icons {
	border-radius: 0;
	border-right: none;
	border-left: none;
}
/* RIGHT ITEM */
.btn-group-item.btn-group-right-item {
	padding-left: 0;
}
.btn-group-item.btn-group-right-item .icons {
	border-radius: 0;
	border-top-right-radius: 2px;
	border-bottom-right-radius: 2px;
	border-left: none;
}
/**
# Sectioning

Divide and space out sections.

```html
<div class="sectioned lined">
	<p>Content</p>
</div>
<div class="sectioned">
	<p>Content 2</p>
</div>
```

*/
.sectioned {
	margin-bottom: 40px;
}
.sectioned:last-child {
	margin-bottom: 0;
}
.sectioned > *:first-child {
	margin-top: 0;
	padding-top: 0;
}
.sectioned.lined {
	border-bottom: 1px solid #adb3b6;
	padding-bottom: 30px;
	margin-bottom: 30px;
}

/**
# Colored Text

Apply color to give more meaning to certain text

```html
<p class="text-danger">Oops!</p>
<p class="text-warning">Warning!</p>
<p class="text-success">You did it!</p>
```

*/
.text-danger {
	color: #d0021b;
}
.text-warning {
	color: #e37b00;
}
.text-success {
	color: #6fb91f;
}
/**
# Colorful boxes

Apply color to give more meaning to an element

```html
<div class="box-danger">Oops!</div>
<div class="box-warning">Warning!</div>
<div class="box-success">You did it!</div>
```

*/
.box-danger,
.box-warning,
.box-success {
	padding: 15px;
	border-radius: 2px;
	border: 1px solid #555;
}
.box-danger {
	background-color: #e2b8be;
	border-color: #d0021b;
}
.box-warning {
	background-color: #f9c282;
	border-color: #e37b00;
}
.box-success {
	background-color: #e1f3de;
	border-color: #6fb91f;
}

/**
# Colorful boxes

Apply color to give more meaning to an element

```html
<div class="box-message">Just a good, old-fashioned box!</div>
<div class="box-message box-error">Oops!</div>
<div class="box-message box-warning">Warning!</div>
<div class="box-message box-success">You did it!</div>
```

*/
.box-message {
	border: 1px solid #f0572a;
	padding: 15px;
	border-radius: 2px;
}
.box-message.box-error {
	color: #d0021b;
	background-color: #e2b8be;
	border-color: #d0021b;
}
.box-message.box-warning {
	color: #e37b00;
	background-color: #f9c282;
	border-color: #e37b00;
}
.box-message.box-success {
	color: #6fb91f;
	background-color: #e1f3de;
	border-color: #6fb91f;
}

/* autohide items like toolbars */
.hover-here .opaque-on-hover {
	opacity: 0;
	transition: opacity 66ms ease-in-out;
}
.hover-here:hover .opaque-on-hover {
	opacity: 1;
}
/* search bar */
.post-search-bar {
	padding: 15px 30px 4px 30px;
	min-height: 64px;
	background-color: #fafafa;
	width: 100%;
	border-bottom: 1px solid #5e5e5e;
}
.post-search-bar.pinned {
	box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}
.post-search-bar .search-input {
	width: 35vw;
}
.search-bar-items sh-fine-tune-posts {
	margin-top: 10px;
}
.search-bar-modal {
	padding-left: 15px;
	padding-right: 15px;
}

.major-label {
	font-size: 18px;
	padding: 12px 10px 4px 0;
	margin: 0;
}
.paragraphs > p:first-child {
	margin-top: 0;
}
.column-section {
	margin-bottom: 20px;
}
.code-input {
	font-weight: 400;
	font-family: monospace;
	resize: none;
	width: 100%;
}
.divider-column {
	padding-right: 10px;
	border-right: 2px solid #adb3b6;
	/* so the border goes all the way down even if there is no avatar */
	min-height: 245px;
}
.divider-column:last-of-type {
	border: none;
}
.widget-icon {
	width: 50px;
}
.slides {
	display: flex;
	margin: 0;
	padding: 0;
}
.slides {
	transition: transform 400ms ease-out;
}
/* ElasticSearch highlights */
em.hlt1,
em.hlt2,
em.hlt3,
em.hlt4,
em.hlt5,
em.hlt6,
em.hlt7,
em.hlt8,
em.hlt9,
em.hlt10 {
	font-weight: bold;
	font-style: normal;
}
/* multihub listing */
.multihub-post-hub-chooser .drawer-inner {
	margin-top: 3px;
}
section.multihub {
	padding-left: 30px;
	padding-right: 30px;
}
section.multihub-posts-tabular {
	padding-left: 0;
	padding-right: 0;
}
.multihub-banner {
	background-color: #333333;
	font-size: 18px;
	padding-top: 30px;
	padding-bottom: 30px;
}
.multihub-banner .drawer-front.is-open {
	color: #333333;
}
.multihub-banner-text {
	color: white;
}
.multihub-banner .btn-trigger.drawer-front.is-open:after {
	border-color: white;
}
sh-fine-tune-typeahead ~ .icons {
	font-size: 21px;
	display: inline-block;
	margin-left: 8px;
	vertical-align: middle;
}
sh-fine-tune-typeahead ~ .icons.search-across {
	font-size: 25px;
}
sh-post-tabular-multihub:nth-child(odd) {
	background-color: #f6f6f7;
}
.multihub-posts .none-found {
	padding: 32px 18px;
	text-align: center;
}
.multihub-posts-pin .infinite-scroll-end {
	background-color: #f6f6f7;
	border: 1px solid #edeeef;
	color: #555;
	border-radius: 4px;
	text-shadow: 1px 1px 0 white;
}
.multihub-banner .layout-choice {
	opacity: 0.4;
	padding-right: 0;
	cursor: default;
}
.multihub-banner .layout-choice:hover,
.multihub-banner .layout-choice.layout-choice-selected {
	opacity: 1;
	cursor: pointer;
}
/* color scheme styles */
.screen-colors-container {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.color-schemes-container {
	overflow-y: auto;
	position: absolute;
	width: 100%;
	padding: 20px;
	left: 0;
	top: 0;
	bottom: 76px;
}
.color-scheme-row {
	margin: 0 0 20px 0;
	border: 1px solid transparent;
	border-radius: 4px;
	padding: 12px 15px;
	cursor: pointer;
}
.color-scheme-row:hover {
	border: 1px solid #d3d4d6;
}
.color-scheme-name {
	display: inline-block;
	text-transform: uppercase;
	width: 225px;
	color: #5e5e5e;
	font-size: 14px;
}
.screen-colors-bottom-bar {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	padding: 20px;
}
.screen-colors-custom-link {
	font-size: 16px;
	line-height: 36px;
}
.update-screen-colors-btn {
	float: right;
}
.selected-scheme,
.selected-scheme:hover {
	border: 1px solid #f0572a;
}
.custom-color-scheme-name {
	width: 100%;
	margin-bottom: 20px;
}
.custom-color-bottom-bar {
	padding-top: 20px;
	text-align: center;
}
/* affiliations */
.affiliation-hub-heading {
	margin-bottom: 30px;
}
.affiliation-edit-container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.affiliation-hub-table {
	width: 441px;
}
.affiliation-hub-label {
	font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif;
	text-transform: uppercase;
}
.affiliation-hub-last-row {
	border: 0;
}
.affiliation-hub-static-text {
	font-size: 12px;
	color: #adb3b6;
}
.affiliated-hub-list {
	margin-top: 15px;
}
.hub-selections {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 356px;
}
.right-btn-group {
	display: flex;
}
.affiliated-hub-list {
	margin-top: 0;
}
/* general admin */
.admin-heading h2 {
	margin-top: 0;
}
.red-asterisk {
	font-family: 'Book Antiqua', Times, serif;
	font-size: 21px;
	color: #d0021b;
}
.select-all-hubs {
	margin-left: 20px;
	display: flex;
}
.select-all-hubs input {
	margin-left: 5px;
}
.theme-logo-box {
	width: 267px;
	height: 57px;
	background-repeat: no-repeat;
	background-size: contain;
}
.theme-color-swatch {
	display: inline-block;
	width: 24px;
	height: 24px;
}
.std-table-filters .form-input {
	width: 250px;
}
.admin-filters {
	padding-bottom: 15px;
}
.admin-filter-row + .admin-filter-row {
	padding-top: 4px;
}
/* disabled elements */
.disabled img {
	opacity: 0.4;
}

/* a dropdown box. Items in side can have icons in each row. See sh-post-classification-bar. */
.drop-label {
	line-height: 1;
	padding: 7px 10px 5px 10px;
	font-size: 13px;
	border: 1px solid #e1e1e1;
	border-radius: 32px;
	height: 28px;
	display: flex;
	justify-content: space-between;
}
.drop-label > .icons {
	margin-left: 15px;
}
.drop-options {
	z-index: 3;
	background-color: white;
	border-radius: 0 0 2px 2px;
	border: 1px solid #e1e1e1;
	border-top: none;
	position: absolute;
	top: 19px;
	width: 100%;
	padding: 15px 15px 0 15px;
}
.drop-option {
	height: 32px;
	overflow: hidden;
	display: flex;
	align-items: center;
}
sh-post-classification-bar .drop-option {
	margin-bottom: 15px;
}
.drop-icon {
	display: flex;
	align-items: center;
	height: 32px;
	width: 32px;
	color: white;
	justify-content: center;
	font-size: 22px;
	border-radius: 32px;
	margin: 0 10px;
}
.drop-option-text {
	/* dropdown width of 200px - 2 icons at 30px wide with 4px right margin - 4px margin for text */
	width: 134px;
	height: 1.25em;
	overflow: hidden;
}
/* circles that show notification counts (e.g. over favorite icon and comment icon) */
.notif-count {
	display: inline-block;
}
.notif-count .amount {
	vertical-align: top;
	display: inline-block;
	margin: -5px 0 0 -7px;
	height: 20px;
	line-height: 20px;
	border-radius: 10px;
	padding: 0 7px;
	background-color: #5e5e5e;
	color: white;
	font-size: 13px;
}
.notif-count + .notif-count {
	margin-left: 10px;
}
/* see https://caniuse.com/#search=line-clamp */
[class*='line-clamp-'] {
	overflow: hidden !important;
	display: -webkit-box !important;
	-webkit-box-orient: vertical;
}
.line-clamp-1 {
	-webkit-line-clamp: 1;
}
.line-clamp-2 {
	-webkit-line-clamp: 2;
}
.line-clamp-3 {
	-webkit-line-clamp: 3;
}
.line-clamp-4 {
	-webkit-line-clamp: 4;
}
.line-clamp-5 {
	-webkit-line-clamp: 5;
}
.line-clamp-6 {
	-webkit-line-clamp: 6;
}
.line-clamp-7 {
	-webkit-line-clamp: 7;
}
.line-clamp-8 {
	-webkit-line-clamp: 8;
}
.line-clamp-9 {
	-webkit-line-clamp: 9;
}
.line-clamp-10 {
	-webkit-line-clamp: 10;
}
/* ribbon controls like on story edit page */
.control-ribbon {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 15px;
	color: #5e5e5e;
	background: #edeeef;
	border-radius: 3px;
	margin: 10px 0;
}
.control-ribbon .control-section {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.control-ribbon .control-label {
	font-style: italic;
	margin-right: 6px;
}
.control-ribbon .control-action {
	display: flex;
	align-items: center;
	height: 24px;
	padding: 0 14px 0 12px;
	border: 1px solid #adb3b6;
	border-radius: 12px;
	margin-left: 10px;
	color: #5e5e5e;
	background-color: white;
	cursor: pointer;
	white-space: nowrap;
}
.control-ribbon .control-action:first-child {
	margin-left: 0;
}
.control-ribbon .control-action:hover {
	border-color: #5e5e5e;
}
.control-ribbon .Lini {
	display: inline-block;
	padding: 0 6px 0 0;
	fill: #5e5e5e;
	margin-top: 4px;
}
.control-ribbon .control-dropdown {
	margin-left: 10px;
}
.floating-menu {
	box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.1);
}
.uncolored-text,
.uncolored-text:hover,
.uncolored-text:visited {
	color: #333333;
}

/**
# Plus link

```html
<a href="" class="plus-link">create new</a>
```
*/

.plus-link {
	display: inline-block;
	font-size: 14px;
	text-transform: lowercase;
	font-family: Roboto, Helvetica, Arial, sans-serif;
	margin-left: 16px;
}
.plus-link:before {
	content: '+ ';
}

/**
# Ribbon

Holds buttons that perform actions

```html
<div class="ribbon">
	<!-- .ribbon is display: flex with space-between children. Put groups of actions
		inside .ribbon-group elements -->
	<div class="ribbon-group left-ribbon-group">
		<div>
			<button class="btn btn-ribbon btn-sm user-like-btn">
				<i class="icons icon-thumbs-up"></i>
				<span class="btn-action-text">LIKE</span>
			</button>
			<button class="btn btn-ribbon btn-sm"><i class="icons icon-bubble"></i><span class="btn-action-text">COMMENT</span></button>
		</div>
		<sh-post-share-btn post="vm.post"></sh-post-share-btn>
	</div>
	<div class="ribbon-group right-ribbon-group">
		<button class="btn btn-ribbon btn-sm edit-action"><i class="icons icon-pencil2"></i>EDIT</button>
		<button class="btn btn-action btn-sm save-edit">SAVE EDITS</button>
	</div>
</div>
```
*/
.ribbon {
	background-color: #adb3b6;
	margin-top: 1px;
	color: #ffffff;
	padding: 10px;
	display: flex;
	justify-content: space-between;
}
.ribbon.ribbon-dark {
	background-color: #5e5e5e;
}
.ribbon.ribbon-light {
	background-color: #d3d4d6;
}
.ribbon .ribbon-group {
	display: flex;
	justify-content: space-around;
	flex-wrap: nowrap;
}
.ribbon-group .btn + .btn {
	margin-left: 10px;
}
.ribbon-footer {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

/*
Admin toolbar
*/
.admin-toolbar {
	vertical-align: bottom;
	margin-bottom: 20px;
}
.admin-toolbar .admin-heading {
	float: left;
	margin-right: 20px;
}
.admin-action {
	margin-left: 20px;
}
.admin-tools {
	float: right;
}
.admin-tools-newrow {
	float: none;
	clear: both;
	padding: 15px 0 0 0;
	margin-left: -10px;
}
.admin-tool {
	margin-left: 10px;
	display: inline-flex;
	align-items: center;
	height: 36px;
	vertical-align: middle;
}
/*
admin toolbar drawer
*/
.drawer-contents {
	width: 100%;
}
.drawer-inner {
	margin-top: 8px;
	padding: 20px;
	border: 1px solid #adb3b6;
	border-radius: 4px;
	background-color: #f6f6f7;
}
.drawer-list {
	padding: 10px 10px 0 10px;
	margin-bottom: 10px;
	border: 1px solid #d3d4d6;
	min-height: 88px;
}
.drawer .btn.is-animating,
.drawer .btn.is-open {
	color: #5e5e5e;
	background-color: #f6f6f7;
	position: relative;
	border-top: 1px solid #adb3b6;
	border-right: 1px solid #adb3b6;
	border-left: 1px solid #adb3b6;
}
.drawer .btn.is-animating:after,
.drawer .btn.is-open:after {
	content: '';
	position: absolute;
	bottom: -14px;
	height: 18px;
	width: 100%;
	background-color: #f6f6f7;
	border-left: 1px solid #adb3b6;
	border-right: 1px solid #adb3b6;
	left: -1px;
	box-sizing: content-box;
}
.drawer .btn.is-animating.btn-secondary:hover,
.drawer .btn.is-open.btn-secondary:hover {
	color: #5e5e5e;
}
.break-word {
	word-wrap: break-word;
}
.live-theme-preview {
	border: 1px solid #adb3b6;
}
.app-bookmarklet .mobile-app-version {
	display: none;
}

/**
# angular-ripple

Add a material-design ripple look to buttons, boxes, or anything clickable

```html
<button class="btn btn-trigger" angular-ripple>Click me in different places</button><br>
<button class="btn btn-secondary" angular-ripple>Or me</button>
```
*/
[angular-ripple] {
	position: relative;
	overflow: hidden;
}
.angular-ripple {
	display: block;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	transform: scale(0);
	pointer-events: none;
}
.angular-ripple.animate {
	animation: ripple 0.35s linear;
}
@keyframes ripple {
	100% {
		opacity: 0;
		transform: scale(2.5);
	}
}

/*! 
 * angular-loading-bar v0.9.0
 * https://chieffancypants.github.io/angular-loading-bar
 * Copyright (c) 2016 Wes Cruver
 * License: MIT
 */

/* Make clicks pass-through */
#loading-bar,
#loading-bar-spinner {
  pointer-events: none;
  -webkit-pointer-events: none;
  -webkit-transition: 350ms linear all;
  -moz-transition: 350ms linear all;
  -o-transition: 350ms linear all;
  transition: 350ms linear all;
}

#loading-bar.ng-enter,
#loading-bar.ng-leave.ng-leave-active,
#loading-bar-spinner.ng-enter,
#loading-bar-spinner.ng-leave.ng-leave-active {
  opacity: 0;
}

#loading-bar.ng-enter.ng-enter-active,
#loading-bar.ng-leave,
#loading-bar-spinner.ng-enter.ng-enter-active,
#loading-bar-spinner.ng-leave {
  opacity: 1;
}

#loading-bar .bar {
  -webkit-transition: width 350ms;
  -moz-transition: width 350ms;
  -o-transition: width 350ms;
  transition: width 350ms;

  background: #29d;
  position: fixed;
  z-index: 10002;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-bottom-right-radius: 1px;
  border-top-right-radius: 1px;
}

/* Fancy blur effect */
#loading-bar .peg {
  position: absolute;
  width: 70px;
  right: 0;
  top: 0;
  height: 2px;
  opacity: .45;
  -moz-box-shadow: #29d 1px 0 6px 1px;
  -ms-box-shadow: #29d 1px 0 6px 1px;
  -webkit-box-shadow: #29d 1px 0 6px 1px;
  box-shadow: #29d 1px 0 6px 1px;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}

#loading-bar-spinner {
  display: block;
  position: fixed;
  z-index: 10002;
  top: 10px;
  left: 10px;
}

#loading-bar-spinner .spinner-icon {
  width: 14px;
  height: 14px;

  border:  solid 2px transparent;
  border-top-color:  #29d;
  border-left-color: #29d;
  border-radius: 50%;

  -webkit-animation: loading-bar-spinner 400ms linear infinite;
  -moz-animation:    loading-bar-spinner 400ms linear infinite;
  -ms-animation:     loading-bar-spinner 400ms linear infinite;
  -o-animation:      loading-bar-spinner 400ms linear infinite;
  animation:         loading-bar-spinner 400ms linear infinite;
}

@-webkit-keyframes loading-bar-spinner {
  0%   { -webkit-transform: rotate(0deg);   transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@-moz-keyframes loading-bar-spinner {
  0%   { -moz-transform: rotate(0deg);   transform: rotate(0deg); }
  100% { -moz-transform: rotate(360deg); transform: rotate(360deg); }
}
@-o-keyframes loading-bar-spinner {
  0%   { -o-transform: rotate(0deg);   transform: rotate(0deg); }
  100% { -o-transform: rotate(360deg); transform: rotate(360deg); }
}
@-ms-keyframes loading-bar-spinner {
  0%   { -ms-transform: rotate(0deg);   transform: rotate(0deg); }
  100% { -ms-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes loading-bar-spinner {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

dir-pagination-controls {
	text-align: center;
	display: block;
}
dir-pagination-controls ul {
	display: inline-block;
	padding: 20px 0 0 0;
	margin: 0 auto;
}
dir-pagination-controls li {
	display: inline-block;
	list-style-type: none;
	vertical-align: bottom;
	margin: 0;
}
dir-pagination-controls a {
	display: inline-block;
	overflow: hidden;
	color: #5e5e5e;
	padding: 0 7px;
	height: 32px;
	line-height: 32px;
	min-width: 32px;
	border-top: 1px solid #5e5e5e;
	border-right: 1px solid #5e5e5e;
	border-bottom: 1px solid #5e5e5e;
}
dir-pagination-controls li:first-child a {
	border-left: 1px solid #5e5e5e;
	border-radius: 4px 0 0 4px;
	font-size: 20px;
}
dir-pagination-controls li:last-child a {
	border-radius: 0 4px 4px 0;
	font-size: 20px;
}
dir-pagination-controls a:hover {
	background-color: #edeeef;
}
dir-pagination-controls .disabled a,
dir-pagination-controls .disabled a:hover {
	background-color: transparent;
	color: #adb3b6;
}
dir-pagination-controls .active a,
dir-pagination-controls .active a:hover {
	color: white;
	background-color: #5e5e5e;
}

sh-accordion {
	display: block;
}

sh-accordion-pane {
	display: block;
}
sh-accordion-pane .pane-label {
	padding: 6px 10px;
	border: 1px solid #adb3b6;
	cursor: pointer;
	background: linear-gradient(to bottom, #ffffff 0%, #efefef 20%, #eaeaea 80%, #dbdbdb 100%);
}
sh-accordion-pane + sh-accordion-pane .pane-label {
	border-top: none;
}
sh-accordion-pane .pane-label-text {
	font-weight: bold;
	display: inline-block;
	vertical-align: middle;
}
sh-accordion-pane .pane-content {
	height: 0;
	transition: height 250ms ease-in-out;
	overflow: auto;
	border-right: 1px solid #adb3b6;
	border-left: 1px solid #adb3b6;
	border-bottom: 0px solid #adb3b6;
}
sh-accordion-pane .is-open .pane-content {
	height: 200px;
	border-bottom-width: 1px;
}
sh-accordion-pane .opened-closed-indicator {
	display: block;
	float: right;
	width: 16px;
	height: 16px;
	vertical-align: middle;
	text-align: center;
	transform: rotate(0deg);
	transition: transform 250ms ease-in-out;
}
sh-accordion-pane .opened-closed-indicator:after {
	font-weight: bold;
}
sh-accordion-pane .is-open .opened-closed-indicator {
	transform: rotate(90deg);
}
sh-accordion-pane .pane-content-inner {
	background-color: white;
	padding: 15px;
}
sh-accordion-pane .pane-label-text .icons {
	margin-right: 0.25em;
}
/* large size */
sh-accordion.large sh-accordion-pane .pane-label {
	padding: 10px 15px;
	font-size: 18px;
}
sh-accordion.large sh-accordion-pane .pane-label-text {
	font-weight: normal;
}
sh-accordion.large sh-accordion-pane .opened-closed-indicator {
	display: block;
	float: right;
	width: 20px;
	height: 20px;
}
/* extra-large size */
sh-accordion.extra-large sh-accordion-pane .pane-label {
	padding: 15px 20px;
	font-size: 24px;
}
sh-accordion.extra-large sh-accordion-pane .pane-label-text {
	font-weight: normal;
}
sh-accordion.extra-large sh-accordion-pane .opened-closed-indicator {
	display: block;
	float: right;
	width: 24px;
	height: 24px;
}

sh-add-content .add-content {
	display: flex;
	align-items: center;
	border: 1px solid #adb3b6;
	border-radius: 15px;
	padding-left: 5px;
	font-weight: 600;
	margin-bottom: 15px;
	height: 30px;
	width: 120px;
}
sh-add-content .add-icon {
	margin-right: 5px;
}
/* prefix all selectors with sh-add-content */

sh-announcement {
	display: block;
	position: absolute;
}
sh-announcement,
sh-announcement .announcement-overlay,
sh-announcement .announcement-content {
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
}
sh-announcement .announcement-overlay {
	position: fixed;
	background-color: rgb(50, 50, 50);
	opacity: 0;
	transition: opacity 1000ms ease-out;
}
sh-announcement .announcement-overlay.ready {
	opacity: 0.5;
}
sh-announcement .announcement-content {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity 500ms ease-out;
	transition-delay: 750ms;
}
sh-announcement .announcement-content.ready {
	opacity: 1;
}
sh-announcement .announcement-close-x {
	color: white;
	opacity: 0.66;
	position: fixed;
	top: 20px;
	right: 20px;
	font-family: 'Times New Roman', Times, serif;
	font-size: 50px;
	font-weight: bold;
	cursor: pointer;
}
sh-announcement .announcement-close-x:hover {
	opacity: 1;
}
.overlay-item {
	transition: opacity 500ms ease-out;
	transition-delay: 750ms;
	opacity: 0;
}
.overlay-item.ready {
	opacity: 1;
}

sh-att-list-icons {
	display: inline;
}
sh-att-list-icons .download-link,
sh-att-list-icons .download-link a,
sh-att-list-icons .preview-link {
	color: #5e5e5e;
	margin-right: 2px;
}
sh-att-list-icons .download-link:hover,
sh-att-list-icons .download-link a:hover,
sh-att-list-icons .preview-link:hover {
	color: #333333;
}
sh-att-list-icons .action-pipe {
	color: #adb3b6;
	margin: 0 3px 0 1px;
}
sh-att-list-icons sh-click-to-download a {
	display: inline-block;
	vertical-align: top;
}
sh-att-list-icons .preview-plus-more {
	margin-right: 8px;
}

sh-att-list-popup {
	display: block;
}
sh-att-list-popup .popup {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: auto;
	background-color: #30414c;
}
sh-att-list-popup .top-bar {
	position: absolute;
	top: 0;
	left: 0;
	height: 79px;
	width: 30%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	background-color: rgba(0, 0, 0, 0.1);
	border-right: 1px solid rgba(0, 0, 0, 0.25);
	overflow: hidden;
}
sh-att-list-popup .viewer-type-none .top-bar {
	width: 100%;
}
sh-att-list-popup .top-bar-title {
	font-size: 17px;
	line-height: 1.15;
	color: rgba(255, 255, 255, 0.6);
	padding: 0;
	margin: 0;
	word-break: break-all;
}
sh-att-list-popup .top-bar-close {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.8);
	padding-left: 20px;
}
sh-att-list-popup .top-bar-close:hover {
	font-size: 20px;
	color: white;
}
sh-att-list-popup .file-list {
	position: absolute;
	width: 30%;
	top: 79px;
	left: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.1);
	overflow: auto;
}
sh-att-list-popup .viewer-type-none .file-list {
	width: 100%;
}
sh-att-list-popup .file {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-right: 1px solid rgba(0, 0, 0, 0.25);
	border-bottom: 1px solid rgba(0, 0, 0, 0.25);
	padding: 20px;
	color: #fff;
	position: relative;
	background-color: #30414c;
}
sh-att-list-popup .file.selected {
	background: #47545c;
	border-right: none;
	border-bottom: none;
}
sh-att-list-popup .file-thumbnail {
	width: 120px;
	height: 80px;
	overflow: hidden;
	float: left;
	position: relative;
}
sh-att-list-popup .file-thumbnail:after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 7px;
	background: linear-gradient(to bottom, rgba(48, 65, 76, 0) 0%, rgba(48, 65, 76, 0.85) 100%);
}
sh-att-list-popup .selected .file-thumbnail:after {
	background: linear-gradient(to bottom, rgba(71, 84, 92, 0) 0%, rgba(71, 84, 92, 0.85) 100%);
}
sh-att-list-popup .file-thumbnail img {
	width: 120px;
}
sh-att-list-popup .file-details {
	float: right;
	width: calc(100% - 140px);
	word-break: break-all;
}
sh-att-list-popup .file-name {
	font-size: 16px;
}
sh-att-list-popup .file-meta {
	padding: 14px 0 4px 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
}
sh-att-list-popup .file-actions {
	display: inline-block;
}
sh-att-list-popup .file-actions a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	margin-right: 10px;
}
sh-att-list-popup .file-actions a:hover {
	color: white;
}
sh-att-list-popup .file-preview {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 30%;
}
sh-att-list-popup .viewer {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	color: white;
	background-color: #47545c;
}

/* prefix all selectors with sh-att-list-thumbnails */
sh-att-list-thumbnails .mini-attachment {
	display: flex;
	align-items: flex-start;
	margin-bottom: 10px;
	flex-direction: column;
}
sh-att-list-thumbnails .attachment-page-thumbnail {
	min-width: 100px;
	box-shadow: 0px 1px 2px #d5d5d5;
	/*margin: auto;*/
}
sh-att-list-thumbnails .att-no-preview {
	width: 100px;
	height: 60px;
	background-color: #ffffff;
	text-align: center;
	font-size: 40px;
	color: #d5d5d5;
	line-height: 66px;
}
sh-att-list-thumbnails .attachment-meta {
	margin-top: 10px;
	display: flex;
	align-items: center;
	cursor: pointer;
	width: 100%;
}
sh-att-list-thumbnails .attachment-meta .icons {
	font-size: 20px;
	margin-right: 8px;
	cursor: pointer;
}
sh-att-list-thumbnails .attachment-filename {
	word-break: break-all;
	margin-right: 10px;
	max-width: 230px;
	cursor: pointer;
	width: 100%;
}

sh-click-to-download {
	display: inline;
}
sh-click-to-download progress {
	width: 100%;
}

/* compare to PartnerLinks.css */
sh-partner-links-list {
	display: block;
	line-height: 0;
	border-bottom: 1px solid #d6d6d6;
}
.theme-base-black sh-partner-links-list {
	border-bottom: none;
}
sh-partner-links-list .links-wrapper {
	margin-bottom: -1px;
}
sh-partner-links-list a {
	display: inline-block;
	padding: 6px 16px;
	border-right: 1px solid #d6d6d6;
	border-bottom: 1px solid #d6d6d6;
}
sh-partner-links-list .partner-logo {
	display: block;
	height: 28px;
	width: 125px;
	background-size: contain;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}

sh-partner-links-trigger {
	display: inline-block;
	position: relative;
}
sh-partner-links-trigger .neck {
	position: absolute;
	top: -17px;
	left: 27px;
	background-color: white;
	width: 12px;
	height: 12px;
	transform: rotate(45deg);
	border-bottom: 1px solid #bbb;
	border-right: 1px solid #bbb;
}
.theme-base-black sh-partner-links-trigger .neck {
	border: none;
}
sh-partner-links-trigger .partner-icon {
	cursor: pointer;
	display: inline-block;
	width: 28px;
	height: 28px;
	margin: 7px 0 0 19px;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url(/angular/assets/img/icons/accounts-on-light.svg);
}
.theme-base-black sh-partner-links-trigger .partner-icon {
	background-image: url(/angular/assets/img/icons/accounts-on-dark.svg);
}

sh-att-slideshow .slideshow-container {
	position: relative;
}
sh-att-slideshow .slideshow-image-container-outer {
	overflow: hidden;
	transition: height 350ms ease-in-out;
}
sh-att-slideshow .slideshow-image-container-inner {
	display: flex;
	align-items: flex-start;
	position: relative;
	transition: all 1ms;
	transform: translateX(0);
}
sh-att-slideshow .slideshow-nav {
	position: absolute;
	top: 0;
	bottom: 0;
	height: 60px;
	width: 60px;
	margin: auto;
	color: #ffffff;
	text-align: center;
	font-size: 36px;
	line-height: 67px;
	background-color: #b6b6b6;
	cursor: pointer;
	z-index: 100;
}
sh-att-slideshow .pin-slideshow-prev {
	left: -50px;
}
sh-att-slideshow .pin-slideshow-next {
	right: -50px;
}
sh-att-slideshow .slideshow-image {
	display: inline-block;
	transition: height 350ms ease-in-out;
}
sh-att-slideshow .slideshow-info-bar {
	background-color: #d3d4d6;
	color: #5e5e5e;
	padding: 6px 10px;
	font-size: 13px;
	position: relative;
}
sh-att-slideshow .slideshow-enlarge {
	float: left;
}
sh-att-slideshow .slideshow-pagination {
	position: absolute;
	right: 3px;
	top: -28px;
	background-color: rgba(255, 255, 255, 0.8);
	padding: 3px 8px;
	border-radius: 13px;
	color: #444;
}
@media (max-width: 768px) {
	sh-att-slideshow .slideshow-container {
		margin: auto;
	}
	.sh-modal-PostDetail sh-att-slideshow .slideshow-container {
		width: 100%;
	}
	sh-att-slideshow .slideshow-nav {
		width: 44px;
		height: 44px;
		font-size: 24px;
		line-height: 52px;
	}
	sh-att-slideshow .pin-slideshow-prev {
		left: -20px;
	}
	sh-att-slideshow .pin-slideshow-next {
		right: -20px;
	}
}

sh-att-viewer-audio {
	display: flex;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	justify-content: center;
	align-items: center;
}
sh-att-viewer-audio .main-container {
	width: 80%;
}
sh-att-viewer-audio .error {
	font-size: 18px;
	font-style: italic;
	padding: 20px 20%;
	text-align: center;
}

sh-att-viewer-image {
	display: block;
}
sh-att-viewer-image .image-area {
	position: absolute;
	top: 20px;
	right: 20px;
	bottom: 20px;
	left: 20px;
}

sh-att-viewer-other {
	display: block;
	padding: 20px;
}
sh-att-viewer-other h3 {
	padding: 0;
	margin: 0;
}

sh-att-viewer-prizm {
	display: block;
}
sh-att-viewer-prizm .prizm-page-translation {
	position: absolute;
	top: 0;
	left: -80%;
	width: 80%;
	height: 100%;
	white-space: normal;
	background-color: #f3f5f6;
	overflow: auto;
	padding: 30px;
	font-family: 'Times New Roman', serif;
	font-size: 13px;
	line-height: 1.2;
}
@media (max-width: 1600px) {
	sh-att-viewer-prizm .prizm-page-translation {
		font-size: 11px;
	}
}

sh-att-viewer-prizm .prizm-page-translation h1 {
	font-family: 'Times New Roman', serif;
	font-size: 16px;
	font-style: italic;
	padding: 0;
	margin: 0 0 16px 0;
}
sh-att-viewer-prizm .prizm-page-translation p {
	text-align: left;
	white-space: pre;
}

sh-att-viewer-prizm .has-translations .pccPageListContainerWrapper > div {
	margin: 0px 50% !important;
}
sh-att-viewer-prizm .has-translations .pccPageListItem {
	overflow: visible !important;
	box-shadow: none;
}
sh-att-viewer-prizm .has-translations .igViewerScroller {
	box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 4px 1px;
}
sh-att-viewer-prizm .pccv {
	display: block;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: none;
}
sh-att-viewer-prizm .pccv .pccPageListItemLoading,
sh-att-viewer-prizm .pccv .pccPageListItem {
	background-color: transparent;
	border-bottom: none;
}
sh-att-viewer-prizm .pccv .pccPageLoadFail {
	color: rgba(255, 255, 255, 0.65);
}
sh-att-viewer-prizm .pccPageLoadFail button {
	background: transparent;
	border-radius: 4px;
}
sh-att-viewer-prizm .pccPageLoadFail button:hover {
	color: white;
	border-color: white;
}
sh-att-viewer-prizm .pccv,
sh-att-viewer-prizm .pccv .pcc-dialog {
	background: #47545c;
}
sh-att-viewer-prizm .pccv .pcc-status-bar,
sh-att-viewer-prizm .pcc-tabset.pcc-nav-tabset {
	height: 37px;
	padding-top: 8px;
}
sh-att-viewer-prizm .pccv .pcc-tab-pane {
	top: 37px;
	height: 43px;
	border-bottom: 1px solid #596973;
}
sh-att-viewer-prizm .pccv .pcc-dialog {
	top: 80px;
}
sh-att-viewer-prizm .pccv [data-pcc-pagelist] {
	padding-top: 80px;
}
sh-att-viewer-prizm .pccv .pcc-nav-tabset {
	background-color: #384954;
	border-bottom: 1px solid #202b32;
}
sh-att-viewer-prizm .pccv .pcc-tab-pane,
sh-att-viewer-prizm .pccv .pcc-tools-tabset {
	background: #2b3b45;
	box-shadow: none;
}
sh-att-viewer-prizm .pccv .pcc-status-bar {
	background-color: transparent;
	padding-top: 5px;
}
sh-att-viewer-prizm .pccv .pcc-tab {
	margin-right: 10px;
}
sh-att-viewer-prizm .pccv .pcc-tab:first-child {
	margin-left: 10px;
}
sh-att-viewer-prizm .pccv .pcc-nav-tabset .pcc-tab-item {
	font-size: 16px;
	background-color: #384954;
	border: 1px solid #2b3b45;
	border-bottom-color: #202b32;
	border-top-right-radius: 4px;
	border-top-left-radius: 4px;
}
sh-att-viewer-prizm .pccv .pcc-nav-tabset .pcc-tab-item.pcc-active {
	background-color: #2b3b45;
	border-color: #202b32;
	border-bottom: none;
}
sh-att-viewer-prizm .pcc-search-header {
	color: white;
}
/* hide print and download buttons until we have annotations */
sh-att-viewer-prizm .pccv .pcc-icon[data-pcc-print="launch"],
sh-att-viewer-prizm .pccv .pcc-icon[data-pcc-toggle="dialog-download"],
/* hide thumbnails view button */
sh-att-viewer-prizm .pccv .pcc-icon[data-pcc-toggle="dialog-thumbnails"] {
	display: none;
}
/* hide the prizm doc branding */
sh-att-viewer-prizm .pccPageListComments.pccHidden + div {
	opacity: 0;
}

/* styles for custom tab */
sh-att-viewer-prizm .search-terms-tab-pane .predefined-search-terms-container {
	font-size: 14px;
	color: #ffffff;
}
sh-att-viewer-prizm .search-terms-tab-pane .search-terms-term {
	margin-right: 11px;
	padding: 3px 8px;
	border: 1px solid #47545c;
	border-radius: 2px;
}
sh-att-viewer-prizm .search-terms-tab-pane .form-group {
	display: inline-block;
	margin-bottom: 15px;
}
sh-att-viewer-prizm .search-terms-tab-pane .form-group .replacement-checkbox {
	padding: 0;
	height: auto;
	height: initial;
	width: auto;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
}
sh-att-viewer-prizm .search-terms-tab-pane .form-group label {
	position: relative;
	cursor: pointer;
}
sh-att-viewer-prizm .search-terms-tab-pane .form-group label:before {
	content: '';
	-webkit-appearance: none;
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.66);
	box-shadow:
		0 1px 2px rgba(0, 0, 0, 0.05),
		inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
	padding: 5px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 6px;
	transform: translateY(-1px);
}
sh-att-viewer-prizm .search-terms-tab-pane .form-group.checked .replacement-checkbox + label:after {
	content: '';
	display: block;
	position: absolute;
	top: 2px;
	left: 4px;
	width: 5px;
	height: 10px;
	border: solid #ffffff;
	border-width: 0 1.5px 1.5px 0;
	transform: rotate(45deg);
}

sh-att-viewer-video {
	display: flex;
}

sh-att-viewer-video sh-video-player {
	overflow: hidden;
	transition: width 0.5s;
}
sh-att-viewer-video .video-player-container {
	width: 100%;
	height: 100%;
}
sh-att-viewer-video .viewer {
	position: static;
}
sh-att-viewer-video .search-tab {
	height: 100%;
	color: black;
	padding: 10px;
	display: flex;
	flex-direction: column;
	transition: 0.5s;
}
sh-att-viewer-video .search-tab-btn {
	background-color: transparent;
	outline: none;
	border: none;
	padding: 0;
	margin-bottom: 20px;
	width: 30px;
	margin-top: 19px;
	font-size: 22px;
	color: #f2f3f6;
}
sh-att-viewer-video .expanded-search-container {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	width: 225px;
	min-height: 0; /*This is needed so the search results are scrollable*/
}

sh-att-viewer-video sh-search-input .search-input {
	color: black;
	background-color: #f2f3f6;
}
sh-att-viewer-video sh-search-input .search-clear {
	background-color: #f2f3f6;
}
sh-att-viewer-video sh-search-input .search-bar {
	background-color: #f2f3f6;
	border-radius: 0;
}
sh-att-viewer-video sh-search-input .search-submit {
	background-color: #f2f3f6;
	border: none;
}

sh-att-viewer-video .search-results-container {
	padding-top: 10px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	min-height: 0; /*This is needed so the search results are scrollable*/
}
sh-att-viewer-video .search-results-header {
	color: white;
	display: flex;
	background-color: #7d7f85;
	text-align: center;
	margin-bottom: 1px;
}
sh-att-viewer-video .search-results-header span {
	display: block;
}
sh-att-viewer-video .time-column {
	width: 40px;
}
sh-att-viewer-video .search-result-column {
	width: calc(100% - 40px);
}
sh-att-viewer-video .search-results {
	background-color: #f2f3f6;
	font-size: 12px;
	flex-grow: 1;
	overflow: auto;
}
sh-att-viewer-video .search-result {
	cursor: pointer;
	padding: 6px;
	display: flex;
}
sh-att-viewer-video .search-match {
	font-weight: bold;
}

sh-audio-player {
	display: block;
}
sh-audio-player audio {
	display: block;
	width: 100%;
	outline: 0;
}
sh-audio-player audio:focus {
	outline: 0;
}

/**
 * @filetitle  autopatch="" Directive
 * @filedesc  For autosaving form controls on blur
 */

/**
 * @name  Input styles
 * @description  Highlights the field green while save is in progress
 * @markup
<div autopatch="autopatchOptions">
	<input class="disp-inline-block w-auto form-control autopatch" value="Input">
	<input class="disp-inline-block w-auto form-control autopatch autopatch-ok" value="Saving...">
	<input class="disp-inline-block w-auto form-control autopatch autopatch-error" value="Save error">
</div>
 */
/*
select.autopatch,
input.autopatch,
textarea.autopatch {
	transition: border 800ms, background-color 500ms;
	background-color: #F26522;
}
textarea.autopatch.post-headline {
	background-color: #FFFFFF;
}
select.autopatch-ok,
input.autopatch-ok,
textarea.autopatch-ok {
	border: 1px solid #00BB00;
	background-color: #CBFCCB;
}
select.autopatch-error,
input.autopatch-error,
textarea.autopatch-error {
	border: 1px solid #BB0000;
	background-color: #FCCBCB;
}*/

sh-avatar img {
	border-radius: 50%;
}
sh-avatar + .avatar-label {
	margin-left: 0.5em;
}
.labeled-avatar {
	display: flex;
	align-items: center;
}
/* also defined in app/webroot/assets/css/styles.css */
sh-avatar .avatar-default {
	border: 2px solid #9a9a9a;
	border-radius: 50%;
	color: #9a9a9a;
	font-weight: bold;
	font-family: Roboto, Helvetica, Arial, sans-serif;
	/* this centers the letters inside the circle */
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #ffffff;
}

sh-chars-remain {
	display: block;
	position: relative;
}
sh-chars-remain .display {
	position: absolute; /* bottom and right are set in component js */
	line-height: 22px;
	height: 22px;
	padding: 0 8px;
	border: 1px solid #adb3b6;
	border-top: none;
	border-radius: 0 0 4px 4px;
	font-size: 13px;
	background-color: white;
	color: #d0021b;
}
sh-chars-remain .display.error {
	background-color: #d0021b;
	border-color: #d0021b;
	color: white;
}

sh-choose-home-page {
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	margin-left: 10px;
}
sh-choose-home-page .icons {
	font-size: 20px;
}
sh-choose-home-page .default-text {
	font-size: 12px;
}
sh-choose-home-page .not-home-page {
	transition: opacity 0.2s linear;
	opacity: 0;
}
sh-choose-home-page .not-home-page:hover {
	opacity: 1;
}
.theme-base-black sh-choose-home-page .themed-fg-color1 {
	color: #bbbbbb;
	fill: #bbbbbb;
}

sh-clearable-input {
	display: inline-block;
}
sh-clearable-input.full-width .wrapper,
sh-clearable-input.full-width input {
	width: 100%;
}
sh-clearable-input .wrapper {
	display: inline-block;
	position: relative;
}
sh-clearable-input .icons {
	position: absolute;
	right: 7px;
	top: 8px;
	cursor: pointer;
	color: #adb3b6;
}
.small-inputs sh-clearable-input .icons {
	right: 5px;
	top: 4px;
}
sh-clearable-input .icons:hover {
	color: #5e5e5e;
}
sh-clearable-input .icon-magnifier {
	pointer-events: none;
}

header sh-client-chooser {
	display: flex;
	align-items: center;
}
sh-client-chooser .client-switcher-dropdown .client-list .client-item {
	cursor: pointer;
	display: block;
}
sh-client-chooser .client-switcher {
	position: relative;
	font-size: 14px;
}
sh-client-chooser .client-switcher .current-client {
	width: 330px;
	background-color: #353535;
	color: #fff;
	padding: 5px 15px;
	border-radius: 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 400;
	cursor: pointer;
	position: relative;
}
sh-client-chooser .client-switcher .dropdown-arrow {
	color: #ffffff;
	line-height: 12px;
}
sh-client-chooser .client-switcher-dropdown {
	display: none;
	padding: 30px 10px 6px 10px;
	border: 1px solid #cbcbcb;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	position: absolute;
	top: 15px;
	width: 100%;
	background-color: #ffffff;
	z-index: 300;
}
sh-client-chooser .client-switcher-dropdown.dropdown-open {
	display: block;
}
sh-client-chooser .client-list .client-item.selected {
	color: #333333;
	font-weight: bold;
}
sh-client-chooser .recent-hubs {
	padding: 0 15px 10px 15px;
}
sh-client-chooser .recent-label {
	margin-top: -5px;
	padding-bottom: 10px;
	font-style: italic;
	color: #5e5e5e;
}
sh-client-chooser .recent-item {
	padding-bottom: 10px;
}
sh-client-chooser .recent-item:hover {
	text-shadow:
		0 0 0.65px #333333,
		0 0 0.65px #333333;
}
sh-client-chooser .toggle-button {
	margin: 2px 4px 0 18px;
	fill: #5e5e5e;
}
.theme-base-black sh-client-chooser .toggle-button {
	fill: #d3d3d3;
}

sh-typeahead-select {
	display: block;
}
sh-typeahead-select .iconned-wrapper.ico-right > .icons {
	font-size: 14px;
	top: 9px;
	right: 10px;
}

/**
# Collapser icons - up/down

Flip an up/down arrow icon using sh-collapsible

```html
<div angular-ripple>
	Click to expand and collapse
	<i class="icons icon-thin-up collapser-flip"></i>
</div>
<div sh-collapsible="{isOpen:false}">
	Content that will expand and collapse
</div>
```

*/
.collapser-flip {
	display: inline-block;
	transform: scaleY(1);
	transition: transform 300ms ease-in-out;
}
.is-animating-open .collapser-flip,
.is-open .collapser-flip {
	transform: scaleY(-1);
}
.collapser-cloak {
	visibility: hidden;
}
/**
# Collapser icons - rotate

Rotate an arrow icon using sh-collapsible

```html
<div angular-ripple ng-click="sectionOpen=!sectionOpen">
	<i class="icons icon-thin-up collapser-rotate"></i>
	Click to expand and collapse
</div>
<div sh-collapse-when="sectionOpen">
	Content that will expand and collapse
</div>
```

*/
.collapser-rotate {
	display: inline-block;
	transform: rotate(90deg);
	transition: transform 300ms ease-in-out;
}
.is-animating-open .collapser-rotate,
.is-open .collapser-rotate {
	transform: rotate(180deg);
}

.color-scheme-swatch {
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	margin-right: 5px;
	border-radius: 2px;
}

sh-columnized {
	display: block;
	position: relative;
}
sh-columnized > [ng-transclude] > * {
	position: absolute;
	top: 0;
	left: 0;
	transform: translate3d(0, 0, 0);
	/* transition applied in component */
}

sh-image {
	display: inline;
}
sh-image img {
	background-position: 50% 50%;
	background-color: transparent;
	background-image: url(/assets/img/loader-responsive-dark.gif);
	background-repeat: no-repeat;
	background-size: 16px;
	display: inline-block;
	margin: auto;
	max-width: 100%;
}
sh-image img.loaded {
	background-image: none;
}
sh-image img.errored {
	background-image: url(/assets/img/flash-warning.png);
}

sh-comment-button {
	display: inline;
}

sh-comment-button .comment-button {
	background-color: transparent;
	border: none;
}
.ribbon-group sh-comment-button + .btn,
.ribbon-group .btn + sh-comment-button {
	margin-left: 10px;
}

sh-comment-button .comment-button .comment-icon {
	display: block;
	width: 25px;
	height: 25px;
	background-image: url('/angular/assets/img/icons/comment.svg');
	background-repeat: no-repeat;
	background-position: 50%;
}

sh-comment-button .comment-button .comment-icon.comment-icon-with-label {
	display: inline-block;
}

.comment-button-area .comment-button .comment-label {
	display: flex;
	align-items: center;
	color: #333333;
}

.comment-button-area .comment-button .comment-label div {
	padding-left: 0.5rem;
}

sh-modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 20px;
	background-color: rgba(50, 50, 50, 0.5);
	display: grid;
	align-items: center;
	justify-items: center;
	/* transition the opacity */
	opacity: 0;
	transition: opacity 500ms ease-in-out;
	overflow: auto;
}

.device-is-phone sh-modal,
html[ng-app='mobile'] sh-modal {
	padding: 0;
}
sh-modal.sh-modal-open {
	opacity: 1;
}
main.sh-modal-open {
	filter: blur(3px);
}
.sh-modal-container .sh-modal-columns {
	display: flex;
}
.sh-modal-container .sh-modal-column + .sh-modal-column {
	margin-left: 20px;
	border-left: 1px solid #ccc;
	padding-left: 20px;
}

.sh-modal-container {
	display: grid;
	grid-template-rows: auto minmax(0, 1fr);
	margin: auto;
	overflow: hidden;
	border-radius: 4px;
	background-color: #fff;
	position: relative;
	opacity: 0;
	margin: auto;
	transition: opacity 250ms ease-in-out;
	min-height: 200px;
	min-width: 400px;
}
.sh-modal-PostCreate .sh-modal-container {
	flex-shrink: 0;
}
.device-is-phone .sh-modal-container {
	border-radius: 0;
	min-width: auto;
}
.sh-modal-container.sh-modal-open {
	opacity: 1;
}
.sh-modal-header {
	background-color: #333333;
	color: #fff;
	font-size: 16px;
	font-style: italic;
	height: 60px;
	line-height: 62px;
	padding: 0 0 0 20px;
	text-transform: uppercase;
	overflow: hidden;
	position: relative;
}
.device-is-phone .sh-modal-header {
	height: 44px;
	line-height: 45px;
}
.sh-modal-title {
	width: calc(100% - 60px);
	overflow: hidden;
	display: block;
	float: left;
}
.sh-modal-header .knowledgebase-link {
	display: block;
	position: absolute;
	top: -1px;
	right: 54px;
	font-size: 18px;
	font-weight: bold;
	text-transform: none;
}
a.sh-modal-close {
	font-size: 20px;
	float: right;
	color: #fff;
	padding: 0 20px;
	cursor: pointer;
}
.device-is-phone a.sh-modal-close {
	font-size: 16px;
}
a.sh-modal-close:hover {
	opacity: 0.8;
	color: #fff;
}
.sh-modal-body {
	padding: 20px;
}
.sh-modal-content {
	display: grid;
	overflow: auto;
	width: 100%;
}
.device-is-phone .sh-modal-content {
	height: calc(100% - 40px);
}
.sh-modal-has-buttons .sh-modal-body {
	/* 65px = button area height */
	height: calc(100% - 65px);
	overflow: auto;
}
.sh-modal-has-buttons.sh-modal-alert .sh-modal-body {
	height: auto;
}
sh-modal[width='auto'] .sh-modal-has-buttons .sh-modal-body {
	overflow: hidden;
}
.sh-modal-alert .sh-modal-body {
	/* 106px = min height 200px - 60px top bar - 60px button area + 1px border + 25px padding */
	padding-bottom: 106px;
}
.sh-modal-no-padding .sh-modal-body {
	padding: 0 !important;
}
.sh-modal-state .sh-modal-body {
	padding-bottom: 0;
}
.sh-modal-footer {
	clear: both;
	border-top: 1px solid #d3d4d6;
	background-color: #edeeef;
	padding: 16px 20px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	background-color: white;
}
.sh-modal-footer.ribbon {
	border-top-color: #adb3b6;
}
.sh-modal-video-wrapper {
	background-color: black;
}
.sh-modal-video-wrapper,
.sh-modal-video-wrapper video,
.sh-modal-video-wrapper iframe,
.sh-modal-iframe-wrapper,
.sh-modal-iframe-wrapper iframe {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
}
.sh-modal-body > *:first-child:not(.form-input),
.sh-modal-body > .ng-scope:first-child > *:first-child:not(.form-input),
.sh-modal-body > .ng-scope:first-child > .row:first-child > .col > *:first-child:not(.form-input) {
	margin-top: 0;
	padding-top: 0;
}
.sh-modal-body sh-header-loggedin,
.sh-modal-body sh-header-loggedout,
.sh-modal-body .admin-toolbar,
.sh-modal-body .admin-links,
.sh-modal-body .admin-content > h1:first-child {
	display: none;
}
.sh-modal-body .admin-content {
	width: 100%;
}

.sh-modal-state-wrapper {
	display: grid;
	min-height: 0;
	height: 100%;
}

@media (max-width: 510px) {
	.sh-modal-container {
		min-width: 200px;
	}
}

.video-player-container {
	display: inline-block;
	background: black url(/assets/img/loader-responsive-dark.gif) no-repeat 50% 50% / 48px 48px;
}

.video-player-container iframe {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.video-player-title {
	height: 60px;
	background-color: #333333;
	color: white;
	font: 18px/60px Roboto, Helvetica, Arial, sans-serif;
	margin: 0;
	padding: 0 20px;
}
.video-player-container.player-with-title,
.video-player-container.player-with-title video,
.video-player-container.player-with-title iframe {
	display: block;
	width: 100vw;
	height: calc(100vh - 60px);
}
.video-player-container.player-fullscreen,
.video-player-container.player-fullscreen video,
.video-player-container.player-fullscreen iframe {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	display: block;
}

sh-cookies-settings .cookie-type-header {
	background-color: #edeeef;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
	padding: 10px;
}
sh-cookies-settings .cookie-type-header .heading {
	margin: 0;
}
sh-cookies-settings .cookie-type-explanation {
	padding: 8px 10px 0;
}
sh-cookies-settings .cookie-type-list {
	padding-left: 24px;
	margin-top: 8px;
}

sh-copy-to-clipboard {
	display: inline-block;
}
sh-copy-to-clipboard .outer {
	position: relative;
	border: 1px dashed #ddd;
	background-color: white;
	padding: 2px 2px 2px 8px;
	cursor: pointer;
	border-radius: 6px;
	word-break: break-all;
}
sh-copy-to-clipboard .outer:hover,
sh-copy-to-clipboard .is-confirming {
	border-color: #adb3b6;
}
sh-copy-to-clipboard .copy {
	display: inline-block;
	visibility: hidden;
	background-color: #adb3b6;
	padding: 2px 8px;
	color: white;
	border-radius: 0 4px 4px 0;
	margin-left: 3px;
}
sh-copy-to-clipboard .outer:hover .copy,
sh-copy-to-clipboard .is-confirming .copy {
	visibility: visible;
}
sh-copy-to-clipboard .confirm {
	position: absolute;
	top: 2px;
	right: 2px;
	bottom: 2px;
	left: 2px;
	display: inline-block;
	background-color: #adb3b6;
	padding: 2px 4px;
	color: white;
	vertical-align: middle;
	text-align: center;
	border-radius: 4px;
}

.colorpicker-visible,
.colorpicker-visible .dropdown-menu {
  display: block !important;
}
colorpicker-saturation {
  display: block;
  width: 100px;
  height: 100px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAFJhJREFUeAGMU+/q4kAMzFYf4LgP96a+q4c+gSIqxf/r5maWDoTgz15gmM0kW5uMLa21v2b2G6jAG2iEzqUU6q5c/OlMuHtL/ULNd5TP6EJ1RP7NuXvKE397jmbg7MrzHI748T1UA3eopyGQV2qK1+vVHo/Hm1itVm0J7Q+afwGMmgeRphf7Noh6lCeuHJAvm/X8rAQNlw2VScoj6863OQjl2ZB3qkeu5Lh0RJ3qynuNjJA21FppQAHa8/l83263No5jOxwOttlsbL1e2xIXXpMZzzRsXoTw34bQgLiQbKh6M9SXDBSypn4XGOSkGUO1cJdn1Yh4/qYVgctmGSwXyARNcOSFRuBMHvA1GMzwy+Vix+PRdrvdYrvd2vl87oZYDCxBL9B/jEyopghzlNjL0DlB+gAoPNXyOfa3oA9puXonyVHzdH+g9MEISa5z0qUNkwkm6MJkxALg8mlMAxvNwBfhYLvf7w50vl6vBV9H2e/3BjYateQDY8gM5bmWovygdyEb87k/G5Zz9c/2zfEQFysO5nDJ6mMel91Z//pwFpygIWIaMXE3AoYssPBCI/B12DiONMT5VZxOJ0f+j/MyWo5chYGowfn/j03lNXBpl85Up8d46u6DChBMvKv2UePrrAsChtdLTi73oEBjFDYpmIp/KSgRhRw357sXuHLknRgI8d90F8QL761oI8iQeJqvUOGnAoEkgNblF13iiJASZCwhLkG+v7/Halvt5+enr7x+02lZOwKymJ7jMAXK32RxaXnNxfXzCOkCxTO2I3NiR0i9gAjQLLoVHkKG8pCi0UT4Q0h5xUFIlBJEYmg+1yg6TrUq+YfEWKK0lWsSS8+DkNvCWtvJXu0UbDyH/NYjoDHFybPd/cPeficiW5LvkVdBNY4UoIqOQMwPBXm9vUYIVCj3GkXCCo1tRS//uMhYoVG3q46HaBQtamESTs/+0o92hOTaBbqjBwpu8reCuzAP4rkXpQBzQwbhZxD7jNYEAS4CI2Rg4hLitPUor2hGh6j4hQ5FfWt8LQF+SwyJIpGUV05nu56VHqJhR8ybb+Q+/dnPYZYSigIICvY3xfYxCckz/qazprjDiFJ+5DWVwscaMpSDgkleI2uutaKk5kPFNTqO8pBDlBQZEqKvoJXp7+lxzx7Cuoqp2M7zlrm5JbH/9oZ/GLdzBGf9FNmmvPi+h2FXnm8L5WhdCMJNyr1D6yvKP1rFQYgSjWpteE0JMraEME8ykpzo/0/+wcg5yGHMooegQYIRyXU1i52tCSfn9oSQFH+Fe4jypxs3RHA+xNCcNUZ+BXRg7iu0lhgDAesisSfE6UA0iudz9sNHKChek5eBX9a+FwKkKQ+Nd6JljkLX6B4x2L8hhHOsVdhR4iHEEe1LeWJCSI2tCo9AU3OIKHGgbupv6NvyRciGgMzPPLP5LmhPdKTx8qgSWIXxVkZx8QJihmCvPP8nE6IRXniKT9GThhKF0QkZal3KQYcLgn+s8YwWJiNnLVL4mOz1b+4piM8/+YYb8xNlLoASXqC7c9DCOokhl4RAKgSkCNM9wklBOPL4BIJoblQggsb8Km9W/IlIJkKrPN4xEETPwtS3hczrp8//pxmzpoUIBfeSO8r8/OE59wgTIsnIb4yBj7Cft6pYI8Sbh5TBD749IANSlKPgJQQmrr0uUfjbCnlV/V9OCfLpDc9b0nw4x3bznAbWFAyfUeBLEIhA3uaCKifFyUBg8pg+Ro8nOCVOintKoy0xj5bFvhNCQMAfoUqgc8UwMRot8dWy/qPcDHQk5XkgOPD97//Gl/xC2kKlkhl2V4pMQmAON+22E+4XgIzMKYMSmp7S0ymTcpYEYM6eVjKlJV25HgYguZ6lD1hR4S4byoxRwMUQjm87MYVxrW19nCqbgTD4kSEde7FlxcF4tKDCPu41lBUKa7tjgGuHJuPCwpBPdcONuVTiMEMgbPpugJE0+GIRusL+yD9qGhrP05ClFHfOuppZeV4ZkgyJdJc3dkxh0+8YDBpbsyuxrXYzV4VfmJLFwxdAEq7azIj9Yw9AuUCjEL3I7pD1xgo0BPv5Y2U9MCBvegpGxq9/vK7BftOQssP3ueL+HfJwLkAqVLlgPH9CF7phgMoKj/X8EjiNCtGQHzFU9mM7gsR8W/5wkuZ9ZUKBcYuWdE3qU2YYqLIllfo5aog2m2haKnlsvP30YUHO+3f9Yu2GrNpW2rYV8id2bM/9KxBPc/QgZQT9AlotQRtgSls1pIDADvo+3hL0bXBU0yxqG4Fx2ZshdXSBaEjZYtIdh/uxQDOrpMV/Biatjj8nzRgq8p0Ud6w9fAwwe+9mSJPWUMWzPG+A21ZWG45nhoQp1RdaBZ1WYDteUQ4gffvH1jomTHlkxk9GTDi5AS0YAODxMoRjMiqsjq/MyqvFFJX9buv6+18Y8mwDyFRH7Dj+T1rBtYivRV1v9mHtiKhfD10QrRFdsxor9Z4bgChAtF22fLsv1sfsGL4B0grazi9DygpagZ0A2s2WBMBmLn0de15D11KG5WSAvh20rB92fEIVwk0jdV2qPdyWr4mYuw75NMua7FFtmZxbkN7qi4DSFgaqQjc75GwDwbgBMkMMAPfD6cR1wpl1o7GftDhMMSPaFmm05+Tv/HWW9aQXbMfiBAZ4cNLdnz6hyAyj7ki9oQYYqdYd4h405JRwXs4DhLKozKhzG65449eQ4i5nX2LKXYjCVDcWF58Y0uJvj2EpY2VN79NzjHlVF8E1M2JZxOzW62rIEhhlywoAMMhrS8dFBJhgMJx5aRxg/fv9rSW9WN7LeQxZPn4bo6ExYgppsWNkQIt2pOAU8DAK8Oh/yK7ECM8pCAboJDTRFNsJQ3ZkBdtFXgV+A5qAEasl4sk2WxjOzn9PY6sZ1ZxJD/p9FMwoc1pjLNhEbLd2eX2Kpv6Y+aSCn8OUxhqyGBOwS9fxUiwDPIXfZw2JeNs+hS2/2R6r2Lfv+S/ivt3PG7eHh3S/52EDDD0j5h9rStliJiQLc5/fW9wP0PNcfB77nmVpX6Js2WaOQwb9OrXLJ9UMz7UmuJaAQj7fjxi6V97wIGftsqVMwcGZN2ZTL30fr7IYkL4xpG/9Y9bV677pUYXfrHk5tzuvoS1aRPX9ScV+3+Mn1FU7YMR6GT8LEP38xs2OyzVZRjIz9mWrIV2lTYo6LLk3BKXGKCM47jycKCb4zb4GzBi0g3Ec0a9OsBVQQsp+YwTjo+Mr9C/MQluIJmIkYYvvzpL2RhuiKT1uttTrK+q74p8siUsR64/nlS3XedcfZgY6kfUsv/FOUZfOlwGTfjyPCxjrRDbCvMLr4vCc9kN26pBR7H8KuW0wHZrkYCzj2+z5WbPCoZM2rISeEwop48KRZdhiPtmYLXNSyZs91YAeH06dow/Vpg3o+W9a/hbgPI5jTnvdx5YxZUbrCY1V7De22qProHXrDL/9B8dlHIuM3QQqUxL7d/pLyyqrzKlV6/2O/F/GBXP6ochjYdiKvQ4saA1ddlTvY/bEkY9Wa1iLkEN2JVavOhxHRlvqMF/XAnEVOJgXy3fAhCgY0N8bC0Nnpl8Lw/bt2LnCnsENO6o5r7bMcn2hONzQswSK2WVbphBy2kcjGqqWNRJQfU6ALwFgHTlo41pWWaE+O4V2zuhYZ1jYinTnvVmcC0Oclck+MgTH1jZU9Ty/VWaUIS42JwFPpkiWyDiZafZDygiJTseTIrc/g5v1qYQ6kgVnT48A+bztNN774MD2U8kDphjxaP18nyGzZBGUh7Y9L1uGvIp6Mq3EePVl7Xxf2/pE9gWI2KTFX2J3xx8Z0jWvnv+VhaG6tr8vkccerdTfdvhaXzTlLUM8t6HNIa9a4DfuDYgCWEaUCQ5jBcz2YI43lgqsrRi21F+pRThPhW5NvqLDK0Nw5E7RV7DKjDreX69/ZVY14wGQ8+HN733OxHGci9MKTBlkMNCSMqJA/udFzgg5IWqXKW9pbwvDu9VxFIjREGtHAS1w7rs4bcXtpIEV1t7H9QdgfmPIGrTmKDAW+gmIFHxNaRl3iCKEvYcsjuPAgTEzQ5zO2SHY3q+FX98oqti8casANPRxL19nx34JWZ9XQJ4r+uOLpmwxZxGyZF8Bcb9lf+dUR0zZgjwCigMKmGltbXG/SzZmUzQlxzMzGCdcmVUDEH3OijXp7k5StNVSh7xnV6Nju98+MaTMaMjK+b7xCy2gD1vk+G54eVxM6PEzM2TLqjJk3IdR/4iG7RSF+y1klQk4jqGvb/h4n6TBQwHZ77GYE0alLzZOTOl1+ShiFvUyBYRJIvSC1PFPfYemMoW+EpWXtaznArCLitWSnX6BKnPOLkTWIT/3vB3SEFemqF+m0Bh7ZIoY13m7IfmhfyxNzsu90j/f65Bn5hSoMSHIvPE+nptWAKesbWRY6xJax/NG30AnvS4AAPkVEOuDmHBk3KJ+dsewIt41+3t8+kqRB85Sy82QAmZmpGrfGnfqejZrKlP8Rv+GIZ0nnWi/Ys74kWzs6Ly7INTfYvA4CshcGL6wpSJ8I1/GtLCs9ji0lQG+vgzBOkmInRh2a0Y1If0DYPmr5vTPwIv9hCWPXyBcjUGL+n+PhWEdL9Rhi390Wv2lxeHRjGZbYR0Os7DWgb0f15VVzPd5XVcgClAZ41se8uE/3efT7Eq7oQXk7xpSB3NcrfAYzGmFLUAL1MwYtabPjBeYXhcAAGolA3vSjJkZ88Zdx6+/pzrEaf35x9XeODgANYTlPox167cOfmJMAbnv4+1QGNA6pAwpg8qInhdAPa4GFTjrKQi5XSAsjrsf0qWSb3sjm+M4vQz5fNEaA1TGTMxo9vVu2wIATgWozlfavegXZJ7h/+3dYY7cOA7F8VQnu/e/5u4dtnqRwThD/KA/ywU0Jl9GQGCZkl0yHx9JSW4nGPRxKXuA8RzG/BygfJchBtujW5Ipzso9R5HGA998fC7MCMX2kYyrC+mrwd9z7+n5ZIMM9bODV8kYUjuEoeTPAyPemVxq0feB+cJ/xJYuKj3qFoL3r0khi4uHLEvLJwitTGlA4pz734whA7A+ElO05MEer2vLt9hPRgoQcVQmBUM6oNf7VxPlOXudyl7AYEI3Yk0z4TOYxXyEVDliCvOZp+NH8cmAEXNmevVk1p7fpr89MZyKP1l9xZIXzPmIdPmkkLlrqEL8bpbu8XUBJOTT+psdPAvPMV1LAnOlvgkIfyPoPsjxMxquUV2ncX/do65KmSvOriY70XSF2OecL0A7Yf08eYKMJeiHuFq7hE+A2V3WUGgE7sEKGHFjTuNKwAfp8HPGLRUA4N+GAv8QaOkqr91Yl9E+ActMDb059ktX92PIolQB+Hx9Ta9voeB8y/4A9mmCqjyzMvY5PhjHMchf7REHZNH15xSTIfafLss/R2hABEKmtPK5VwPszNms7xOwLB8VM5RrqZbprier+Ei/cncBZYzxQkCaIdv+uUvr9Mm3ViKmPIwBk0GAL7N0mRFjWh6z/+d0oRrAVGTMMSZwMwP9dOvW6077IcWUufB3cjnXUspxM2l+YvZwf2PHtFI+vEm/YMbhvGIJ/SI7Q4kyJGJVsk9mjIniD7Os27GEPjLiaLE323Nyimu85GXtMhM3kvs3F8BPsr+NISPNpR0WhKuaxvkSkIeu5PpW1rWqSrvnMqn+nvE4TxkymeA5zOnzcZnn34whtD281rb511sX+5mTPGVmrWWZP1vPd31Xix+gvMGcEwO9RycRvdFm7DH1TMB1VbqnQ1enDMYUWfNwtRelN1Nc32KVuIBA3qlxj6GMpZlhPYB4VIzyt4JhFyN+nXs/FH8vy5p7HlMZIjwyiGNGtCluDOrElNXKG+gEeAcw5j4HVygTbBf4qfTt/V7rP+YX5a7B+S1FFxFBvSeMs06/zfVk3f0Zf98gbJJge9WV6bKW9hP7vG8EeHcMUYxKOLkvY4D+WoDGMQO9TAt31oC2mysDAqhwaWBmf5iTACADEPZDZMJunYJG8NU9IburyOhztPgyjOt4igUE+3xW2SCYm7IFPQJ6z9SvclKKD6tchS0uyz4F/gocYDcjPLaRnTBIVzaex+Mp/pxiyXMAknvq5bZOR/vLBhX0oH8r/v6xx6d27x8FAgU3a2RixRCSooshjxUQPyV+zGooKD+PBUSwLmVfAWa09bOgZ9zQAwZMr/AcR1n10mWlHzaoNrv6WAogdazY9iXHUalOt+8FsJ8nt49rHYAMlxWAzBRYBWbATdkAVIujr22vLNd4Z+Z253pdh8quMQuMCp4NHUcA5PjWieDAjqByANJ1gRV0AcQ0yfioe6Rpldm2M6d/WuVHW7isUJ5lUV4yQ5mgC2y4SYGq/t5vjU8b4xmDynxo/TIi6iX7fgRk/ueQbrSMPY+rbrawAlfgFLA1nylSAHRbbjDj/n36ehk8ZBPome5eRZfV8w/lo+hK7Huso1TqgDkskvoat+L/X3QsGoDM2tHouKDcJmPWeT9kobMvXc+dwrkOhtJeK/Nm/XEXaCx01ssAWtc99rUOAJ6Uu/srhrQyWgn2g4K6GOvZL5TBwwSA742/x7ijZF3F7tfNUi7Lh5grvwbisoxwYReZamaf9VC8cWhVsAuV4Y5oYyaNcdAuoPa1TcPQZX3v/y16+N55kyFTGQIxNLcDpwIvFKe7cU7keHd2VMxrhR+Y+WXnx+xsrPbm4Mf+eTMn1mYGaFrjptDj/ZmkmjaXVWv19slxkTXJynCvnIdL8zdZOnn83A9ZFSTAB4VsSpGmyipunCjuGN9liwzZs8ddwQVEyzeyuGPYD7APuOS6o7aO9xWo/P3fbrnF8e5y2+7Lnamvyg8GKNeKog2m2NaW+SjwLCQhlr5/M6DamjnNlAbJLKtBaQZU226Ru2KbCe+Ph6Tk3THb/v5zaRQ7yz4M6usa1HywJU50n+7bgb4Z0sC2XIa8P56+JvvuWHTaa6kgbLn7ELvV9bU76A0+hpTKuh3PoryDwKvrflwx5F/1IMaK9wrK+h3ltf/+bb8d5d8/XdZ//txS/N9hxfdvGNg/ZQT1//4fih7V/hdi/qwAAAAASUVORK5CYII=");
  background-size: contain;
  cursor: crosshair;
  float: left;
}
colorpicker-saturation i {
  display: block;
  height: 7px;
  width: 7px;
  border: 1px solid #000;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  margin: -4px 0 0 -4px;
}
colorpicker-saturation i::after {
  content: '';
  display: block;
  height: 7px;
  width: 7px;
  border: 1px solid #fff;
  border-radius: 5px;
}
colorpicker-hue,
colorpicker-alpha {
  width: 15px;
  height: 100px;
  float: left;
  cursor: row-resize;
  margin-left: 4px;
  margin-bottom: 4px;
}
colorpicker-hue i,
colorpicker-alpha i {
  display: block;
  height: 2px;
  background: #000;
  border-top: 1px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: -1px;
}
colorpicker-hue {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABkCAMAAABw8qpSAAABLFBMVEUA/z8AuP//JAAA/33/3AAA/1ABAv8A/7r/AH7/jgD2AP8A//j/AEHmAP/XAP/HAP+4AP//ALyoAP+aAP+JAP97AP9rAP9cAP9MAP8+AP8tAP8fAP8PAP8ATv//AG7/cAD/vgD/APoAmv//ADH/AKwB/wMA5//4Eg4AL///AOr/UQD/nwAA/27/7AAA/+kAe/8Ayf8A/5sA/zEA/6z/ABEAEP8A/17/MgAA/9n/ACL/gAD/AJ0AXP8Aqv//AMoA/yHqFBb/zAD/AGD/ANsA9//1/wDk/wDV/wDF/wC3/wD/AI2m/wD/FACY/wCI/wB5/wBp/wD/YgBb/wBK/wA8/wAs/wAd/wAN/wAAPv8A/xH/AFAAi///rQAA/8r/+gAA1///QwAAH/8Abf8A/43c/JNGAAAAiUlEQVR4AQXBg2EDAAAAsMy2bds2ttp2+/8PTby79mDLsKJPq/oFPdk24dWXAxsGjRg1ZtykKdNmzJozb8GiJct63WjYl7fiWdOZkk0vOpyr2fVtyKl7FX2uXGjpcuxWDy69KdiRk5WRlpIUFxMVERLw78+vH1Unun1YV3ZkwKM1CYfq7nQK22sD03ITV2Aqp0IAAAAASUVORK5CYII=");
  background-size: contain;
}
colorpicker-alpha {
  display: none;
}
colorpicker-alpha,
.colorpicker-color {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAABkCAMAAACIElGlAAADAFBMVEUAAADT09PT09P////T09P////e3t7q6urT09Px8fHT09P////////T09PT09P////////T09PT09P////////////T09PT09P////////////T09P////T09PT09PT09P////T09PT09P////////////////T09P////T09PT09P////T09PT09PT09PT09PT09PT09P////T09P////T09PT09P////////////T09P////T09P////////////T09PT09P////T09P////////////////////T09P////////T09PT09P////////////////////////T09PT09P////////////////////////T09PT09P////T09PT09P////////T09P////////////T09P////////T09P////T09P////T09P////T09PT09PT09PT09P////T09PT09PT09PT09PT09PT09P////T09P////T09PT09P////////////T09PT09PT09P////T09PT09PT09PT09PT09PT09PT09P////////////////T09PT09P////////////T09P////////T09P////T09PT09PT09P////////T09P////////T09P////T09PT09P////////////////T09PT09PT09PT09P////T09PT09PT09PT09PT09PT09PT09P////T09P////T09PT09PT09PT09PT09P////////////////////////////////////T09P////T09P////T09P////T09PT09P////////////T09P////T09P////T09P////////////T09PT09P////////////////T09PT09P////T09P////T09PT09P////T09P////T09PT09P////T09PT09PT09PT09P////T09PT09P////////////T09PT09P////T09P////////T09MQsm1FAAABAHRSTlMAgJN8/vcDAfcCnJyGaZmZlomGk4yJOmM/eTxs8wY0YDFC7HNdLx18n5/7aUvzCcW9+qKiK8P0ZiltRwfdw/n8Px3WduJjItj78ss5PDHUNELbwP5wplA2FglEVwvkqNarCs4Z7b2sDLgQ0xNdyLrr0eLLUeW1Vs5TWQLwjPI3ZvQGdvxFyFrAeevaLCLvGd0kpRskGyf4qK605xKvFrGyDRHnBYMEkJaDkIBvB/gpH99O6CrbIC4nH3Lg2SXp4A7Qul/GDEgPSlMQ6LjqFU0SjyCCj5V/gnBN7xglL3O70WBU7gjFFEfft0sPTo1ndRipwXr2yRemWRVENq+ytbGuxGaWGQAAAnpJREFUeNpNxmdcDHAAxvEHOWXvmXX23ntv2XvvMg/Z44x0KaRBSnfcKSqlnYZKp1QqGpT20KZh783/eePj+3vzw3/q/AM9iURPTy6XS+RwcXNzcZMQTE1dTE3bE7y9S0u9xxD600rCGtpI2ErOsbGxzoiMrIqscnaOi4vDdnp4XYSrguwxQSb7KpMllycnl2MFaTSaTxrY5NrY5BoKb2BnZ2doZ29vb2OPSdSd4Bcc7OcXGhqamgqrYCsrq+mEiEtC3gUBDg55Dg53IkQYSYG+gb6+GEqB5wV0o5D8/JAQdKK5hA40n3BS+L6c0JJmE+ZQW8JEak1YQJ0Jq+jbaQEPnotGE+IrK+Pj+xKqU6pTUrIDAgKysZ+WEY5QQkJxcQIO0WrCUbL4YmFhgZ3UlVAUHR1d1JEwjVoRRpDJKxMTE/ShBoRR1I6whLyyvLyyUFAQFhbWhTCFFArFawXOCu/bEHpQLYKnZ0aGZw2CR1qah0dmpqurK+pTU0ILakJoTi+PC7j5RHTrqQg1qRkh3T3d3b0xoSE1ItSleoSe1IswmIYQPl8UlhLWkaOj41tHbKENBLX6j1qt/KFUKnFN+Onk9NvJCQdJpfqlUqGiIjExcRthN91/JsJmGkhYRO/OCBhHwwgxMWUxZQMIu8j8o7m5OfbRLMJh2kTYQ1FRhYVR2EHzCOtpMmEG3SUsJEvLoKAg2Prb2tqOJYSH+/uH33shwlTaS1hLBwhX6AYX2tuiRwStVntOa5yUZJwEqbREKjUi5Bjl5BhZW1uXWOMYGRBOnNDX1zfoxz1FwwkfSJfgo6vr41P7soBBNJ7Qm2YSzHTMzMwmEHRoMf0Fm5mYOUrzNBYAAAAASUVORK5CYII=");
  background-size: 10px 100%;
}
.colorpicker {
  top: 0;
  left: 0;
  z-index: 99999;
  display: none;
}
.colorpicker colorpicker-hue,
.colorpicker colorpicker-alpha,
.colorpicker colorpicker-saturation {
  position: relative;
}
.colorpicker input {
  width: 100px;
  font-size: 11px;
  color: #000;
  background-color: #fff;
}
.colorpicker.alpha {
  min-width: 140px;
}
.colorpicker.alpha colorpicker-alpha {
  display: block;
}
.colorpicker.dropdown {
  position: absolute;
}
.colorpicker.colorpicker-fixed-position {
  position: fixed;
}
.colorpicker .dropdown-menu::after,
.colorpicker .dropdown-menu::before {
  content: '';
  display: inline-block;
  position: absolute;
}
.colorpicker .dropdown-menu::after {
  clear: both;
  border: 6px solid transparent;
  top: -5px;
  left: 7px;
}
.colorpicker .dropdown-menu::before {
  border: 7px solid transparent;
  top: -6px;
  left: 6px;
}
.colorpicker .dropdown-menu {
  position: static;
  top: 0;
  left: 0;
  min-width: 129px;
  padding: 4px;
  margin-top: 0;
}
.colorpicker-position-top .dropdown-menu::after {
  border-top: 6px solid #fff;
  border-bottom: 0;
  top: auto;
  bottom: -5px;
}
.colorpicker-position-top .dropdown-menu::before {
  border-top: 7px solid rgba(0, 0, 0, 0.2);
  border-bottom: 0;
  top: auto;
  bottom: -6px;
}
.colorpicker-position-right .dropdown-menu::after {
  border-right: 6px solid #fff;
  border-left: 0;
  top: 11px;
  left: -5px;
}
.colorpicker-position-right .dropdown-menu::before {
  border-right: 7px solid rgba(0, 0, 0, 0.2);
  border-left: 0;
  top: 10px;
  left: -6px;
}
.colorpicker-position-bottom .dropdown-menu::after {
  border-bottom: 6px solid #fff;
  border-top: 0;
}
.colorpicker-position-bottom .dropdown-menu::before {
  border-bottom: 7px solid rgba(0, 0, 0, 0.2);
  border-top: 0;
}
.colorpicker-position-left .dropdown-menu::after {
  border-left: 6px solid #fff;
  border-right: 0;
  top: 11px;
  left: auto;
  right: -5px;
}
.colorpicker-position-left .dropdown-menu::before {
  border-left: 7px solid rgba(0, 0, 0, 0.2);
  border-right: 0;
  top: 10px;
  left: auto;
  right: -6px;
}
colorpicker-preview {
  display: block;
  height: 10px;
  margin: 5px 0 3px 0;
  clear: both;
  background-position: 0 100%;
}

sh-custom-color-chooser {
	display: block;
	float: left;
	margin-right: 15px;
}
sh-custom-color-chooser:last-child {
	margin-right: 0;
}
sh-custom-color-chooser.input-group-addon {
	border: none;
	background-color: transparent;
	padding: 0;
}
.custom-color-swatch {
	width: 80px;
	height: 80px;
	line-height: 80px;
	font-size: 14px;
	border-radius: 4px;
	border: solid 1px #5e5e5e;
	background-color: #d3d4d6;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	position: relative;
	cursor: pointer;
	color: white;
}
.form-input + sh-custom-color-chooser {
	float: none;
}
.form-input + sh-custom-color-chooser .custom-color-swatch {
	overflow: hidden;
	border-left: none;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	height: 32px;
	width: 32px;
}
.custom-color-swatch.empty {
	font-size: 30px;
}
.colorpicker .dropdown-menu {
	background-color: #fff;
	padding: 6px;
	border-radius: 2px;
	border: 1px solid #ccc;
}
colorpicker-preview {
	height: 0;
}
.close-colorpicker {
	height: 21px;
	width: 18px;
	margin-left: 4px;
	color: #5e5e5e;
	background-color: white;
	border: none;
	vertical-align: bottom;
	font-size: 23px;
}
colorpicker-hue {
	margin-left: 4px;
	margin-bottom: 4px;
}
colorpicker-hue,
colorpicker-alpha {
	width: 18px;
}

sh-dashboard .embed {
	margin-top: 15px;
	margin-right: 15px;
	display: inline-block;
}
sh-dashboard iframe {
	border: none;
}

sh-data-table {
	display: block;
}
sh-data-table.autowidth {
	display: inline-block;
}
sh-data-table .actions {
	white-space: nowrap;
}
sh-data-table .checkbox .faux-checkbox {
	display: inline-block;
	margin: -13px -12px 0 20px;
}
.avatar-default {
	border: 2px solid #9a9a9a;
	border-radius: 16px;
	width: 32px;
	height: 32px;
	text-align: center;
	color: #9a9a9a;
	font-weight: bold;
	font-family: Roboto, Helvetica, Arial, sans-serif;
	/* center the letters inside the circle */
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #ffffff;
}

sh-pagination {
	display: block;
}
.std-table + sh-pagination {
	margin-top: 20px;
}
sh-pagination ul {
	list-style-type: none;
	-webkit-margin-before: 0;
	-webkit-margin-after: 0;
	-webkit-padding-start: 0;
}
sh-pagination.centered {
	text-align: center;
}
sh-pagination.centered ul {
	display: inline-block;
}
sh-pagination li {
	margin: 0;
	padding: 0;
	float: left;
	border-width: 1px;
	border-style: solid;
}
sh-pagination li.page-num {
	border-left-width: 0;
}
sh-pagination .page-prev {
	border-radius: 4px 0 0 4px;
}
sh-pagination .page-next {
	border-radius: 0 4px 4px 0;
	border-left-width: 0;
}
sh-pagination a {
	display: inline-block;
	height: 32px;
	min-width: 32px;
	text-align: center;
	line-height: 32px;
	font-weight: bold;
	padding: 0 4px;
	cursor: pointer;
}
sh-pagination .active a,
sh-pagination .active a:hover {
	color: white;
}
sh-pagination .disabled a,
sh-pagination .disabled a:hover {
	color: #aaa;
	cursor: not-allowed;
}
sh-pagination .disabled,
sh-pagination .disabled:hover {
	border-top-color: #aaa;
	border-bottom-color: #aaa;
}
sh-pagination .page-prev.disabled {
	border-left-color: #aaa;
}
sh-pagination .page-next.disabled {
	border-right-color: #aaa;
}

sh-sort .active {
	color: #333333;
	font-weight: bold;
}
sh-sort .icons {
	font-size: 20px;
	vertical-align: bottom;
	display: inline-block;
}
sh-sort .sort-field {
	position: relative;
	display: inline-block;
	margin-right: 20px;
	cursor: pointer;
}
sh-sort .icon-arrow-up2 {
	position: absolute;
	top: -6px;
	right: -21px;
}
sh-sort .icon-arrow-down {
	position: absolute;
	top: 2px;
	right: -21px;
}
sh-sort .disabled {
	cursor: not-allowed;
}
sh-sort .disabled .icons:not(.active) {
	color: transparent;
}

/* prefix all selectors with .sh-date-picker */
.sh-date-picker {
	position: relative;
	display: inline-block;
}
/* trigger button */
.sh-date-picker .btn-trigger {
	-webkit-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}
.std-table-filters sh-date-range-picker {
	display: inline-block;
}
.std-table-filters .sh-date-picker .btn-trigger,
.admin-filters .sh-date-picker .btn-trigger {
	border: 1px solid #5e5e5e;
	color: #333333;
}
/* range picker popup */
.sh-date-picker .pop-up {
	position: absolute;
	padding: 8px 0 8px 8px;
	border: 1px solid #adb3b6;
	border-radius: 5px;
	display: inline-block;
	background-color: #fafafa;
	width: 664px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.38);
}
/* vertical alignment of picker */
.sh-date-picker .pop-up.pop-bottom {
	top: 35px;
}
.sh-date-picker .pop-up.pop-top {
	bottom: 40px;
}
/* horizontal alignment of picker */
.sh-date-picker .pop-up.pop-left {
	left: 0;
}
.sh-date-picker .pop-up.pop-center {
	left: -66.6%;
}
.sh-date-picker .pop-up.pop-right {
	right: 0;
}
/* stem */
.sh-date-picker .pop-up:after {
	content: '';
	position: absolute;
	background: #fafafa;
	border-top: 1px solid #adb3b6;
	border-right: 1px solid #adb3b6;
	height: 11px;
	width: 11px;
}
/* vertical alignment of stem */
.sh-date-picker .pop-up.pop-bottom:after {
	top: -6px;
	transform: rotate(-45deg);
}
.sh-date-picker .pop-up.pop-top:after {
	bottom: -6px;
	transform: rotate(135deg);
}
/* horizontal alignment of stem */
.sh-date-picker .pop-up.pop-left:after {
	left: 11px;
}
.sh-date-picker .pop-up.pop-center:after {
	left: 50%;
}
.sh-date-picker .pop-up.pop-right:after {
	right: 11px;
}
/* date inputs */
.sh-date-picker .date-inputs {
	margin-bottom: 4px;
}
.sh-date-picker .date-inputs > * {
	vertical-align: middle;
	display: inline-block;
}
.sh-date-picker .date-input-label {
	font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif;
	color: #adb3b6;
	text-transform: uppercase;
	width: 38px;
}
.sh-date-picker .date-input-to {
	text-align: right;
	margin-right: 2px;
}
.sh-date-picker .date-inputs .form-input {
	font-weight: normal;
	border: 1px solid #ddd;
	width: 198px;
	margin: 0;
}
.sh-date-picker .date-inputs .form-input:focus {
	border: 1px solid #777;
	color: #333333;
}
/* apply and cancel buttons */
.sh-date-picker .btn.range-btn {
	display: inline-block;
	margin: 0 4px 0 0;
	font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif;
	width: 80px;
}
.sh-date-picker .btn.range-apply {
	background-color: #357ebd;
	color: white;
	margin-left: 8px;
}
.sh-date-picker .range-apply:hover {
	background-color: #1e66a3;
	color: white;
}
.sh-date-picker .btn.range-cancel {
	background-color: white;
	color: #333;
	border: 1px solid #ddd;
	margin-right: 0;
}
.sh-date-picker .btn.range-cancel:hover {
	border-color: #bbb;
}
/* calendar icons inside inputs */
.sh-date-picker .date-inputs .icons {
	color: #a7a7a7;
	font-size: 18px;
	top: 7px;
}
/* calendars */
.sh-date-picker .calendars {
	float: left;
	padding: 8px 4px 4px 4px;
	border: 1px solid #ddd;
	border-radius: 5px;
	background-color: white;
}
.sh-date-picker .calendar {
	float: left;
	-webkit-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}
.sh-date-picker .calendar-start {
	margin-right: 16px;
}
.sh-date-picker .day-name,
.sh-date-picker .day-num {
	width: 32px;
	height: 28px;
	vertical-align: middle;
	text-align: center;
}
.sh-date-picker .weekend {
	color: #a0a0a0;
}
.sh-date-picker .today .day-cell {
	border: 1px solid #bdbdbd;
	border-radius: 50%;
	width: 26px;
	height: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.sh-date-picker .day-num {
	cursor: pointer;
}
.sh-date-picker .grabbing .day-num {
	cursor: grabbing;
}
.sh-date-picker .context {
	opacity: 0.2;
}
.sh-date-picker .in-selection,
.sh-date-picker .in-range {
	background-color: #ebf4f8;
}
.sh-date-picker .day-num:hover {
	background-color: #eee;
}
.sh-date-picker .day-num.start-of-range {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	background-color: #357ebd;
	color: white;
}
.sh-date-picker .day-num.end-of-range {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	background-color: #357ebd;
	color: white;
}
.sh-date-picker .month-name,
.sh-date-picker .month-nav {
	font-weight: bold;
	font-size: 15px;
	text-align: center;
}
.sh-date-picker .month-nav {
	cursor: pointer;
}
/* presets */
.sh-date-picker .presets {
	float: left;
	width: 164px;
	margin-left: 8px;
}
.sh-date-picker .presets label {
	font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif;
	color: #adb3b6;
	display: block;
	margin-bottom: 2px;
	text-transform: uppercase;
}
.sh-date-picker .preset {
	margin-bottom: 4px;
	display: block;
	background-color: #9facb2;
	color: white;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 13px;
}
.sh-date-picker .preset:hover {
	background-color: #85959e;
	color: white;
}

sh-date-picker .iconned-wrapper.ico-left > .form-input {
	padding-left: 2.3em;
}
sh-date-picker .sh-date-picker .pop-up {
	width: 253px;
}
sh-date-picker .sh-date-picker .pop-up.has-time-pickers {
	width: 496px;
}
sh-date-picker .sh-date-picker .presets {
	width: 232px;
}
sh-date-picker .close-pop-up {
	float: right;
	color: #5e5e5e;
}
sh-date-picker .close-pop-up:hover {
	color: #333333;
}
sh-date-picker .time-dropdowns {
	margin-top: 30px;
}
sh-date-picker .time-dropdowns th {
	font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	font-size: 13px;
}
sh-date-picker .time-dropdowns select {
	width: 75px;
}
sh-date-picker .time-dropdowns td {
	padding-right: 3px;
}

.iconned-wrapper {
	position: relative;
	display: inline-block;
}
.iconned-wrapper.ico-right {
	width: 100%;
}
.iconned-wrapper > .icons {
	position: absolute;
	top: 5px;
	pointer-events: none;
	color: #5e5e5e;
	font-size: 21px;
}
.iconned-wrapper > .icon-cancel-circle {
	pointer-events: auto;
	color: #adb3b6;
	font-size: 17px;
	top: 7px;
	right: 0.45em !important;
}
.iconned-wrapper.ico-right > .icons {
	right: 0.3em;
}
.iconned-wrapper.ico-left > .icons {
	left: 0.3em;
}
.iconned-wrapper.ico-right > .form-input {
	padding-right: 2em;
}
.iconned-wrapper.ico-left > .form-input {
	padding-left: 2em;
}


sh-editable-field,
sh-editable-field form {
	display: inline;
	margin-left: 0.25em;
}
.editable-field-label {
	font-size: 16px;
}
sh-editable-field .icons {
	opacity: 0.5;
}
sh-editable-field:hover .icons {
	opacity: 1;
}
sh-editable-field .text-and-icon {
	cursor: pointer;
}

sh-email-post-clicks {
	display: block;
}
sh-email-post-clicks .percent-overlay {
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #333333;
	background-color: rgba(220, 220, 220, 0.92);
	height: 90px;
	width: 90px;
	border-radius: 50%;
	border: 1px solid rgba(150, 150, 150, 0.33);
	text-align: center;
	position: absolute;
	top: 28px;
	left: 10px;
	overflow: hidden;
	z-index: 1;
	visibility: hidden;
}
sh-email-post-clicks .percent-overlay-figure {
	font-size: 30px;
}
sh-email-post-clicks .percent-overlay-link {
	cursor: pointer;
}
/* have to make circles smaller if condensed layout */
.condensed-email-report-container sh-email-post-clicks .percent-overlay {
	width: 55px;
	height: 55px;
}
.condensed-email-report-container sh-email-post-clicks .percent-overlay-figure {
	font-size: 17px;
}
.condensed-email-report-container sh-email-post-clicks .percent-overlay-link {
	font-size: 13px;
}
sh-email-post-clicks .preview-overlay {
	background: rgba(248, 248, 248, 0.95);
	border: 1px solid #adb3b6;
	overflow: auto;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	padding: 10px;
}
sh-email-post-clicks .preview-close {
	color: #adb3b6;
	cursor: pointer;
	float: right;
}
sh-email-post-clicks .first-details-header {
	margin-top: 0;
}
sh-email-post-clicks .email-html h1,
sh-email-post-clicks .email-html h2,
sh-email-post-clicks .email-html h3,
sh-email-post-clicks .email-html h4,
sh-email-post-clicks .email-html h5,
sh-email-post-clicks .email-html h6 {
	margin: 0;
}

sh-post-history {
	display: block;
	margin-bottom: 16px;
	width: 100%;
}
sh-post-history .post-user-interactions {
	font-size: 14px;
}
sh-post-history .user-interaction {
	padding: 8px;
	margin: 0 -8px;
	background-color: transparent;
	transition: background-color 400ms ease-in-out;
}
sh-post-history .user-interaction.just-added {
	background-color: #e1f3de;
}
sh-post-history .user-interaction .interaction-modify {
	display: none;
}
sh-post-history .user-interaction:hover .interaction-modify {
	display: inline;
}
sh-post-history .user-interaction .icons {
	font-size: 14px;
	color: #adb3b6;
	margin-right: 2px;
}
sh-post-history .interaction-date {
	color: #adb3b6;
}
sh-post-history .toggle-show-more {
	text-align: center;
}
sh-post-history .add-comment-form {
	margin-bottom: 16px;
}
sh-post-history .post-user-interactions img {
	height: 16px;
}
sh-post-history .row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	margin-top: 5px;
}

sh-post-history .column {
	display: flex;
	flex-direction: column;
	flex-basis: 100%;
	flex: 1;
	padding: 5px;
}

sh-post-history .column-seperator {
	border-left: 2px dotted #d3d4d6;
	padding-left: 15px;
}

sh-post-history .private-comment-seperator {
	border-bottom: 1px solid #d3d4d6;
	padding: 5px;
}

sh-post-history .comment-reply {
	cursor: pointer;
}

sh-embed-edit {
	display: block;
}
sh-embed-edit .form-and-preview {
	display: flex;
}
sh-embed-edit .form-table {
	width: 500px;
}
sh-embed-edit .embed-gutter {
	margin-left: 25px;
	padding: 20px;
	border: 1px solid #adb3b6;
}
sh-embed-edit .embed-gutter h2 {
	margin-top: 0;
}
sh-embed-edit .preview-title h2 {
	margin: 0;
}
sh-embed-edit .preview-title {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
sh-embed-edit .embed-gutter iframe {
	margin-top: 10px;
	border: 1px solid #d3d4d6;
}
sh-embed-edit .actions td {
	padding-top: 15px;
	text-align: right;
}
sh-embed-edit pre {
	margin: 15px 0 0 0;
	font-family: Monaco, 'Bitstream Vera Sans Mono', Consolas, monospace;
	padding: 15px;
	border: 1px solid #d3d4d6;
	background-color: #fafafa;
}
sh-embed-edit .embed-area {
	margin-top: 20px;
}
sh-embed-edit .embed-string-options {
	display: flex;
	align-items: center;
}
sh-embed-edit .embed-string-options > * {
	margin: 0 40px 0 0;
}
sh-embed-edit .embed-string-options label {
	display: inline-block;
	margin-right: 20px;
}

sh-embed-listing {
	display: block;
}
sh-embed-listing .std-table {
	margin-top: 20px;
}

sh-embed-power-bi .embed-container {
	background: url(/assets/img/loader-responsive-light.gif) no-repeat 50% 50% / 32px 32px;
	display: inline-block;
}

sh-embed-tableau .embed-container {
	background: url(/assets/img/loader-responsive-light.gif) no-repeat 50% 50% / 32px 32px;
	display: inline-block;
}

sh-error-screen {
	display: block;
}
sh-error-screen .screen {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #fafafa;
	display: flex;
	align-items: center;
	justify-content: center;
}
sh-error-screen .screen-content {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 67%;
}
sh-error-screen .screen-content > * {
	display: block;
	margin-bottom: 20px;
}
sh-error-screen .details-text {
	margin: 0 auto;
	padding: 15px;
	width: 100%;
	border: 1px solid #adb3b6;
	background-color: white;
	font:
		12px/1.1 Monaco,
		'Bitstream Vera Sans Mono',
		Consolas,
		'Courier New',
		monospace;
	max-height: 60vh;
	overflow: auto;
}
sh-error-screen h1 {
	font-weight: bold;
	font-size: 24px;
	text-transform: uppercase;
	color: #5e5e5e;
}
sh-error-screen h2 {
	font-weight: normal;
	font-size: 18px;
	line-height: 1.6;
	color: #5e5e5e;
}
sh-error-screen img {
	height: 30vh;
}
sh-error-screen .btn {
	margin-top: 20px;
}
sh-error-screen .screen-advanced-option {
	position: absolute;
	font-size: 12px;
	color: #adb3b6;
}
sh-error-screen .screen-close {
	bottom: 6px;
	left: 8px;
}
sh-error-screen .screen-details {
	bottom: 2px;
	right: 8px;
}
sh-error-screen .screen-close-x {
	font:
		20px 'Times New Roman',
		Times,
		sans-serif;
	vertical-align: middle;
}
@media (max-width: 1024px) {
	sh-error-screen .screen-content {
		width: 92%;
	}
}

sh-faux-select {
	display: inline-block;
	cursor: pointer;
}
sh-faux-select .fs-container {
	position: relative;
}
sh-faux-select .fs-chosen-area {
	background-color: white;
	border: 1px solid #5e5e5e;
	height: 32px;
	border-radius: 4px;
	font-size: 14px;
	padding: 0 15px;
	display: flex;
	align-items: center;
}
sh-faux-select .fs-container.is-open .fs-chosen-area {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}
sh-faux-select .fs-chosen {
	padding-right: 15px;
	width: 100%;
}
sh-faux-select .fs-icon {
	float: right;
	height: 16px;
}
sh-faux-select .fs-options {
	width: 100%;
	background-color: white;
	position: absolute;
	top: 30px;
	border: 1px solid #5e5e5e;
	border-top-width: 0;
}
sh-faux-select .fs-options > * {
	padding: 5px 15px;
	border-top: 1px solid #adb3b6;
}
sh-faux-select .fs-options > *:hover {
	background-color: #edeeef;
}
/* override for themes */
/* quill */
sh-faux-select .theme-quill .fs-chosen-area {
	border-color: transparent;
	height: 26px;
	padding: 0 3px 0 8px;
}
sh-faux-select .theme-quill .fs-chosen {
	padding-right: 8px;
}
sh-faux-select .theme-quill.is-open .fs-chosen-area {
	border: 1px solid #adb3b6;
	border-radius: 0;
	color: rgb(204, 204, 204);
}
sh-faux-select .theme-quill .fs-icon svg {
	width: 18px;
	height: 18px;
}
sh-faux-select .theme-quill .fs-options {
	border-color: #adb3b6;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px;
	border-top-width: 1px;
	top: 24px;
}
sh-faux-select .theme-quill .fs-options > * {
	padding: 5px 8px;
	border-top: none;
}
sh-faux-select .theme-quill .fs-options > *:hover {
	background-color: transparent;
	color: rgb(0, 102, 204);
}
/* blue */
sh-faux-select .theme-blue .fs-options > *:hover {
	background-color: #1b78ff;
	color: white;
}

sh-file-duplicates-modal {
	display: block;
}
.sh-file-duplicates-modal .dupe-announce-heading {
	padding: 10px 0 0;
}
.sh-file-duplicates-modal .dupe-file-section {
	margin-top: 10px;
	border-top: 1px solid #5e5e5e;
}
.sh-file-duplicates-modal .action-buttons {
	margin-left: 15px;
	min-width: 208px;
}
.sh-file-duplicates-modal .dupe-file-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
}
.sh-file-duplicates-modal .dupe-file-actions .file-name {
	font-weight: 600;
	word-break: break-all;
}

.filter-message-container {
	padding: 5px 36px 5px 0;
	line-height: 2;
}
.state-PostListing .filter-message-container {
	padding-top: 0;
	padding-bottom: 10px;
}
.app-mobile .filter-message-container {
	padding: 5px 25px;
}
.filter-message-reset {
	margin: 0 0 0 15px;
}
.filter-message-item {
	display: inline-block;
	margin: 0 2px;
	border-radius: 32px;
	line-height: 1.25;
	padding: 3px 15px;
	background-color: #e6e6e6;
}
.filter-message-item a {
	color: #5e5e5e;
	font-size: 16px;
	line-height: 1;
}
.filter-message-text {
	color: #5e5e5e;
}
.filter-message-text.group-start {
	margin-left: 1.5em;
}
.app-mobile .filter-message-text.group-start {
	margin-left: 0.5em;
}
.filter-message-text.group-start:first-child,
.app-mobile .filter-message-text.group-start:first-child {
	margin-left: 0;
}
.filter-message-text .has-options {
	border-bottom: 1px dotted #333333;
	cursor: pointer;
}

sh-fine-tune-checkboxes {
	display: block;
}
sh-fine-tune-checkboxes .form-input {
	margin-bottom: 4px;
}
.workflow-input-group .faux-checkbox,
.workflow-input-group .faux-radio,
sh-fine-tune-checkboxes .faux-checkbox,
sh-fine-tune-checkboxes .faux-radio {
	display: block;
	margin-left: 0.5em !important;
}
sh-fine-tune-checkboxes .show-more {
	display: block;
	margin: 13px 0;
	padding: 3px 0;
	border-top: 1px solid #d3d4d6;
	border-bottom: 1px solid #d3d4d6;
	text-align: center;
}

sh-fine-tune-multihub {
	display: block;
}
sh-fine-tune-multihub .form-input {
	margin-bottom: 4px;
}
sh-fine-tune-multihub .faux-checkbox,
sh-fine-tune-multihub .faux-radio {
	display: block;
	margin-left: 0.5em !important;
}
sh-fine-tune-multihub .type-prompt {
	color: #5e5e5e;
	padding: 10px 0;
	font-style: italic;
}

sh-fine-tune-posts {
	overflow-x: hidden;
	overflow-y: auto;
	display: block;
}
sh-fine-tune-posts .fine-tune-col {
	padding-bottom: 12px;
}
.app-hub sh-fine-tune-posts {
	max-height: 510px;
}
.app-hub .fine-tune-parent {
	position: absolute;
	background-color: #ffffff;
	padding: 20px;
	z-index: 5000;
	top: -6px;
	right: -560px;
	width: 1078px;
	border: 1px solid #d6d6d6;
	border-top: none;
}
.app-hub .fine-tune-close {
	font-size: 22px;
	color: #555;
	cursor: pointer;
	position: absolute;
	top: 20px;
	right: 20px;
}
.app-mobile sh-fine-tune-posts {
	position: fixed;
	top: 46px;
	left: 0;
	right: 0;
	bottom: 50px;
	overflow-x: hidden;
	overflow-y: auto;
	background-color: white;
	z-index: 2;
	transform: translateY(0);
	transition: transform 300ms ease-in-out;
}
.app-mobile sh-fine-tune-posts.closed {
	transform: translateY(-100vh);
}
sh-fine-tune-posts .fine-tune-collapsible {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-gap: 0.5rem;
	width: 100%;
	position: relative;
	margin-top: 12px;
	display: flex;
}
sh-fine-tune-posts .has-criteria .fine-tune-collapsible {
	position: relative;
	margin-top: 0;
}
.app-mobile sh-fine-tune-posts .fine-tune-collapsible {
	grid-template-columns: 100vw 100vw;
	width: 200vw;
	transition: transform 300ms ease-out;
}
sh-fine-tune-posts .fine-tune-collapse {
	position: absolute;
	top: 15px;
	right: 18px;
	font-size: 21px;
	color: #adb3b6;
}
sh-fine-tune-posts .fine-tune-collapse:hover {
	color: #5e5e5e;
}
sh-fine-tune-posts .date-range-display {
	color: #333333;
	border-color: #5e5e5e;
}
sh-fine-tune-posts .workflow-input-group {
	padding-bottom: 1.3em;
}
sh-fine-tune-posts .search-dates {
	margin-top: 4px;
	margin-left: 30px;
}
sh-fine-tune-posts .workflow-input-group-date {
	padding: 4px 0 0 0;
}
sh-fine-tune-posts .domains label {
	word-break: break-all;
}
sh-fine-tune-posts .filter-message-container {
	min-height: 18px;
}
sh-fine-tune-posts sh-filter-message {
	display: block;
}
sh-fine-tune-posts .filter-message {
	background-color: rgba(0, 0, 0, 0.2);
	padding: 5px 10px;
}
sh-fine-tune-posts sh-date-range {
	margin-top: 3px;
	display: block;
}
sh-fine-tune-posts .faux-radio,
sh-fine-tune-posts .faux-checkbox {
	margin-top: 0.4em;
}
sh-fine-tune-checkboxes .icon-thin-down {
	transform: translateY(2px);
	display: inline-block;
	margin-left: 3px;
}
sh-fine-tune-checkboxes .faux-checkbox {
	margin-left: 3px;
}
.app-mobile sh-fine-tune-posts .fine-tune-col {
	width: 100vw;
}
.app-hub sh-fine-tune-posts .fine-tune-col-left {
	width: auto;
	min-width: 240px;
}
.app-hub sh-fine-tune-posts .fine-tune-col-right {
	width: 100%;
	margin: 0;
}
.app-mobile sh-fine-tune-posts .fine-tune-col-right {
	padding: 12px 10px;
}
.app-hub sh-fine-tune-posts .fine-tune-col-x {
	width: auto;
	text-align: right;
}
.app-mobile sh-fine-tune-posts .fine-tune-navs {
	width: 100vw;
}
.app-hub sh-fine-tune-posts .fine-tune-details {
	width: 450px;
	padding: 18px 0;
}
.app-mobile sh-fine-tune-posts .fine-tune-details {
	width: 100vw;
}
sh-fine-tune-posts .fine-tune-back {
	margin: -12px -10px 0 -10px;
	padding: 12px 10px;
	color: #5e5e5e;
	font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif;
	font-size: 18px;
	text-transform: uppercase;
}
sh-fine-tune-posts .fine-tune-nav {
	font-size: 16px;
	padding: 9px 10px;
	border-bottom: 2px dotted #e1e1e1;
	cursor: pointer;
	transition: background-color 100ms ease-in-out;
	text-overflow: ellipsis;
	overflow: hidden;
	text-overflow: ellipsis;
}
sh-fine-tune-posts .fine-tune-nav.current {
	font-weight: bold;
}
.app-mobile sh-fine-tune-posts .fine-tune-nav {
	padding: 12px 10px;
}
sh-fine-tune-posts .used-indicator {
	opacity: 0;
	transition: opacity 700ms ease-in-out;
	margin-right: 5px;
}
sh-fine-tune-posts .used .used-indicator {
	opacity: 1;
}
sh-fine-tune-posts .open-column {
	display: none;
	float: right;
}
sh-fine-tune-posts .current .open-column {
	display: inline;
}
sh-fine-tune-posts .ft-nav-icon {
	margin-right: 3px;
}
sh-fine-tune-posts .ft-instructions {
	position: absolute;
	top: 0;
	right: 40px; /* leave space for fine tuner X */
	left: 300px;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #d3d4d6;
	font-size: 20px;
	padding: 20px;
}
sh-fine-tune-posts .search-choices-header {
	margin: 0 0 4px 0;
	font-weight: bold;
}
sh-fine-tune-posts .search-choices-description {
	margin: 0 0 8px 0;
}
sh-fine-tune-posts .archive-search-container {
	display: flex;
}

sh-saved-searches-recent {
	display: block;
}
sh-saved-searches-recent .none {
	margin-top: 0;
	color: #5e5e5e;
}
sh-saved-searches-recent .search {
	display: block;
	padding-bottom: 10px;
	font-size: 15px;
}

sh-fine-tune-typeahead {
	display: inline-block;
	width: 600px;
	max-width: 45vw;
	position: relative;
}
sh-fine-tune-typeahead .form-input:focus {
	border-color: #adb3b6;
	color: #333333;
}
sh-fine-tune-typeahead .typeahead-suggestions {
	border: 1px solid #adb3b6;
	border-top: none;
	padding-top: 4px;
	background-color: white;
	position: absolute;
	top: 28px;
	width: 100%;
}
sh-fine-tune-typeahead .typeahead-suggestion {
	padding: 3px 8px;
	border-top: 1px solid #adb3b6;
}
sh-fine-tune-typeahead .typeahead-suggestion a {
	color: #333333;
}

sh-typeahead-single {
	display: block;
	width: 100%;
	position: relative;
}
sh-typeahead-single .typeahead-input {
	width: 100%;
	line-height: 1;
}
sh-typeahead-single .suggestions {
	border: 1px solid #adb3b6;
	border-top: none;
	padding-top: 4px;
	background-color: white;
	position: absolute;
	top: 28px;
	width: 100%;
	cursor: pointer;
}
sh-typeahead-single a.suggestion {
	display: block;
	background-color: white;
	color: #333333;
	border-top: 1px solid #adb3b6;
	padding: 4px 8px;
}
.app-mobile sh-typeahead-single a.suggestion {
	padding: 12px 10px;
	font-size: 16px;
}
sh-typeahead-single a.suggestion.active,
sh-typeahead-single a.suggestion:hover {
	background-color: #333333;
	color: white;
	box-shadow: 0 0 0 1px #333333;
	border-top: 1px solid #333333;
}
sh-typeahead-single a.suggestion.suggestion-prompt,
sh-typeahead-single a.suggestion.suggestion-prompt:hover {
	background-color: white;
	color: #adb3b6;
	font-style: italic;
	cursor: default;
	box-shadow: none;
	border-top: 1px solid #adb3b6;
}
sh-typeahead-single .form-input:focus {
	border-color: #adb3b6;
	color: #333333;
}

.newsroom-addedit sh-fine-tune-videos.fine-tuner {
	height: 440px;
}
.ft-video .col {
	overflow: hidden;
}
.ft-video {
	padding: 5px 0;
	border-top: 1px solid #d3d4d6;
	border-right: 1px solid #d3d4d6;
	border-left: 1px solid #d3d4d6;
}
.ft-video:last-child {
	border-bottom: 1px solid #d3d4d6;
}
table.ft-results {
	width: 100%;
}
table.ft-results td {
	padding: 5px;
	vertical-align: top;
}
table.ft-results td.ft-date {
	min-width: 100px;
}
.ft-video.ft-result {
	height: 70px;
}
.ft-video.ft-chosen {
	height: 30px;
	line-height: 22px;
	overflow: hidden;
	cursor: move;
	background-color: white;
}
.ft-chosen.sv-helper {
	box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
}
.ft-date {
	color: #adb3b6;
}
a.ft-add {
	display: inline-block;
	border-radius: 2px;
	background-color: #edeeef;
	color: #adb3b6;
	height: 60px;
	width: 60px;
	line-height: 60px;
	font-size: 30px;
	text-align: center;
}
a.ft-add:hover {
	background-color: #d3d4d6;
	color: #5e5e5e;
}
a.ft-remove {
	color: #adb3b6;
}
a.ft-remove:hover {
	color: #5e5e5e;
}
.ft-thumbnail-container {
	position: relative;
}
.ft-thumbnail-play {
	position: absolute;
	top: 0;
	left: 0;
	height: 60px;
	width: 90px;
	opacity: 0.4;
	cursor: pointer;
	background: transparent url(/assets/img/btn-play.svg) no-repeat 50% 50% / 50px 50px;
}
.ft-thumbnail-play:hover {
	opacity: 1;
}
.ft-play-btn {
	vertical-align: inherit;
	opacity: 0.6;
	cursor: pointer;
}
.ft-play-btn:hover,
.ft-play-btn:focus {
	opacity: 1;
}
sh-fine-tune-videos sh-date-range {
	margin-top: 3px;
	display: block;
}

sh-header-avatar.header-top-item {
	margin-top: 7px;
	width: 32px;
}
sh-header-avatar .avatar-container {
	position: relative;
}
sh-header-avatar .avatar-container img {
	border-radius: 2px;
}
sh-header-avatar .avatar-container .btn-dropdown {
	position: absolute;
	right: -4px;
	bottom: -3px;
	color: white;
	height: 14px;
	width: 14px;
	line-height: 17px;
	border-radius: 7px;
	font-size: 9px;
	text-align: center;
}
sh-header-avatar .my-prefs-container {
	overflow: visible;
	position: absolute;
	top: 42px;
	right: 0;
	width: 400px;
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
sh-header-avatar .my-prefs-inner {
	border: 1px solid #ccc;
	padding: 0.75rem;
}
sh-header-avatar .my-prefs-avatar {
	float: left;
}
sh-header-avatar .my-prefs-me {
	float: left;
	width: calc(100% - 100px); /* leave 100px for the avatar image */
	padding-left: 0.75rem;
	line-height: 2;
}
.my-prefs-name {
	font-size: 15px;
	line-height: 1;
	margin-bottom: 0.25em;
}

/* line 64, ../bower_components/hmps-animate-scss/animate.scss */
body {
  -webkit-backface-visibility: hidden;
}

/* line 4, ../sass/ngNotificationsBar.scss */
.notifications .notifications-container {
  position: fixed;
  top: 0;
  left: 0;
  min-height: 60px;
  line-height: 60px;
  width: 100%;
  z-index: 1000;
}
/* line 14, ../sass/ngNotificationsBar.scss */
.notifications .notification, .notifications .error, .notifications .success, .notifications .warning, .notifications .info {
  position: relative;
  -webkit-animation: fadeInDown 1s ease 0.2s 1 both;
  -moz-animation: fadeInDown 1s ease 0.2s 1 both;
  animation: fadeInDown 1s ease 0.2s 1 both;
  -webkit-animation-backface-visibility: hidden;
  -moz-animation-backface-visibility: hidden;
  -ms-animation-backface-visibility: hidden;
  -o-animation-backface-visibility: hidden;
  animation-backface-visibility: hidden;
  text-align: center;
  font-size: 18px;
  color: #fff;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* line 22, ../sass/ngNotificationsBar.scss */
.notifications .message {
  padding: 0 12px;
}
/* line 26, ../sass/ngNotificationsBar.scss */
.notifications .error {
  background-color: #F64747;
  border-bottom: 1px solid #f31515;
}
/* line 32, ../sass/ngNotificationsBar.scss */
.notifications .success {
  background-color: #03C9A9;
  border-bottom: 1px solid #02aa8f;
}
/* line 38, ../sass/ngNotificationsBar.scss */
.notifications .warning {
  background-color: #F7CA18;
  border-bottom: 1px solid #e7ba08;
}
/* line 44, ../sass/ngNotificationsBar.scss */
.notifications .info {
  background-color: #0c6997;
  border-bottom: 1px solid #0c6997;
}
/* line 50, ../sass/ngNotificationsBar.scss */
.notifications .close-click {
  font-size: 12px;
  cursor: pointer;
  padding: 10px;
  margin: 0 auto;
}

.notifications .notifications-container {
	min-height: 80px;
	line-height: 1.2;
}
.notifications .notification,
/* the following class declarations won't be necessary if https://github.com/alexbeletsky/ng-notifications-bar/pull/57
    gets merged */
.notifications .error,
.notifications .success,
.notifications .warning,
.notifications .close {
	font-size: 16px;
	padding: 32px;
	text-align: left;
}
.app-mobile .notification {
	font-size: 14px;
	padding: 10px;
}
.notifications .message {
	max-width: 600px;
}
.notifications .error {
	background-color: #c30015;
	border-bottom: none;
}
.notifications .success {
	background-color: #5faf18;
	border-bottom: none;
}
.notifications .successIcon {
	color: #5faf18;
}
.notifications .successIcon:after {
	content: '\2713';
}
.notifications .warning {
	background-color: #f7ca18;
	border-bottom: none;
}
.notifications .close-click {
	font-size: 16px;
	float: right;
	cursor: pointer;
	padding: 0;
}
.notifications .close-click:hover {
	opacity: 0.75;
}
/* animate the closing */
/* this won't be necessary if https://github.com/alexbeletsky/ng-notifications-bar/pull/58
    gets merged */
.notifications .close {
	position: relative;
	-webkit-animation: fadeOutUp 1s ease 0.2s 1 both;
	-moz-animation: fadeOutUp 1s ease 0.2s 1 both;
	animation: fadeOutUp 1s ease 0.2s 1 both;
	-webkit-animation-backface-visibility: hidden;
	-moz-animation-backface-visibility: hidden;
	-ms-animation-backface-visibility: hidden;
	-o-animation-backface-visibility: hidden;
	animation-backface-visibility: hidden;
}
@keyframes fadeOutUp {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
}

sh-menu ul,
sh-menu li {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
sh-menu a {
	text-decoration: none;
}
sh-menu a:hover {
	text-decoration: none;
}

.admin-links .menu-pref-links .menu-item,
.menu-admin-links .menu-item {
	text-align: right;
	font-size: 16px;
	line-height: 115%;
	text-transform: lowercase;
	border-top: 1px solid #d3d4d6;
	padding: 6px 0;
	list-style: none;
}
.admin-links sh-clearable-input {
	margin-bottom: 6px;
}
.admin-links sh-clearable-input input {
	width: 175px;
}
.menu-admin-links .menu-item .menu-item {
	font-weight: normal;
}
.admin-links .menu-pref-links a:not(.active-link),
.menu-admin-links a {
	color: #5e5e5e;
	text-decoration: none;
}
/* make headings with children unclickable */
.menu-admin-links .has-children > a {
	cursor: default;
	pointer-events: none;
}
.menu-superadmin-links li:not(.submenu-item):first-child {
	border-top: 3px solid #adb3b6;
}
.menu-admin-links .submenu {
	margin-top: 2px;
}
.menu-admin-links .submenu-item {
	font-size: 14px;
	padding-top: 1px;
	font-weight: normal;
}





.header-nav .menu-pref-links .menu-item,
.menu-header-nav {
	text-align: left;
	font-size: 14px;
	list-style: none;
}
.header-nav .menu-pref-links a:not(.active-link),
.menu-header-nav a {
	color: #5e5e5e;
	text-decoration: none;
}
/* make headings with children unclickable */
.menu-header-nav .has-children > a {
	cursor: default;
	pointer-events: none;
	text-transform: uppercase;
	font-weight: 600;
	color: #333333;
}
.menu-header-nav .submenu-item {
	font-size: 14px;
	font-weight: 100;
	padding-top: 10px;
}
.menu-header-nav .submenu-item a:hover {
	font-weight: bold;
}

.menu-header-nav .has-children {
	border-top: 2px dotted #dedede;
	padding-top: 10px;
	margin-top: 10px;
}
.menu-header-nav li:first-of-type {
	margin-top: 0;
}

sh-menu-breadcrumbs {
	display: inline;
}
sh-menu-breadcrumbs.h1 .breadcrumb {
	font-family: Roboto, Helvetica, Arial, sans-serif;
	font-weight: bold;
	display: inline-block;
	font-size: 20px;
}
sh-menu-breadcrumbs.h1 .breadcrumb a {
	color: #333333;
	text-decoration: none;
}
sh-menu-breadcrumbs .breadcrumb.unclickable {
	color: #333333;
	text-decoration: none;
}
sh-menu-breadcrumbs.h1 .breadcrumb a:hover {
	color: #333333;
	text-decoration: underline;
}
sh-menu-breadcrumbs.h1 .breadcrumb + .breadcrumb {
	font-size: 16px;
	margin: 0 0 0 5px;
	font-weight: normal;
	text-transform: lowercase;
}
sh-menu-breadcrumbs.h1 .breadcrumb + .breadcrumb::before {
	content: '/ ';
	color: #adb3b6;
}

/* keep a bit of space between text and speech bubble */
.snap-support:after {
	margin-left: 2px;
}
.snap-support {
	padding-top: 10px;
	font-weight: 100;
}
.snap-support:hover {
	font-weight: bold;
}
/* make speech bubble icon green when agent is available */
.snap-live-chat:after {
	color: #23c90f;
}

sh-search-bar {
	position: relative;
	display: block;
}
/* prefix all selectors with sh-search-bar */
sh-search-bar .post-search-box-container ~ .icons {
	font-size: 21px;
	display: inline-block;
	margin-left: 8px;
	vertical-align: middle;
}
sh-search-bar .post-search-box-container {
	padding: 0 1px 0 12px;
	height: 32px;
	border: 1px solid #adb3b6;
	border-radius: 16px;
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	background-color: white;
}
header sh-search-bar .post-search-box-container {
	background-color: transparent;
}
sh-search-bar .post-search-box-container .post-search-input {
	border: none;
	padding: 0;
	width: 100%;
}
sh-search-bar .post-search-box-container .post-search-submit {
	background-color: #edeeef;
	padding: 3px 5px 5px 4px;
	border-radius: 0 16px 16px 0;
	border: 2px solid white;
	cursor: pointer;
}
sh-search-bar .post-search-box-container .post-search-submit-icon {
	width: 16px;
	height: 16px;
	display: block;
	background-image: url('/angular/assets/img/icons/magnify-on-light.svg');
	background-repeat: no-repeat;
	background-size: contain;
}
.theme-base-black header sh-search-bar .post-search-box-container .post-search-submit-icon {
	background-image: url('/angular/assets/img/icons/magnify-on-dark.svg');
}
sh-search-bar .post-search-box-container .post-search-clear {
	border: none;
	background-color: transparent;
	font-size: 8px;
	padding: 9px 7px;
}
sh-search-bar .suggestions-container {
	position: absolute;
	top: 32px;
	left: 0;
	right: 0;
	background-color: white;
	border-right: 1px solid #adb3b6;
	border-bottom: 1px solid #adb3b6;
	border-left: 1px solid #adb3b6;
}
sh-search-bar .suggestions-container:before {
	content: '';
	position: absolute;
	top: -15px;
	right: -1px;
	left: -1px;
	height: 15px;
	border-right: 1px solid #adb3b6;
	border-left: 1px solid #adb3b6;
}
sh-search-bar .suggestion-item {
	font-size: 15px;
	padding: 6px 12px;
	cursor: pointer;
}
sh-search-bar .suggestion-item.selected,
sh-search-bar .suggestion-item:hover {
	background-color: #edeeef;
}
.theme-base-black header sh-search-bar .suggestions-container {
	background-color: black;
	color: #c9c9c9;
}
.theme-base-black header sh-search-bar .suggestion-item.selected,
.theme-base-black header sh-search-bar .suggestion-item:hover {
	background-color: #333333;
}

sh-header-loggedin,
sh-header-loggedout {
	display: block;
	margin-bottom: 29px;
}

sh-header-loggedin .header-titles {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	color: black;
	padding-left: 16px;
}
sh-header-loggedin .header-title {
	font-family: 'Nexa Slab W01 Bold Italic', Georgia, serif;
	font-size: 20px;
	padding: 0;
	margin: 0;
}
sh-header-loggedin .header-subtitle {
	font-size: 13px;
	padding: 3px 0 0 0;
	margin: 0;
}
sh-header-loggedin .flex-row {
	display: flex;
	align-items: center;
}
.feature-header-off.is-iframe sh-header-loggedout {
	display: none;
}
.feature-header-off.is-iframe .navigation-icon,
.feature-header-off.is-iframe .header-side.header-right {
	visibility: hidden;
}

.feature-header-mini .main-header,
.feature-header-mini .header-content {
	height: 43px;
}

/* from styles.css lines 1101 - 1181 */
.main-header,
.main-header * {
	box-sizing: border-box;
}
.main-header {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #e1e1e1;
	font-family: Roboto, Helvetica, Arial, sans-serif;
	height: 62px;
	position: relative;
}
.main-header .header-side {
	display: flex;
}
.main-header .header-left {
	/* this will take up any space that is not taken up by the right side */
	width: 100%;
	padding-right: 25px;
}
.logo-section {
	display: flex;
	position: relative;
	border-right: 1px solid #e1e1e1;
	justify-content: space-between;
	align-items: center;
}
.header-logo {
	width: 100%;
	display: flex;
	justify-content: center;
	cursor: pointer;
}
.header-logo-link {
	padding-right: 25px;
	outline: none;
}
.header-logo-image {
	max-height: 42px;
	max-width: 197px;
}
.navigation-icon {
	height: 100%;
	display: flex;
	align-items: center;
	font-size: 17px;
	padding: 0 25px;
	margin-right: 5px;
	cursor: pointer;
}
.navigation-items {
	position: absolute;
	top: 100%;
	left: 1px;
	width: 100%;
	min-width: 200px;
	padding: 15px 35px 15px;
	z-index: 300;
	background-color: #ffffff;
	border: 1px solid #e1e1e1;
	border-left: none;
}
/*.logo-section:hover .navigation-items {*/
/*	display: block;*/
/*}*/
.navigation-items .active-link {
	font-weight: bold;
}
a.navigation-link,
.navigation-link a {
	padding-bottom: 10px;
	display: block;
	color: #333333;
}
a:hover.navigation-link,
.navigation-link a:hover {
	color: #333333;
	text-decoration: none;
}
.navigation-separator {
	border-top: 2px dotted #dedede;
}
.navigation-link.navigation-separator {
	padding-bottom: 10px;
}

/* search-section */
.main-header .search-section {
	padding-left: 20px;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 690px;
}
.main-header sh-search-bar {
	width: 100%;
	margin-right: 10px;
}
.main-header .search-section .fine-tuner-icon-parent {
	margin-right: 10px;
	position: relative;
}
.multihub.post-search-bar .fine-tuner-toggle,
.main-header .search-section .fine-tuner-toggle {
	width: 25px;
	height: 25px;
	margin-top: 6px;
	background-image: url('/angular/assets/img/icons/fine-tune-on-light.svg');
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: contain;
	display: inline-block;
}
.main-header .search-section .icon-global-search {
	color: #424242;
	font-size: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 31px;
}

/* right side header */
.main-header .header-right {
	padding: 0 24px 0 0;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
}
.hub-chooser-and-user-links {
	display: flex;
	align-items: center;
}

/* from styles.css lines 6007 - 6061 */
.top-nav-link {
	width: 28px;
	height: 28px;
	margin-left: 15px;
	background-repeat: no-repeat;
	background-position: 50%;
}
.top-nav-link.top-nav-alert-link-container {
	background-image: url('/angular/assets/img/icons/bell-on-light.svg');
}
.top-nav-link a.knowledgebase-link {
	display: block;
	width: 30px;
	height: 30px;
}
.top-nav-alert-link-container .top-nav-alert-link {
	display: block;
	height: 100%;
}
.user-nav-avatar-container {
	width: 32px;
	margin-left: 15px;
}
sh-header-loggedin .user-nav-avatar-clickable {
	float: none;
	cursor: pointer;
	width: 32px;
	height: 32px;
}
.user-nav-dropdown {
	display: none;
	height: auto;
	position: absolute;
	top: 0;
	right: 0;
	padding: 15px 0 15px 35px;
	z-index: 500;
	background-color: #ffffff;
	border-left: 1px solid #e1e1e1;
	border-bottom: 1px solid #e1e1e1;
	width: 253px;
}
.user-nav-dropdown.dropdown-open {
	display: flex;
}
.user-nav-dropdown-img-container {
	margin-left: 35px;
}
.user-nav-dropdown-img-container a:hover {
	text-decoration: none;
}
.user-nav-dropdown-info-container .user-menu-name {
	font-weight: bold;
}
.user-nav-dropdown-info-container .navigation-separator {
	padding: 0;
	margin: 25px 0;
}

/* theme-base-black styles */
.theme-base-black .main-header {
	background-color: #000000;
}
.theme-base-black .navigation-icon .icons {
	color: #ffffff;
}
.theme-base-black .logo-section {
	border-right-color: #3f3f3f;
}
.theme-base-black .top-nav-link.top-nav-alert-link-container {
	background-image: url('/angular/assets/img/icons/bell-on-dark.svg');
}
.theme-base-black .main-header .search-section .fine-tuner-toggle {
	background-image: url('/angular/assets/img/icons/fine-tune-on-dark.svg');
}
/* search box*/
.theme-base-black header sh-search-bar .post-search-box-container {
	border-color: #7d7d7d;
}
.theme-base-black header sh-search-bar .post-search-input {
	background-color: #000000;
	color: #c9c9c9;
}
.theme-base-black header sh-search-bar .post-search-box-container .post-search-submit {
	background-color: #7d7d7d;
	border-color: #000000;
}
.theme-base-black .main-header .search-section .icon-global-search {
	color: #dddddd;
}

.theme-base-black sh-header-loggedin .header-titles {
	color: white;
}

sh-hub-chooser {
	display: inline-block;
}

sh-image-carousel {
	display: block;
	border-radius: 4px;
	overflow: hidden;
}
sh-image-carousel .choices-window {
	position: relative;
	width: 235px;
	height: 135px;
	overflow: hidden;
	background-color: #edeeef;
}
sh-image-carousel .custom-overlay {
	display: none;
}
sh-image-carousel .custom-overlay .icons {
	margin-right: 5px;
}
sh-image-carousel .choices-window:hover .custom-overlay {
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.92);
	background: rgba(51, 51, 51, 0.65);
	position: absolute;
	z-index: 3;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	cursor: pointer;
	text-transform: uppercase;
}
sh-image-carousel .choices-slider {
	width: 10000px;
	height: 135px;
	transition: transform 250ms ease-in-out;
}
sh-image-carousel .choice {
	position: relative;
	display: inline-flex;
	width: 235px;
	height: 135px;
	vertical-align: top;
}
sh-image-carousel .choice-image {
	margin: auto;
	max-width: 235px;
	max-height: 135px;
}
sh-image-carousel .choice-none {
	color: #5e5e5e;
	text-transform: uppercase;
}
sh-image-carousel .choice-size {
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 20px;
	line-height: 20px;
	font-size: 12px;
	font-weight: normal;
	color: rgba(255, 255, 255, 0.92);
	background: rgba(51, 51, 51, 0.65);
	text-align: center;
}
sh-image-carousel .nav {
	background-color: #edeeef;
	height: 24px;
	font-size: 14px;
	line-height: 24px;
	text-align: center;
	border-top: 1px solid white;
}
sh-image-carousel .nav-items {
	display: flex;
}
sh-image-carousel .nav-btn {
	cursor: pointer;
	width: 48px;
	height: 24px;
	line-height: 24px;
	text-align: center;
}
sh-image-carousel .nav-status {
	flex: 1;
	color: #5e5e5e;
}
sh-image-carousel .nav-prev {
	border-right: 1px solid white;
}
sh-image-carousel .nav-next {
	border-left: 1px solid white;
}

sh-image-picker-choices {
	display: block;
}
sh-image-picker-choices .image-choice {
	padding: 2px;
	margin: 8px 8px 0 0;
	display: inline-block;
	position: relative;
}
sh-image-picker-choices .image-choice.chosen {
	padding: 0;
	border-width: 2px;
	border-style: solid;
}
sh-image-picker-choices .image-file {
	cursor: zoom-in;
	position: relative;
}
sh-image-picker-choices .choice-choose {
	display: block;
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 26px;
	height: 32px;
	width: 32px;
	border-radius: 16px;
	text-align: center;
	line-height: 32px;
	cursor: pointer;
}
sh-image-picker-choices .choice-choose:hover {
	opacity: 1;
}
sh-image-picker-choices .choice-choose:after {
	line-height: 32px;
}
sh-image-picker-choices .unchosen .choice-choose {
	color: rgba(255, 255, 255, 0.8);
	background-color: rgba(0, 0, 0, 0.3);
	opacity: 0.6;
}
sh-image-picker-choices .chosen .choice-choose {
	background-color: rgba(255, 255, 255, 0.8);
	opacity: 1;
}
sh-image-picker-choices .image-choice-expanded {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: green;
}
sh-image-picker-choices .choice-size {
	display: none;
}
sh-image-picker-choices .image-file:hover .choice-size {
	display: block;
	font-size: 11px;
	line-height: 11px;
	text-align: center;
	color: white;
	background: rgba(51, 51, 51, 0.8);
	padding: 2px 4px;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

sh-image-picker {
	display: block;
}

sh-image-picker-search {
	display: block;
}
/* prefix all selectors with sh-image-picker-search */

sh-image-resized {
	display: inline;
}

sh-impersonation-bar {
	display: block;
}
sh-impersonation-bar .notice {
	background-color: #e74028;
	padding: 11px 15px;
	color: #f1c2bb;
	font-size: 13px;
	line-height: 1;
	min-width: 950px;
}
sh-impersonation-bar .stop,
sh-impersonation-bar .stop:hover {
	margin-left: 10px;
	color: #fff;
	cursor: pointer;
}
sh-impersonation-bar .stop .icons {
	margin-left: 3px;
	vertical-align: middle;
}
sh-impersonation-bar .close {
	float: right;
	font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	cursor: pointer;
}
sh-impersonation-bar .close .icons {
	margin-right: 3px;
}
sh-impersonation-bar .close:hover {
	color: #fff;
}

sh-layout-admin .admin-area {
	display: flex;
}
sh-layout-admin .admin-links {
	width: 175px;
	margin-right: 30px;
}
sh-layout-admin .admin-content {
	flex: 1;
}
sh-layout-admin .admin-content > h1:first-child,
sh-layout-admin .admin-content > h2:first-child,
sh-layout-admin .admin-content > h3:first-child {
	margin: 0 0 15px 0;
	padding: 0;
}

sh-layout-bi-reports {
	background-color: #eee;
	text-align: center;
	display: block;
}
sh-layout-bi-reports .page-container {
	margin: 0 auto;
	text-align: left;
	width: 1200px;
}
sh-layout-bi-reports .header-container {
	position: relative;
	background-color: white;
	height: 60px;
	padding: 0 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
sh-layout-bi-reports .back-link a,
sh-layout-bi-reports .back-link a:hover {
	color: black;
}
sh-layout-bi-reports .back-arrow {
	vertical-align: middle;
	margin-right: 5px;
}
sh-layout-bi-reports .help-link {
	position: absolute;
	top: 12px;
	right: 140px;
	font-weight: bold;
}
sh-layout-bi-reports .logo-container img {
	max-width: 197px;
	max-height: 42px;
}
sh-layout-bi-reports .content-container {
	padding: 50px;
}

/* Styling for inside an iframe (e.g., trends popup on home page */
.is-iframe sh-layout-bi-reports .header-container {
	display: none;
}

sh-like-button {
	display: inline;
}
sh-like-button .like-button {
	background-color: transparent;
	border: none;
}

sh-like-button .like-button .like-icon {
	display: block;
	width: 25px;
	height: 25px;
	background-image: url('/angular/assets/img/icons/favorite-off.svg');
	background-repeat: no-repeat;
	background-position: 50%;
}
sh-like-button .like-button .favorited {
	background-image: url('/angular/assets/img/icons/favorited.svg');
}
sh-like-button .like-button .like-icon:hover {
	background-image: url('/angular/assets/img/icons/favorited.svg');
}

.like-comment-count {
	padding: 2px 4px;
	color: white;
	box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.15);
	font-family: Roboto, Helvetica, Arial, sans-serif;
	font-size: 12px;
	margin-left: -20px;
	margin-right: 4px;
	vertical-align: top;
	margin-top: -5px;
	display: inline-block;
	z-index: 2;
	position: relative;
	height: 24px;
	min-width: 24px;
	line-height: 21px;
	border-radius: 12px;
	text-align: center;
	background-color: #5e5e5e;
}

sh-login {
	font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif;
}
sh-login .login-header {
	background-color: #000000;
	height: 142px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.state-bookmarklet-Landing sh-login .login-header {
	height: 80px;
}
sh-login .login-header .login-logo {
	max-width: 267px;
	max-height: 57px;
}
sh-login .back-link {
	height: 60px;
	line-height: 60px;
	max-width: 500px;
	margin: auto;
	cursor: pointer;
}
sh-login .email-display,
sh-login .login-heading,
sh-login .login-instructions,
sh-login .login-notifications {
	font-size: 16px;
	text-align: center;
	padding-bottom: 20px;
}
sh-login .login-panel-reset .login-instructions,
sh-login .login-panel-reset .login-notifications {
	font-size: 16px;
	text-align: left;
	padding: 0 80px 20px 80px;
}
sh-login .login-heading {
	font-size: 20px;
}
sh-login .forgot-password {
	display: block;
	margin-top: 20px;
	margin: 20px auto 0;
	cursor: pointer;
	font-size: 16px;
}
sh-login .login-panel-container {
	width: 100vw;
	overflow: hidden;
	max-height: 350px;
}

sh-login .login-panel-slider {
	width: 300vw;
	display: flex;
}
sh-login .login-panel {
	width: 100vw;
}
sh-login .login-panel-inner {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	min-height: calc(100vh - 142px - 60px);
	margin: auto;
	max-width: 500px;
}
sh-login .login-input-group {
	border-bottom: 1px solid #d3d4d6;
	margin-bottom: 20px;
	padding-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
sh-login .login-panel-content {
	width: 100%;
}
sh-login .login-input-group .left-login-el {
	display: inline-block;
	vertical-align: middle;
	text-transform: uppercase;
	font-size: 18px;
	color: #5e5e5e;
	flex-grow: 1;
}
sh-login .login-input-group .right-login-el {
	flex-grow: 2;
	font-size: 16px;
	font-weight: normal;
}
sh-login .remember-me {
	display: block;
	margin: 0 auto 20px auto;
	width: 105px;
}
sh-login .login-action {
	text-align: center;
}
sh-login .login-footer {
	margin-top: -20px;
	color: #777;
	font-size: 11px;
	text-align: center;
}
sh-login .imprint {
	text-align: center;
}
sh-login .imprint a:link,
sh-login .imprint a:visited {
	color: #333333;
}
sh-login .cookie-banner {
	position: absolute;
	bottom: 0;
	width: 100%;
	border-top: 1px solid #afafaf;
}
sh-login .cookie-banner-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	max-width: 516px;
	margin: auto;
}
sh-login .cookie-settings {
	cursor: pointer;
	text-decoration: underline;
}
sh-login .cookie-accept {
	cursor: pointer;
	text-decoration: underline;
	color: #ffffff;
	background-color: #000000;
	padding: 5px;
}

sh-login .passwordPanelMsTeams .note {
	text-align: center;
}

@media (max-width: 750px) {
	sh-login .login-header {
		height: 80px;
	}
	sh-login .login-panel-container {
		height: 290px;
	}
	sh-login .back-link {
		height: 50px;
	}
}

@media (max-width: 510px) {
	sh-login .back-link {
		margin-left: 10px;
	}

	sh-login .login-panel-container {
		height: auto;
		max-height: 370px;
	}

	.login-input-group {
		flex-flow: column;
	}

	.login-input-group > .left-login-el {
		margin-bottom: 5px;
	}

	.login-input-group > .right-login-el {
		width: 80%;
		max-width: 300px;
		min-width: 200px;
	}

	sh-login .login-panel-reset .login-instructions,
	sh-login .login-panel-reset .login-notifications {
		padding: 20px;
		padding-top: 0;
	}

	sh-login .passwordPanelMsTeams {
		padding: 0 10px;
	}
}

@media (min-width: 750px) and (max-height: 580px) {
	sh-login .cookie-banner {
		display: none;
	}
}

@media (min-width: 750px) and (max-height: 525px) {
	sh-login .imprint {
		display: none;
	}
}

@media (max-width: 510px) and (max-height: 550px) {
	sh-login .cookie-banner {
		display: none;
	}
}

@media (max-width: 510px) and (max-height: 400px) {
	sh-login .imprint {
		display: none;
	}
}

@media (max-width: 250px) and (max-height: 600px) {
	sh-login .cookie-banner {
		display: none;
	}
}

@media (max-height: 475px) {
	sh-login .cookie-banner {
		display: none;
	}
}

sh-mentionable {
	display: block;
	position: relative;
}
sh-mentionable .suggestions {
	width: 350px;
	background: white;
	position: absolute;
	border: 1px solid #d3d4d6;
	box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.1);
	cursor: pointer;
}
sh-mentionable .suggestion {
	padding: 2px 6px;
	border-bottom: 1px solid #d3d4d6;
}
sh-mentionable .suggestion:last-child {
	border-bottom: none;
}
sh-mentionable .suggestion.active {
	color: white;
	background-color: blue;
}
sh-mentionable .mentionable-textarea {
	border-width: 1px;
	border-style: solid;
	background-color: #fff;
	border-radius: 4px;
	padding: 7px 12px;
	margin-bottom: 7px;
}
sh-mentionable .mentionable-textarea:not(.themed-border-btn) {
	border-color: #5e5e5e;
}
sh-mentionable .mentionable-textarea textarea.form-input {
	padding: 0;
	border: none;
}
sh-mentionable + .mentionable-instructions {
	margin-left: 12px;
	font-style: italic;
	font-size: 13px;
	float: left;
	color: #adb3b6;
}
sh-mentionable .mentionable-list {
	border-top: 1px dotted #adb3b6;
	padding-top: 10px;
}
sh-mentionable .mentionable-list-label {
	color: #5e5e5e;
	font-size: 13px;
	margin-right: 2px;
	display: inline-block;
}
sh-mentionable .mentioned-item {
	border: 1px solid #adb3b6;
	padding: 0px 4px;
	color: #5e5e5e;
	border-radius: 3px;
	font-size: 12px;
	display: inline-block;
	margin-right: 5px;
	margin-bottom: 3px;
}
sh-mentionable .mentioned-item-x {
	font-size: 10px;
	color: var(--color-text-muted);
	cursor: pointer;
	margin-left: 2px;
}
sh-mentionable .mentioned-item-x:hover {
	color: #333333;
}

/*!
 * Quill Editor v1.3.7
 * https://quilljs.com/
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0px;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
  pointer-events: none;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor ul,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol,
.ql-editor ul {
  padding-left: 1.5em;
}
.ql-editor ol > li,
.ql-editor ul > li {
  list-style-type: none;
}
.ql-editor ul > li::before {
  content: '\2022';
}
.ql-editor ul[data-checked=true],
.ql-editor ul[data-checked=false] {
  pointer-events: none;
}
.ql-editor ul[data-checked=true] > li *,
.ql-editor ul[data-checked=false] > li * {
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before,
.ql-editor ul[data-checked=false] > li::before {
  color: #777;
  cursor: pointer;
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before {
  content: '\2611';
}
.ql-editor ul[data-checked=false] > li::before {
  content: '\2610';
}
.ql-editor li::before {
  display: inline-block;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li:not(.ql-direction-rtl)::before {
  margin-left: -1.5em;
  margin-right: 0.3em;
  text-align: right;
}
.ql-editor li.ql-direction-rtl::before {
  margin-left: 0.3em;
  margin-right: -1.5em;
}
.ql-editor ol li:not(.ql-direction-rtl),
.ql-editor ul li:not(.ql-direction-rtl) {
  padding-left: 1.5em;
}
.ql-editor ol li.ql-direction-rtl,
.ql-editor ul li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor ol li {
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  counter-increment: list-0;
}
.ql-editor ol li:before {
  content: counter(list-0, decimal) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor ol li.ql-indent-1:before {
  content: counter(list-1, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor ol li.ql-indent-2:before {
  content: counter(list-2, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-2 {
  counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor ol li.ql-indent-3:before {
  content: counter(list-3, decimal) '. ';
}
.ql-editor ol li.ql-indent-3 {
  counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor ol li.ql-indent-4:before {
  content: counter(list-4, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-4 {
  counter-reset: list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor ol li.ql-indent-5:before {
  content: counter(list-5, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-5 {
  counter-reset: list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor ol li.ql-indent-6:before {
  content: counter(list-6, decimal) '. ';
}
.ql-editor ol li.ql-indent-6 {
  counter-reset: list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor ol li.ql-indent-7:before {
  content: counter(list-7, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-7 {
  counter-reset: list-8 list-9;
}
.ql-editor ol li.ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor ol li.ql-indent-8:before {
  content: counter(list-8, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-8 {
  counter-reset: list-9;
}
.ql-editor ol li.ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor ol li.ql-indent-9:before {
  content: counter(list-9, decimal) '. ';
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family: Georgia, Times New Roman, serif;
}
.ql-editor .ql-font-monospace {
  font-family: Monaco, Courier New, monospace;
}
.ql-editor .ql-size-small {
  font-size: 0.75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor.ql-blank::before {
  color: rgba(0,0,0,0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}

/*!
 * Quill Editor v1.3.7
 * https://quilljs.com/
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0px;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
  pointer-events: none;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor ul,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol,
.ql-editor ul {
  padding-left: 1.5em;
}
.ql-editor ol > li,
.ql-editor ul > li {
  list-style-type: none;
}
.ql-editor ul > li::before {
  content: '\2022';
}
.ql-editor ul[data-checked=true],
.ql-editor ul[data-checked=false] {
  pointer-events: none;
}
.ql-editor ul[data-checked=true] > li *,
.ql-editor ul[data-checked=false] > li * {
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before,
.ql-editor ul[data-checked=false] > li::before {
  color: #777;
  cursor: pointer;
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before {
  content: '\2611';
}
.ql-editor ul[data-checked=false] > li::before {
  content: '\2610';
}
.ql-editor li::before {
  display: inline-block;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li:not(.ql-direction-rtl)::before {
  margin-left: -1.5em;
  margin-right: 0.3em;
  text-align: right;
}
.ql-editor li.ql-direction-rtl::before {
  margin-left: 0.3em;
  margin-right: -1.5em;
}
.ql-editor ol li:not(.ql-direction-rtl),
.ql-editor ul li:not(.ql-direction-rtl) {
  padding-left: 1.5em;
}
.ql-editor ol li.ql-direction-rtl,
.ql-editor ul li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor ol li {
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  counter-increment: list-0;
}
.ql-editor ol li:before {
  content: counter(list-0, decimal) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor ol li.ql-indent-1:before {
  content: counter(list-1, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor ol li.ql-indent-2:before {
  content: counter(list-2, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-2 {
  counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor ol li.ql-indent-3:before {
  content: counter(list-3, decimal) '. ';
}
.ql-editor ol li.ql-indent-3 {
  counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor ol li.ql-indent-4:before {
  content: counter(list-4, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-4 {
  counter-reset: list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor ol li.ql-indent-5:before {
  content: counter(list-5, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-5 {
  counter-reset: list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor ol li.ql-indent-6:before {
  content: counter(list-6, decimal) '. ';
}
.ql-editor ol li.ql-indent-6 {
  counter-reset: list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor ol li.ql-indent-7:before {
  content: counter(list-7, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-7 {
  counter-reset: list-8 list-9;
}
.ql-editor ol li.ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor ol li.ql-indent-8:before {
  content: counter(list-8, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-8 {
  counter-reset: list-9;
}
.ql-editor ol li.ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor ol li.ql-indent-9:before {
  content: counter(list-9, decimal) '. ';
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family: Georgia, Times New Roman, serif;
}
.ql-editor .ql-font-monospace {
  font-family: Monaco, Courier New, monospace;
}
.ql-editor .ql-size-small {
  font-size: 0.75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor.ql-blank::before {
  color: rgba(0,0,0,0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}
.ql-snow.ql-toolbar:after,
.ql-snow .ql-toolbar:after {
  clear: both;
  content: '';
  display: table;
}
.ql-snow.ql-toolbar button,
.ql-snow .ql-toolbar button {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 24px;
  padding: 3px 5px;
  width: 28px;
}
.ql-snow.ql-toolbar button svg,
.ql-snow .ql-toolbar button svg {
  float: left;
  height: 100%;
}
.ql-snow.ql-toolbar button:active:hover,
.ql-snow .ql-toolbar button:active:hover {
  outline: none;
}
.ql-snow.ql-toolbar input.ql-image[type=file],
.ql-snow .ql-toolbar input.ql-image[type=file] {
  display: none;
}
.ql-snow.ql-toolbar button:hover,
.ql-snow .ql-toolbar button:hover,
.ql-snow.ql-toolbar button:focus,
.ql-snow .ql-toolbar button:focus,
.ql-snow.ql-toolbar button.ql-active,
.ql-snow .ql-toolbar button.ql-active,
.ql-snow.ql-toolbar .ql-picker-label:hover,
.ql-snow .ql-toolbar .ql-picker-label:hover,
.ql-snow.ql-toolbar .ql-picker-label.ql-active,
.ql-snow .ql-toolbar .ql-picker-label.ql-active,
.ql-snow.ql-toolbar .ql-picker-item:hover,
.ql-snow .ql-toolbar .ql-picker-item:hover,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected {
  color: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-fill,
.ql-snow .ql-toolbar button:hover .ql-fill,
.ql-snow.ql-toolbar button:focus .ql-fill,
.ql-snow .ql-toolbar button:focus .ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
  fill: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-stroke,
.ql-snow .ql-toolbar button:hover .ql-stroke,
.ql-snow.ql-toolbar button:focus .ql-stroke,
.ql-snow .ql-toolbar button:focus .ql-stroke,
.ql-snow.ql-toolbar button.ql-active .ql-stroke,
.ql-snow .ql-toolbar button.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow.ql-toolbar button:hover .ql-stroke-miter,
.ql-snow .ql-toolbar button:hover .ql-stroke-miter,
.ql-snow.ql-toolbar button:focus .ql-stroke-miter,
.ql-snow .ql-toolbar button:focus .ql-stroke-miter,
.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
  stroke: #06c;
}
@media (pointer: coarse) {
  .ql-snow.ql-toolbar button:hover:not(.ql-active),
  .ql-snow .ql-toolbar button:hover:not(.ql-active) {
    color: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
    fill: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
    stroke: #444;
  }
}
.ql-snow {
  box-sizing: border-box;
}
.ql-snow * {
  box-sizing: border-box;
}
.ql-snow .ql-hidden {
  display: none;
}
.ql-snow .ql-out-bottom,
.ql-snow .ql-out-top {
  visibility: hidden;
}
.ql-snow .ql-tooltip {
  position: absolute;
  transform: translateY(10px);
}
.ql-snow .ql-tooltip a {
  cursor: pointer;
  text-decoration: none;
}
.ql-snow .ql-tooltip.ql-flip {
  transform: translateY(-10px);
}
.ql-snow .ql-formats {
  display: inline-block;
  vertical-align: middle;
}
.ql-snow .ql-formats:after {
  clear: both;
  content: '';
  display: table;
}
.ql-snow .ql-stroke {
  fill: none;
  stroke: #444;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.ql-snow .ql-stroke-miter {
  fill: none;
  stroke: #444;
  stroke-miterlimit: 10;
  stroke-width: 2;
}
.ql-snow .ql-fill,
.ql-snow .ql-stroke.ql-fill {
  fill: #444;
}
.ql-snow .ql-empty {
  fill: none;
}
.ql-snow .ql-even {
  fill-rule: evenodd;
}
.ql-snow .ql-thin,
.ql-snow .ql-stroke.ql-thin {
  stroke-width: 1;
}
.ql-snow .ql-transparent {
  opacity: 0.4;
}
.ql-snow .ql-direction svg:last-child {
  display: none;
}
.ql-snow .ql-direction.ql-active svg:last-child {
  display: inline;
}
.ql-snow .ql-direction.ql-active svg:first-child {
  display: none;
}
.ql-snow .ql-editor h1 {
  font-size: 2em;
}
.ql-snow .ql-editor h2 {
  font-size: 1.5em;
}
.ql-snow .ql-editor h3 {
  font-size: 1.17em;
}
.ql-snow .ql-editor h4 {
  font-size: 1em;
}
.ql-snow .ql-editor h5 {
  font-size: 0.83em;
}
.ql-snow .ql-editor h6 {
  font-size: 0.67em;
}
.ql-snow .ql-editor a {
  text-decoration: underline;
}
.ql-snow .ql-editor blockquote {
  border-left: 4px solid #ccc;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 16px;
}
.ql-snow .ql-editor code,
.ql-snow .ql-editor pre {
  background-color: #f0f0f0;
  border-radius: 3px;
}
.ql-snow .ql-editor pre {
  white-space: pre-wrap;
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 5px 10px;
}
.ql-snow .ql-editor code {
  font-size: 85%;
  padding: 2px 4px;
}
.ql-snow .ql-editor pre.ql-syntax {
  background-color: #23241f;
  color: #f8f8f2;
  overflow: visible;
}
.ql-snow .ql-editor img {
  max-width: 100%;
}
.ql-snow .ql-picker {
  color: #444;
  display: inline-block;
  float: left;
  font-size: 14px;
  font-weight: 500;
  height: 24px;
  position: relative;
  vertical-align: middle;
}
.ql-snow .ql-picker-label {
  cursor: pointer;
  display: inline-block;
  height: 100%;
  padding-left: 8px;
  padding-right: 2px;
  position: relative;
  width: 100%;
}
.ql-snow .ql-picker-label::before {
  display: inline-block;
  line-height: 22px;
}
.ql-snow .ql-picker-options {
  background-color: #fff;
  display: none;
  min-width: 100%;
  padding: 4px 8px;
  position: absolute;
  white-space: nowrap;
}
.ql-snow .ql-picker-options .ql-picker-item {
  cursor: pointer;
  display: block;
  padding-bottom: 5px;
  padding-top: 5px;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  color: #ccc;
  z-index: 2;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
  fill: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
  stroke: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  display: block;
  margin-top: -1px;
  top: 100%;
  z-index: 1;
}
.ql-snow .ql-color-picker,
.ql-snow .ql-icon-picker {
  width: 28px;
}
.ql-snow .ql-color-picker .ql-picker-label,
.ql-snow .ql-icon-picker .ql-picker-label {
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-label svg,
.ql-snow .ql-icon-picker .ql-picker-label svg {
  right: 4px;
}
.ql-snow .ql-icon-picker .ql-picker-options {
  padding: 4px 0px;
}
.ql-snow .ql-icon-picker .ql-picker-item {
  height: 24px;
  width: 24px;
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-options {
  padding: 3px 5px;
  width: 152px;
}
.ql-snow .ql-color-picker .ql-picker-item {
  border: 1px solid transparent;
  float: left;
  height: 16px;
  margin: 2px;
  padding: 0px;
  width: 16px;
}
.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
  position: absolute;
  margin-top: -9px;
  right: 0;
  top: 50%;
  width: 18px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=''])::before {
  content: attr(data-label);
}
.ql-snow .ql-picker.ql-header {
  width: 98px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label::before,
.ql-snow .ql-picker.ql-header .ql-picker-item::before {
  content: 'Normal';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  content: 'Heading 1';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  content: 'Heading 2';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  content: 'Heading 3';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  content: 'Heading 4';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  content: 'Heading 5';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  content: 'Heading 6';
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  font-size: 2em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  font-size: 1.5em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  font-size: 1.17em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  font-size: 1em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  font-size: 0.83em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  font-size: 0.67em;
}
.ql-snow .ql-picker.ql-font {
  width: 108px;
}
.ql-snow .ql-picker.ql-font .ql-picker-label::before,
.ql-snow .ql-picker.ql-font .ql-picker-item::before {
  content: 'Sans Serif';
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  content: 'Serif';
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  content: 'Monospace';
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  font-family: Georgia, Times New Roman, serif;
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  font-family: Monaco, Courier New, monospace;
}
.ql-snow .ql-picker.ql-size {
  width: 98px;
}
.ql-snow .ql-picker.ql-size .ql-picker-label::before,
.ql-snow .ql-picker.ql-size .ql-picker-item::before {
  content: 'Normal';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  content: 'Small';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  content: 'Large';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  content: 'Huge';
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  font-size: 10px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  font-size: 18px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  font-size: 32px;
}
.ql-snow .ql-color-picker.ql-background .ql-picker-item {
  background-color: #fff;
}
.ql-snow .ql-color-picker.ql-color .ql-picker-item {
  background-color: #000;
}
.ql-toolbar.ql-snow {
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  padding: 8px;
}
.ql-toolbar.ql-snow .ql-formats {
  margin-right: 15px;
}
.ql-toolbar.ql-snow .ql-picker-label {
  border: 1px solid transparent;
}
.ql-toolbar.ql-snow .ql-picker-options {
  border: 1px solid transparent;
  box-shadow: rgba(0,0,0,0.2) 0 2px 8px;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
  border-color: #000;
}
.ql-toolbar.ql-snow + .ql-container.ql-snow {
  border-top: 0px;
}
.ql-snow .ql-tooltip {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 5px #ddd;
  color: #444;
  padding: 5px 12px;
  white-space: nowrap;
}
.ql-snow .ql-tooltip::before {
  content: "Visit URL:";
  line-height: 26px;
  margin-right: 8px;
}
.ql-snow .ql-tooltip input[type=text] {
  display: none;
  border: 1px solid #ccc;
  font-size: 13px;
  height: 26px;
  margin: 0px;
  padding: 3px 5px;
  width: 170px;
}
.ql-snow .ql-tooltip a.ql-preview {
  display: inline-block;
  max-width: 200px;
  overflow-x: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}
.ql-snow .ql-tooltip a.ql-action::after {
  border-right: 1px solid #ccc;
  content: 'Edit';
  margin-left: 16px;
  padding-right: 8px;
}
.ql-snow .ql-tooltip a.ql-remove::before {
  content: 'Remove';
  margin-left: 8px;
}
.ql-snow .ql-tooltip a {
  line-height: 26px;
}
.ql-snow .ql-tooltip.ql-editing a.ql-preview,
.ql-snow .ql-tooltip.ql-editing a.ql-remove {
  display: none;
}
.ql-snow .ql-tooltip.ql-editing input[type=text] {
  display: inline-block;
}
.ql-snow .ql-tooltip.ql-editing a.ql-action::after {
  border-right: 0px;
  content: 'Save';
  padding-right: 0px;
}
.ql-snow .ql-tooltip[data-mode=link]::before {
  content: "Enter link:";
}
.ql-snow .ql-tooltip[data-mode=formula]::before {
  content: "Enter formula:";
}
.ql-snow .ql-tooltip[data-mode=video]::before {
  content: "Enter video:";
}
.ql-snow a {
  color: #06c;
}
.ql-container.ql-snow {
  border: 1px solid #ccc;
}

sh-richtext {
	display: block;
}
sh-richtext .ql-toolbar {
	background-color: white;
}
sh-richtext .quill-container {
	position: relative;
}
sh-richtext .quill-container.authide-toolbar .ql-toolbar {
	position: absolute;
	top: -42px;
	left: 0;
	right: 0;
	opacity: 0;
	z-index: 2;
}
sh-richtext .quill-container.authide-toolbar.faded .ql-toolbar {
	pointer-events: none;
}
sh-richtext .quill-container.authide-toolbar.focused .ql-toolbar {
	opacity: 1;
}
sh-richtext .ql-toolbar.ql-snow,
sh-richtext .ql-container.ql-snow {
	border-color: #adb3b6;
}
sh-richtext.border-on-focus .ql-toolbar.ql-snow,
sh-richtext.border-on-focus .ql-container.ql-snow {
	border-color: transparent;
}
sh-richtext.border-on-focus .focused .ql-toolbar.ql-snow,
sh-richtext.border-on-focus .focused .ql-container.ql-snow {
	border-color: #adb3b6;
	background-color: white;
}
sh-richtext .ql-snow.ql-toolbar button {
	padding: 1px 4px;
}
sh-richtext .ql-snow .ql-stroke {
	stroke-linecap: butt;
	stroke-linejoin: miter;
}
sh-richtext .ql-tooltip {
	z-index: 2;
}
sh-richtext .ql-editor * + p,
sh-richtext .ql-editor * + ol,
sh-richtext .ql-editor * + ul,
sh-richtext .ql-editor * + pre {
	margin-top: 0.75em;
}
sh-richtext .ql-editor ol,
sh-richtext .ql-editor ul {
	margin-left: 0;
}

sh-metric-event-item {
	display: block;
}
sh-metric-event-item .event-row {
	margin-bottom: 8px;
	background-color: #edeeef;
	font-size: 14px;
	height: 24px;
	line-height: 24px;
}
.event-row.expanded {
	height: auto;
}
sh-metric-event-item .event-prop {
	display: inline-block;
	padding: 0 0 0 8px;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 24px;
}
sh-metric-event-item sh-avatar img {
	border-radius: 0;
	margin-right: 4px;
}
sh-metric-event-item .event-icon {
	width: 24px;
	font-size: 16px;
	line-height: 24px;
	display: inline-block;
	text-align: center;
	color: white;
}
sh-metric-event-item .event-label {
	display: inline-block;
	margin-left: 4px;
}
sh-metric-event-item .event-date {
	width: 100px;
}
sh-metric-event-item .event-name {
	width: 320px;
}
sh-metric-event-item .event-user {
	width: 260px;
}
sh-metric-event-item .event-hub {
	width: 328px;
}
sh-metric-event-item .event-more {
	width: 24px;
}
/* details */
sh-metric-event-item .event-details-area {
	border: 2px solid #edeeef;
	border-top: 0;
	background-color: white;
	padding: 8px;
	margin-top: -6px;
	line-height: 1.25;
}
sh-metric-event-item .event-details {
	display: flex;
	flex-direction: row;
}
sh-metric-event-item .event-detail-values {
	overflow: auto;
	width: 675px;
}
sh-metric-event-item .event-detail-metadata {
	flex-grow: 1;
	padding-left: 15px;
}
sh-metric-event-item .event-more .icons {
	transition: transform ease-in-out 300ms;
	display: inline-block;
}
sh-metric-event-item .event-more.expanded .icons {
	transform: rotate(90deg);
}

sh-multiselect {
	display: inline-block;
	position: relative;
}
sh-multiselect .dropdown-area {
	position: absolute;
	top: 31px;
	left: 0;
	right: 0;
	background-color: white;
	border: 1px solid #333333;
	padding: 12px;
	overflow: auto;
}
sh-multiselect .dropdown-label.is-open {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
sh-multiselect .label-text-wrapper {
	text-overflow: ellipsis;
	overflow: hidden;
	display: inline-block;
	width: calc(100% - 26px);
}
sh-multiselect .dropdown-icon {
	float: right;
}
sh-multiselect .faux-checkbox {
	display: flex;
	margin-top: 0.25em;
}
sh-multiselect sh-clearable-input {
	margin-bottom: 12px;
}
sh-multiselect .form-input {
	border: 1px solid #333333;
}
sh-multiselect .no-choices {
	color: #adb3b6;
}
sh-multiselect.muted .dropdown-area,
.muted sh-multiselect .dropdown-area {
	border-color: #adb3b6;
}
sh-multiselect.muted .form-input,
.muted sh-multiselect .form-input,
sh-multiselect.muted .btn,
.muted sh-multiselect .btn {
	border-color: #adb3b6;
	color: #5e5e5e;
}
sh-multiselect.reversed .btn,
.reversed sh-multiselect .btn {
	border-color: black;
	background-color: #5e5e5e;
	color: white;
}
sh-multiselect .division-filter {
	display: flex;
}
sh-multiselect .division-filter .faux-radio input + span,
.faux-checkbox input + span {
	word-break: break-word;
}

sh-overlay {
	display: block;
	background-color: white;
	overflow: auto;
}
sh-overlay,
sh-overlay > .content,
sh-overlay > .content > .content {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1001;
}
sh-overlay.center {
	display: flex;
}
sh-overlay.center > .content {
	margin: auto;
}
sh-overlay.spinner-16,
sh-overlay.spinner-24,
sh-overlay.spinner-32,
sh-overlay.spinner-64 {
	background: white url(/assets/img/loader-responsive-light.gif) no-repeat 50% 50% / 16px 16px;
}
sh-overlay.spinner-24 {
	background-size: 24px 24px;
}
sh-overlay.spinner-32 {
	background-size: 32px 32px;
}
sh-overlay.spinner-64 {
	background-size: 64px 64px;
}
sh-overlay > .close {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 20px;
	right: 20px;
	height: 24px;
	width: 24px;
	font-size: 20px;
	color: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 0 0 rgba(0, 0, 0, 0.8);
	z-index: 1002;
}

sh-photo-collage {
	display: block;
	width: 260px;
}
sh-photo-collage .collage-link {
	display: block;
	position: relative;
	width: 260px;
	height: 254px;
}
sh-photo-collage .collage-box {
	position: absolute;
	border-radius: 6px;
}
sh-photo-collage .collage-box.collage-image::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 1px solid rgba(0,0,0,0.16863);
	pointer-events: none;
	border-radius: 6px;
}
sh-photo-collage .collage-label {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	color: #adb3b6;
	letter-spacing: 1px;
	text-transform: uppercase;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 32px;
	font-size: 12px;
}
.pin.is-story .post-image-outer {
	background-color: #f6f6f7;
	border: 1px solid #adb3b6;
	border-bottom: 0;
	border-radius: 6px 6px 0 0;
}
.pin.is-story .post-headline {
	padding-top: 0;
}

sh-pocket-lint {
	text-align: center;
}
.pocket-lint-svg {
	display: block;
	margin: 0 auto;
}
.pocket-lint-std-msg {
	text-transform: uppercase;
	font-size: 18px;
	color: #adb3b6;
	margin: 20px 0 10px 0;
	font-family: Roboto, Helvetica, Arial, sans-serif;
}
.pocket-lint-custom-msg {
	font-size: 14px;
	color: #adb3b6;
}

sh-post-actions .html-entity-icon {
	font-size: 13px;
	vertical-align: bottom;
}
sh-post-pin-footer sh-post-actions {
	display: inline-block;
	width: 30px;
}
sh-post-pin-footer sh-post-actions .icon-menu {
	background: transparent url(/angular/assets/img/icons/meatball.svg) no-repeat right top 15px;
	width: 100%;
	height: 100%;
	right: 0;
	top: -5px;
	display: block;
}
sh-post-pin-footer sh-post-actions .icon-menu::after {
	content: '';
}
sh-post-pin-footer sh-post-actions .more-menu {
	position: absolute;
	bottom: 42px;
	right: 0;
	width: 80%;
	background-color: #5e5e5e;
	opacity: 0.97;
}
sh-post-pin-footer sh-post-actions .more-menu-section {
	border-bottom: 1px dotted white;
}
sh-post-pin-footer sh-post-actions .more-menu-section-label {
	text-transform: uppercase;
	padding: 6px 10px 1px 10px;
	color: #bbb;
}
sh-post-pin-footer sh-post-actions .more-menu-item {
	padding: 5px 10px;
}
sh-post-pin-footer sh-post-actions .more-menu-item:hover {
	background-color: rgba(0, 0, 0, 0.15);
}
sh-post-pin-footer sh-post-actions .more-menu-item .icons {
	margin-right: 3px;
}
sh-post-actions .push-to-slack img,
sh-post-actions .push-to-msteams img {
	margin: 1px 4px 0 -1px;
	vertical-align: top;
}
sh-post-grid-intel sh-post-actions sh-click-to-download a {
	display: inline-block;
}
sh-post-grid-intel sh-post-actions sh-click-to-download a:not(:hover) {
	color: #5e5e5e;
}
sh-post-pin-intel sh-post-actions sh-click-to-download {
	display: block;
	padding: 0 !important;
}
sh-post-pin-intel sh-post-actions sh-click-to-download a {
	color: white;
	display: block;
	padding: 5px 10px;
}
sh-post-pin-intel sh-post-actions sh-click-to-download a:hover {
	color: white;
}
.state-PostDetail sh-post-actions sh-click-to-download {
	padding: 0 !important;
}
.state-PostDetail sh-post-actions sh-click-to-download a {
	color: #333333;
	display: block;
	padding: 5px 10px;
}
.state-PostDetail sh-post-actions sh-click-to-download a:hover {
	background-color: white;
}
.state-PostDetail sh-post-actions {
	display: block;
	text-align: right;
	position: absolute;
	bottom: 8px;
	right: 9px;
}
.state-PostDetail sh-post-actions .open-menu {
	width: 210px;
	font-size: 22px;
	line-height: 34px;
	padding: 2px 10px;
	margin-left: 0;
	display: block;
	color: #adb3b6;
	border: 1px solid transparent;
}

.state-PostDetail sh-post-actions .open-menu.is-open {
	border: 1px solid #adb3b6;
	border-top: none;
	background-color: #f6f6f7;
	color: #5e5e5e;
}
.state-PostDetail sh-post-actions .more-menu {
	position: absolute;
	bottom: 39px;
	right: 0;
	width: 210px;
	background-color: #f6f6f7;
	opacity: 0.97;
	border: 1px solid #adb3b6;
	border-bottom: none;
	text-align: left;
}
.state-PostDetail sh-post-actions .more-menu-section {
	border-bottom: 1px dotted #adb3b6;
}
.state-PostDetail sh-post-actions .more-menu-section-label {
	text-transform: uppercase;
	padding: 6px 10px 1px 10px;
	color: #adb3b6;
}
.state-PostDetail sh-post-actions .more-menu-item {
	padding: 5px 10px;
}
.state-PostDetail sh-post-actions .more-menu-item:hover {
	background-color: white;
}
.state-PostDetail sh-post-actions .more-menu-item .icons {
	margin-right: 3px;
}
.public-link-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px;
}

sh-post-bubble {
	display: block;
}
/* prefix all selectors with sh-post-bubble */

sh-post-category-bar {
	display: block;
	width: 100%;
}
sh-post-category-bar .page-toolbar {
	padding-right: 120px;
	height: 40px;
	line-height: 36px;
}
sh-post-category-bar .page-toolbar-main {
	display: block;
	height: 39px;
	overflow: hidden;
}
sh-post-category-bar .overflow-button {
	float: right;
	text-align: right;
	margin-right: -120px;
}
sh-post-category-bar .overflow-button .icons {
	font-size: 9px;
}
sh-post-category-bar sh-search-and-choose {
	width: 390px;
	border: 1px solid #e1e1e1;
	padding: 20px;
	border-radius: 10px;
	background-color: #ffffff;
	position: absolute;
	top: 42px;
	right: 0;
}
sh-post-category-bar .clear-hub {
	color: #ee5834;
	margin-left: 10px;
}

sh-post-classification-bar {
	display: block;
	width: 292px;
}
sh-post-classification-bar .bar-inner {
	position: relative;
}

sh-post-classification-bar .classification-drop-option {
	display: flex;
	width: 190px;
}
/*So the bottom of a g or y doesn't get cut off*/
sh-post-classification-bar .drop-option {
	height: 33px;
}

sh-post-classification-with-post-type {
	display: block;
}
/* prefix all selectors with sh-post-classification-with-post-type */

sh-post-credit {
	display: block;
}
/* prefix all selectors with sh-post-credit */

.post-grid-listing {
	position: relative;
}
.post-grid-listing::before {
	content: '\00a0';
	width: 100%;
	height: 10px;
	position: absolute;
	background-color: #ffffff;
}
sh-post-grid-intel {
	display: inline-block;
	margin: 0 9px 25px 9px;
	border-top: 3px solid #000;
	vertical-align: top;
	padding-top: 10px;
	width: 270px;
}
/* prefix all selectors with sh-post-grid-intel */
sh-post-grid-intel .grid-intel {
	position: relative;
}
sh-post-grid-intel .post-cover {
	cursor: pointer;
}
sh-post-grid-intel .is-story .post-headline {
	text-align: center;
	max-width: 100%;
}
/* story result */
sh-post-grid-intel sh-photo-collage {
	border-bottom: 2px solid #e7e7e7;
}
sh-post-grid-intel .more-at {
	display: none;
	position: absolute;
	bottom: 65px;
	margin-left: 10px;
	font-weight: bold;
	font-size: 17px;
	z-index: 4;
}
sh-post-grid-intel .grid-intel:hover .more-at {
	display: block;
}
sh-post-grid-intel a:hover {
	color: #333333;
}
sh-post-grid-intel .more-at a span {
	padding: 15px;
	display: block;
	background-color: rgba(255, 255, 255, 0.8);
	width: 250px;
	border-radius: 0 0 5px 5px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
sh-post-grid-intel .more-at span.themed-before-bg-color1:before {
	content: '\e2a8';
	font-family: 'icons32';
	padding: 3px;
	margin-right: 10px;
	font-size: 12px;
	color: #ffffff;
	border-radius: 3px;
}
sh-post-grid-intel .more-at:hover span.themed-before-bg-color1:before {
	background-color: #333333;
}
sh-post-grid-intel .pin-indicator {
	width: 50px;
	height: 50px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	display: block;
}
sh-post-grid-intel .pin-indicator.has-insight {
	overflow: hidden;
	border-radius: 0 6px;
	border-style: solid;
	border-color: #ffffff;
	border-top: 1px;
	border-right: 1px;
	border-bottom: 0;
	border-left: 0;
}
sh-post-grid-intel .pin-indicator-inner {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 50px 50px 0;
	border-color: transparent #353535 transparent transparent;
}
sh-post-grid-intel .pin-indicator .icons {
	display: block;
	width: 50px;
	height: 50px;
	background: transparent url(/angular/assets/img/icons/pin.svg) no-repeat right 7px top 7px;
}
sh-post-grid-intel .post-has-no-intel {
	border: 0;
}
sh-post-grid-intel .grid-intel .intel-bubble {
	z-index: 1;
	padding: 10px 15px;
	border-radius: 7px 7px 0 0;
}
sh-post-grid-intel .grid-intel .intel-bubble .bubble-text {
	font:
		normal 14px/17px Roboto,
		Helvetica,
		Arial,
		sans-serif;
	max-height: 51px;
	overflow: hidden;
}
sh-post-grid-intel .grid-intel .intel-bubble.add-insight {
	z-index: 4;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: center;
}
sh-post-grid-intel .grid-intel .intel-bubble.add-insight .bubble-text {
	width: auto;
	opacity: 1;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
}
sh-post-grid-intel .grid-intel .intel-bubble.add-insight .bubble-text .icons:after {
	margin-right: 5px;
}
sh-post-grid-intel .post-image-outer {
	max-height: 270px;
	border-bottom: 0;
	overflow: hidden;
}
sh-post-grid-intel .post-image-outer.has-insight {
	top: -3px;
}
sh-post-grid-intel .post-image-container {
	min-height: 0;
}
sh-post-grid-intel .post-image-container:after {
	border: 0;
}
sh-post-grid-intel .post-image-container .post-image-link {
	min-height: 150px;
}
sh-post-grid-intel sh-image img {
	flex-shrink: 0;
	min-width: 100%;
}
sh-post-grid-intel sh-image img.is-empty {
	display: none;
}
sh-post-grid-intel .post-headline {
	margin-top: 10px;
	max-height: 60px;
	max-width: 220px;
	overflow: hidden;
	cursor: pointer;
	font:
		700 14px/17px Roboto,
		Helvetica,
		Arial,
		sans-serif;
}
sh-post-grid-intel .post-extras {
	position: absolute;
	bottom: 10px;
	border-radius: 5px;
	border: 0;
	color: #fff;
	font-size: 14px;
	line-height: 100%;
	height: 45px;
	display: flex;
	align-items: center;
}
sh-post-grid-intel .post-classification {
	left: 0;
	margin-left: 10px;
	width: 200px;
	overflow: hidden;
	padding-left: 7px;
	background-color: rgba(0, 0, 0, 0.3);
}
sh-post-grid-intel .post-classification .lini {
	font-size: 22px;
	vertical-align: middle;
	margin-right: 10px;
	border-radius: 20px;
	padding: 7px;
}
sh-post-grid-intel .post-icon {
	right: 0;
	margin-right: 10px;
	width: 45px;
	background-color: rgba(0, 0, 0, 0.3);
	background-repeat: no-repeat;
	background-position: center center;
}
sh-post-grid-intel .post-icon.icon-video {
	background-image: url(/angular/assets/img/icons/video.svg);
}
sh-post-grid-intel .post-icon.icon-preview-files {
	background-image: url(/angular/assets/img/icons/files.svg);
}
sh-post-grid-intel .post-icon.icon-article {
	background-image: url(/angular/assets/img/icons/article.svg);
}
sh-post-grid-intel .post-icon .file-count {
	background-color: white;
	display: block;
	width: 15px;
	height: 15px;
	border-radius: 8px;
	color: #353535;
	font-size: 10px;
	border: 1px solid #353535;
	position: absolute;
	top: -7px;
	right: -7px;
	text-align: center;
}
sh-post-grid-intel sh-post-actions {
	font-size: 23px;
	position: absolute;
	right: 0;
	height: 50px;
	width: 50px;
}
sh-post-grid-intel sh-post-actions .icon-menu {
	background: transparent url(/angular/assets/img/icons/meatball.svg) no-repeat right top 15px;
	width: 100%;
	height: 100%;
	right: 0;
	top: 0;
	display: block;
}
/* >= IE11 */
_:-ms-fullscreen,
:root sh-post-grid-intel sh-post-actions .icon-menu {
	background: transparent url(/angular/assets/img/icons/meatball.svg) no-repeat right top 10px;
}
sh-post-grid-intel sh-post-actions .icon-menu::after {
	content: none;
}
sh-post-tabular-intel sh-post-actions .more-menu,
sh-post-grid-intel sh-post-actions .more-menu {
	font-size: 11px;
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 10px 15px;
	background-color: #ffffff;
	position: absolute;
	right: 0;
	bottom: 0;
	white-space: nowrap;
	opacity: 0.97;
}
sh-post-tabular-intel sh-post-actions .more-menu {
	top: 20px;
	bottom: auto;
}
sh-post-tabular-intel sh-post-actions .more-menu-section,
sh-post-grid-intel sh-post-actions .more-menu-section {
	border-bottom: 1px dotted #ddd;
	margin: 0 0 10px 0;
	padding: 0 0 10px 0;
}
sh-post-tabular-intel sh-post-actions .more-menu-section:last-of-type,
sh-post-grid-intel sh-post-actions .more-menu-section:last-of-type {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}
sh-post-tabular-intel sh-post-actions .more-menu-section-label,
sh-post-grid-intel sh-post-actions .more-menu-section-label {
	text-transform: uppercase;
	font-weight: bold;
}
sh-post-tabular-intel sh-post-actions .more-menu-item .icons,
sh-post-grid-intel sh-post-actions .more-menu-item .icons {
	display: none;
}
sh-post-tabular-intel sh-post-actions .more-menu-item.push-to-slack > img,
sh-post-grid-intel sh-post-actions .more-menu-item.push-to-slack > img,
sh-post-tabular-intel sh-post-actions .more-menu-item.push-to-msteams > img,
sh-post-grid-intel sh-post-actions .more-menu-item.push-to-msteams > img {
	display: none;
}
sh-post-grid-intel .post-upload-progress-area,
sh-post-grid-intel .post-file-error {
	top: 0px;
	right: 0;
	bottom: 0;
	left: 0;
	font-size: 1.1em;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	text-align: center;
	position: absolute;
}
sh-post-grid-intel .post-upload-progress-area .btn-xs,
sh-post-grid-intel .post-file-error .btn-xs {
	font-family: 'Nexa Slab W01 Bold Italic', Georgia, serif;
	text-transform: none;
	font-weight: bold;
	font-size: 0.9em;
	text-transform: none;
	font-weight: bold;
	font-size: 0.9em;
	padding: 0 25px;
	height: 25px;
	border-radius: 13px;
	margin-top: 40px;
}
sh-post-grid-intel .post-upload-progress-area .btn-xs {
	color: #000000;
	border-color: #000000;
}
sh-post-grid-intel .post-file-error .btn-xs {
	color: #fdfdfd;
	background-color: #666666;
	border-color: #666666;
}
sh-post-grid-intel .post-upload-progress-area p,
sh-post-grid-intel .post-file-error p {
	margin: 0;
}
sh-post-grid-intel .post-upload-progress-area .post-overlay-heading,
sh-post-grid-intel .post-file-error .post-error-heading {
	font-weight: bold;
}
sh-post-grid-intel .post-upload-progress-area {
	z-index: 4;
	background-color: #eeeeee;
}
sh-post-grid-intel .post-upload-progress-area .post-overlay-filename,
sh-post-grid-intel .post-file-error .post-error-msg {
	font-size: 0.9em;
	overflow: hidden;
	width: 220px;
	white-space: nowrap;
	margin: 0 auto;
}
sh-post-grid-intel .post-upload-progress sh-progress-bar {
	margin: auto;
	width: auto;
}
sh-post-grid-intel .post-upload-progress-area .pb-bar {
	width: 185px;
	border-radius: 6px;
	height: 12px;
	margin: 1em 0;
	text-align: left;
}
sh-post-grid-intel .post-upload-progress-area .pb-bar .pb-done {
	height: 100%;
	display: block;
}
sh-post-grid-intel .post-upload-progress-area .pb-bar .pb-done > span,
sh-post-grid-intel .post-upload-progress-area .pb-bar .pb-undone {
	display: none;
}
sh-post-grid-intel .post-file-error {
	z-index: 5;
	background-color: #4a4a4a;
	color: #a2a2a2;
}
sh-post-grid-intel .post-file-error .icons {
	font-size: 3em;
}
sh-post-grid-intel .post-file-error .post-error-heading {
	color: #dddddd;
}
sh-post-grid-intel .post-credit {
	border: none;
	background-color: #ffffff;
	padding-left: 0;
	font:
		300 14px/17px Roboto,
		Helvetica,
		Arial,
		sans-serif;
	border-top: 2px solid #e7e7e7;
	margin-top: 10px;
	color: #555555;
}
sh-post-grid-intel .post-credit .post-insight-by {
	width: 210px;
}
sh-post-grid-intel .post-credit.has-email {
	cursor: pointer;
}
sh-post-grid-intel .post-highlights p {
	padding: 0;
	margin: 0 5px;
}
sh-post-grid-intel .post-hubname-container {
	font:
		300 14px/17px Roboto,
		Helvetica,
		Arial,
		sans-serif;
	border-top: 2px solid #e7e7e7;
	margin-top: 10px;
}

sh-post-hero {
	display: block;
	min-height: 100%;
}
sh-post-hero .post-hero-container {
	display: flex;
	justify-content: flex-end;
}
sh-post-hero .post-hero-container sh-post-image {
	margin: 20px 20px 0 0;
}
sh-post-hero .headline-and-text {
	width: 200px;
	font-size: 15px;
}
sh-post-hero .intel-bubble {
	width: 300px;
	padding: 15px;
	margin-left: -102px;
}
sh-post-hero .intel-bubble .intel-text {
	font-family: Roboto, Helvetica, Arial, sans-serif;
	font-size: 15px;
	max-height: 54px;
	line-height: 18px;
}
sh-post-hero .post-body-text {
	line-height: 20px;
	max-height: 100px;
}

sh-post-image .post-image-link {
	pointer-events: auto;
	position: relative;
	display: block;
}
.post-image-video {
	position: absolute;
	top: 0;
	left: 0;
	background: url(/assets/img/btn-play.svg?2) no-repeat 50% 50%;
	background-size: 64px 64px;
	width: 100%;
	height: 100%;
	display: block;
	opacity: 0.8;
	z-index: 4;
}
.post-image-video:hover {
	opacity: 1;
}
sh-post-image-area .post-image-container {
	position: relative;
	background-color: #edeeef;
	min-height: 24px;
}
.post-has-no-intel sh-post-image-area .post-image-container:after {
	border-top: 1px solid rgba(0, 0, 0, 0.17);
	/* make sure click events make it to the <a> in sh-post-image */
	pointer-events: none;
}
sh-post-image-area .post-image-container:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid rgba(0, 0, 0, 0.17);
	border-top: none;
	height: 100%;
	width: 100%;
	display: block;
	box-sizing: border-box;
	pointer-events: none;
}
.is-file-post:not(.preview-complete) sh-post-image-area .post-image-container:after {
	background: rgba(255, 255, 255, 0.75);
}
.upload-done:not(.preview-complete) sh-post-image-area .post-image-container:after {
	background: rgba(255, 255, 255, 0.75) url(/assets/img/loader-ring-responsive-light.gif) no-repeat 50% 50% / 64px 64px;
}
sh-post-image-area .att-icon-area {
	background-color: white;
	padding: 3px 0;
}
sh-post-image-area .att-message {
	color: #5e5e5e;
	padding: 6px 10px;
	font-size: 13px;
}

sh-post-image-area .att-preview-links {
	background-color: #d3d4d6;
	padding: 7px 10px 4px 10px;
	font-size: 13px;
	border: 1px solid #adb3b6;
	border-top: none;
}
@media (max-width: 768px) {
	/* make post image area match attachment bar when on mobile */
	sh-post-image-area .post-image-container {
		background-color: #d3d4d6;
	}
}

sh-post-indicators {
	display: block;
}
sh-post-indicators .translate-icon {
	background-image: url('/angular/assets/img/icons/translate.svg');
	display: inline-block;
	width: 16px;
	height: 16px;
	background-repeat: no-repeat;
	background-size: cover;
}
sh-post-indicators .post-indicator-bar {
	display: flex;
	justify-content: center;
	align-items: center;
}
/* prefix all selectors with sh-post-indicators */

sh-post-pin-body {
	display: block;
}
sh-post-pin-body .post-pin-body-area {
	overflow: hidden;
	position: relative;
}
sh-post-pin-body .post-body-text-gradient {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 50px 0 1px 0;
	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0) 0,
		rgba(244, 244, 245, 0.96) 60%,
		rgba(244, 244, 245, 1) 100%
	);
}
sh-post-pin-body .post-body-text-expanded {
	padding: 7px 0 1px 0;
	text-align: center;
}

sh-post-pin-footer {
	background-color: #f6f6f7;
	color: white;
	position: relative;
	vertical-align: middle;
	padding: 7px 8px 0 8px;
	height: 43px;
	border: 1px solid #adb3b6;
	display: flex;
	justify-content: space-between;
}
sh-post-pin-footer sh-comment-button {
	margin-left: -10px;
}
/* prefix all selectors with sh-post-pin-footer */

sh-post-pin-intel {
	display: block;
}
/* prefix all selectors with sh-post-pin-intel */
sh-post-pin-intel .post-classification {
	padding: 6px 10px;
	color: #ffffff;
	font-family: Roboto, Helvetica, Arial, sans-serif;
	font-weight: normal;
	line-height: 22px;
}
sh-post-pin-intel .post-classification .lini {
	font-size: 22px;
	vertical-align: middle;
	margin-right: 10px;
}
sh-post-pin-intel .post-classification + .post-part-bordered {
	border-top: 0;
}
sh-post-pin-intel .is-story .post-headline {
	text-align: center;
}

sh-post-pin-multihub {
	display: block;
	padding-bottom: 10px;
}
/* default bubble and tail color */
sh-post-pin-multihub .intel-bubble {
	background: #777;
	padding: 9px 12px;
	font-size: 16px;
	border-radius: 5px 5px 0 0;
}
sh-post-pin-multihub .intel-bubble:after {
	border-color: #777 transparent transparent transparent;
}
sh-post-pin-multihub .intel-bubble-text {
	padding-top: 8px;
}
sh-post-pin-multihub .select-this-post {
	padding-bottom: 2px;
	display: block;
}
sh-post-pin-multihub .select-this-post .label-text {
	color: rgba(255, 255, 255, 0.6);
	font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	vertical-align: bottom;
	margin-left: 5px;
}
sh-post-pin-multihub .faux-checkbox input:checked + span:before,
sh-post-pin-multihub .select-this-post .label-selected {
	color: rgba(255, 255, 255, 0.8);
}
sh-post-pin-multihub .hubname {
	display: flex;
	align-items: center;
	text-transform: uppercase;
	font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif;
	color: #adb3b6;
	padding: 0 0 10px 0;
	font-size: 14px;
}
sh-post-pin-multihub .hubname img {
	margin-right: 8px;
}

sh-post-pin-unapproved {
	display: block;
	background-color: #b89247;
	color: black;
}
sh-post-pin-unapproved label {
	font-weight: bold;
	font-style: italic;
	text-transform: uppercase;
	font-size: 16px;
	vertical-align: middle;
}
sh-post-pin-unapproved .icon-lock {
	vertical-align: middle;
}
sh-post-pin-unapproved .btn {
	float: right;
	margin-top: 7px;
}
.pin-intel sh-post-pin-unapproved {
	height: 49px;
	padding: 0 12px;
	border-radius: 5px 5px 0 0;
}
.pin-intel sh-post-pin-unapproved label {
	line-height: 43px;
}
.pin-intel sh-post-pin-unapproved + * {
	margin-top: -5px;
	display: block;
}

.AccessRuleTab {
	display: grid;
	color: var(--theme-color-text);
	font-size: 1.1rem;
	width: 100%;
	height: 100%;
	overflow: hidden;

	:is(h3) {
		margin: 0;
		padding: 0;
		font-size: 1.3rem;
		font-weight: 500;
	}

	:is(hr) {
		margin: 0.1rem 0;
	}

	:is(ul) {
		display: grid;
		grid-gap: 0.5rem;
		align-content: start;
		list-style-type: square;
		margin: 0;
		padding: 0.5rem 1rem;
		overflow-y: auto;
	}

	:is(li) {
		padding: 0;
	}

	:is(select) {
		width: 100%;
	}

	.centered {
		display: grid;
		align-items: center;
		justify-items: center;
		background-color: white;
		font-size: 1.5rem;
		width: 100%;
		height: 100%;
	}

	> .rule-picker {
		display: grid;
		grid-template-rows: auto 1fr;
		grid-gap: 1rem;
		background-color: white;
		height: 100%;
		width: 100%;
		overflow: hidden;

		:is(header) {
			display: grid;
			grid-template-rows: auto auto;
			grid-gap: 1rem;
			padding: 1rem;
			box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.25);
		}

		> .details {
			display: grid;
			grid-template-rows: min-content min-content;
			grid-gap: 1rem;
			padding: 1rem;
			overflow-y: auto;

			.actions {
				display: grid;
				grid-template-rows: auto auto 1fr;
				align-content: start;
				min-height: max-content;

				> :is(div) {
					padding: 0.5rem 1rem;
				}
			}

			.visibility {
				display: grid;
				grid-template-rows: repeat(4, auto);
				align-content: start;

				> :is(div) {
					padding: 0.5rem 1rem;
				}
			}

			.roles,
			.groups,
			.allowed-actions {
				display: grid;
				grid-template-rows: auto 1fr;
			}

			.actions ul,
			.roles ul {
				display: grid;
				grid-template-columns: 1fr 1fr;
				grid-gap: 0.5rem;
			}
		}
	}
}

.ApproversTabComponent {
	.form-actions {
		display: flex;
		justify-content: flex-end;
		padding-top: 4px;
		padding-bottom: 16px;
	}
}

sh-scope-linked-posts {
	display: block;
	position: relative;
}
sh-scope-linked-posts h2 {
	margin-bottom: 16px;
	padding-left: 5px;
}
sh-scope-linked-posts h2 .form-input-select-container select {
	font-size: 18px;
	border-radius: 36px;
}
sh-scope-linked-posts h2 option {
	line-height: 36px;
	font-size: 18px;
	padding-right: 24px;
}
sh-scope-linked-posts .posts-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 0.4rem;
}
sh-scope-linked-posts .posts-wrapper .post-item {
	border: 1px solid lightgrey;
	background-color: white;
}
sh-scope-linked-posts .posts-wrapper .post-item img {
	width: 100%;
}
sh-scope-linked-posts .posts-wrapper .post-item span {
	display: block;
	padding: 10px 5px;
	font-size: 14px;
	font-weight: bold;
	color: #333333;
}
/* prefix all selectors with sh-scope-linked-posts */

sh-post-simple {
	display: flex;
	width: 354px;
	height: 94px;
	padding-bottom: 14px;
	margin: 0 14px 14px 0;
	border-bottom: 1px solid #dddddd;
}
/* `background-image` is added by angular */
sh-post-simple .post-image {
	background-position: center;
	background-size: cover;
	width: 80px;
	height: 80px;
}
sh-post-simple .post-text-column {
	width: 245px;
	margin-left: 14px;
}
sh-post-simple .post-headline {
	font-size: 16px;
	/* if you change the line-height from 18, be sure to change the `18` multiplier value of `headlineMaxHeight` in
		`prepHeadline` of postSimpleComponent.js */
	line-height: 18px;
	max-height: 36px;
}

.tabular-posts {
	text-align: center;
	margin-top: 10px;
}
sh-post-tabular-intel {
	display: flex;
	width: 1000px;
	margin: 0 auto;
	text-align: left;
	border-bottom: 2px dotted #d3d4d6;
	padding: 20px 0;
	position: relative;
}
sh-post-tabular-intel .post-tab-icon {
	padding-top: 4px;
	padding-left: 10px;
}
sh-post-tabular-intel .post-tab-icon img {
	opacity: 0.8;
}
sh-post-tabular-intel .post-tab-icon img:not([src*='bookmark']) {
	filter: invert(1);
}
sh-post-tabular-intel .post-tab-text {
	font-size: 16px;
	padding: 0 20px;
	line-height: 1.35;
	width: 925px;
}
sh-post-tabular-intel .post-tabular-headline {
	font-weight: bold;
}
sh-post-tabular-intel .post-tabular-body {
	color: #5e5e5e;
}
sh-post-tabular-intel .post-tabular-insight {
	padding-top: 2px;
}
sh-post-tabular-intel .post-tab-credit {
	font-size: 13px;
	padding-top: 4px;
	color: #5e5e5e;
}
sh-post-tabular-intel .post-tab-dots {
	padding-right: 10px;
	width: 52px;
}
sh-post-tabular-intel sh-post-actions .icon-menu {
	background: transparent url(/angular/assets/img/icons/meatball.svg) no-repeat right top 15px;
	width: 100%;
	height: 100%;
	right: 0;
	top: 0;
	display: block;
}
sh-post-tabular-intel sh-post-actions {
	height: 50px;
	width: 50px;
}
sh-post-tabular-intel sh-post-actions .icon-menu::after {
	content: '';
}

sh-post-tabular-multihub {
	display: block;
}
/* prefix all selectors with sh-post-tabular-multihub */

sh-post-taxonomy {
	display: block;
}
sh-post-taxonomy .form-input {
	width: 300px;
	height: 28px;
}
sh-post-taxonomy select {
	height: 28px;
	border-radius: 4px;
	min-width: 60px;
	border-color: #5e5e5e;
}

sh-post-source {
	display: block;
}
/* prefix all selectors with sh-post-source */
sh-post-source .label {
	padding: 0 20px 5px 0;
	color: #5e5e5e;
}
sh-post-source .offset-label {
	padding-left: 10px;
}
sh-post-source .value {
	padding-bottom: 5px;
}
sh-post-source .post-source-date {
	padding-right: 5px;
}

sh-progress-bar {
	display: block;
}
sh-progress-bar.inline {
	width: 200px;
	display: inline-block;
}
.pb-bar {
	display: block;
	border: 1px solid #adb3b6;
	background-color: white;
	overflow: hidden;
	height: 1.8em;
}
.pb-undone,
.pb-done {
	overflow: hidden;
	height: 1.8em;
	line-height: 1.7em;
	display: inline-block;
}
.pb-done {
	color: white;
	background-color: #6fb91f;
	text-align: center;
	white-space: pre;
}
.pb-undone {
	color: #333333;
	padding-left: 5px;
}

sh-richtitle {
	display: block;
	position: relative;
}
sh-richtitle .rt-toolbar {
	padding: 8px 8px 0 8px;
	height: 42px;
	border: 1px solid #adb3b6;
	border-bottom: none;
}
sh-richtitle .rt-toolbar-group {
	display: inline-block;
	margin-left: 8px;
	margin-right: 4px;
	vertical-align: top;
}
sh-richtitle .form-input-select-container {
	transform: translateY(-6px);
	height: 18px;
	padding: 0;
}
sh-richtitle .form-input-select-container select {
	height: 18px;
	top: 0;
	border-radius: 0;
	background-color: #ffffff;
	border: none;
	padding: 0 24px 0 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	margin: 0;
}
sh-richtitle .form-input-select-container:after {
	top: 0.2em;
	right: 3px;
	pointer-events: none;
	color: #333333;
}
sh-richtitle button {
	cursor: pointer;
	display: inline-block;
	float: left;
	height: 24px;
	width: 28px;
	background: none;
	border-width: medium;
	border-width: initial;
	border-style: none;
	border-color: currentColor;
	border-color: initial;
	border-image: none;
	border-image: initial;
	padding: 1px 4px;
}
sh-richtitle button:focus {
	outline: 0;
}
sh-richtitle button[colorpicker] {
	padding: 0 2px;
}
sh-richtitle input {
	padding: 12px 15px;
	width: 100%;
}
sh-richtitle button svg {
	float: left;
	height: 100%;
}
sh-richtitle .ql-stroke {
	fill: none;
	stroke: rgb(68, 68, 68);
	stroke-linecap: butt;
	stroke-linejoin: miter;
	stroke-width: 2;
}
sh-richtitle .active .ql-stroke {
	stroke: rgb(0, 102, 204);
}
sh-richtitle .rt-toolbar {
	background-color: white;
}
sh-richtitle .autohide-toolbar .rt-toolbar {
	position: absolute;
	top: -42px;
	left: 0;
	right: 0;
	opacity: 0;
	transition: opacity 300ms ease-in-out;
}
sh-richtitle .autohide-toolbar.faded .rt-toolbar {
	pointer-events: none;
}
sh-richtitle .autohide-toolbar.focused .rt-toolbar {
	opacity: 1;
}

sh-search-input,
sh-search-input form {
	display: inline;
	background-color: white;
	border-radius: 16px;
}
sh-search-input ~ .icons {
	font-size: 21px;
	display: inline-block;
	margin-left: 8px;
	vertical-align: middle;
}
sh-search-input .search-bar {
	padding: 0 1px 0 13px;
	height: 32px;
	border: 1px solid #adb3b6;
	border-radius: 16px;
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
}
sh-search-input .search-input {
	border: none;
	padding: 0;
}
sh-search-input .search-submit {
	background-color: #edeeef;
	padding: 3px 5px 5px 4px;
	border-radius: 0 16px 16px 0;
	border: 2px solid white;
	outline: none;
}
sh-search-input .search-clear {
	border: none;
	background-color: transparent;
	font-size: 8px;
	padding: 9px 7px;
	outline: none;
}
sh-search-input + .form-input-select-container,
sh-search-input + .form-input,
sh-search-input + .btn {
	margin-left: 15px;
}

sh-search-pills {
	display: inline-block;
	vertical-align: middle;
}
sh-search-pills,
sh-search-pills .inner,
sh-search-pills .typing-area {
	height: 34px;
}
sh-search-pills .pills-area {
	width: 9999px;
}
sh-search-pills ~ .icons {
	font-size: 21px;
	display: inline-block;
	margin-left: 8px;
	vertical-align: middle;
}
sh-search-pills .inner {
	position: relative;
	display: inline-block;
}
sh-search-pills * {
	font-size: 13px;
}
sh-search-pills ul,
sh-search-pills li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: inline-block;
}
sh-search-pills .typing-area {
	border: 1px solid #adb3b6;
	background-color: white;
	padding: 4px 5px 5px 5px;
	border-radius: 16px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	overflow: hidden;
}
sh-search-pills .pill {
	height: 24px;
	background-color: #e5e5e5; /* other standard colors are too dark or too light */
	border-radius: 12px;
	align-items: center;
	display: inline-flex;
	margin: 0 4px 4px 0;
	padding: 0 12px;
	cursor: default;
}
sh-search-pills .pill.selected {
	color: white;
	background-color: #d0021b;
}
sh-search-pills .pill.selected .pill-x,
sh-search-pills .pill.selected .pill-x:hover {
	color: white;
}
sh-search-pills .input-area {
	height: 24px;
	align-items: center;
	display: inline-flex;
}
sh-search-pills .input-area:first-child {
	margin-left: 14px;
}
sh-search-pills .pill-x .icons {
	font-size: 8px;
	margin-left: 8px;
}
sh-search-pills .pills-clear {
	position: absolute;
	top: 6px;
	right: 12px;
}
sh-search-pills .pills-clear .icons {
	font-size: 9px;
}
sh-search-pills .pills-magnifier {
	position: absolute;
	top: 8px;
	right: 11px;
}
sh-search-pills .pills-magnifier .icons {
	font-size: 15px;
}
sh-search-pills .pill-x,
sh-search-pills .pill-x:hover,
sh-search-pills .pills-clear,
sh-search-pills .pills-clear:hover {
	color: #333333;
}
sh-search-pills *:not(.selected) .pill-sugg-link {
	color: #4a4a4a;
}
sh-search-pills .selected .pill-sugg-link {
	border: 1px dotted black;
	margin-left: -1px;
}
sh-search-pills .section-label {
	padding: 16px 0 6px 0;
	margin: 0;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: black;
}
sh-search-pills .pill-sugg-area {
	border: 1px solid #adb3b6;
	border-top: 0;
	background-color: white;
	padding: 23px 22px 22px 22px;
	position: absolute;
	top: 19px;
	left: 0px;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.33);
}
sh-search-pills .input {
	border: none;
	height: 24px;
	padding: 0;
	margin: -1px 0 0 0;
}
sh-search-pills .pill-sugg-section {
	padding-bottom: 12px;
	border-bottom: 2px dotted #d3d4d6;
}
sh-search-pills .pill-sugg-section:last-child {
	padding-bottom: 0;
	border-bottom: none;
}
sh-search-pills .pill-sugg-item,
sh-search-pills .less-more {
	padding-bottom: 5px;
	line-height: 1.1;
}
sh-search-pills .less-more {
	text-transform: lowercase;
}
sh-search-pills .less-more .icons {
	font-size: 11px;
}
sh-search-pills .pill-sugg-more + * {
	padding-top: 6px;
}

sh-search-terms-and-tuner {
	display: block;
}
/* prefix all selectors with sh-search-terms-and-tuner */
sh-search-terms-and-tuner .fine-tuner-toggle {
	margin-left: 10px;
}

sh-search-and-choose {
	display: block;
	background-color: #ffffff;
}
/* prefix all selectors with sh-search-and-choose */
sh-search-and-choose .item-filter {
	border-radius: 16px;
	padding-left: 15px;
	padding-right: 15px;
	width: 100%;
}
sh-search-and-choose .item-list {
	padding: 15px 15px 0;
}
sh-search-and-choose .item-list .search-and-choose-item {
	color: #333333;
	cursor: pointer;
	padding-bottom: 10px;
	line-height: normal;
	line-height: initial;
	text-decoration: none;
	transition: text-shadow 300ms;
}
sh-search-and-choose .item-list .search-and-choose-item.current-item,
sh-search-and-choose .item-list .search-and-choose-item.highlighted-item,
sh-search-and-choose .item-list .search-and-choose-item:hover {
	/*
		Use text-shadow instead of bolding to avoid text jumping. See:
		https://www.sitepoint.com/quick-tip-fixing-font-weight-problem-hover-states/
	 */
	text-shadow:
		0 0 0.65px #333333,
		0 0 0.65px #333333;
}
sh-search-and-choose .type-prompt {
	color: #5e5e5e;
	padding-bottom: 10px;
	font-style: italic;
}

sh-select.full-width select {
	width: 100%;
}

sh-settings-table {
	display: block;
}
/* prefix all selectors with sh-settings-table */

sh-slide-horizontal {
	display: block;
}
sh-slide-horizontal .slider-container {
	position: relative;
	overflow: hidden;
}
sh-slide-horizontal .slider-navigation {
	height: 100%;
	width: 40px;
	background-color: rgba(136, 136, 136, 0.8);
	position: absolute;
	cursor: pointer;
	z-index: 100;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	color: #ffffff;
	display: none;
}
sh-slide-horizontal .slider-navigation.navigation-left {
	left: 0;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}
sh-slide-horizontal .slider-navigation.navigation-right {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	right: 0;
}
sh-slide-horizontal .slider-container:hover .slider-navigation {
	display: flex;
}

.spinner-on {
	color: transparent !important;
	pointer-events: none;
	position: relative;
}
.spinner-on:after {
	content: '';
	display: block;
	border: 3px solid #fff;
	border-radius: 16px;
	height: 16px;
	left: 50%;
	margin: -8px 0 0 -8px;
	opacity: 0;
	position: absolute;
	top: 50%;
	width: 16px;
	animation: ring-pulsate 750ms ease-out;
	animation-iteration-count: infinite;
}
.spinner-on.btn-cancel:after,
.spinner-gray:after {
	border-color: #adb3b6;
}
@keyframes ring-pulsate {
	0% {
		transform: scale(0.1);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: scale(1.2);
		opacity: 0;
	}
}

sh-tabs {
	display: block;
}
sh-tabs .tab-labels {
	display: flex;
	justify-content: space-between;
}
sh-tabs .tab-label {
	flex: 1;
	border: 1px solid #adb3b6;
	border-bottom: 0;
	padding: 8px 15px;
	border-radius: 5px 5px 0 0;
	background-color: #edeeef;
	text-align: center;
	font-weight: bold;
	cursor: pointer;
	box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.12) inset;
}
sh-tabs .tab-label + .tab-label {
	margin-left: 8px;
}
sh-tabs .tab-label.is-open {
	transform: translateY(1px);
	background-color: white;
	box-shadow: none;
	padding-left: 14px;
	z-index: 2;
}
sh-tabs .tab-contents {
	border: 1px solid #adb3b6;
	background-color: white;
}

sh-tab {
	display: none;
}
sh-tab.is-open {
	display: block;
	height: 100%;
	width: 100%;
	position: relative;
}
sh-tab .tab-content {
	z-index: 2;
	overflow: auto;
	display: block;
	padding: 15px;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.tag-cloud-item {
	white-space: nowrap;
	margin-right: 11px;
	display: inline-block;
	line-height: 28px;
}

sh-time-picker {
	display: inline-block;
	border: 1px solid #5e5e5e;
	border-radius: 4px;
	overflow: hidden;
	vertical-align: middle;
}
sh-time-picker .picker {
	display: inline-block;
}
sh-time-picker .picker select {
	display: inline-block;
	text-align: right;
	height: 30px;
	padding: 3px 10px;
	background-color: #ffffff;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
sh-time-picker .colon {
	font-size: 17px;
	font-weight: bold !important;
}
sh-time-picker .hour select {
	padding-right: 2px;
	text-align-last: right;
}
sh-time-picker .minute select {
	padding-left: 2px;
}
sh-time-picker .minute {
	border-right: 1px solid #adb3b6;
}

sh-time-zone-picker {
	display: inline-block;
	vertical-align: middle;
}
sh-time-zone-picker .form-input {
	font-weight: normal;
}

sh-top-contributors-bar {
	display: block;
}
sh-top-contributors-bar .wrapper {
	min-width: 158px;
	height: 100%;
	display: flex;
	align-items: center;
}
sh-top-contributors-bar .wrapper > * {
	vertical-align: middle;
	display: inline-block;
}
sh-top-contributors-bar .label {
	margin-right: 7px;
}
sh-top-contributors-bar .more {
	z-index: -1;
	background-color: #adb3b6;
	color: white;
	font-weight: bold;
	border-radius: 50%;
	border: 1px solid white;
	height: 32px;
	width: 32px;
	text-align: center;
	font-size: 17px;
	line-height: 21px;
	text-indent: 3px;
}
/* stack contributor avatars on top of each other */
sh-top-contributors-bar .contributor {
	margin-right: -12px;
	position: relative;
}
sh-top-contributors-bar .contributor img {
	border: 1px solid white;
	background-color: #d3d4d6;
}
sh-top-contributors-bar .contributor:nth-child(1) {
	z-index: 4;
}
sh-top-contributors-bar .contributor:nth-child(2) {
	z-index: 3;
}
sh-top-contributors-bar .contributor:nth-child(3) {
	z-index: 2;
}
sh-top-contributors-bar .contributor:nth-child(4) {
	z-index: 1;
}

sh-typeahead-multi {
	display: block;
	width: 100%;
	position: relative;
	z-index: 1;
}
sh-typeahead-multi .typeahead-items {
	padding: 3px 0 0 3px;
	border: 1px solid transparent;
	border-radius: 4px;
}
sh-typeahead-multi .typeahead-items.focused {
	border-color: #adb3b6;
	background-color: white;
}
sh-typeahead-multi .typeahead-input {
	border: none;
	font-size: 11px;
	color: #5e5e5e;
	background-color: transparent;
	padding: 0 0 3px 0;
	margin-bottom: 3px;
	line-height: 1;
}
sh-typeahead-multi .suggestion {
	margin: 0;
	font-size: 12px;
	border-right: 1px solid #adb3b6;
	border-bottom: 1px solid #adb3b6;
	border-left: 1px solid #adb3b6;
	padding: 3px 8px;
	cursor: pointer;
}
sh-typeahead-multi .suggestion:hover {
	background-color: #f6f6f7;
}
sh-typeahead-multi.fly-up .suggestions {
	position: absolute;
	bottom: 26px;
	left: 0;
	right: 0;
	background-color: white;
	border-top: 1px solid #adb3b6;
}
sh-typeahead-multi .active {
	background-color: #edeeef;
}
sh-typeahead-multi .vertical-section.typeahead-items {
	justify-content: flex-start;
	flex-wrap: wrap;
}
sh-typeahead-multi .typeahead-item {
	cursor: default;
	font-size: 11px;
	line-height: 11px;
	color: #5e5e5e;
	padding: 3px 6px 2px 6px;
	background-color: #f6f6f7;
	margin: 0 4px 3px 0;
	display: inline-block;
	border-radius: 2px;
	border: 1px solid #adb3b6;
}
sh-typeahead-multi .typeahead-item.pre-delete {
	background-color: #b83e3e;
	color: white;
	border-color: #ff0000;
}
sh-typeahead-multi .typeahead-item.typeahead-placeholder {
	background-color: transparent;
	border-color: transparent;
	font-size: 12px;
	padding-left: 0;
}
sh-typeahead-multi .typeahead-item.typeahead-input-item {
	background-color: transparent;
	margin: 0;
	padding: 0;
	border-color: transparent;
}
sh-typeahead-multi .typeahead-item-x {
	font-size: 8px;
	margin-left: 3px;
	cursor: pointer;
}
/* to blend in with form inputs: */
sh-typeahead-multi.form-input {
	min-height: 32px;
	vertical-align: middle;
	font-weight: normal;
}
sh-typeahead-multi.form-input .typeahead-item {
	font-size: 13px;
	line-height: 13px;
}
sh-typeahead-multi.form-input .typeahead-placeholder {
	font-size: 14px;
	line-height: 14px;
	padding-left: 8px;
	padding-top: 4px;
}
sh-typeahead-multi.form-input .typeahead-items {
	padding-top: 2px;
}
sh-typeahead-multi.form-input .typeahead-items.focused {
	border-color: transparent;
	background-color: white;
}
sh-typeahead-multi.form-input .typeahead-input {
	font-size: 14px;
	padding: 0;
	margin: 3px 0 2px 10px;
}
sh-typeahead-multi.form-input .typeahead-item {
	color: #333333;
}
sh-typeahead-multi.form-input .typeahead-item + .typeahead-input-item .typeahead-input {
	margin-left: 0;
}
sh-typeahead-multi.form-input .suggestions {
	margin: 1px 0 0 0;
	border: none;
}
sh-typeahead-multi.form-input .suggestion {
	font-size: 14px;
	border: none;
	border-top: 1px solid #adb3b6;
}
/* mobile app */
.app-mobile sh-typeahead-multi {
	padding: 0;
	border: none;
	background-color: transparent;
}
.app-mobile sh-typeahead-multi .typeahead-input {
	height: 38px;
	font-size: 18px;
}
.app-mobile sh-typeahead-multi .suggestion {
	margin: 0;
	font-size: 18px;
	border-top: 1px solid #adb3b6;
	border-right: none;
	border-bottom: 1px solid #adb3b6;
	border-left: none;
	padding: 18px 28px 18px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.app-mobile sh-typeahead-multi .active {
	background-color: #edeeef;
}
.app-mobile sh-typeahead-multi .vertical-section.typeahead-items {
	justify-content: flex-start;
	flex-wrap: wrap;
}
.app-mobile sh-typeahead-multi .typeahead-item {
	font-size: 16px;
	padding: 8px;
	line-height: 9px;
	margin: 5px 10px 5px 0;
	border-radius: 0;
}
.app-mobile sh-typeahead-multi .typeahead-item.typeahead-input-item {
	background-color: transparent;
	margin: 0;
	padding: 0;
}
.app-mobile sh-typeahead-multi .typeahead-item-x {
	font-size: 10px;
	margin-left: 10px;
}

sh-upload {
	display: block;
	min-height: 70px;
}
sh-upload .su-main {
	max-width: 100%;
}
/*
HTML Structure:

widgetHtml:
	'<div class="su-main">\n\
		<input type="hidden" class="su-hidden" name="" value="">\n\
		<div class="su-droppable">\n\
			<div class="icons icon-upload su-instructions">\n\
				<span class="su-prompt"></span>\n\
				<a class="su-browse-button" href="javascript:"></a>\n\
			</div>\n\
			<div class="su-progress su-widget-progress">\n\
				<span class="su-progress-done"></span>\n\
				<span class="su-progress-undone"></span>\n\
			</div>\n\
		</div>\n\
		<div class="su-filelist"></div>\n\
	</div>',
fileHtml:
	'<div class="su-file">\n\
		<input type="hidden" class="su-hidden" name="" value="">\n\
		<span class="icons su-file-icon"></span>\n\
		<span class="su-file-name"></span> \n\
		<span class="su-file-size"></span> \n\
		<span class="su-progress su-file-progress">\n\
			<span class="su-progress-done"></span>\n\
			<span class="su-progress-undone"></span>\n\
		</span>\n\
		<span class="icons icon-delete2 su-file-remove"></span>\n\
	</div>'
*/
.su-main {
	max-width: 635px;
}
.su-droppable {
	border: 1px dashed #ccc;
	background: #eee;
	padding: 25px;
	border-radius: 5px;
}
.su-has-files .su-droppable {
	border-radius: 5px 5px 0 0;
}
.su-prompt {
	margin-right: 0.3em;
}
.su-droppable.su-hover {
	background: #e3f2e1;
}
.su-status-waiting .su-file-icon,
.su-status-waiting .su-file-name,
.su-status-waiting .su-file-progress {
	opacity: 0.33;
}
.su-status-uploading .su-file-icon,
.su-status-uploading .su-file-name {
	opacity: 0.66;
}
.su-instructions {
	position: relative;
	padding-left: 35px;
	height: 18px;
}
.su-instructions.icons:after {
	color: #aaa;
	font-size: 20px;
	left: -2px;
	position: absolute;
	top: -4px;
}
.su-error {
	display: none;
	color: #a00;
	font-style: italic;
	font-size: 13px;
	padding: 10px 0;
}
.su-has-error .su-error {
	display: block;
	padding: 10px 20px;
}
.su-file {
	border: 1px dashed #ccc;
	border-top: none;
	padding: 10px 38px 10px 0;
	position: relative;
	background-color: #eee;
	display: flex;
	align-items: center;
}
.su-file-icon,
.su-file-name,
.su-file-error,
.su-file-size,
.su-file-progress {
	line-height: 16px;
	margin-right: 20px;
}
.su-file.su-in-progress {
	padding-left: 32px;
}
.su-file-drag {
	display: block;
	padding: 0 10px;
	opacity: 0.4;
	line-height: 12px;
	cursor: move;
}
.su-file-drag:hover {
	opacity: 1;
}
.su-filelist {
	position: relative;
}
.su-filelist .su-file.sv-placeholder {
	background-color: #1e65ce;
	border: 1px dotted #333;
	border-top: none;
}
a.su-file-name {
	color: #333;
	max-width: calc(100% - 300); /* 300px needed for drag handle, file icon, file size and X */
	word-break: break-all;
}
.su-in-progress a.su-file-name {
	max-width: calc(100% - 260px); /* 260px needed for file icon, file size and X */
}
a.su-file-name:hover {
	text-decoration: none;
}
a.su-file-name[href]:hover {
	text-decoration: underline;
}
.su-file-icon {
	width: 16px;
	font-size: 16px;
	margin-right: 5px;
}
.su-file-size {
	color: #929292;
}
.su-progress {
	border: 1px solid #999;
	font-size: 11px;
	width: 100px;
	height: 16px;
	display: inline-block;
	box-sizing: content-box;
}
.su-file-error {
	color: #a00;
}
.su-status-error .su-file-progress,
.su-status-error .su-file-size {
	display: none;
}
.su-progress-complete {
	display: none;
}
.su-progress-done {
	color: #fff;
	background-color: #008000;
	text-align: center;
	overflow: hidden;
	white-space: nowrap;
	height: 16px;
	line-height: 17px;
	margin: 0;
	display: inline-block;
	vertical-align: top;
}
.su-progress-undone {
	color: #666;
	margin: -1px 0 0 3px;
	padding: 0;
	text-align: left;
	display: inline-block;
	vertical-align: middle;
}
.su-file-edit,
.su-file-remove {
	display: block;
	position: absolute;
	top: 11px;
	right: 11px;
	margin: 0;
	font-size: 16px;
	cursor: pointer;
	color: #888;
}
.su-file-edit:hover,
.su-file-remove:hover {
	color: #444;
}
.su-file-edit {
	right: 36px;
}
.su-uploading-ui {
	display: none;
	vertical-align: bottom;
}
.su-instructions,
.su-status-uploading .su-uploading-ui,
.su-status-uploading .su-cancel-upload,
.su-status-uploading .su-widget-progress {
	display: inline-block;
	vertical-align: bottom;
}
.su-widget-progress {
	margin-left: 15px;
}
.su-cancel-upload {
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top, #ffffff 0%, #d2d2d2 100%); /* FF3.6+ */
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(0%, #ffffff),
		color-stop(100%, #d2d2d2)
	); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #ffffff 0%, #d2d2d2 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #ffffff 0%, #d2d2d2 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #ffffff 0%, #d2d2d2 100%); /* IE10+ */
	background: linear-gradient(to bottom, #ffffff 0%, #d2d2d2 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d2d2d2',GradientType=0 ); /* IE6-9 */
	border: 1px solid #999;
	border-radius: 0;
	color: #555;
	font:
		11px/15px Arial,
		Helvetica,
		sans-serif;
	height: 18px;
	text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
}
/* dark variation */
.dark .su-droppable {
	background-color: black;
	border-color: #eee;
}
.white .su-droppable {
	border: none;
	background-color: white;
}
.dark .su-droppable.su-hover {
	background-color: #094200;
}
.white .su-droppable.su-hover {
	background-color: #e3f2e1;
}
.white .su-has-error .su-error {
	border-top: 1px solid #ccc;
	margin-top: 2px;
}
.dark .su-prompt {
	color: #aaa;
}
.dark .su-browse-button {
	color: #eee;
}
.dark .su-browse-button:hover {
	color: #fff;
}

sh-upload-area {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	border: 7px dashed #1e65ce;
	display: none; /* changed to flex in when user starts to drag */
	justify-content: center;
	align-items: center;
	font-size: 60px;
	font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif;
	color: #1e65ce;
	text-transform: uppercase;
	background-color: rgba(255, 255, 255, 0.88);
}
sh-upload-area.small {
	border-width: 3px;
	font-size: 25px;
}

sh-user-edit {
	display: block;

	& select {
		font-weight: 700;
		color: #333333;
	}

	& table.user-details {
		display: flex;
		grid-gap: 1rem;

		& .user-names td {
			width: 50%;
		}
	}

	& table td label {
		padding-bottom: 0.4rem;
	}
}

sh-visual-tag-display {
	display: inline-block;
}
sh-visual-tag-display .vtag {
	background-size: contain;
	background-repeat: no-repeat;
	display: inline-block;
	width: 40px;
	height: 35px;
	margin-right: 6px;
	margin-bottom: 2px;
}
sh-visual-tag-display .vtag:last-child {
	margin-right: 0;
}
sh-visual-tag-display .add-button {
	opacity: 0.5;
}
sh-visual-tag-display .add-button:hover {
	opacity: 1;
}

sh-visual-tag-picker {
	display: block;
	position: relative;
}
sh-visual-tag-picker .toolbar {
	border-bottom: 1px solid #adb3b6;
	padding: 10px 0 10px 20px;
	background-color: #edeeef;
}
sh-visual-tag-picker .toolbar label {
	margin-right: 4px;
	color: #5e5e5e;
	font-family: 'Roboto Condensed', Helvetica, Arial, sans-serif;
	text-transform: uppercase;
}
sh-visual-tag-picker .toolbar * + label {
	margin-left: 20px;
}
sh-visual-tag-picker .toolbar input {
	width: 165px;
}
sh-visual-tag-picker .choices {
	padding: 20px 0 16px 20px;
}
sh-visual-tag-picker .choices h3 {
	margin-top: 0;
	color: #5e5e5e;
}
/* tiled */
sh-visual-tag-picker .vtag-tiled {
	width: 138px;
	height: 119px;
	opacity: 0.33;
	transition:
		opacity 200ms ease-in-out,
		transform 200ms ease-in-out;
	display: inline-block;
	vertical-align: top;
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: -15px;
	margin-bottom: -46px;
}
sh-visual-tag-picker .vtag-tiled:hover,
sh-visual-tag-picker .vtag-tiled.selected {
	opacity: 1;
	transform: scale(1.1);
}
sh-visual-tag-picker .vtag-tiled.bot {
	margin-top: 71px;
}
sh-visual-tag-picker .choices-tiled .vtags {
	padding-bottom: 55px;
}
/* text + icons */
sh-visual-tag-picker .vtag-icon-choice {
	display: inline-block;
	width: 47%;
	margin-bottom: 4px;
	margin-left: -5px;
}
sh-visual-tag-picker . vtag-icon-label {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
}
sh-visual-tag-picker .vtag-icon {
	display: inline-block;
	vertical-align: middle;
	width: 52px;
	height: 46px;
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 3px;
}
sh-visual-tag-picker .vtag-cbox {
	margin-top: 12px;
}
sh-visual-tag-picker .choices-icons .vtags {
	padding-bottom: 8px;
}
/* text only */
sh-visual-tag-picker .vtag-text-choice {
	display: inline-block;
	width: 47%;
	padding-bottom: 4px;
}
sh-visual-tag-picker .choices-text .vtags {
	padding-bottom: 8px;
}
/* tooltips */
sh-visual-tag-picker .tooltip {
	position: absolute;
	border: 1px solid #5e5e5e;
	border-radius: 5px;
	width: 350px;
	height: 150px;
	box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
	z-index: 3;
	background-color: white;
}
sh-visual-tag-picker .tooltip-content {
	margin: 15px;
}
sh-visual-tag-picker .tooltip-content h3,
sh-visual-tag-picker .tooltip-content .description-1 {
	font-weight: bold;
}
sh-visual-tag-picker .tooltip-content .description-1,
sh-visual-tag-picker .tooltip-content .description-2 {
	font-size: 13px;
}
sh-visual-tag-picker .tooltip-icon {
	float: right;
	width: 52px;
	height: 46px;
	background-size: contain;
	background-repeat: no-repeat;
}
sh-visual-tag-picker .tooltip:after {
	content: '';
	display: block;
	position: absolute;
	width: 13px;
	height: 13px;
	border-top: 1px solid #5e5e5e;
	border-right: 1px solid #5e5e5e;
	background-color: white;
}
sh-visual-tag-picker .tooltip.neck-left:after {
	top: 68px;
	left: -7px;
	transform: rotate(-135deg);
}
sh-visual-tag-picker .tooltip.neck-right:after {
	top: 68px;
	right: -7px;
	transform: rotate(45deg);
}
sh-visual-tag-picker .tooltip.neck-top:after {
	top: -7px;
	left: 160px;
	transform: rotate(-45deg);
}
sh-visual-tag-picker .tooltip.neck-bottom:after {
	bottom: -7px;
	left: 160px;
	transform: rotate(135deg);
}

.sh-chart-tip-outer {
	position: relative;
	filter: drop-shadow(5px 5px 2px rgba(0, 0, 0, 0.25));
}
.sh-chart-tip {
	font-family: Roboto, sans-serif;
	font-size: 18px;
	font-weight: 100;
	line-height: 1;
	padding: 16px 20px;
	color: #fff;
	border-radius: 6px;
}
.sh-chart-stem {
	width: 0;
	height: 0;
	position: absolute;
	bottom: -45px;
	left: 55%;
	border-style: solid;
	border-width: 48px 15px 0 0;
	transform: rotate(17deg);
	transform-origin: 100% 0;
	z-index: 2;
}
.sh-chart-tip-date {
	opacity: 0.66;
}

.modal-UserAccessHistory .hist-entry {
	margin-top: 0.25em;
}
.modal-UserAccessHistory h4 {
	margin: 1em 0 0.35em 0;
	line-height: 1.15;
}
.modal-UserAccessHistory h2 {
	margin: 0;
}
.modal-UserAccessHistory button {
	margin-top: 0.25em;
}

sh-layout-admin .std-table-filters {
	display: flex;
}
sh-layout-admin .admin-content {
	overflow-x: auto;
}

sh-layout-admin .table-scroll {
	overflow-x: auto;
}


/*# sourceMappingURL=hub-bundle.css.map*/