/* Minification failed. Returning unminified contents.
(1268,28): run-time error CSS1039: Token not allowed after unary operator: '-grey-light'
(1269,23): run-time error CSS1039: Token not allowed after unary operator: '-font-family'
(1294,28): run-time error CSS1039: Token not allowed after unary operator: '-grey-medium'
(1295,28): run-time error CSS1039: Token not allowed after unary operator: '-white'
(1300,28): run-time error CSS1039: Token not allowed after unary operator: '-red'
(1311,28): run-time error CSS1039: Token not allowed after unary operator: '-black'
(1320,28): run-time error CSS1039: Token not allowed after unary operator: '-grey-medium'
(1321,28): run-time error CSS1039: Token not allowed after unary operator: '-white'
(1333,28): run-time error CSS1039: Token not allowed after unary operator: '-grey-medium'
(1334,28): run-time error CSS1039: Token not allowed after unary operator: '-white'
(1354,22): run-time error CSS1039: Token not allowed after unary operator: '-cxo-primary-color'
(1355,25): run-time error CSS1039: Token not allowed after unary operator: '-cxo-primary-color'
(1357,23): run-time error CSS1039: Token not allowed after unary operator: '-font-family'
(1364,22): run-time error CSS1039: Token not allowed after unary operator: '-cxo-primary-color-hover-on-dark-background'
(1365,24): run-time error CSS1039: Token not allowed after unary operator: '-cxo-primary-color-hover-on-dark-background'
(1382,17): run-time error CSS1039: Token not allowed after unary operator: '-black'
(1393,17): run-time error CSS1039: Token not allowed after unary operator: '-cxo-primary-color'
(1417,34): run-time error CSS1039: Token not allowed after unary operator: '-white'
(1419,37): run-time error CSS1039: Token not allowed after unary operator: '-white'
(1462,17): run-time error CSS1039: Token not allowed after unary operator: '-grey-darkest'
 */

html {
    background: #d9d9d9;
    color: #454545;
    height: 100%;
}
body {
    font: 14px/1.2 Arial, sans-serif;
    margin: 0;
    -webkit-text-size-adjust: none;
}
hr {
    background-color: #c3c3c3;
    border: 0;
    color: #c3c3c3;
    height: 1px;
    margin: 10px 0;
}
a{ cursor: pointer;text-decoration: underline;}
.full-screen-background {
    background: url(images/full-screen-background.png) no-repeat center center fixed;
    background-size: cover;
    min-height: 100%;
}
@media (max-width: 768px) {
    .full-screen-background { background-image: url(images/small-screen-background.jpg); }
}
.prepare-autoupdate-apply-button{visibility:hidden;}

.inner {
    height: 100%;
    margin: 0 auto;
    position: relative;
}

@media screen and (min-width: 1024px) {
    .inner {
        width: 978px;
    }
}
.main-content {
    background: #dedede;
    border: 1px solid #cbcbcb;
    border-left: none;
    border-right: none;
    clear: both;
    margin: 10px 0 10px 0px;
    overflow: auto;
    padding: 15px 0;
}
/* component spinner */
.component-spinner-overlay {
  background-color: rgba(255, 255, 255, 0.5);
    display: none;
    height: 100%;
  width: 100%;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1000;
    -webkit-transition: opacity .3s .5s ease-in-out;
    -moz-transition: opacity .3s .5s ease-in-out;
    -ms-transition: opacity .3s .5s ease-in-out;
    -o-transition: opacity .3s .5s ease-in-out;
    transition: opacity .3s .5s ease-in-out;
}
.component-spinner-overlay.animatable {
    display: block;
}
.component-spinner-overlay.is-visible {
    opacity: 1;
}

/* spinner overlay */
.spinner-overlay {
    background-color: rgba(255, 255, 255, 0.5);
    display: none;
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    -webkit-transition: opacity .3s .5s ease-in-out;
    -moz-transition: opacity .3s .5s ease-in-out;
    -ms-transition: opacity .3s .5s ease-in-out;
    -o-transition: opacity .3s .5s ease-in-out;
    transition: opacity .3s .5s ease-in-out;
}
.spinner-overlay.animatable {
    display: block;
}
.spinner-overlay.is-visible {
    opacity: 1;
}
/* spinner */
@-webkit-keyframes spinner {
    from { background-position: 0; }
    to { background-position: -1250px; }
}
@-moz-keyframes spinner {
    from { background-position: 0; }
    to { background-position: -1250px; }
}
@keyframes spinner {
    from { background-position: 0; }
    to { background-position: -1250px; }
}

@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.spinner {
    background: url(images/spinner-sprite.png) no-repeat;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    position: absolute;
    top: 50%;
    width: 50px;
}
.is-visible > .spinner {
    -webkit-animation: spinner 1.0416666666666667s steps(25, end) infinite, fadein 0.7s;
    -moz-animation: spinner 1.0416666666666667s steps(25, end) infinite, fadein 0.7s;
    animation: spinner 1.0416666666666667s steps(25, end) infinite, fadein 0.7s;
}

/* what to do when we have no javascript */
.javascript-message { background: #d00; color: #fff; display: none; left: 0; position: absolute; text-align: center; top: 0; width: 100%; }
.no-js .javascript-message { display: block; }

/* default links */
a {
    color: #454545;
}
a:focus,
.no-touch a:hover {
    outline: none;
    text-decoration: none;
}
a:active {
    color: #7c7c7c;
}
a > img {
    border: none;
}

/* helper classes */
.pull-left { float: left; }
.pull-right { float: right; }

.align-right { text-align: right; }
.align-center { text-align: center; }

.icon {
    background: no-repeat -11px -12px;
    display: inline-block;
    height: 17px;
    vertical-align: middle;
    width: 17px;
}


/*.icon-comment { background-image: url(images/icon-40x40-comment-3a393c.png); }
.icon-comment-current { background-image: url(images/icon-40x40-comment-ee7d13.png); }*/
.icon-docs { background-image: url(images/icon-40x40-docs.png); }
.icon-pdf { background-image: url(images/icon-40x40-pdf.png); }
.icon-ppt { background-image: url(images/icon-40x40-ppt.png); }
.icon-pptx { background-image: url(images/icon-40x40-ppt.png); }
.icon-trash { background-image: url(images/icon-40x40-trash.png); }
.icon-xls { background-image: url(images/icon-40x40-xls.png); }
.icon-scripted-storyboard { background-image: url(images/icon-40x40-scripted-storyboard.png); }
.icon-locked-storyboard { background-image: url(images/icon-40x40-lock.png); }
.icon-hidden-storyboard { background-image: url(images/icon-40x40-hidden-storyboard.png); }
.icon-print-pdf { font-size: 50px; cursor: pointer; }

.icon.icon-space {
    margin-right: 3px;
}

.attachment-icon {
    background: no-repeat 0 0;
}

.big-icon {
    background: no-repeat -10px -13px;
    display: inline-block;
    height: 17px;
    margin-right: 5px;
    vertical-align: middle;
    width: 21px;
}
.icon-slides { background-image: url(images/icon-40x40-saved-storyboard.png); }
.icon-slide { background-image: url(images/icon-40x40-slide.png); }
 
[data-icon]:before {
    content: attr(data-icon);
    speak: none;
}
[data-icon] > .text-alt, [class^="icon-"] > .text-alt, [class*=" icon-"] > .text-alt {
     
    position: absolute;
    left: -9999px;
}


/* Viewer mode stuff */
.viewer-title-container {
    padding-left: 10px;
}

.bookmark-title-dropdown {
    color: #ee7d13;
    display: inline-block;
    /*max-width: 600px;*/
    overflow: hidden;
    padding-right: 25px;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bookmark-title-value {
    display: inline;
    font-size: 20px;
    font-weight: normal;
    /*line-height: 40px;*/
    /*margin: 0;*/
    white-space: nowrap;
}


.bookmark-title-handle {
    background: url(images/icon-40x40-item-selector.png) no-repeat -10px -10px;
    height: 20px;
    position: absolute;
    margin-top: -10px;
    right: 0;
    top: 50%;
    width: 20px;
}
.bookmark-title-dropdown > select {
    border: 0 solid #ccc;
    /*height: 40px;*/
    filter: alpha(opacity=0);
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

/* Clearfix hack */
.cf:before,
.cf:after 
{
    position: relative;
    letter-spacing: -9999px;
    content: " "; /* 1 */
    display: table; /* 2 */
    width: 0px;
}

.cf:after {
    clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
    *zoom: 1;
}

/* generic custom selects */
.select {
    display: inline-block;
    max-width: 100%;
    position: relative;
    text-align: left;
}
.select-value {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: top;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
}
.select-value-hidden {
    visibility: hidden
}
.select-handle { 
  background: url(images/select-handle.png) no-repeat;
    background: url(images/select-handle.svg) no-repeat 50% 50% 45% 100%, -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fcfcfc), color-stop(100%, #dedede));
    background: url(images/select-handle.svg) no-repeat 50% 50% 45% 100%, -webkit-linear-gradient(top, #fcfcfc 0%, #dedede 100%);
    background: url(images/select-handle.svg) no-repeat 50% 50% 45% 100%, -moz-linear-gradient(top, #fcfcfc 0%, #dedede 100%);
    background: url(images/select-handle.svg) no-repeat 50% 50% 45% 100%, -o-linear-gradient(top, #fcfcfc 0%, #dedede 100%);
    background: url(images/select-handle.svg) no-repeat 50% 50% 45% 100%, linear-gradient(to bottom, #fcfcfc 0%, #dedede 100%);
    border: 1px solid #87888a;
    border-radius: 3px;
    height: 14px;
    margin-top: -8px;
    position: absolute;
    right: 0;
    top: 50%;
    width: 14px;
}

.select > select {
    border: none;
    bottom: 0;
    cursor: pointer;
    filter: alpha(opacity=0);
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.item-selector .select > select {
  margin-left: -4px;
}

select > option {
    text-transform: none;
    overflow: visible;
}
/* Viewer title select */
.viewer-title-select .select-value {
    color: #ee7d13;
    font-size: 14px;
    font-weight: normal;
}

/* Item selector */
.item-selector .select {
    max-width: 100%;
}
.item-selector .center-selected-value {
    width: 100%;
    text-align:center
}
.item-selector .select-value-no-padding {
    padding-right: 0;
}
.item-selector .select-value {
    padding-right: 20px;
}

.item-selector label + label {
    margin-left: 10px;
}

/* breakdown selector */
.breakdown-selector {
    line-height: 20px;
    margin-bottom: 0px;    
}
.breakdown-selector .select {
    padding: 0 20px 0 0;
    font-size: 10px;
    overflow: hidden;
}
.breakdown-selector span.select-value {
    text-transform: uppercase;
}
.breakdown-selector span.select-handle {
    background: url(images/triangle-handle.png) no-repeat;
    border: none;
    height: 4px;
    position: absolute;
    right: 6px;
    top: 15px;
    width: 8px;
}
.svg .breakdown-selector .select-handle {
    background-image: url(images/triangle-handle.svg);
    background-size: 100%;
}
.fixed-format .report-component > .chart-box > .breakdown-selector.align-right,
.fixed-format .report-component > .chart-box > .box-horizontal-line {
    margin-right: 20px; /* 20px total padding from .report-component */
}

/* Members toggle */
.members-toggle {
    background-color: #dbdbdb;
    border-radius: 3px;
    cursor: pointer;
    display: inline-block;
    line-height: 20px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0 2px;
    box-shadow: inset 2px 2px 4px #bdbdbd;
}
.members-toggle > a {
    color: #9e9e9e;
    display: inline-block;
    line-height: 16px;
    padding: 0 8px;
    text-decoration: none;
}

.members-toggle-link:focus,
.no-touch .members-toggle-link:hover {
    color: #000;
    text-decoration: none;
}

.members-toggle-link.selected {
    background: #7c7c7c;
    background: linear-gradient(to bottom, #898989 0%, #636363 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #898989), color-stop(100%, #636363));
    background: -webkit-linear-gradient(top, #898989 0%, #636363 100%);
    background: -moz-linear-gradient(top, #898989 0%, #636363 100%);
    background: -ms-linear-gradient(top, #898989 0%, #636363 100%);
    background: -o-linear-gradient(top, #898989 0%, #636363 100%);
    border-radius: 3px;
    color: #fff;
}

.members-toggle-link.selected:focus,
.no-touch .members-toggle-link.selected:hover,
.members-toggle-link.selected:active {
    color: #fff;
    text-decoration: none;
}

.news-header {
    border-bottom: 1px solid #c3c3c3;
    margin: 0 0 0 30px;
    text-align: right;
}
.news-header h1 {
    font-size: 10px;
    margin: 0 0 10px;
    text-transform: uppercase;
}
.news-article {
    font-size: 12px;
    line-height: 1.5;
    margin: 10px 0 10px 30px;
}
.news-article + .news-article {
    border-top: 1px solid #c3c3c3;
}
.news-article h2 {
    font-size: 14px;
    margin: 15px 0 5px;
}
.news-article p {
    margin: 0;
}
@media screen and (max-width: 995px) {
  .news-header {
    margin: 10px 0;
    text-align: left;
  }
  .news-article {
    margin: 10px 0 10px 0;
  }
}
/* Mobile viewer */
/*.app-mode-viewer.mobile-app .page-header {
    display: none;
}*/
.app-mode-viewer.mobile-app .pov-bar {
    margin-top: 1px;
}

/* popup menu, used for print and narrative actions */
.popup-menu {
  background: #fff;
  border: 2px solid #aaa;
  border-radius: 3px;
  display: none;
  font-size: 11px;
  line-height: 2;
  margin-bottom: 10px;
  position: absolute;
  z-index: 100;
}

.popup-menu.open-bottom:before
{
    background: url(images/popup-menu-arrow-up.png) no-repeat;
    top: -7px;
    content: "";
  height: 7px;
  position: absolute;
  right: 7px;
  width: 11px;
}
.popup-menu.open-top:after
{
    background: url(images/popup-menu-arrow-down.png) no-repeat;
    top: 100%;
    content: "";
    height: 7px;
    position: absolute;
    right: 7px;
    width: 11px;
}
.popup-menu.is-open {
  display: block;
}
.designer-menu:before {
    display: none;
}
.print-menu, .comments-menu {
/*  right: 0;*/
    text-align: left;
  margin-left: 7px;
  top: 25px;
}
.popup-menu-section-title {
  color: #454545;
  font-size: inherit;
  line-height: 2.6;
  margin: 0;
  padding: 0 10px;
  text-transform: uppercase;
}
.popup-menu-section {
  border-top: 1px solid #c3c3c3;
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
.popup-menu-section > li 
{
    float: none !important;
  padding: 0;
}
.popup-menu-section li + li {
  margin-top: 3px;
}
.popup-menu-section a 
{
  white-space: nowrap;
  display: block;
  padding: 0 10px;
  text-decoration: none;
}
.popup-menu li.invalid-option {
  display: none;
}
.no-touch .popup-menu-section a:hover {
  background: #e1e1e1;
}
.popup-menu-section .icon {
  margin-right: 5px;
}


.prepare-autoupdate-apply-button {
    position: relative;
    top: 3px;
    font-size: 15px;
    color: #ee7d13 !important;
}

.report-element-error {
    padding: 10px;
    color: #bdbdbd;
}

.ht_clone_top, .ht_clone_top_left, .ht_clone_top_left_corner, .ht_clone_left {
  z-index: auto !important;
}


.show-overflow {
    overflow: visible !important;
}

.printPdfContainer {
     clear: both;
     padding: 5px;
}
.printPdfSelector {
    margin-top: 5px;
}
.printPdf {
    padding: 5px;
    float: left;
}
.printPdf.selected {
   background-color: #9FC5F8;
}

.hidden-icon {
    display: none;
}

.metadata-loader {
    background: url(images/metadata-loader.gif) no-repeat center center;
    height: 100px;
}

.disabled-external-link {
    text-decoration: underline;
}
.disabled-external-link:hover {
    cursor: not-allowed;
}

.catalog-sad-face {
    float: left;
    font-size: 100px;
    margin-right: 30px;
    margin-top: 15px;
    display: block;
}

@media screen and (max-width: 1024px) {
    .catalog-error-wrapper {
        padding: 0 15px;
    }
}

@media screen and (max-width: 500px) {
    .catalog-sad-face {
        float: none;
        margin: 0 auto;
        padding-bottom: 20px;
        width: 100px;
    }
}

.catalog-error {
    display: block;
    overflow: hidden;
    margin-bottom: 10px;
    max-width: 600px;
}

.catalog-bold {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}

.catalog-gray-area {
    background-color: #d9d9d9;
    padding: 8px;
}
.catalog-report-link {
    display: block;
    width: 100%;
    background: #d9d9d9;
    border: none;
    line-height: 2em;
    font-size: 14px;
    font-weight: bold;
    color: #454545;
}
.catalog-block {
    display: block
}
.catalog-copy-link {
    display: block;
    color: #00a6db;
}
.catalog-report-link-block {
    margin-bottom: 10px;
}
.catalog-bt {
    padding: 10px 20px;
	border: none;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    margin-top: 10px;
}
.catalog-buttons {
    margin-top: 10px;
}
.catalog-back-bt {
    background-color: #40a0ea;
    color: white;
}
.catalog-home-bt {
    background-color: white;
    color: #454545;
}
.disable-interactions * {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.overlay {
	background: url(images/overlay-bg.png);
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 0;
	height: 100%;
	left: -100%;
	opacity: 0;
	overflow: auto;
	padding: 10px;
	position: fixed;
	text-align: center;
	top: 0;
	-webkit-transition: opacity .2s;
	-moz-transition: opacity .2s;
	-o-transition: opacity .2s;
	transition: opacity .2s;
	width: 100%;
	z-index: 200;
}
/*.mobile-app .overlay {*/
	/* position: absolute; /* used to be 'absolute' because 'fixed' is complicated on touch devices */
	/*-webkit-overflow-scrolling: touch;*/ /* need to find a way to bring this back, -webkit-overflow-scrolling: auto; might be worth exploring */
/*}*/
.overlay.is-visible {
	left: 0;
	opacity: 1;
	overflow: auto;
}
.overlay.fadeout {
	opacity: 0;
}
.overlay:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.overlay-dialog {
	border: 4px solid #fff;
	border-color: rgba(211, 211, 211, .7);
	border-radius: 4px;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, .25);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	font-size: 12px;
	margin: 0 auto;
	max-width: 100%;
	min-width: 220px;
	text-align: left;
	vertical-align: middle;
	width: 950px;
	display: none;
}
.is-visible .overlay-dialog
{
	display: inline-block;
	/*
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	*/
}
.fadeout .overlay-dialog {
	-webkit-transform: scale(.5);
	-moz-transform: scale(.5);
	-ms-transform: scale(.5);
	-o-transform: scale(.5);
	transform: scale(.5);
}
.overlay-dialog-extra-small {
	width: 220px;
}
.overlay-dialog-small {
	width: 340px;
}
.overlay-dialog-medium {
	width: 595px;
}
.overlay-dialog-dynamic {
	min-width: 340px;
	max-width: 820px;
	width: auto;
}

.overlay-inner {
	background: #fff;
}
.overlay-inner:after {
	clear: both;
	content: "";
	display: table;
}

.overlay-dialog-title {
	background: #7c7c7c;
	color: #fff;
	font-size: 10px;
	line-height: 12px;
	margin: 0;
	padding: 9px 10px;
	text-transform: uppercase;
}

.overlay-title {
	margin: 10px 10px 0;
	font-size: 10px;
	font-weight: bold;
	line-height: 20px;
	text-transform: uppercase;
}

.overlay-dialog-line {
	margin: 10px;
	overflow: auto;
}
.overlay-dialog-line.no-overflow {
	overflow: visible;
}
.overlay-title + .overlay-dialog-line {
	margin-top: 0;
}

.overlay-dialog-form {
  margin: 0;
}

.overlay-buttons { line-height: 22px; text-align: right; }
.overlay-buttons > a { display: inline-block; }
.overlay-buttons .pull-left { margin-right: 10px; }
.overlay-buttons .pull-right { margin-left: 10px; }

.overlay-buttons .pull-right.script-correct {
	margin-left: 5px;
	padding-left: 0;
	line-height: 15px;
}

.form-submit-button.pull-left.create-storyboard {
	margin-right: 0;
}
#maintain-storyboards-content .overlay-buttons .touch-checkbox {
	padding: 0;
}

/* Specific overlays stuff */

.change-scale-dialog { max-width: 328px; }

.comment-comparison {
	overflow: auto;
	padding: 10px;
}
.comment {
	width: 48.75%;
}
.comment + .comment {
	margin-left: 2.5%;
}
.comment > h1 {
	font-size: 10px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.comment > div {
	box-shadow: inset 0 1px 3px 0 rgba(0,0,0,.1);
	background: #eaeaea;
	background: #eaeaea -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, .09)), color-stop(100%, rgba(255, 255, 255, .09)));
	background: #eaeaea -webkit-linear-gradient(top, rgba(0, 0, 0, .09) 0%, rgba(255, 255, 255, .09) 100%);
	background: #eaeaea -moz-linear-gradient(top, rgba(0, 0, 0, .09) 0%, rgba(255, 255, 255, .09) 100%);
	background: #eaeaea -o-linear-gradient(top, rgba(0, 0, 0, .09) 0%, rgba(255, 255, 255, .09) 100%);
	background: #eaeaea linear-gradient(to bottom, rgba(0, 0, 0, .09) 0%, rgba(255, 255, 255, .09) 100%);
	border-radius: 3px;
	min-height: 300px;
	padding: 10px;
}

.overlay-table {
	border-collapse: collapse;
	width: 100%;
	table-layout: fixed;
	box-sizing: content-box;
}
.overlay-table > thead th,
.overlay-table > tbody td { border-left: 1px solid #cecece; vertical-align: top;box-sizing: content-box;}
.overlay-table > thead th:first-child,
.overlay-table > tbody td:first-child { border-left: none; }

.overlay-table > thead th {
	background: #9d9d9d;
	color: #fff;
	font-size: 10px;
	font-weight: bold;
	line-height: 18px;
	padding: 1px 10px;
	text-transform: uppercase;
	text-align: left;
}
.overlay-table th > span,
.overlay-table td > span {
	display: block;
	white-space: nowrap;
	position: relative;
	-moz-text-overflow: ellipsis;
	text-overflow: ellipsis;
	overflow: hidden;
}
.overlay-table > tbody td {
	font-size: 12px;
	line-height: 18px;
	padding: 1px 10px;
}
.overlay-table > tbody > tr:first-child > td {
	padding-top: 10px;
}

.overlay-editor {
	padding: 0 10px;
	overflow: hidden;
	/*height: 285px;*/
}
.overlay-checkbox {
	padding-left: 5px;
}
.overlay-item-list {
    padding-top: 10px;
    padding-bottom: 5px;
}
.scroll-area .overlay-editor:first-child {
	padding-top: 10px;
}
.overlay-editor textarea {
	height: 200px;
	width: 99%;
	max-width: 99%;
}
.overlay-print-line {
	padding: 10px;
}

/* Storyboards overview */
.storyboards-list,
.slides-list {
	height: 240px;
	line-height: 28px;
	list-style: none;
	margin: 0;
	overflow: auto;
	padding: 0;
	position: relative;
}
.storyboards-list {
	border-right: 1px solid #cecece;
}
.storyboard,
.slide {
	position: relative;
}
.slide {
	padding: 0 10px;
}

.storyboard > a {
	display: block;
	padding: 0 10px;

}
.storyboard > a:hover,
.storyboard > .selectable
{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}


 .storyboardAnimation-enter {
	opacity: 0;
	height:0;
  -webkit-transition: opacity 1s ease-out,height 1s ease-out;
  -moz-transition: opacity 1s ease-out,height 1s ease-out;
   -o-transition: opacity 1s ease-out,height 1s ease-out;
   transition:  0.2s ease-out ,height 0.3s ease-out;
}

.storyboardAnimation-enter.storyboardAnimation-enter-active {
  opacity: 1;
  height:28px;
}
.storyboardAnimation-leave {
  opacity: 1;
  height: 28px;
  -webkit-transition: opacity 1s ease-out,height 1s ease-out;
  -moz-transition: opacity 1s ease-out,height 1s ease-out;
   -o-transition: opacity 1s ease-out,height 1s ease-out;
   transition:  0.2s ease-out ,height 0.3s ease-out;
}

 .storyboardAnimation-leave.storyboardAnimation-leave-active {
	 opacity: 0;
	 height:0;
}


.storyboard > .selected {
	background-color: #e6e6e6;
	text-decoration: none;
}
.storyboard > .selected {
	font-weight: bold;
	padding-right: 10px;

}

.storyboard > .hidden{
	opacity:0;
}

/* narratives */
.narrative-audit > h1 {
	background-color: #9d9d9d;
	color: #fff;
	font-size: 10px;
	font-weight: bold;
	line-height: 20px;
	margin: 0;
	padding: 0 10px;
}

.narrative-audit-text{ padding: 10px;border: solid 1px #e6e6e6;}

/* Context menu */
.context-menu {
	display: none;
	position: absolute;
	right: 10px;
	top: 4px;
	z-index: 10;
}
.context-menu.is-open { z-index: 20; }
.selected + .context-menu,
.slides-container .context-menu { display: block; }

.context-menu-handle {
	background: url(images/icon-40x40-item-selector.png) no-repeat -10px -10px;
	display: block;
	height: 20px;
	position: relative;
	width: 20px;
	z-index: 15;
}

.context-menu.is-open.open-bottom > .context-menu-handle {
	background-image: url(images/icon-40x40-context-menu.png);
	z-index: 25;
}
.context-menu.is-open.open-top > .context-menu-handle {
	background-image: url(images/icon-40x40-context-menu-up.png);
	z-index: 25;
}
.context-menu > ul {
	background-color: #fff;
	border: 1px solid #b1b1b1;

	display: none;
	font-size: 10px;
	list-style: none;
	line-height: 20px;
	position: absolute;
	padding: 0;
/*	right: 2px;*/
	/*top: 16px;*/
	z-index: 20;
	-webkit-transform: transform3d(0,0,0);
}

.context-menu.is-open.open-bottom > ul
{
	border-radius: 3px 0 3px 3px;
	margin-top: -4px;
}
.context-menu.is-open.open-top > ul
{
	margin-top: 4px;
	border-radius: 3px 3px 0px 3px;
}

.context-menu.is-open > ul { display: block;}

.context-menu > ul > li { margin: 1px; }

.context-menu > ul a {
	display: block;
	padding: 0 10px;
	white-space: nowrap;
}

.context-menu > ul a:hover {
	background-color: #e6e6e6;
	text-decoration: none;
}


.about-contents h1 {
	background-color: #9d9d9d;
	color: #fff;
	font-size: 10px;
	font-weight: bold;
	line-height: 20px;
	margin: 0;
	padding: 0 10px;
	text-transform: uppercase;
}
.about .logo{ background: url(../../images/cxo-cockpit.ico) no-repeat;width: 32px;height: 32px;float: left;margin-right: 10px;}
.about p{ margin: 0px 0px 10px;padding: 0px;}
.about .license{ white-space: pre-line;}


/*error*/
.error-dialog-title {
	background: #ff1e1e;
	color: #fff;
	font-size: 10px;
	line-height: 12px;
	margin: 0;
	padding: 9px 10px;
	text-transform: uppercase;
}

/* confirm dialog*/
.confirm-message {
	padding-top: 10px;
}

.info_label_grey {
	color: #7c7c7c;
}

    
.login-logo {
    background-repeat: no-repeat;
    background-position: 50% 50%;
	background-size: contain;
	display: block;
	height: 40px;
    width: calc(100% - 20px);
    margin: 0 10px;
	position: absolute;
	top: 60px;
}

#login-overlay {
    padding: 0;
}

.login-dialog {
    width: 356px;
    display: block;
    margin-top: 150px;
}

.overlay:before {
     height: auto;
}

.login-form {
    overflow: auto; 
    margin: 0;
}

@media (max-width: 768px) {
    .login-logo {
        top: 30px;
    }
}

@media (max-width: 768px) {
    .overlay:before {
        height: 100%;
    }

    .login-dialog {
        display: inline-block;
        margin-top: auto;
    }
}

@media screen and (max-height: 570px) {
    body.Login .login-logo {
        display: none;
    }

    .login-dialog {
        margin-top: 30px;
    }
}

@media screen and (max-height: 470px)
{
    body.ChangePassword .login-logo {
        display: none;
    }
    body.ChangePassword .overlay-dialog {
        margin-top: auto;
    }
    body.ChangePassword span.real-label {
        line-height: 18px;
    }
}

@media screen and (max-width: 768px) and (max-height:320px) and (orientation: landscape){
    body.ChangePassword p.overlay-dialog-line {
        margin-top: 2px;
        margin-bottom: 5px;
    }
}

.form-errors {
    background: #ededed; 
    border-radius: 3px; 
    margin: 10px;
}
.form-errors > ul {
    list-style: none; 
    margin: 0; 
    padding: 10px;
}
.form-errors li {
    font-weight: bold; 
    line-height: 1.5; 
    padding: 0;
}

.password-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.login__form {
    background-color: var(--grey-light);
    font-family: var(--font-family);
    padding: 24px;
}

.login__form > p:not(:last-child) {
    margin-bottom: 14px;
}

.login__form .real-label {
    font-size: 12px;
    text-transform: none;
    padding-bottom: 3px;
}

.login__form .text-input {
    box-shadow: none;
    border: none;
    background: none;
    padding: 0;   
}

.login__form .text-input > input {
    height: 40px;
    padding-left: 13px;
    font-size: 14px;
    border: solid 1px var(--grey-medium);
    background-color: var(--white);
    width: calc(100% - 13px);
}

.login__form .text-input.input-error > input {
    border: 1px solid var(--red);
}

.login__form .text-input > input:-webkit-autofill,
.login__form .text-input > input:-webkit-autofill:hover,
.login__form .text-input > input:-webkit-autofill:focus,
.login__form .text-input > input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 40px white inset !important;
}

.login__form .text-input > input:focus {
    border: 1px solid var(--black);
    outline: none;
}

.login__form .select {
    height: 40px;
    font-size: 14px;
    background: none;
    border: none;
    border: solid 1px var(--grey-medium);
    background-color: var(--white);
}

.login__form select > option {
    padding-left: 13px;
}

.login__form .form-select .select-value {
    height: 40px;
    font-size: 14px;
    padding: 8px 30px 0 13px;
    background: none;
    border: solid 1px var(--grey-medium);
    background-color: var(--white);
}

.overlay-dialog.login-dialog,
.Login .overlay-dialog {
    border: none;
}

.login__changepassword-buttons,
.login__buttons {
    padding: 8px 0 0 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
}

.login__form .form-submit-button {
    height: 40px;
    border-radius: 4px;
    background: var(--cxo-primary-color);
    border-color: var( --cxo-primary-color);
    flex: 1 0 auto;
    font-family: var(--font-family);
    font-size: 14px;
    text-shadow: none;
    font-weight: bold;
}

.login__form .form-submit-button:hover {
    background: var(--cxo-primary-color-hover-on-dark-background) !important;
    border-color: var(--cxo-primary-color-hover-on-dark-background);
    cursor: pointer;
}

.login__form .login__changepassword-buttons > * {
    flex: 0 0 auto;
    font-size: 14px;
}

.login__cancel-button {
    padding: 7px 15px;
}

.login__form .overlay-dialog-title {
    font-size: 16px;
    font-weight: bold;
    background: none;
    color: var(--black);
    margin: 0 0 16px 0;
    padding: 0;
    text-transform: none;
}

.login__form .password-label a {
    line-height: 20px;
}

.login__form a:hover {
    color: var(--cxo-primary-color);
}

.login__form .form-errors {
    margin: 0;
}

.login__form .form-submit-button:after {
    content: none;
}

.login__form .form-submit-button.is-submitting {
    margin-right: 0;
}

.login__form .form-submit-button.is-submitting:after {
    display: none;
}

.login__form .form-submit-button .form-submit-button__text:after {
    content: "";
    font-size: 10px;
    width: 1em;
    height: 1em;
    border-top: 0.5em solid var(--white);
    border-right: 0.5em solid transparent;
    border-bottom: 0.5em solid var(--white);
    border-left: 0.5em solid transparent;
    animation: load8 1.1s infinite linear;
    text-indent: -9999em;
    border-radius: 50%;
    border-top-width: 0.1em;
    border-right-width: 0.1em;
    border-bottom-width: 0.1em;
    border-left-width: 0.1em;
    display: none;
    position: absolute;
    margin-left: 8px;
}

.login__form .form-submit-button.is-submitting .form-submit-button__text {
    margin-right: 20px;
    overflow: visible;
    position: relative;
}

.login__form .form-submit-button.is-submitting .form-submit-button__text:after {
    display: inline-block;
}

@keyframes load8 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.login__form .overlay-dialog-line {
    margin: 0;
}

.login__form .powered-by {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--grey-darkest);
    font-size: 12px;
}

.login__form .cxo-software-logo-small {
    background-image: url(images/login-logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
}
