/* core page imports. .less inlined, .css preserved as @imports */
/* shared.less */
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
@import "../../core/lib/fancybox/jquery.fancybox.css";
.alertify,
.alertify-show,
.alertify-log {
  -webkit-transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -ms-transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* easeOutBack */
}
.alertify-hide {
  -webkit-transition: all 250ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -moz-transition: all 250ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -ms-transition: all 250ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -o-transition: all 250ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
  transition: all 250ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
  /* easeInBack */
}
.alertify-log-hide {
  -webkit-transition: all 500ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -moz-transition: all 500ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -ms-transition: all 500ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -o-transition: all 500ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
  transition: all 500ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
  /* easeInBack */
}
.alertify-cover {
  position: fixed;
  z-index: 99999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: white;
  filter: alpha(opacity=0);
  opacity: 0;
}
.alertify-cover-hidden {
  display: none;
}
.alertify {
  position: fixed;
  z-index: 99999;
  top: 50px;
  left: 50%;
  width: 550px;
  margin-left: -275px;
  opacity: 1;
}
.alertify-hidden {
  -webkit-transform: translate(0, -150px);
  -moz-transform: translate(0, -150px);
  -ms-transform: translate(0, -150px);
  -o-transform: translate(0, -150px);
  transform: translate(0, -150px);
  opacity: 0;
  display: none;
}
/* overwrite display: none; for everything except IE6-8 */
:root * > .alertify-hidden {
  display: block;
  visibility: hidden;
}
.alertify-logs {
  position: fixed;
  z-index: 5000;
  bottom: 10px;
  right: 10px;
  width: 300px;
}
.alertify-logs-hidden {
  display: none;
}
.alertify-log {
  display: block;
  margin-top: 10px;
  position: relative;
  right: -300px;
  opacity: 0;
}
.alertify-log-show {
  right: 0;
  opacity: 1;
}
.alertify-log-hide {
  -webkit-transform: translate(300px, 0);
  -moz-transform: translate(300px, 0);
  -ms-transform: translate(300px, 0);
  -o-transform: translate(300px, 0);
  transform: translate(300px, 0);
  opacity: 0;
}
.alertify-dialog {
  padding: 25px;
}
.alertify-resetFocus {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.alertify-inner {
  text-align: center;
}
.alertify-text {
  margin-bottom: 15px;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 100%;
}
.alertify-button,
.alertify-button:hover,
.alertify-button:active,
.alertify-button:visited {
  background: none;
  text-decoration: none;
  border: none;
  /* line-height and font-size for input button */
  line-height: 1.5;
  font-size: 100%;
  display: inline-block;
  cursor: pointer;
  margin-left: 5px;
}
.alertify-isHidden {
  display: none;
}
@media only screen and (max-width: 680px) {
  .alertify,
  .alertify-logs {
    width: 90%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .alertify {
    left: 5%;
    margin: 0;
  }
}
/**
 * Twitter Bootstrap Look and Feel
 * Based on http://twitter.github.com/bootstrap/
 */
.alertify,
.alertify-log {
  font-family: sans-serif;
}
.alertify {
  background: #FFF;
  border: 1px solid #8E8E8E;
  /* browsers that don't support rgba */
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -webkit-background-clip: padding;
  /* Safari 4? Chrome 6? */
  -moz-background-clip: padding;
  /* Firefox 3.6 */
  background-clip: padding-box;
  /* Firefox 4, Safari 5, Opera 10, IE 9 */
}
.alertify-dialog {
  padding: 0;
}
.alertify-inner {
  text-align: center;
  padding: 10px 20px;
}
.alertify-message {
  padding: 15px;
  margin: 0;
}
.alertify-text-wrapper {
  padding: 0 15px;
}
.alertify-text {
  color: #555;
  border-radius: 4px;
  padding: 8px;
  background-color: #FFF;
  border: 1px solid #CCC;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.alertify-text:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}
.alertify-buttons {
  padding: 14px 15px 15px;
  border-radius: 0 0 6px 6px;
  box-shadow: inset 0 1px 0 #FFF;
  text-align: center;
}
.alertify-buttons .button-primary {
  background-color: #007cbe;
  border: 1px solid #007cbe;
  border-radius: 15pt;
  color: #ffffff;
  cursor: pointer;
  font-weight: 200;
  letter-spacing: 0.05em;
  padding: 4px 20px 4px 20px;
  min-width: 100px;
  background-image: none;
  text-decoration: none;
  margin: 10px;
  font-size: 12px;
}
.alertify-buttons .button-primary:hover {
  border: 1px solid #007cbe;
  background-color: #ffffff;
  color: #007cbe;
  text-decoration: none;
}
.alertify-buttons .button-link {
  color: #999999;
  font-size: 12px;
  margin: 10px;
}
.alertify-button,
.alertify-button:hover,
.alertify-button:focus,
.alertify-button:active {
  margin-left: 10px;
  border-radius: 4px;
  font-weight: normal;
  padding: 4px 12px;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  background-image: -ms-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  background-image: linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
}
.alertify-button:focus {
  outline: none;
  box-shadow: 0 0 5px #2B72D5;
}
.alertify-button:active {
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.alertify-button-cancel,
.alertify-button-cancel:hover,
.alertify-button-cancel:focus,
.alertify-button-cancel:active {
  text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.75);
  background-color: #E6E6E6;
  border: 1px solid #BBB;
  color: #333;
  background-image: -webkit-linear-gradient(top, #FFF, #E6E6E6);
  background-image: -moz-linear-gradient(top, #FFF, #E6E6E6);
  background-image: -ms-linear-gradient(top, #FFF, #E6E6E6);
  background-image: -o-linear-gradient(top, #FFF, #E6E6E6);
  background-image: linear-gradient(top, #FFF, #E6E6E6);
}
.alertify-button-cancel:hover,
.alertify-button-cancel:focus,
.alertify-button-cancel:active {
  background: #E6E6E6;
}
.alertify-button-ok,
.alertify-button-ok:hover,
.alertify-button-ok:focus,
.alertify-button-ok:active {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #04C;
  border: 1px solid #04C;
  border-color: #04C #04C #002A80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  color: #FFF;
}
.alertify-button-ok:hover,
.alertify-button-ok:focus,
.alertify-button-ok:active {
  background: #04C;
}
.alertify-log {
  background: #D9EDF7;
  padding: 8px 14px;
  border-radius: 4px;
  color: #3A8ABF;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border: 1px solid #BCE8F1;
}
.alertify-log-error {
  color: #B94A48;
  background: #F2DEDE;
  border: 1px solid #EED3D7;
}
.alertify-log-success {
  color: #468847;
  background: #DFF0D8;
  border: 1px solid #D6E9C6;
}
.fancybox {
  z-index: 999;
  position: absolute;
  top: -9999px;
}
.fancybox .fancybox-content {
  position: relative;
  overflow: auto;
  background-color: #cecece;
  border: 3px solid #fff;
}
.fancybox .fancybox-content .fancybox-header {
  width: 100%;
}
.fancybox .fancybox-content .fancybox-footer {
  width: 100%;
}
.fancybox-underlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 998;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
/* HACK fixes to alertify */
input[type=text].alertify-text {
  height: 26px;
}
#alertify-form {
  margin: 0;
}
/* ENDHACK fixes to alertify */
a {
  color: #006890;
}
body {
  background: url(../../core/images/bg.jpg) #ecf2f3;
  padding-top: 40px;
  padding-bottom: 40px;
}
.env-dev body {
  background-image: url(../../core/images/bg-dev.png);
}
.env-sandbox body {
  background-image: url(../../core/images/bg-sandbox.png);
}
.env-stage body {
  background-image: url(../../core/images/bg-stage.png);
}
.env-qa body,
.env-qadev body {
  background-image: url(../../core/images/bg-qa.png);
}
@media (max-width: 767px) {
  body {
    padding-bottom: 300px;
  }
}
.navbar-inverse .brand {
  color: #fff;
}
.navbar .user-display-name {
  display: block;
  float: left;
  max-width: 10em;
  overflow: hidden;
  text-overflow: ellipsis;
}
.navbar .user-avatar {
  float: left;
}
.radio.inline,
.checkbox.inline {
  white-space: nowrap;
}
.hide {
  display: none !important;
}
form fieldset .control-group.error i {
  color: #f95336;
}
form fieldset .control-group.success i {
  color: #32d17e;
}
form fieldset .form-actions a.btn {
  margin: 0 1em 1em 0;
}
form fieldset .form-actions a.btn.pull-right {
  margin: 0 0 1em 1em;
}
i.icon-green {
  color: #32d17e;
}
i.icon-red {
  color: #f95336;
}
.env {
  position: fixed;
  right: 10px;
  top: 50px;
}
.env #alert_env {
  padding-right: 14px;
}
.env #btn_env {
  position: absolute;
  right: 15px;
  top: 9px;
}
.env .table {
  margin: 0 70px 0 0;
  width: inherit;
}
.env .table tr td,
.env .table tr th {
  border-color: #f95336;
}
.env .table tr:first-child td,
.env .table tr:first-child th {
  border-top: 0 none;
}
.env .table tr:hover td,
.env .table tr:hover th {
  background-color: inherit;
}
.modal-working {
  margin-left: -90px;
  overflow: hidden;
  width: 180px;
}
.modal-working .modal-spinner {
  height: 130px;
}
.modal-working .modal-spinner .spinner {
  left: 50% !important;
  top: 60px !important;
}
.navbar-inverse .nav .active > a,
.navbar-inverse .nav .active > a:hover,
.navbar-inverse .nav .active > a:focus {
  color: #fff;
  background: #4e545a;
}
.navbar-inverse .navbar-text {
  color: #fff;
}
.navbar-inverse .nav > li > a {
  color: #fff;
}
.navbar-inverse .navbar-inner {
  background: #666e75;
  border-color: #5a6167;
  /* IE fix */
}
.navbar-inverse .navbar-inner .brand img {
  height: 17px;
  margin-top: 1px;
  margin-bottom: -1px;
  width: 109px;
}
.navbar-inverse .navbar-inner .brand#brand_logo {
  width: 109px;
}
.navbar .nav-user,
.navbar-inverse .nav-user {
  white-space: nowrap;
}
.navbar .nav-user img,
.navbar-inverse .nav-user img {
  margin: 1px 0.5em -7px 0;
}
.navbar-inverse .nav-collapse.in .nav li .dropdown-menu a {
  color: #000;
}
.navbar-inverse .nav-collapse.in .nav li .dropdown-menu a:hover {
  color: #fff;
  background: #4e545a;
}
.navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
  border-top-color: #eee;
  border-bottom-color: #eee;
}
@media (max-width: 979px) {
  /* huh? */
  body {
    padding-top: 0;
  }
  .navbar-fixed-top .navbar-inner,
  .navbar-fixed-bottom .navbar-inner {
    padding: 0px;
  }
  .env .table {
    margin: 30px 0 0;
    width: inherit;
  }
  .env .table tr th.no-wrap {
    white-space: normal;
  }
}
/* core-v2.less - "nwt" style chrome master rules */
/* newstyle defines */
/* core-navigation */
.fullscreen-toggler {
  height: 40px;
  left: 0;
  margin-left: -9px;
  position: absolute;
  top: 45%;
  transition: width 0.5s ease-in;
  width: 18px;
}
.fullscreen-toggler a {
  background-color: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 16px;
  box-shadow: 0px 0 5px 0px rgba(0, 0, 0, 0.1);
  color: #007CBE;
  display: block;
  font-size: 10px;
  font-weight: 100;
  margin: 5px -1px;
  padding: 1px;
  text-decoration: none;
  transition: opacity 0.5s ease-in;
  line-height: 16px;
}
.fullscreen-toggler a i {
  margin-left: 4px;
}
.fullscreen-toggler a:hover {
  text-decoration: none;
}
.fullscreen-toggler.contracted {
  width: 35px;
  margin-left: -35px;
}
.fullscreen-toggler.contracted .fullscreen-toggle-collapse {
  opacity: 0;
}
.fullscreen-toggler.expanded .fullscreen-toggle-collapse {
  background-color: #fff;
  border-radius: 30pt;
  box-shadow: -3px 0 5px 0px rgba(0, 0, 0, 0.1);
  padding: 2px;
}
.fullscreen-toggler.expanded .fullscreen-toggle-expand {
  opacity: 0;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-submenu:hover > a,
.dropdown-submenu:focus > a {
  background-color: #5096f2;
  background-image: linear-gradient(to bottom, #5096f2, #2f71ca);
}
.navbar .navbar-user {
  background-color: #333;
  border: 0;
}
.navbar .navbar-user .nav-main {
  position: absolute;
  font-family: "Public Sans", "arial rounded mt", Helvetica, Arial, sans-serif;
}
.navbar .navbar-user .nav-main .workdesk-link {
  display: block;
  color: #999;
  font-size: 18px;
  line-height: 20px;
  margin-left: 30px;
  padding: 20px 0;
}
.navbar .navbar-user .nav-main .workdesk-link:hover {
  color: #fff;
  text-decoration: none;
}
.navbar .nav-profile {
  height: 60px;
}
.navbar .nav-profile .nav-user img {
  border-radius: 20px;
  height: 30px;
  width: 30px;
  margin-top: 5px;
}
.navbar .nav-profile .nav-user .nav-text {
  color: #999;
  padding: 20px 0 0 0;
  line-height: 40px;
  margin-left: 8px;
}
.navbar .nav-profile .user-name {
  color: #ccc;
  display: block;
  font-size: 9px;
  letter-spacing: 0.02em;
  line-height: 12px;
  margin: 5px 0;
  text-rendering: geometricPrecision;
}
.navbar .nav-profile b.nav-text.caret {
  border-bottom-color: #fff;
  border-top-color: #fff;
  border-width: 4px;
  margin: 19px 0 0 15px;
  opacity: 0.8;
}
.navbar .nav-profile .icon {
  color: #5096f2;
  display: block;
  font-size: 6px;
  margin: 8px 0 5px 8px;
}
.navbar .nav-profile .dropdown-menu {
  top: 60px;
  margin-top: -1px;
}
.navbar .nav-profile .dropdown-menu .nav-header {
  border-top: 1px solid #eee;
  color: #2f71ca;
  padding: 10px 10px 5px 10px;
}
.navbar .nav-profile #nav_logout i {
  color: #7b1323;
  display: inline-block;
  font-size: 14px;
  margin: -2px 4px 0 0;
  vertical-align: middle;
}
.navbar .nav-profile #nav_logout:hover i {
  color: #fff;
}
.navbar .control-nav {
  padding-top: 15px;
}
.navbar .control-nav .lastsaved a {
  color: #e3b447;
}
.navbar .warning-nav {
  padding-top: 10px;
}
.navbar .warning-nav .throbber i {
  color: #999;
}
.navbar .warning-nav .icon-warning-sign {
  color: #e3b447;
}
.navbar-inverse .nav-user img {
  margin-top: 0;
}
.tab-navigation {
  background-color: #fff;
  height: 50px;
  float: left;
  width: 100%;
}
.tab-navigation ul {
  border-bottom: 1px solid #e2e2e2;
  float: left;
  margin: 0;
  width: 100%;
}
.tab-navigation ul li {
  float: left;
  height: 48px;
  text-align: center;
  width: 20%;
  /*
            &.first-visible a {
                border: none;
            }
            */
}
.tab-navigation ul li a,
.tab-navigation ul li a:link,
.tab-navigation ul li a:visited {
  background-color: #fff;
  border-left: 1px solid #e2e2e2;
  color: #aaa;
  height: 48px;
  line-height: 52px;
  font-size: 22px;
  transition: background-color 0.4s;
}
.tab-navigation ul li a:hover,
.tab-navigation ul li a:focus,
.tab-navigation ul li a:active {
  background-color: #fff;
}
.tab-navigation ul li.active {
  border-bottom: 1px solid #007CBE;
}
.tab-navigation ul li.active a {
  color: #007CBE;
  background-color: #fff;
}
.tab-navigation .control-nav .attention .alert-counter {
  background-color: #d00243;
  border-radius: 15px;
  color: #fafafa;
  display: block;
  font-family: "Public Sans", Arial, "Segoe UI", Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 200;
  height: 15px;
  line-height: 15px;
  margin: -49px 0 0 16%;
  position: absolute;
  text-align: center;
  text-rendering: optimizeLegibility;
  width: 15px;
}
@media (max-width: 979px) {
  .composer-body {
    padding: 0 10px;
  }
  .navbar-fixed-top {
    position: fixed;
  }
  .navbar .navbar-user .nav-main .workdesk-link {
    background-position: 10px 7px;
    background-size: 160px;
    height: 20px;
  }
  .navbar .nav-profile {
    height: 40px;
  }
  .navbar .nav-profile .nav-user img {
    border-radius: 10px;
    height: 20px;
    width: 20px;
    margin-top: 0;
  }
  .navbar .nav-profile b.nav-text.caret {
    margin-top: 8px;
  }
  .navbar .nav-profile .dropdown-menu {
    top: 34px;
  }
  .navbar .warning-nav,
  .navbar .control-nav {
    padding-top: 0;
  }
  #content {
    margin-top: 40px;
  }
}
/* core-layout.less */
#content {
  margin-top: 60px;
}
.fixed-sidebar {
  background-color: #f6f6f6;
  height: 100%;
  right: 0;
}
.core-sidebar {
  background: #f6f6f6;
  font-size: 80%;
  height: 100%;
  right: 0;
  transition: all 0.2s ease-in;
  z-index: 40;
}
.core-sidebar.span8 {
  box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.1);
}
.core-sidebar .inner-content {
  color: #888;
  border-left: 1px solid #e2e2e2;
  margin-top: 50px;
  margin-right: -13px;
}
.core-sidebar .inner-content h1,
.core-sidebar .inner-content h2,
.core-sidebar .inner-content h3,
.core-sidebar .inner-content h4,
.core-sidebar .inner-content h5,
.core-sidebar .inner-content h6 {
  color: #666;
  opacity: 0.75;
}
.core-sidebar .inner-content .comments-pane {
  padding-right: 13px;
}
.core-sidebar .inner-content .cellblock {
  background: #fff;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4pt;
  box-shadow: 3px 0 3px #ededed;
}
.core-sidebar .inner-content .pane {
  display: none;
}
.core-sidebar .inner-content .pane.active {
  display: block;
}
.core-sidebar .inner-content fieldset .hideable {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height 0.2s ease-in;
}
.core-sidebar .inner-content fieldset.active .hideable {
  max-height: 100%;
}
.core-sidebar legend {
  color: #888;
  font-size: 100%;
  cursor: pointer;
  margin-bottom: 10px;
}
.core-sidebar .shortage {
  font-size: 12px;
}
.core-sidebar .shortage.warn {
  color: #bd1622;
}
@media (max-width: 979px) {
  .navbar-fixed-top {
    position: fixed;
  }
  .navbar .navbar-user .nav-main .workdesk-link {
    padding: 10px 0;
    height: 20px;
  }
  .navbar .nav-profile {
    height: 40px;
  }
  .navbar .nav-profile .nav-user img {
    border-radius: 10px;
    height: 20px;
    width: 20px;
    margin-top: 0;
  }
  .navbar .nav-profile .nav-user .nav-text {
    padding: 2px 0;
    line-height: 22px;
  }
  .navbar .nav-profile b.nav-text.caret {
    margin-top: 8px;
  }
  .navbar .nav-profile .dropdown-menu {
    top: 34px;
  }
  .navbar .warning-nav,
  .navbar .control-nav {
    padding-top: 0;
  }
  #content {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .navbar-fixed-top {
    margin: 0;
  }
}
.core-container {
  padding: 0;
}
.core-container .nav-main {
  z-index: 30;
}
.core-container .nav-main .navbar-inner {
  background: none #fff;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #e2e2e2;
  box-shadow: none;
  padding: 0;
}
.core-container .nav-main .workflow-menu {
  position: fixed;
  width: 68%;
  z-index: 100;
}
.core-container .nav-main .nav li i {
  font-size: 20px;
  margin-right: 8px;
  vertical-align: bottom;
}
.core-container .nav-main .nav li a,
.core-container .nav-main .nav li a:link,
.core-container .nav-main .nav li a:visited {
  color: #007CBE;
  font-size: 12px;
  line-height: 20px;
  text-shadow: none;
  transition: all 0.4s;
}
.core-container .nav-main .nav li a:hover {
  background-color: rgba(0, 124, 190, 0.1);
}
.core-container .nav-main .nav li a.disabled {
  color: #cecece;
}
.core-container .nav-main .nav li a span {
  vertical-align: top;
}
.core-container .nav-main .nav li a span:before {
  vertical-align: top;
}
.core-container .core-body {
  -webkit-transition: margin 0.5s ease-in;
}
.core-container .category {
  font-size: 12px;
}
.core-container .category-selector {
  margin-bottom: 5px;
}
.core-container .category-selector .dropdown {
  margin-left: -12px;
}
.core-container .category-selector .dropdown .dropdown-toggle:hover {
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  margin: 1px 0 3px -1px;
}
.core-container .category-selector .dropdown.open .dropdown-toggle:hover {
  background-color: #999;
}
.core-container .dropdown-menu .category-leaf::after {
  border: none;
  content: none;
}
.core-container .actionbar-thing .labelnode {
  color: #999;
  font-family: "Public Sans", Arial, "Segoe UI", Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 0.03em;
}
/* core-hamburger.less */
.hamburger .action-hamburger-toggle {
  color: #007CBE;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  height: 35px;
  line-height: 20px;
  margin: 0;
  padding-top: 15px;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  transition: all 0.4s;
  width: 60px;
  /*
        &:hover {
            background-color: #dedede;
        }
        */
}
.hamburger .action-hamburger-toggle > i {
  font-size: 20px;
  margin-right: 8px;
  vertical-align: bottom;
}
.hamburger ul {
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  display: block;
  left: -99em;
  margin: 2px 0;
  opacity: 0;
  padding: 5px 0;
  position: fixed;
  top: 120px;
  transition: opacity 0.1s ease-in;
}
.hamburger ul:before {
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.3);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  content: '';
  display: inline-block;
  left: 9px;
  position: absolute;
  top: -7px;
}
.hamburger ul:after {
  border-bottom: 6px solid #ffffff;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  content: '';
  display: inline-block;
  left: 10px;
  position: absolute;
  top: -6px;
}
.hamburger ul.active {
  left: 8px;
  opacity: 1;
}
.hamburger ul.edit .edit i {
  visibility: visible;
}
.hamburger ul.view .view i {
  visibility: visible;
}
.hamburger ul.diff .diff i {
  visibility: visible;
}
.hamburger ul .nav-header {
  color: #007CBE;
  display: block;
  font-size: 11px;
  font-weight: bold;
  line-height: 20px;
  text-transform: uppercase;
}
.hamburger ul .nav-header:hover {
  background-color: transparent;
  color: rgba(0, 124, 190, 0.1);
  cursor: default;
}
.hamburger ul > li {
  color: #333;
  font-size: 14px;
  margin: 0;
  padding: 7px 20px 6px 10px;
}
.hamburger ul > li.active i {
  visibility: visible;
}
.hamburger ul > li:hover {
  background-color: #e2e2e2;
  color: #eee;
  cursor: pointer;
}
.hamburger ul > li:hover i {
  color: #fff;
}
.hamburger ul > li > i {
  color: #5096f2;
  font-size: 10px;
  margin-right: 8px;
  visibility: hidden;
}
.nwt-callout {
  background-color: #fecb00;
  border-radius: 3px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  margin: 0 5px;
  position: fixed;
  z-index: 1984;
  /* individual callout positioning adjustments */
}
.nwt-callout .point-up-down {
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  height: 0;
  width: 0px;
}
.nwt-callout .point-up-down.up {
  border-bottom: 15px solid #fecb00;
  margin: -15px 0 0 15px;
}
.nwt-callout .point-up-down.down {
  border-top: 15px solid #fecb00;
  display: none;
  margin: 0 0 -15px 15px;
}
.nwt-callout .msg {
  color: #333;
  display: block;
  font-family: "Public Sans", "arial rounded mt", Helvetica, Arial, sans-serif;
  font-size: 24px;
  letter-spacing: -0.03em;
  line-height: 24px;
  max-width: 300px;
  padding: 20px;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}
.nwt-callout .button-bar {
  text-align: right;
}
.nwt-callout .button-bar .button-okay {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 3px;
  color: #5096f2;
  cursor: pointer;
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.03em;
  margin: 0px 15px 15px;
  padding: 2px 10px;
}
.nwt-callout .button-bar .button-okay:hover {
  background-color: #5096f2;
  color: #fff;
}
.nwt-callout.view-brief {
  margin: 20px 5px 0 -240px;
}
.nwt-callout.view-brief .up {
  margin-left: 254px;
}
.nwt-callout.view-rewrite-brief {
  margin-top: 30px;
  margin-left: 20px;
}
body,
html {
  background: #fff;
  padding: 0;
}
.span0 {
  margin-right: -32% !important;
}
a.disabled,
a.disabled:visited,
a.disabled:active,
a.disabled:hover {
  color: #999;
  cursor: default;
  pointer-events: none;
}
.icon-legacy:before {
  font-family: "FontAwesome" !important;
}
.icon-spin {
  -webkit-animation-direction: reverse;
  -moz-animation-direction: reverse;
  -ms-animation-direction: reverse;
  animation-direction: reverse;
}
/*
Version: 3.3.2 Timestamp: Mon Mar 25 12:14:18 PDT 2013
*/
.select3-container {
  position: relative;
  display: inline-block;
  /* inline-block for ie7 */
  zoom: 1;
  *display: inline;
  vertical-align: middle;
}
.select3-container,
.select3-drop,
.select3-search,
.select3-search input {
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.

    More Info : http://www.quirksmode.org/css/box.html
  */
  -webkit-box-sizing: border-box;
  /* webkit */
  -khtml-box-sizing: border-box;
  /* konqueror */
  -moz-box-sizing: border-box;
  /* firefox */
  -ms-box-sizing: border-box;
  /* ie */
  box-sizing: border-box;
  /* css3 */
}
.select3-container .select3-choice {
  display: block;
  height: 26px;
  padding: 0 0 0 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid #aaa;
  white-space: nowrap;
  line-height: 26px;
  color: #444;
  text-decoration: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #fff;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(0.5, white));
  background-image: -webkit-linear-gradient(center bottom, #eeeeee 0%, white 50%);
  background-image: -moz-linear-gradient(center bottom, #eeeeee 0%, white 50%);
  background-image: -o-linear-gradient(bottom, #eeeeee 0%, #ffffff 50%);
  background-image: -ms-linear-gradient(top, #ffffff 0%, #eeeeee 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
  background-image: linear-gradient(top, #ffffff 0%, #eeeeee 50%);
}
.select3-container.select3-drop-above .select3-choice {
  border-bottom-color: #aaa;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(0.9, white));
  background-image: -webkit-linear-gradient(center bottom, #eeeeee 0%, white 90%);
  background-image: -moz-linear-gradient(center bottom, #eeeeee 0%, white 90%);
  background-image: -o-linear-gradient(bottom, #eeeeee 0%, white 90%);
  background-image: -ms-linear-gradient(top, #eeeeee 0%, #ffffff 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
  background-image: linear-gradient(top, #eeeeee 0%, #ffffff 90%);
}
.select3-container .select3-choice span {
  margin-right: 26px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.select3-container .select3-choice abbr {
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 26px;
  top: 8px;
  font-size: 1px;
  text-decoration: none;
  border: 0;
  background: url('../../core/lib/select3/select3.png') right top no-repeat;
  cursor: pointer;
  outline: 0;
}
.select3-container .select3-choice abbr:hover {
  background-position: right -11px;
  cursor: pointer;
}
.select3-drop-mask {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9998;
  background-color: #fff;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  /* works in IE 8 */
  filter: "alpha(opacity=0)";
  /* expected to work in IE 8 */
  filter: alpha(opacity=0);
  /* IE 4-7 */
}
.select3-drop {
  width: 100%;
  margin-top: -1px;
  position: absolute;
  z-index: 9999;
  top: 100%;
  background: #fff;
  color: #000;
  border: 1px solid #aaa;
  border-top: 0;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}
.select3-drop.select3-drop-above {
  margin-top: 1px;
  border-top: 1px solid #aaa;
  border-bottom: 0;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
  -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
}
.select3-container .select3-choice div {
  display: block;
  width: 18px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border-left: 1px solid #aaa;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  background: #ccc;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
  background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
  background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
  background-image: -o-linear-gradient(bottom, #ccc 0%, #eee 60%);
  background-image: -ms-linear-gradient(top, #cccccc 0%, #eeeeee 60%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#cccccc', GradientType=0);
  background-image: linear-gradient(top, #cccccc 0%, #eeeeee 60%);
}
.select3-container .select3-choice div b {
  display: block;
  width: 100%;
  height: 100%;
  background: url('../../core/lib/select3/select3.png') no-repeat 0 1px;
}
.select3-search {
  display: inline-block;
  width: 100%;
  min-height: 26px;
  margin: 0;
  padding-left: 4px;
  padding-right: 4px;
  position: relative;
  z-index: 10000;
  white-space: nowrap;
}
.select3-search-hidden {
  display: block;
  position: absolute;
  left: -10000px;
}
.select3-search input {
  width: 100%;
  height: auto !important;
  min-height: 26px;
  padding: 4px 20px 4px 5px;
  margin: 0;
  outline: 0;
  font-family: sans-serif;
  font-size: 1em;
  border: 1px solid #aaa;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #fff url('../../core/lib/select3/select3.png') no-repeat 100% -22px;
  background: url('../../core/lib/select3/select3.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee));
  background: url('../../core/lib/select3/select3.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%);
  background: url('../../core/lib/select3/select3.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%);
  background: url('../../core/lib/select3/select3.png') no-repeat 100% -22px, -o-linear-gradient(bottom, white 85%, #eeeeee 99%);
  background: url('../../core/lib/select3/select3.png') no-repeat 100% -22px, -ms-linear-gradient(top, #ffffff 85%, #eeeeee 99%);
  background: url('../../core/lib/select3/select3.png') no-repeat 100% -22px, linear-gradient(top, #ffffff 85%, #eeeeee 99%);
}
.select3-drop.select3-drop-above .select3-search input {
  margin-top: 4px;
}
.select3-search input.select3-active {
  background: #fff url('../../core/lib/select3/select3-spinner.gif') no-repeat 100%;
  background: url('../../core/lib/select3/select3-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee));
  background: url('../../core/lib/select3/select3-spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%);
  background: url('../../core/lib/select3/select3-spinner.gif') no-repeat 100%, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%);
  background: url('../../core/lib/select3/select3-spinner.gif') no-repeat 100%, -o-linear-gradient(bottom, white 85%, #eeeeee 99%);
  background: url('../../core/lib/select3/select3-spinner.gif') no-repeat 100%, -ms-linear-gradient(top, #ffffff 85%, #eeeeee 99%);
  background: url('../../core/lib/select3/select3-spinner.gif') no-repeat 100%, linear-gradient(top, #ffffff 85%, #eeeeee 99%);
}
.select3-container-active .select3-choice,
.select3-container-active .select3-choices {
  border: 1px solid #5897fb;
  outline: none;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.select3-dropdown-open .select3-choice {
  border-bottom-color: transparent;
  -webkit-box-shadow: 0 1px 0 #fff inset;
  -moz-box-shadow: 0 1px 0 #fff inset;
  box-shadow: 0 1px 0 #fff inset;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -moz-border-radius-bottomright: 0;
  border-bottom-right-radius: 0;
  background-color: #eee;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, white), color-stop(0.5, #eeeeee));
  background-image: -webkit-linear-gradient(center bottom, white 0%, #eeeeee 50%);
  background-image: -moz-linear-gradient(center bottom, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(bottom, white 0%, #eeeeee 50%);
  background-image: -ms-linear-gradient(top, #ffffff 0%, #eeeeee 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
  background-image: linear-gradient(top, #ffffff 0%, #eeeeee 50%);
}
.select3-dropdown-open .select3-choice div {
  background: transparent;
  border-left: none;
  filter: none;
}
.select3-dropdown-open .select3-choice div b {
  background-position: -18px 1px;
}
/* results */
.select3-results {
  max-height: 200px;
  padding: 0 0 0 4px;
  margin: 4px 4px 4px 0;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.select3-results ul.select3-result-sub {
  margin: 0;
}
.select3-results ul.select3-result-sub > li .select3-result-label {
  padding-left: 20px;
}
.select3-results ul.select3-result-sub ul.select3-result-sub > li .select3-result-label {
  padding-left: 40px;
}
.select3-results ul.select3-result-sub ul.select3-result-sub ul.select3-result-sub > li .select3-result-label {
  padding-left: 60px;
}
.select3-results ul.select3-result-sub ul.select3-result-sub ul.select3-result-sub ul.select3-result-sub > li .select3-result-label {
  padding-left: 80px;
}
.select3-results ul.select3-result-sub ul.select3-result-sub ul.select3-result-sub ul.select3-result-sub ul.select3-result-sub > li .select3-result-label {
  padding-left: 100px;
}
.select3-results ul.select3-result-sub ul.select3-result-sub ul.select3-result-sub ul.select3-result-sub ul.select3-result-sub ul.select3-result-sub > li .select3-result-label {
  padding-left: 110px;
}
.select3-results ul.select3-result-sub ul.select3-result-sub ul.select3-result-sub ul.select3-result-sub ul.select3-result-sub ul.select3-result-sub ul.select3-result-sub > li .select3-result-label {
  padding-left: 120px;
}
.select3-results li {
  list-style: none;
  display: list-item;
  background-image: none;
}
.select3-results li.select3-result-with-children > .select3-result-label {
  font-weight: bold;
}
.select3-results .select3-result-label {
  padding: 3px 7px 4px;
  margin: 0;
  cursor: pointer;
  min-height: 1em;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.select3-results .select3-highlighted {
  background: #3875d7;
  color: #fff;
}
.select3-results li em {
  background: #feffde;
  font-style: normal;
}
.select3-results .select3-highlighted em {
  background: transparent;
}
.select3-results .select3-highlighted ul {
  background: white;
  color: #000;
}
.select3-results .select3-no-results,
.select3-results .select3-searching,
.select3-results .select3-selection-limit {
  background: #f4f4f4;
  display: list-item;
}
/*
disabled look for disabled choices in the results dropdown
*/
.select3-results .select3-disabled.select3-highlighted {
  color: #666;
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}
.select3-results .select3-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}
.select3-results .select3-selected {
  display: none;
}
.select3-more-results.select3-active {
  background: #f4f4f4 url('../../core/lib/select3/select3-spinner.gif') no-repeat 100%;
}
.select3-more-results {
  background: #f4f4f4;
  display: list-item;
}
/* disabled styles */
.select3-container.select3-container-disabled .select3-choice {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default;
}
.select3-container.select3-container-disabled .select3-choice div {
  background-color: #f4f4f4;
  background-image: none;
  border-left: 0;
}
.select3-container.select3-container-disabled .select3-choice abbr {
  display: none;
}
/* multiselect */
.select3-container-multi .select3-choices {
  height: auto !important;
  height: 1%;
  margin: 0;
  padding: 0;
  position: relative;
  border: 1px solid #aaa;
  cursor: text;
  overflow: hidden;
  background-color: #fff;
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
  background-image: -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  background-image: -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  background-image: -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  background-image: -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
  background-image: linear-gradient(top, #eeeeee 1%, #ffffff 15%);
}
.select3-locked {
  padding: 3px 5px 3px 5px !important;
}
.select3-container-multi .select3-choices {
  min-height: 26px;
}
.select3-container-multi.select3-container-active .select3-choices {
  border: 1px solid #5897fb;
  outline: none;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.select3-container-multi .select3-choices li {
  float: left;
  list-style: none;
}
.select3-container-multi .select3-choices .select3-search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.select3-container-multi .select3-choices .select3-search-field input {
  padding: 5px;
  margin: 1px 0;
  font-family: sans-serif;
  font-size: 100%;
  color: #666;
  outline: 0;
  border: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: transparent !important;
}
.select3-container-multi .select3-choices .select3-search-field input.select3-active {
  background: #fff url('../../core/lib/select3/select3-spinner.gif') no-repeat 100% !important;
}
.select3-default {
  color: #999 !important;
}
.select3-container-multi .select3-choices .select3-search-choice {
  padding: 3px 5px 3px 18px;
  margin: 3px 0 3px 5px;
  position: relative;
  line-height: 13px;
  color: #333;
  cursor: default;
  border: 1px solid #aaaaaa;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #e4e4e4;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
  background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -ms-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
}
.select3-container-multi .select3-choices .select3-search-choice span {
  cursor: default;
}
.select3-container-multi .select3-choices .select3-search-choice-focus {
  background: #d4d4d4;
}
.select3-search-choice-close {
  display: block;
  width: 12px;
  height: 13px;
  position: absolute;
  right: 3px;
  top: 4px;
  font-size: 1px;
  outline: none;
  background: url('../../core/lib/select3/select3.png') right top no-repeat;
}
.select3-container-multi .select3-search-choice-close {
  left: 3px;
}
.select3-container-multi .select3-choices .select3-search-choice .select3-search-choice-close:hover {
  background-position: right -11px;
}
.select3-container-multi .select3-choices .select3-search-choice-focus .select3-search-choice-close {
  background-position: right -11px;
}
/* disabled styles */
.select3-container-multi.select3-container-disabled .select3-choices {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default;
}
.select3-container-multi.select3-container-disabled .select3-choices .select3-search-choice {
  padding: 3px 5px 3px 5px;
  border: 1px solid #ddd;
  background-image: none;
  background-color: #f4f4f4;
}
.select3-container-multi.select3-container-disabled .select3-choices .select3-search-choice .select3-search-choice-close {
  display: none;
}
/* end multiselect */
.select3-result-selectable .select3-match,
.select3-result-unselectable .select3-match {
  text-decoration: underline;
}
.select3-offscreen {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* Retina-ize icons */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .select3-search input,
  .select3-search-choice-close,
  .select3-container .select3-choice abbr,
  .select3-container .select3-choice div b {
    background-image: url('../../core/lib/select3/select3x2.png') !important;
    background-repeat: no-repeat !important;
    background-size: 60px 40px !important;
  }
  .select3-search input {
    background-position: 100% -21px !important;
  }
}
input[type='text'].hide {
  display: none;
}
.image-modal {
  border: 0;
  border-radius: 0;
  max-height: 80%;
}
.core-image-library .navbar {
  margin: 0;
}
.core-image-library .navbar .navbar-inner {
  background: #111;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  min-height: 0;
  padding: 0;
}
.core-image-library .navbar .navbar-inner-right {
  border-bottom: 3px solid #5096f2;
  float: left;
  width: 100%;
}
.core-image-library .navbar .navbar-inner-right a {
  font-size: 12px;
  text-shadow: none;
}
.core-image-library .navbar .navbar-inner-right .spinner {
  color: #5096f2;
  padding: 0;
  margin: 4px 6px 0 0;
}
.core-image-library .navbar .navbar-inner-right .closer {
  color: #ccc;
  transition: background-color 0.5s;
  padding: 5px 8px 2px;
}
.core-image-library .navbar .navbar-inner-right .closer:hover {
  background-color: #5096f2;
  color: #fff;
}
.core-image-library .navbar .tabpicker a,
.core-image-library .navbar .tabpicker a:link,
.core-image-library .navbar .tabpicker a:visited,
.core-image-library .navbar .tabpicker a:hover,
.core-image-library .navbar .tabpicker a:focus,
.core-image-library .navbar .tabpicker a:active {
  background-color: #333;
  border-right: 1px solid #555;
  box-shadow: none;
  color: #dedede;
  font-size: 12px;
  font-weight: 200;
  letter-spacing: 0.04em;
  padding: 4px 10px 3px 10px;
  text-shadow: none;
}
.core-image-library .navbar .tabpicker .active a {
  box-shadow: none;
  background-color: #5096f2;
}
.core-image-library .progress {
  position: relative;
  bottom: 0;
  margin-bottom: 0;
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  height: 3px;
}
.core-image-library .progress .bar {
  background-color: #5096f2;
  background-image: none;
}
.core-image-library .controls {
  margin: 0;
}
.core-image-library .results-pane {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.core-image-library .search-sidebar {
  background-color: #fafafa;
  display: table-cell;
  vertical-align: top;
  width: 65%;
}
.core-image-library .uploadpreview .no-image-thumbnail {
  color: #ddd;
  font-size: 20px;
  line-height: 80px;
  min-height: 200px;
  padding: 60px 0;
  text-align: center;
}
.core-image-library .uploadpreview img {
  width: 90%;
  margin: 20px 2%;
}
.core-image-library .getty-picker {
  background-color: #dedede;
  float: left;
  margin-bottom: 20px;
  width: 100%;
}
.core-image-library .getty-picker .navbar-search {
  height: 27px;
  margin: 0;
  width: 35%;
}
.core-image-library .getty-picker .navbar-search .search-query {
  background-color: #dedede;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  height: 20px;
  padding: 3px 18px 4px 10px;
  width: 100%;
}
.core-image-library .getty-picker .search-sources {
  background-color: #333;
  height: 27px;
  width: 60%;
}
.core-image-library .getty-picker .search-sources .btn-group .nwt-btn {
  font-weight: 200;
  border: 0;
  border-radius: 0 !important;
  color: #dedede;
  text-shadow: none !important;
  box-shadow: none;
  margin-top: -1px;
  background: none;
}
.core-image-library .getty-picker .search-sources .btn-group .nwt-btn .carat {
  color: #dedede;
}
.core-image-library .getty-picker .search-sources .btn-group.open .nwt-btn {
  background-color: #5096f2;
}
.core-image-library .getty-picker .search-sources label {
  background-color: #333;
  border-left: 1px solid #555;
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  width: 33%;
}
.core-image-library .getty-picker .search-sources label:first-child {
  border: 0;
}
.core-image-library .getty-picker .search-sources label input {
  height: 0;
  position: absolute;
  opacity: 0;
  width: 0;
}
.core-image-library .getty-picker .search-sources label input:checked + span {
  background-color: #5096f2;
  color: #eee;
}
.core-image-library .getty-picker .search-sources label span {
  color: #aaa;
  display: block;
  float: left;
  font-size: 12px;
  font-weight: 200;
  height: 27px;
  letter-spacing: 0.04em;
  line-height: 27px;
  text-align: center;
  /* transition: background-color 0.3s; */
  width: 100%;
}
.core-image-library .getty-picker .search-sources label span:hover {
  background-color: #444;
}
.core-image-library .upload-modal {
  height: 480px;
  position: relative;
  overflow-y: scroll;
}
.core-image-library .upload-inner-wrap {
  top: 0;
  left: 0;
  right: 0;
}
.core-image-library .upload-inner-wrap .action-dismiss {
  cursor: pointer;
  margin-top: -10px;
}
.core-image-library .upload-inner {
  height: auto;
}
.core-image-library .upload-inner .form-horizontal {
  padding: 20px;
}
.core-image-library .upload-inner fieldset {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.core-image-library .upload-inner legend {
  border: 0;
  color: #ccc;
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 0 5px;
  padding: 0 5px;
  width: auto;
}
.core-image-library .upload-inner .attribution-type .third-party-label {
  clear: both;
}
.core-image-library .upload-inner .attribution-type .attribution-radio,
.core-image-library .upload-inner .attribution-type .attribution-radio-bulk {
  float: left;
  margin-right: 10px;
}
.core-image-library .upload-inner .attribution-type .attribution-label {
  display: inline-block;
  float: left;
  margin-right: 30px;
}
.core-image-library .upload-inner .attribution-input {
  clear: left;
  float: left;
  margin: 10px 0;
  width: 80%;
}
.core-image-library .upload-inner .third-party.disabled {
  max-height: 0;
  overflow: hidden;
}
.core-image-library .upload-inner .third-party-link {
  clear: left;
  float: left;
  margin-bottom: 10px;
  width: 80%;
  transition: all 0.2s;
}
.core-image-library .upload-inner .third-party-link:disabled {
  border: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0;
}
.core-image-library .upload-inner .invalid {
  border: 1px solid #e3b447;
  box-shadow: 0 0 3px #e3b447;
}
.core-image-library .upload-inner .image-error {
  color: #ef8d46;
}
.core-image-library .upload-inner .indemnify-block {
  clear: left;
  overflow: hidden;
  transition: height 0.2s;
}
.core-image-library .upload-inner .indemnify-block.disabled {
  max-height: 0;
}
.core-image-library .upload-inner .indemnify-block .indemnify {
  float: left;
}
.core-image-library .upload-inner .indemnify-block .legalese {
  font-size: 11px;
  line-height: 15px;
  margin: 3px 20px 20px 20px;
  text-align: justify;
}
.core-image-library .upload-inner .button-upload-submit {
  float: right;
  text-shadow: none;
}
.core-image-library .upload-inner .button-upload-submit:disabled {
  background-color: #eee;
  color: #999;
  border: 1px solid #999;
}
.core-image-library .upload-inner .video-thumbnail-upload-form {
  padding-top: 0;
  margin-top: -40px;
}
.core-image-library li.thumb .show-image-details-icon,
.core-image-library li.canto-thumb .show-image-details-icon,
.core-image-library li.thumb .download-image-icon,
.core-image-library li.canto-thumb .download-image-icon {
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 18px;
  font-weight: 100;
  height: 30px;
  line-height: 24px;
  margin: -30px 0 0 1px;
  position: absolute;
  text-align: center;
  text-decoration: none;
  width: 30px;
  padding: 5px 0;
  box-sizing: border-box;
  cursor: pointer;
}
.core-image-library li.thumb .show-image-details-icon .custom-tooltip,
.core-image-library li.canto-thumb .show-image-details-icon .custom-tooltip,
.core-image-library li.thumb .download-image-icon .custom-tooltip,
.core-image-library li.canto-thumb .download-image-icon .custom-tooltip {
  display: none;
  background: black;
  padding: 0 7px;
  font-size: 12px;
  position: absolute;
  left: -7px;
  top: 38px;
  font-family: Helvetica, Arial, sans-serif;
  border-radius: 3px;
  z-index: 5;
}
.core-image-library li.thumb .show-image-details-icon .custom-tooltip:before,
.core-image-library li.canto-thumb .show-image-details-icon .custom-tooltip:before,
.core-image-library li.thumb .download-image-icon .custom-tooltip:before,
.core-image-library li.canto-thumb .download-image-icon .custom-tooltip:before {
  width: 0;
  height: 0;
  position: absolute;
  margin: 0 auto;
  text-align: center;
  left: 10px;
  top: -6px;
  right: 10px;
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 7px solid black;
}
.core-image-library li.thumb .icon-info-circle::before,
.core-image-library li.canto-thumb .icon-info-circle::before {
  display: block;
  width: 20px;
  height: 20px;
  padding: 0 5px;
}
.core-image-library li.thumb .icon-info-circle .custom-tooltip,
.core-image-library li.canto-thumb .icon-info-circle .custom-tooltip {
  left: 0;
}
.core-image-library li.thumb.pinned-image,
.core-image-library li.canto-thumb.pinned-image {
  outline: 2px solid #007CBE;
}
.core-image-library li.thumb.pinned-image .show-image-details-icon,
.core-image-library li.canto-thumb.pinned-image .show-image-details-icon,
.core-image-library li.thumb.pinned-image .download-image-icon,
.core-image-library li.canto-thumb.pinned-image .download-image-icon {
  display: inline-block;
}
.core-image-library li.thumb.pinned-image .show-image-details-icon:hover,
.core-image-library li.canto-thumb.pinned-image .show-image-details-icon:hover,
.core-image-library li.thumb.pinned-image .download-image-icon:hover,
.core-image-library li.canto-thumb.pinned-image .download-image-icon:hover {
  background-color: #007CBE;
}
.core-image-library li.thumb .show-image-details-icon,
.core-image-library li.canto-thumb .show-image-details-icon {
  left: 31px;
}
.core-image-library li.thumb > div,
.core-image-library li.canto-thumb > div {
  background-color: #eee;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 1px solid #ddd;
  height: 100px;
  width: 100px;
}
.core-image-library li.thumb > div i,
.core-image-library li.canto-thumb > div i {
  background-color: #e3b447;
  color: #fff;
  padding: 4px;
}
.core-image-library li.canto-thumb {
  position: relative;
}
.core-image-library li.canto-thumb:hover .show-image-details-icon,
.core-image-library li.canto-thumb:hover .download-image-icon {
  display: inline-block;
}
.core-image-library li.canto-thumb:hover .show-image-details-icon:hover,
.core-image-library li.canto-thumb:hover .download-image-icon:hover {
  background-color: #007CBE;
}
.core-image-library li.canto-thumb:hover .show-image-details-icon:hover .custom-tooltip,
.core-image-library li.canto-thumb:hover .download-image-icon:hover .custom-tooltip {
  display: block;
}
.core-image-library .previewnode {
  color: #777;
  margin: 0 0 0 10px;
  line-height: 30px;
  padding-top: 10px;
}
.core-image-library .previewnode img {
  max-height: 330px;
  max-width: 90%;
  width: auto;
}
.core-image-library .previewnode div > p {
  color: #e3b447;
}
.core-image-library .preview-image-details {
  max-height: 480px;
  min-height: 400px;
  overflow: scroll;
}
.core-image-library .preview-image-details .canto-image-loading {
  text-align: center;
  margin-top: 30px;
}
.core-image-library .preview-image-details .canto-image-loading .icon-nwt-refresh {
  margin-right: 10px;
}
.core-image-library .preview-image-details .preview-data {
  color: #727272;
  padding: 0 15px 10px;
}
.core-image-library .preview-image-details .preview-data h5 {
  margin-bottom: 5px;
}
.core-image-library .preview-image-details .preview-data .image-detail {
  margin-top: 20px;
}
.core-image-library .preview-image-details .preview-data .image-article-list a {
  color: #007CBE;
  display: block;
  margin-bottom: 10px;
}
.core-image-library .preview-image-details .preview-data .image-description {
  overflow-wrap: break-word;
}
.core-image-library .preview-image-details .preview-data .image-description p {
  margin-bottom: 10px;
}
.core-image-library .preview-image-details .preview-data a {
  color: #727272;
}
.core-image-library .search-modal,
.core-image-library .canto-modal {
  display: table-row;
}
.core-image-library .search-modal .livescroll,
.core-image-library .canto-modal .livescroll {
  clear: left;
  max-height: 450px;
  min-height: 400px;
  overflow: auto;
}
.core-image-library .search-modal .livescroll.downloading,
.core-image-library .canto-modal .livescroll.downloading {
  cursor: wait;
  opacity: 0.5;
}
.core-image-library .search-modal .livescroll .thumbnails,
.core-image-library .canto-modal .livescroll .thumbnails {
  margin: 0;
  padding: 5px 0;
}
.core-image-library .search-modal .livescroll .more-link,
.core-image-library .canto-modal .livescroll .more-link,
.core-image-library .search-modal .livescroll .canto-more-link,
.core-image-library .canto-modal .livescroll .canto-more-link {
  color: #5096f2;
  display: block;
  margin-bottom: 20px;
}
.core-image-library .fileinput-button {
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.core-image-library .fileinput-button span {
  color: #5096f2;
  display: inline-block;
  margin-bottom: 10px;
}
.core-image-library .fileinput-button span {
  color: #5096f2;
  display: inline-block;
  margin-bottom: 10px;
}
.core-image-library .fileinput-button input {
  cursor: pointer;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translate(168px, -6px) scale(1);
  -moz-transform: translate(168px, -6px) scale(1);
}
.core-image-library .fileinput-button .button-primary {
  color: #fff;
}
.core-image-library .fileinput-button .button-secondary {
  color: #007CBE;
}
.core-image-library .fileinput-maxwarning {
  font-size: 12px;
}
.core-image-library .image-format-guide-text {
  font-size: 12px;
  color: #707070;
}
.core-image-library .previewnodebulk {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: initial;
  align-items: center;
}
.core-image-library .previewnodebulk img {
  max-width: 150px;
}
.core-image-library .bulk-submit-controls {
  margin: 10px 0;
}
.video-modal .core-image-library .navbar-inner-right {
  border-bottom: none;
}
.video-modal .video-picker hr {
  margin-top: 10px;
}
.video-modal .video-picker .video-upload-controls .video-field-label {
  float: left;
  clear: left;
  margin-bottom: -5px;
  margin-top: 5px;
}
.video-modal .video-upload-modal {
  height: 650px;
}
.video-modal .video-upload-modal .upload-inner-wrap {
  padding: 30px;
}
.video-modal .video-upload-modal .form-header h3 {
  font-size: 24px;
  color: #333333;
  text-align: center;
  font-weight: 400;
  margin: 0 0 15px;
}
.video-modal .video-upload-modal .progress {
  position: sticky;
  top: 0;
  height: 6px;
}
.video-modal .video-upload-modal .composer-action-buttons {
  margin-top: -20px;
}
.video-modal .video-upload-modal .video-error {
  float: left;
  margin-top: -10px;
  font-size: 12px;
  color: #ef8d46;
}
.video-modal .video-upload-modal .third-party-link-label {
  padding-bottom: 10px;
}
.icon-pdf.icon-file:after {
  content: "PDF";
  font-size: 5px;
  margin-left: -10px;
  color: #000000;
}
.icon-file:before {
  font-size: 16px;
}
.form-data-read-only {
  color: #999999;
}
/* Styles for conversations */
.conversations-header {
  clear: both;
  height: 30px;
  margin-bottom: 16px;
}
.conversations-header .filter-wrapper {
  display: inline-block;
  margin: 5px 0 0 10px;
}
.conversations-header .filter-wrapper input {
  vertical-align: top;
}
.conversations-header .filter-wrapper label {
  display: inline-block;
  font-size: 12px;
  margin: 0 0 0 4px;
}
.conversations-header .button-add {
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid #eee;
  border-radius: 5px;
  float: left;
}
.conversations-header .button-add:hover {
  background-color: #fff;
  text-decoration: none;
}
.conversations-viewport.show-all .conversation.resolved {
  margin: 16px 16px 0 16px;
  max-height: 99em;
  overflow: visible;
}
.conversation {
  background-color: #f0f0f0;
  margin: 16px 16px 0 16px;
  font-size: 13px;
  color: #333;
  border: 1px solid #dedede;
  -webkit-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.conversation .reply-summary {
  border-bottom: 1px solid #e0e0e0;
  text-align: center;
  font-size: 0.8em;
  cursor: pointer;
}
.conversation .btn-link {
  font-size: 12px;
}
.conversation .button-reopen {
  display: none;
}
.conversation.collapse-level-0 .comment-counter {
  display: none;
}
.conversation.resolved {
  border: 1px solid #ccc;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-in-out ease-out;
  -moz-transition: all 0.5s ease-in-out ease-out;
  -o-transition: all 0.5s ease-in-out ease-out;
  transition: all 0.5s ease-in-out ease-out;
}
.conversation.resolved .message,
.conversation.resolved .message.origin {
  background-color: #fff;
  opacity: 0.5;
}
.conversation.resolved .button-reply,
.conversation.resolved .button-resolve {
  display: none;
}
.conversation.resolved .button-reopen {
  display: inline-block;
}
.conversation .button-collapse-toggle {
  background-color: #666e75;
  border-radius: 2px;
  color: #eee;
  float: right;
  font-size: 12px;
  font-weight: 100;
  margin: -8px -8px 0 0;
  padding: 3px 5px 0 7px;
  text-decoration: none;
  text-shadow: none;
  -webkit-transition: all background-color 0.2s ease-out;
  -moz-transition: all background-color 0.2s ease-out;
  -o-transition: all background-color 0.2s ease-out;
  transition: all background-color 0.2s ease-out;
}
.conversation .button-collapse-toggle .icon-nwt-conversations {
  margin-right: 0.5em;
  font-size: 15px;
}
.conversation .button-collapse-toggle:hover {
  background-color: #848a90;
}
.conversation .message {
  padding: 10px 10px 9px 20px;
  border-bottom: 1px solid #e0e0e0;
}
.conversation .message p {
  margin: 0px;
}
.conversation .message .message-author-avatar {
  width: 32px;
  height: 32px;
  margin-right: 10px;
  float: left;
}
.conversation .message .avatar-squared {
  display: inline-block;
  background-position: center center;
  background-size: cover;
}
.conversation .message .message-author {
  color: #c42B85;
  font-size: 15px;
  font-weight: bold;
  line-height: 19px;
}
.conversation .message .message-author-role {
  color: #999;
  float: left;
  font-size: 10px;
  font-style: italic;
  font-weight: normal;
  letter-spacing: 0.05em;
  line-height: 12px;
  text-transform: uppercase;
}
.conversation .message .message-timestamp {
  color: #999;
  float: right;
  font-size: 10px;
  line-height: 12px;
  padding-bottom: 8px;
}
.conversation .message .message-message {
  clear: both;
  word-wrap: break-word;
}
.conversation .message .message-editor {
  font-size: 13px;
  width: 97%;
  margin: 4px 0px 4px 0px;
}
.conversation .message .message-tool-bar {
  background: none rgba(31, 31, 31, 0.9);
  width: 100px;
  clear: both;
  display: none;
  position: absolute;
}
.conversation .message .message-tool-bar button.btn {
  background: none rgba(31, 31, 31, 0.9);
  border: none;
  box-shadow: none;
  color: #ccc;
  font-size: 12px;
  height: 20px;
  line-height: 1.5;
  min-width: 30px;
  outline: none;
  padding: 7px 8px 23px;
  text-shadow: none;
  transition: background-color 0.1s ease-in;
}
.conversation .message .message-tool-bar button.btn:hover {
  background-color: #000;
  color: #fff;
}
.conversation .message .message-tool-bar.active {
  display: block;
}
.conversation .message div.message-editor {
  border: 1px solid black;
  min-height: 50px;
  border-radius: 4px;
  padding: 4px;
}
.conversation .message .message-editor .message-warning {
  background-color: #f95336;
  border-radius: 3px;
  color: #eee;
  display: block;
  font-size: 12px;
  letter-spacing: 0.5px;
  margin: 10px 0;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.conversation .message .message-editor .message-warning.warning-hidden {
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.conversation .message.origin {
  padding: 10px 10px 9px 10px;
  background-color: #fff;
}
.conversation .footer {
  background-color: #666e75;
  border-bottom: 1px solid #5a6167;
  padding: 4px 4px;
}
.conversation .footer .btn-link {
  background-color: rgba(255, 255, 255, 0);
  border-radius: 3px;
  color: #eee;
  font-size: 15px;
  text-shadow: none;
  text-decoration: none;
  transition: background-color 0.2s;
}
.conversation .footer .btn-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  /* color: #fff; */
}
.conversation.active {
  border: 1px solid #c0c0c0;
  -webkit-box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.2);
  -webkit-transform: translate(-10px, 0px);
  -moz-transform: translate(-10px, 0px);
  -o-transform: translate(-10px, 0px);
  -ms-transform: translate(-10px, 0px);
  transform: translate(-10px, 0px);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.conversations-viewport {
  clear: both;
}
.core-sidebar.span0 .comments-pane.active .conversations-header {
  /* when sidebar collapsed, hide the add comment button if it is visible
    (because the buttons comes from a different component is is position:fixed
    and not in flow of document, thus visible) */
  display: none;
}
.comments-loading {
  margin: 80px 0 0 30%;
  position: absolute;
}
.comments-loading i {
  margin-right: 6px;
}
.conversations-header .filter-wrapper {
  float: right;
  margin: 1px 20px 0 0;
}
.conversations-header .button-add {
  background-color: #007CBE;
  border: none;
  border-radius: 15pt;
  color: #fff;
  cursor: pointer;
  position: fixed;
  right: 0;
  font-weight: 200;
  letter-spacing: 0.05em;
  margin: -44px 8px 0 0;
  padding: 4px 20px 4px 20px;
  z-index: 99999;
}
.conversations-header .button-add:hover {
  background-color: #007CBE;
}
.conversations-header .button-archived {
  background-color: #727272;
  border: none;
  border-radius: 15pt;
  color: #fff;
  cursor: pointer;
  position: fixed;
  right: 100px;
  font-weight: 200;
  letter-spacing: 0.05em;
  margin: -44px 8px 0 0;
  padding: 4px 20px 4px 20px;
  z-index: 99999;
}
.conversations-header .button-archived.active {
  background-color: #007CBE;
}
.conversation {
  box-shadow: none;
  border: 0;
  border-bottom: 3px solid #ccc;
}
.conversation .messages {
  border: 1px solid #e2e2e2;
}
.conversation .messages > div:last-child .message {
  margin-bottom: 0;
  border: 0;
}
.conversation .message {
  background-color: #fff;
  border: 0;
  margin-bottom: 3px;
  padding: 10px 10px 9px 10px;
}
.conversation .message.origin {
  padding: 10px 10px 9px 10px;
}
.conversation .message .message-author-avatar {
  border-radius: 20px;
  float: left;
  height: 40px;
  width: 40px;
}
.conversation .message .message-author {
  color: #555;
  font-weight: normal;
  letter-spacing: -0.02em;
  line-height: 15px;
}
.conversation .message .message-author-role {
  color: #555;
  float: none;
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0;
  line-height: 13px;
  text-transform: capitalize;
}
.conversation .message .message-timestamp {
  color: #777;
  float: none;
  font-style: italic;
  line-height: 13px;
}
.conversation .message .message-message {
  color: #777;
  font-size: 12px;
  line-height: 15px;
  margin: 20px 0 0 10px;
}
.conversation .message .message-editor .message-editor-buttons {
  text-align: right;
  margin-right: -4px;
}
.conversation .message .message-editor .message-editor-buttons .btn-link {
  padding: 4px 0;
}
.conversation .message .message-editor .message-editor-buttons .button-save {
  color: #5096f2;
  text-shadow: none;
}
.conversation .message .message-editor .message-editor-buttons .button-save:hover {
  color: #2f71ca;
  text-decoration: none;
}
.conversation .message .message-editor .message-editor-buttons .button-save[disabled] {
  color: #666e75;
}
.conversation .message .message-editor .message-editor-buttons .button-save::after {
  color: #666e75;
  margin-left: 4px;
}
.conversation .message .message-editor .message-editor-buttons .button-cancel {
  color: #5096f2;
}
.conversation .message .message-editor .message-editor-buttons .button-cancel:hover {
  color: #2f71ca;
  text-decoration: none;
}
.conversation .message .message-editor .message-editor-buttons .message-warning {
  background-color: #bd1622;
}
.conversation.editing.active .footer {
  display: none;
}
.conversation.active {
  border: 1px solid #007CBE;
  box-shadow: none;
}
.conversation.active .footer {
  display: block;
}
.conversation.resolved {
  /*.footer {
            background-color: #ddd;
        }*/
}
.conversation.resolved .footer,
.conversation.resolved .messages .message {
  background-color: rgba(255, 255, 255, 0.3);
}
.conversation .footer {
  background-color: #fff;
  border: 0;
  text-align: right;
  display: none;
}
.conversation .footer .btn-link {
  color: #007CBE;
  font-size: 12px;
  padding: 4px 0;
}
.conversation .footer .btn-link:hover {
  text-decoration: underline;
}
.conversation .footer .icon {
  display: none;
}
.conversation .footer .button-reply::after {
  color: #666e75;
  margin-left: 4px;
}
.conversation .footer .button-resolve {
  margin-right: 10px;
}
.conversation .footer .button-reopen {
  margin-right: 10px;
}
.conversation .footer .button-reopen:hover {
  background-color: transparent;
}
.block-image {
  border: 1px solid #eee;
  border-left: 5px solid #dadada;
  margin: 20px 0 20px -20px;
}
.block-image:hover .actions-wrap {
  opacity: 1;
}
.actions-wrap {
  margin: -35px 0 0 5px;
  opacity: 0;
  position: absolute;
  transition: opacity 0.5s;
  z-index: 5;
}
.actions-wrap .action-item {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  display: block;
  float: left;
  height: 30px;
  line-height: 36px;
  text-align: center;
  width: 30px;
}
.actions-wrap .action-item:hover {
  background-color: #5096f2;
}
.actions-wrap .icon-pencil {
  font-size: 16px;
  font-weight: 100;
  margin-left: 1px;
}
.actions-wrap .remove-x {
  font-family: "Public Sans", Arial, "Segoe UI", Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 100;
  margin-left: 1px;
}
.imgframer {
  display: block;
  padding: 4px;
  line-height: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
  transition: all 0.2s ease-in-out;
}
.imgframer mark:after {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  width: 4px;
  content: "";
  background-color: rgba(255, 234, 0, 0.45);
}
.imgframer mark.active:after {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  width: 4px;
  content: "";
  background-color: rgba(240, 151, 0, 0.45);
}
.imgframer mark.resolved:after {
  display: none;
}
.image-block {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.image-block-row {
  display: table-row;
}
.image-block-cell {
  display: table-cell;
  padding: 10px;
  vertical-align: top;
  width: 50%;
  /* negate bootstrap thumbnail styling */
}
.image-block-cell.form-side {
  padding-right: 25px;
}
.image-block-cell img {
  max-width: 100%;
}
.image-block-cell textarea {
  resize: vertical;
}
.image-block-cell textarea,
.image-block-cell input {
  font-family: Cambria, "Hoefler Text", Times, "Times New Roman", serif;
  width: 100%;
}
.image-block-cell textarea.invalid,
.image-block-cell input.invalid {
  border: 1px solid #e3b447;
  box-shadow: 0 0 3px #e3b447;
}
.image-block-cell .thumbnail {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
  transition: none;
}
.image-block-cell .for-viewing {
  display: none;
  font-family: Cambria, "Hoefler Text", Times, "Times New Roman", serif;
  font-size: 16px;
  margin-bottom: 1em;
}
.image-block-cell .image-meta-edit-form label,
.image-block-cell .video-meta-edit-form label {
  color: #ccc;
  text-transform: uppercase;
  font-size: 12px;
}
.image-block-cell .image-meta-edit-form .image-meta-dimensions,
.image-block-cell .video-meta-edit-form .image-meta-dimensions {
  font-family: Consolas, "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", Courier, monospace;
}
.video-thumbnail-block-cell {
  position: relative;
}
.video-thumbnail-block-cell .icon-play {
  background: black;
  padding: 8px 9px 9px 14px;
  border-radius: 20px;
  cursor: pointer;
}
.video-thumbnail-block-cell .icon-play.preview {
  font-size: 17px;
}
#fancybox-overlay {
  background-color: #000 !important;
}
.composer .core-sidebar .media-browser .pane-body {
  padding-left: 25px;
}
.composer .core-sidebar .media-browser .button-media-add {
  background-color: #007CBE;
  clear: left;
  color: #fff;
  cursor: pointer;
  float: right;
  font-weight: 200;
  letter-spacing: 0.05em;
  margin-top: 10px;
  margin-right: 10px;
  padding: 4px 20px;
  border-radius: 15pt;
  z-index: 999;
}
.composer .core-sidebar .media-browser .no-pointer-events .button-media-add {
  pointer-events: none;
  background-color: #999999;
}
.composer .core-sidebar .media-browser .dropzone-hint {
  clear: both;
  padding: 18px;
}
.composer .core-sidebar .media-browser legend {
  border: 0;
  margin: 0;
  font-weight: 200;
  text-indent: 3px;
  font-size: 17px;
  letter-spacing: 0.02em;
}
.composer .core-sidebar .media-browser .thumbnails .ribbon {
  position: absolute;
  background-color: #007CBE;
  color: #fff;
  padding: 2px 10px 2px 12px;
  margin: 6px 0 0 -14px;
  text-shadow: 0px 1px 2px #bbb;
  -webkit-box-shadow: 0px 2px 4px #888;
  -moz-box-shadow: 0px 2px 4px #888;
  box-shadow: 0px 2px 4px #888;
  z-index: 3;
}
.composer .core-sidebar .media-browser .thumbnails .ribbon:after {
  position: relative;
  left: -12px;
  bottom: -7px;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-bottom: 5px solid transparent;
  border-right: 10px solid #666;
}
.composer .core-sidebar .media-browser .thumbnails .video-ribbon {
  background-color: #707070;
}
.composer .core-sidebar .media-browser .thumbnails .ribbon.right {
  right: 0;
  text-align: right;
  padding: 2px 12px 2px 10px;
  margin: 6px -12px 0 0;
}
.composer .core-sidebar .media-browser .thumbnails .ribbon.right:after {
  border-right: unset;
  border-bottom: 5px solid transparent;
  border-left: 10px solid #666;
  left: 36px;
  bottom: -7px;
}
.composer .core-sidebar .media-browser .thumbnails li {
  margin: 0 25px 20px 0;
}
.composer .core-sidebar .media-browser .thumbnails li .action-button {
  transition: opacity 0.5s;
  opacity: 0;
}
.composer .core-sidebar .media-browser .thumbnails li:hover .action-button {
  opacity: 1;
  z-index: 4;
}
.composer .core-sidebar .media-browser .thumbnails li > div {
  background-color: #f4f4f4;
  position: relative;
  /*.action-button.action-pin-image.pinned {
                font-weight: bolder;
                border: 1px solid #007cbe;
            }*/
}
.composer .core-sidebar .media-browser .thumbnails li > div img {
  max-width: 175px;
}
.composer .core-sidebar .media-browser .thumbnails li > div .action-button {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: inline-block;
  font-size: 18px;
  font-weight: 100;
  height: 30px;
  line-height: 24px;
  margin: -30px 0 0 1px;
  position: absolute;
  text-align: center;
  text-decoration: none;
  width: 30px;
  padding: 5px 0;
  box-sizing: border-box;
}
.composer .core-sidebar .media-browser .thumbnails li > div .action-button:hover {
  background-color: #007CBE;
}
.composer .core-sidebar .media-browser .thumbnails li > div .action-button.action-remove-image {
  left: 3px;
}
.composer .core-sidebar .media-browser .thumbnails li > div .action-button.action-set-overview {
  left: 33px;
  padding-right: 3px;
}
.composer .core-sidebar .media-browser .thumbnails li > div .action-button.action-edit-image-details {
  left: 93px;
}
.composer .core-sidebar .media-browser .thumbnails li > div .action-button.action-pin-image {
  left: 63px;
}
.composer .core-sidebar .media-browser .thumbnails li > div .action-button.action-edit-video-details {
  left: 33px;
  padding-right: 3px;
}
.composer .core-sidebar .media-browser .thumbnails li > div .icon-pin-image {
  content: url("../../core/images/PinWhite.svg");
  max-width: 30px;
  max-height: 30px;
}
.composer .core-sidebar .media-browser .thumbnails li > div .pinned-indicate {
  position: absolute;
  right: 4px;
  top: 10px;
  /*right: 5px;
                padding: 5px 5px 0 5px;*/
  background: rgba(0, 0, 0, 0.5);
  width: 29px;
  height: 29px;
  text-align: center;
}
.composer .core-sidebar .media-browser .thumbnails li > div .pinned-indicate .icon-pin-image {
  /*opacity: 0.7;*/
  padding-top: 5px;
  content: url(../../core/images/PinWhiteFilled.svg);
}
.composer .core-sidebar .media-browser .thumbnails li > div .action-button.action-zoom-image.view-only {
  left: 3px;
}
.image-modal-wrapper,
.video-modal-wrapper {
  display: table;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100000;
  animation: background-fade-in ease-out 0.5s;
}
@keyframes background-fade-in {
  0% {
    background-color: rgba(0, 0, 0, 0);
  }
  100% {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.image-modal-wrapper .image-block,
.video-modal-wrapper .image-block {
  background-color: white;
  width: 60%;
  margin: 3% auto;
  padding: 30px;
  position: relative;
  border-radius: 2px;
  top: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  animation: modal-pop-in 0.3s ease-out;
  opacity: 1;
}
@keyframes modal-pop-in {
  0% {
    top: -1000px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.image-modal-wrapper .image-block .image-block-cell .imgframer,
.video-modal-wrapper .image-block .image-block-cell .imgframer {
  border: none;
  box-shadow: none;
  padding: 0;
}
.image-modal-wrapper .image-block .image-block-cell .imgframer img,
.video-modal-wrapper .image-block .image-block-cell .imgframer img {
  max-height: 480px;
  margin: auto;
  display: table;
}
.image-modal-wrapper .image-block .image-block-cell.image-side,
.video-modal-wrapper .image-block .image-block-cell.image-side {
  background-color: #F8F8F8;
  vertical-align: middle;
  padding: 0;
}
.image-modal-wrapper .image-block .image-block-cell.form-side,
.video-modal-wrapper .image-block .image-block-cell.form-side {
  padding: 0 25px 0 30px;
}
.image-modal-wrapper .image-block .image-block-cell.form-side .image-meta-edit-form .required-field-label::after,
.video-modal-wrapper .image-block .image-block-cell.form-side .image-meta-edit-form .required-field-label::after,
.image-modal-wrapper .image-block .image-block-cell.form-side .video-meta-edit-form .required-field-label::after,
.video-modal-wrapper .image-block .image-block-cell.form-side .video-meta-edit-form .required-field-label::after {
  content: '*';
  margin-left: 4px;
  color: #D00243;
}
.image-modal-wrapper .image-modal-close-button,
.video-modal-wrapper .image-modal-close-button,
.image-modal-wrapper .video-modal-close-button,
.video-modal-wrapper .video-modal-close-button {
  color: #CCCCCC;
  font-size: 20px;
  cursor: pointer;
  position: absolute;
  right: 30px;
  top: 20px;
  font-weight: 500;
}
.image-modal-wrapper .video-meta-edit-form label,
.video-modal-wrapper .video-meta-edit-form label {
  color: #ccc;
  text-transform: uppercase;
  font-size: 12px;
}
.image-meta-edit-form .form-data-read-only {
  display: inline-block;
  margin-bottom: 10px;
}
.image-data-container {
  background-color: white;
  position: relative;
}
.image-data-container .image-action-list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  color: #FFF;
  margin: 0;
  padding: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 5;
}
.image-data-container:hover .image-action-list {
  display: block;
  background: rgba(0, 0, 0, 0.3);
}
.image-data-container:hover .image-action-list .image-action-button {
  height: 33.3%;
  width: 100%;
  margin: 0 !important;
  text-decoration: none;
  position: relative;
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  display: block;
  background: transparent;
  cursor: pointer;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.image-data-container:hover .image-action-list .image-action-button span {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  color: white;
  width: 100%;
}
.image-data-container:hover .image-action-list .image-action-button:last-child {
  border-bottom: none;
}
.image-data-container:hover .image-action-list .image-action-button:hover {
  background-color: transparent;
  list-style: none;
}
.image-data-container:hover .image-action-list .image-action-button:hover span {
  color: #007CBE;
}
.image-data-container .disable-action-btns {
  display: none !important;
}
.draggable-image-container {
  cursor: move;
}
.editable-content > .droppy-placeholder {
  background-color: #fefefe;
  height: 1px;
  margin: -12px -50px 10px 0;
  transition: all 0.3s ease-in-out;
  position: relative;
  border: 1px dotted #ccc;
  border-bottom: 0;
  text-align: center;
  line-height: 70px;
}
.editable-content > .droppy-placeholder + [data-export-token] {
  margin: 6px 0 26px -20px;
}
.editable-content > .droppy-placeholder span {
  color: #ccc;
  opacity: 0;
}
.editable-content > .droppy-placeholder .droppy-target {
  position: absolute;
  top: -17px;
  transition: all 0.3s ease-in-out;
  height: 30px;
  width: 100%;
}
.editable-content > .droppy-placeholder.hovered {
  background-color: #ededed;
  border: 1px dotted #ccc;
  border-radius: 35px;
  height: 70px;
  margin-bottom: 30px;
}
.editable-content > .droppy-placeholder.hovered .droppy-target {
  top: -15px;
  height: 100px;
  opacity: 0;
}
.editable-content > .droppy-placeholder.hovered span {
  color: #ccc;
  opacity: 1;
}
.composer-action-buttons {
  margin: 20px -15px 0 0;
  float: right;
}
.composer-action-buttons .button-primary {
  font-size: 12px;
  min-width: 100px;
  padding: 4px 20px;
  background-color: #007CBE;
  border: 1px solid #007CBE;
  border-radius: 20px;
  transition: 0.1s;
  color: #ffffff;
  cursor: pointer;
}
.composer-action-buttons .button-primary:hover {
  color: #007CBE;
  background-color: rgba(0, 124, 190, 0.1);
  border: 1px solid #007CBE;
}
.composer-action-buttons .button-primary:focus {
  outline: none;
}
.composer-action-buttons .button-link {
  font-size: 12px;
  color: #999999;
  margin: 0 20px;
  outline: none;
  border: none;
  cursor: pointer;
}
.composer-action-buttons .button-link:hover {
  text-decoration: underline;
}
.export-video .video-module-icon-container {
  font-size: 16px;
  margin-top: -5px;
  margin-bottom: 15px;
  color: #727272;
  font-weight: 500;
  padding: 20px 10px 10px;
}
.export-video .video-module-icon-container i {
  margin-right: 10px;
}
[data-conversation-id],
[data-mark-id],
[data-conversation-ids] {
  /* use opacity to successively decorate nested marks */
  background-color: rgba(255, 234, 0, 0.33);
}
[data-conversation-id].active,
[data-mark-id].active,
[data-conversation-ids].active {
  background-color: rgba(240, 151, 0, 0.8);
}
[data-conversation-id].resolved,
[data-mark-id].resolved,
[data-conversation-ids].resolved {
  background-color: transparent;
}
.superfake {
  /* this node is used to provide hidden editable focusnodes inside
    the canvas in order to allow ctrl-a to work with tokens, too */
  position: absolute;
  left: -99999px;
  height: 0;
  margin: 0;
  padding: 0;
}
.marker {
  border-bottom: 1px dotted yellow;
}
.marker [data-id] {
  display: none;
}
[contenteditable='true']:focus {
  outline: none;
}
.rendered-article [draggable] {
  cursor: grabbing;
}
.rendered-article + hr {
  margin-bottom: 300px;
}
.rendered-article ul,
.rendered-article ol {
  margin-bottom: 30px;
  font-family: Cambria, "Hoefler Text", Times, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.75em;
}
.rendered-article ul ul,
.rendered-article ol ul,
.rendered-article ul ol,
.rendered-article ol ol {
  margin-bottom: 0;
}
.rendered-article p {
  font-family: Cambria, "Hoefler Text", Times, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.75em;
  margin-bottom: 30px;
}
.rendered-article a {
  color: #007CBE;
}
.rendered-article a b,
.rendered-article a strong {
  color: #007CBE;
}
.rendered-article a.active {
  background-color: rgba(240, 151, 0, 0.8);
}
.rendered-article b,
.rendered-article strong {
  color: #111;
  letter-spacing: -0.01em;
}
.rendered-article img {
  height: auto;
  max-height: 320px;
}
.rendered-article .export-embed div.product-group-embed-block {
  padding-bottom: 0;
}
.rendered-article .product-group-image-collection {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  align-content: flex-start;
  width: 80%;
}
.rendered-article .product-group-image-collection .product-group-image {
  display: inline-block;
  width: 25%;
  margin: 10px;
}
.rendered-article .product-radio-container {
  margin: 5px 0 25px 0;
}
.rendered-article .product-radio-container label {
  display: inline-block;
  vertical-align: middle;
  margin: 0 30px 0 0;
  padding: 0;
}
.rendered-article .product-radio-container label input {
  margin: 0;
}
.rendered-article .product-container h4 {
  font-size: 20px !important;
}
.rendered-article .product-container .rendered-article img {
  max-height: 400px;
}
.rendered-article .product-container td {
  height: 26px;
}
.rendered-article .product-group-container {
  overflow: hidden;
}
.rendered-article .product-group-container h4 {
  font-size: 20px !important;
  color: #606B71;
  font-family: 'Helvetica';
  margin-bottom: 25px;
}
.rendered-article .product-group-container .product-information-header {
  margin-top: 10px;
}
.rendered-article .product-group-container .product-information-header td {
  padding-right: 20px;
}
.rendered-article .product-group-container .product-information-header .small {
  color: #606B71;
}
.rendered-article .product-group-container .product-information-header .text-bold {
  color: #2E2E30;
}
.rendered-article .product-group-container .product-group-radio-container {
  border-top: 1px solid #606B71;
  border-bottom: 1px solid #606B71;
  padding: 20px 0;
  margin: 25px 0;
  overflow: scroll;
}
.rendered-article .product-group-container .product-group-radio-container label {
  display: inline-block;
  vertical-align: middle;
  margin: 0 25px 0 0;
  padding: 0;
  font-size: 14px;
}
.rendered-article .product-group-container .product-group-radio-container label input {
  margin: 0;
}
.rendered-article .product-group-container .product-group-radio-container input.product-group-view-radio-button {
  margin-right: 8px;
  margin-top: 0;
  vertical-align: baseline;
}
.rendered-article .product-group-container .product-group-item-collection {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: initial;
  width: 660px;
  margin-bottom: 0;
}
.rendered-article .product-group-container .product-group-item-collection .product-group-image {
  width: 200px;
  height: 200px;
  text-align: center;
  background-color: #EFEFEF;
}
.rendered-article .product-group-container .product-group-item-collection .product-group-image img {
  height: 100%;
  width: auto;
  margin: 0 auto;
}
.rendered-article .product-group-container .product-group-item-collection .product-group-item-credit {
  margin-top: 10px;
  color: #606B71;
}
.rendered-article .product-group-container .product-group-item-collection .product-group-item-title {
  margin-top: 4px;
  color: #2E2E30;
}
.rendered-article .product-group-container .product-group-item-collection .product-group-item-price {
  color: #606B71;
  margin-top: 8px;
  line-height: 14px;
}
.rendered-article .product-group-container .product-group-item-collection .product-group-shop-button {
  margin-top: 4px;
}
.rendered-article .product-group-container .product-group-item-collection .product-group-item {
  width: 210px;
  margin-right: 20px;
  height: fit-content;
}
.rendered-article .product-group-container .product-group-item-collection .product-group-item .product-group-shop-button {
  display: none;
}
.rendered-article .product-group-container .product-group-item-collection .product-group-item:nth-child(n+4) {
  margin-top: 25px;
}
.rendered-article .product-group-container .product-group-item-collection.table {
  display: grid;
  grid-template-columns: 1fr;
}
.rendered-article .product-group-container .product-group-item-collection.table .product-group-image {
  width: auto;
  height: auto;
  background-color: #FFF;
  min-width: 60px;
}
.rendered-article .product-group-container .product-group-item-collection.table .product-group-image img {
  margin: 20px 15px 20px 0;
  height: 60px;
  width: 60px;
  object-fit: cover;
}
.rendered-article .product-group-container .product-group-item-collection.table .product-group-item {
  margin-bottom: 0;
  align-items: center;
  width: auto;
  display: flex;
  border-top: 1px solid black;
}
.rendered-article .product-group-container .product-group-item-collection.table .product-group-item .product-group-item-credit {
  display: none;
}
.rendered-article .product-group-container .product-group-item-collection.table .product-group-item .product-group-item-title {
  width: 235px;
  margin-right: 20px;
}
.rendered-article .product-group-container .product-group-item-collection.table .product-group-item .product-group-item-price {
  width: 180px;
}
.rendered-article .product-group-container .product-group-item-collection.table .product-group-item .product-group-shop-button {
  background: #007CBE;
  border-radius: 3px;
  width: 100px;
  color: #fff;
  text-align: center;
  display: block;
  padding: 4px 3px;
}
.rendered-article .product-group-container .product-group-item-collection.table .product-group-item:nth-child(n+4) {
  margin-top: 0;
}
.rendered-article h4,
.rendered-article h3,
.rendered-article h2 {
  clear: both;
  color: #555;
  font-family: "Public Sans", Arial, "Segoe UI", Helvetica, sans-serif;
  font-weight: 200;
  line-height: 1.75;
  margin-bottom: 0.75em;
}
.rendered-article h3 {
  font-size: 24px;
}
.rendered-article h4 {
  font-size: 20px;
}
.rendered-article hr {
  clear: both;
}
.rendered-article .export-step h3 {
  font-size: 20px;
}
.rendered-article [data-export-token='$things'] ol {
  list-style-type: disc;
}
.rendered-article [data-drag-sibling] {
  opacity: 0.2;
  transform: scale(1, 0.1);
  margin-top: -10px;
  margin-bottom: -5px;
  padding-top: 0;
  padding-bottom: 0;
  height: 10px;
  transition: all 0.4s ease-out;
}
.rendered-article [data-drag-sibling] .image-block {
  transform: scale(0.1, 0.1);
}
.rendered-article [data-drag-sibling] .form-side {
  display: none;
}
.export-callout,
.export-embed {
  padding: 20px;
  margin: 20px 0 20px -20px;
  border: 1px solid #727272;
  border-left-width: 5px;
  border-radius: 3px;
}
.export-callout h4,
.export-embed h4,
.export-callout h3,
.export-embed h3 {
  border-bottom: 0;
  display: inline-block;
  font-family: "Public Sans", "arial rounded mt", Helvetica, Arial, sans-serif;
  font-weight: normal;
  margin-bottom: 5px;
  vertical-align: top;
  color: #727272;
}
.export-callout h4,
.export-embed h4 {
  font-size: 16px !important;
  margin-top: -5px !important;
  margin-bottom: 15px !important;
}
.export-callout h4 i,
.export-embed h4 i {
  margin-right: 10px;
  margin-top: 5px;
  float: left;
}
.export-callout div[data-export-content],
.export-embed div[data-export-content] {
  border: 1px solid #CCCCCC;
  border-radius: 3px;
  padding: 10px;
}
.export-callout div[data-export-content] p,
.export-embed div[data-export-content] p {
  font-family: "Public Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
}
.export-callout label,
.export-embed label {
  color: #727272;
  font-size: 12px;
}
.export-callout.code div,
.export-embed.code div {
  white-space: pre;
}
.export-callout p:last-child,
.export-embed p:last-child {
  margin-bottom: 0;
}
.required-field-label::after {
  content: " * ";
  color: #d00243;
}
.warning-text {
  color: #d00243;
  font-size: 12px;
}
.button-primary {
  display: inline-block;
  font-size: 12px;
  padding: 4px 20px;
  background-color: #007CBE;
  border: 1px solid #007CBE;
  border-radius: 20px;
  transition: 0.1s;
  color: #fff;
  cursor: pointer;
  width: fit-content;
}
.button-primary.disabled {
  background-color: #707070;
  color: #fff;
  border: 1px solid #707070;
  pointer-events: none;
}
.button-primary:hover {
  color: #007CBE;
  background-color: rgba(0, 124, 190, 0.1);
  border: 1px solid #007CBE;
}
.button-primary:focus {
  outline: none;
}
.button-secondary {
  display: inline-block;
  font-size: 12px;
  padding: 2px 15px;
  background-color: #fff;
  border: 1px solid #007CBE;
  border-radius: 20px;
  transition: 0.1s;
  color: #007CBE;
  cursor: pointer;
  width: fit-content;
}
.button-secondary:hover {
  background-color: rgba(0, 124, 190, 0.1);
  color: #007CBE;
}
.custom-module div[data-export-content],
.end-of-section div[data-export-content] {
  border: none;
}
.custom-module div.custom-module-input,
.end-of-section div.custom-module-input {
  border: 1px solid #CCCCCC;
  margin: 5px 0 20px;
}
.custom-module div.custom-copy,
.end-of-section div.custom-copy {
  min-height: 40px;
}
.custom-module div.custom-title,
.end-of-section div.custom-title,
.custom-module div.custom-cta-link-text,
.end-of-section div.custom-cta-link-text {
  padding: 5px 10px;
  min-height: 25px;
}
.custom-module div.custom-title p,
.end-of-section div.custom-title p,
.custom-module div.custom-cta-link-text p,
.end-of-section div.custom-cta-link-text p {
  min-height: 20px;
}
.custom-module input.custom-cta-link,
.end-of-section input.custom-cta-link,
.custom-module div.custom-cta-link,
.end-of-section div.custom-cta-link {
  box-shadow: none;
  border-radius: 2px;
  display: block;
  box-sizing: border-box;
  padding: 15px 10px;
}
.custom-module input,
.end-of-section input,
.custom-module textarea,
.end-of-section textarea {
  width: 100%;
  border: 1px solid #CCCCCC;
  margin-bottom: 25px;
}
.custom-module textarea,
.end-of-section textarea {
  resize: none;
}
.custom-module textarea:focus,
.end-of-section textarea:focus,
.custom-module input:focus,
.end-of-section input:focus {
  border: 1px solid #CCCCCC;
  outline: none;
  box-shadow: none;
}
.custom-module .cta-block,
.end-of-section .cta-block {
  position: relative;
  min-height: 30px;
}
.custom-module .cta-block.expanded,
.end-of-section .cta-block.expanded {
  border-top: 1px solid #EEEEEE;
  margin-top: 25px;
}
.custom-module .add-cta-button,
.end-of-section .add-cta-button {
  font-size: 12px;
  display: inline-block;
  position: absolute;
  right: 0;
  margin: 10px 0 0 0;
  color: #007CBE;
  cursor: pointer;
}
.custom-module .add-cta-button.expanded,
.end-of-section .add-cta-button.expanded {
  padding-top: 10px;
  margin: 20px 0;
}
.custom-module .cta-fields-container,
.end-of-section .cta-fields-container {
  display: block;
  height: auto;
  margin-top: 30px;
  clear: both;
}
.custom-module .cta-fields-container.closed,
.end-of-section .cta-fields-container.closed {
  display: block;
  height: 0;
  overflow: hidden;
  margin-top: 0;
}
.export-validation-error {
  display: block;
  font-size: 12px;
  color: #d00243;
  height: 20px;
  margin-top: -25px;
  float: left;
}
.export-callout.table {
  width: inherit;
}
.export-callout.table .table-title-input,
.export-callout.table .table-attribution-input {
  width: 100%;
  display: block;
  box-sizing: border-box;
  border: 1px solid #CCCCCC;
  box-shadow: none;
  border-radius: 2px;
  padding: 15px 10px;
}
.export-callout.table .table-title-input {
  padding: 5px 10px;
  margin-bottom: 25px;
  min-height: 32px;
}
.export-callout.table .table-attribution-input {
  margin-bottom: 0;
}
.export-callout.table .table-module-data {
  width: 100%;
  table-layout: fixed;
  margin-bottom: 20px;
}
.export-callout.table .table-module-data td {
  border: 1px solid #CCCCCC;
  height: 24px;
  padding: 5px 10px;
  overflow-wrap: break-word;
}
.export-callout.table .table-module-data td p {
  margin-bottom: 0;
  font-family: "Public Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
}
.export-callout.table .table-has-header-label {
  text-align: right;
  margin-bottom: -20px;
}
.export-callout.table .table-has-header-label input {
  margin: 0 5px;
}
.table-action-menu {
  list-style: none;
  margin: 0;
  font-family: "Public Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  position: absolute;
  float: left;
  background-color: #1F1F1F;
  color: #CCCCCC;
  width: 140px;
  border-radius: 5px;
  pointer-events: initial;
  padding: 5px 0;
  z-index: 50;
}
.table-action-menu div {
  text-decoration: none;
  color: #CCCCCC;
  padding: 5px 15px 5px 15px;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
}
.table-action-menu div:hover {
  color: #FFFFFF;
  background-color: #999999;
}
.site-specific-module input,
.site-specific-module .exercise-data-value,
.site-specific-module .read-only-input {
  width: 100%;
  box-shadow: none;
  border-radius: 2px;
  display: block;
  box-sizing: border-box;
  padding: 15px 10px;
  margin-bottom: 25px;
  border: 1px solid #cccccc;
}
.site-specific-module .read-only-input {
  overflow: hidden;
  white-space: nowrap;
  padding: 5px 10px;
}
.site-specific-module div.exercise-data-value {
  padding: 10px;
}
.site-specific-module .exercise-data-value.disabled {
  background-color: #EFEFEF;
  pointer-events: none;
}
.site-specific-module .exercise-data-container,
.site-specific-module .exercise-data-container,
.site-specific-module .exercise-module-instruction,
.site-specific-module .exercise-module-name,
.site-specific-module .exercise-module-video-id,
.site-specific-module .exercise-module-image {
  position: relative;
}
.site-specific-module .exercise-module-image .module-inline-error,
.site-specific-module .exercise-module-video-id .module-inline-error {
  bottom: -20px;
}
.site-specific-module .exercise-module-image .module-video-inline-error,
.site-specific-module .exercise-module-video-id .module-video-inline-error {
  bottom: 0;
}
.site-specific-module .module-video-preview {
  float: left;
  margin-bottom: 30px;
  width: 100%;
  color: #727272;
}
.site-specific-module .module-video-preview .module-video-thumb-container {
  display: inline-block;
  float: left;
  margin: 0 15px 0 0;
  position: relative;
}
.site-specific-module .module-video-preview .module-video-thumb-container img {
  width: 200px;
}
.site-specific-module .module-video-preview .module-video-thumb-container .icon-play {
  font-size: 17px;
  background: black;
  padding: 8px 9px 9px 14px;
  border-radius: 20px;
  cursor: pointer;
}
.site-specific-module .module-video-preview .module-video-details-container {
  margin: 5px 15px 0 0;
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
}
.site-specific-module .module-video-preview .module-video-details-container span {
  font-weight: 400;
}
.site-specific-module .exercise-module-name .module-inline-error,
.site-specific-module .exercise-data-container .module-inline-error {
  bottom: 5px;
}
.site-specific-module .image-format-guide-text .error-message {
  display: block;
  color: #d00243;
  font-size: 10px;
}
.site-specific-module .exercise-instructions {
  font-family: Cambria, "Hoefler Text", Times, "Times New Roman", serif;
  font-size: 16px;
  min-height: 40px;
}
.site-specific-module .exercise-data-input-group {
  display: flex;
  justify-content: space-between;
}
.site-specific-module .exercise-data-input-group div:first-child {
  width: 100%;
  border: 1px solid #CCCCCC;
  margin-right: 30px;
  padding: 0;
  height: 33px;
  cursor: pointer;
  position: relative;
  color: #999999;
}
.site-specific-module .exercise-data-input-group div:first-child .icon-nwt-chevron-down {
  top: 10px;
  position: absolute;
  right: 10px;
  color: #707070;
}
.site-specific-module .exercise-data-input-group div:first-child .icon-nwt-times {
  top: 12px;
  position: absolute;
  right: 30px;
  color: #707070;
  font-size: 10px;
}
.site-specific-module .exercise-data-input-group div:first-child .remove-all-selection:hover {
  color: #007CBE;
}
.site-specific-module .exercise-data-input-group div:first-child .exercise-category-name {
  display: inline-block;
  padding: 7px 10px;
  color: #999999;
}
.site-specific-module .exercise-data-input-group div:first-child [data-exercise-category] {
  color: #333;
}
.site-specific-module .exercise-data-input-group .exercise-data-value-container {
  width: 100%;
  position: relative;
}
.site-specific-module .exercise-data-input-group .exercise-data-value-container .exercise-data-value {
  height: 35px;
  padding: 6px 45px 6px 10px;
}
.site-specific-module .exercise-data-input-group .exercise-data-value-container .exercise-data-value [data-exercise-value] {
  color: #333;
}
.site-specific-module .exercise-data-input-group .exercise-data-value-container .exercise-data-value.multi-select {
  height: auto;
  padding-bottom: 0;
}
.site-specific-module .exercise-data-input-group .exercise-data-value-container .exercise-data-value.multi-select .exercise-value-name {
  display: inline-block;
  background-color: rgba(0, 124, 190, 0.1);
  margin-right: 10px;
  padding: 0 5px;
  border: 1px solid #007cbe;
  color: #333;
  margin-bottom: 5px;
  cursor: initial;
}
.site-specific-module .exercise-data-input-group .exercise-data-value-container .exercise-data-value.multi-select .exercise-value-name .remove-single-select:before {
  content: 'x';
  font-size: 13px;
  font-style: normal;
  margin-right: 5px;
  padding-right: 5px;
  border-right: 1px solid;
  border-right: 1px solid rgba(0, 124, 190, 0.5);
  cursor: pointer;
}
.site-specific-module .exercise-data-input-group .exercise-data-value-container .exercise-data-value.multi-select .exercise-value-name .remove-single-select:hover {
  color: #007CBE;
}
.site-specific-module .exercise-data-input-group .exercise-data-value-container input.exercise-data-value {
  padding: 6px 10px;
}
.site-specific-module .exercise-data-input-group .exercise-category-options ul,
.site-specific-module .exercise-data-input-group .exercise-value-options {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  background-color: white;
  z-index: 10;
  position: absolute;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  color: #707070;
  border: 1px solid #CCCCCC;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.075);
  font-family: "Public Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  max-height: 200px;
  overflow: scroll;
}
.site-specific-module .exercise-data-input-group .exercise-category-options ul li,
.site-specific-module .exercise-data-input-group .exercise-value-options li {
  padding: 5px 10px;
  margin: 5px 0;
  font-size: 14px;
  cursor: pointer;
}
.site-specific-module .exercise-data-input-group .exercise-category-options ul li:hover,
.site-specific-module .exercise-data-input-group .exercise-value-options li:hover {
  background-color: rgba(0, 124, 190, 0.1);
}
.site-specific-module .exercise-data-input-group .exercise-category-options ul .exercise-category-item-disabled,
.site-specific-module .exercise-data-input-group .exercise-value-options .exercise-category-item-disabled {
  color: #CCCCCC;
  cursor: not-allowed;
}
.site-specific-module .exercise-data-input-group .exercise-category-options ul .exercise-category-item-disabled:hover,
.site-specific-module .exercise-data-input-group .exercise-value-options .exercise-category-item-disabled:hover {
  background: none;
}
.site-specific-module .exercise-data-input-group .exercise-value-options {
  margin-top: -26px;
}
.site-specific-module .photo-gallery-input {
  width: 260px;
  position: relative;
}
.site-specific-module .photo-gallery-input .icon-nwt-chevron-down,
.site-specific-module .photo-gallery-input .icon-nwt-refresh,
.site-specific-module .photo-gallery-input .icon-nwt-chevron-up {
  top: 10px;
  position: absolute;
  right: 10px;
  color: #707070;
  cursor: pointer;
}
.site-specific-module .photo-gallery-input .icon-nwt-chevron-down:hover {
  color: #007CBE;
}
.site-specific-module .photo-gallery-input .gallery-search-input,
.site-specific-module .photo-gallery-input .thumbnail-gallery-search-input,
.site-specific-module .photo-gallery-input .inspiration-gallery-search-input {
  padding-right: 25px;
  text-overflow: ellipsis;
}
.site-specific-module .photo-gallery-input .gallery-fetch-results {
  width: 350px;
  border: 1px solid #CCCCCC;
  min-height: 50px;
  margin: -25px 0 0 0;
  list-style: none;
  padding: 10px 0;
  background-color: white;
  z-index: 10;
  box-sizing: border-box;
  color: #707070;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.075);
  font-family: "Public Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  max-height: 200px;
  overflow: scroll;
  position: absolute;
}
.site-specific-module .photo-gallery-input .gallery-fetch-results li {
  padding: 5px 10px;
  margin: 5px 0;
  font-size: 14px;
  cursor: pointer;
}
.site-specific-module .photo-gallery-input .gallery-fetch-results li:not(.no-results):hover {
  background-color: rgba(0, 124, 190, 0.1);
}
.site-specific-module .photo-gallery-input .gallery-fetch-results .topic-name {
  text-overflow: ellipsis;
  max-width: 260px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
}
.site-specific-module .photo-gallery-input .gallery-fetch-results .topic-type {
  float: right;
  pointer-events: none;
}
.site-specific-module .photo-gallery-input .module-inline-error {
  margin-top: -25px;
}
.no-results {
  text-align: center;
  pointer-events: none;
  cursor: initial;
  color: #CCCCCC;
}
.module-inline-error {
  position: absolute;
  color: #d00243;
  font-size: 10px;
}
.file-upload-button {
  margin-bottom: 15px;
  display: inline-block;
}
.file-upload-button input {
  display: none;
}
.thumbnail-group-preview {
  font-size: 12px;
  position: relative;
}
.thumbnail-group-preview .thumbnail-group-images-container {
  margin-top: 20px;
}
.thumbnail-group-preview .thumbnail-group-images-container div {
  padding-bottom: 23%;
  width: 23%;
  margin: 1% 1%;
  display: inline-block;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.thumbnail-group-preview .thumbnail-group-images-container div:hover:not(.cta-thumbnail-placeholder):before {
  content: 'Canto Collection Images Cannot Be Deleted or Reordered';
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  bottom: 0;
  padding: 5px 7px;
}
@media (min-width: 768px) and (max-width: 900px), (max-width: 515px) and (min-width: 390px) {
  .thumbnail-group-preview .thumbnail-group-images-container div:hover:not(.cta-thumbnail-placeholder):before {
    font-size: 8px;
    line-height: 2;
  }
}
@media (max-width: 390px) {
  .thumbnail-group-preview .thumbnail-group-images-container div:hover:before {
    display: none;
  }
}
@media (min-width: 901px) and (max-width: 979px) {
  .thumbnail-group-preview .thumbnail-group-images-container div:hover:not(.cta-thumbnail-placeholder):before {
    font-size: 10px;
  }
}
.thumbnail-group-preview .thumbnail-group-images-container .cta-thumbnail-placeholder {
  background-color: #999999;
  position: relative;
}
.thumbnail-group-preview .thumbnail-group-images-container .cta-thumbnail-placeholder span {
  position: absolute;
  color: white;
  display: inline-block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
}
.thumbnail-group-preview .uneditable-thumbnail-warning {
  margin: 0 5px;
  display: inline-block;
}
.thumbnail-group-preview .canto-library-tooltip {
  display: none;
  background-color: black;
  position: absolute;
  left: 130px;
  top: 120px;
  padding: 10px;
  color: white;
  border-radius: 4px;
  width: 200px;
  font-weight: 400;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.075);
}
.thumbnail-group-preview:hover .canto-library-tooltip {
  display: block;
}
.thumbnail-gallery-cta-form {
  border-left: 1px solid #CCCCCC;
  padding-left: 20px;
}
.related-content-module,
.featured-stories-module {
  position: relative;
}
.related-content-module input,
.featured-stories-module input,
.related-content-module .read-only-input,
.featured-stories-module .read-only-input {
  box-shadow: none;
  border-radius: 2px;
  display: inline-block;
  box-sizing: border-box;
  padding: 15px 10px;
  width: 85%;
}
.related-content-module .read-only-input,
.featured-stories-module .read-only-input {
  border: 1px solid #CCCCCC;
  padding: 5px 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.related-content-module .in-module-article-search,
.featured-stories-module .in-module-article-search {
  position: relative;
}
.related-content-module .related-article-search-result,
.featured-stories-module .related-article-search-result,
.related-content-module .featured-stories-search-result,
.featured-stories-module .featured-stories-search-result {
  width: 85%;
  border: 1px solid #CCCCCC;
  min-height: 65px;
  margin: -10px 0 0 0;
  list-style: none;
  padding: 10px 0;
  background-color: white;
  z-index: 10;
  box-sizing: border-box;
  color: #707070;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.075);
  font-family: "Public Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  max-height: 200px;
  overflow-y: scroll;
  position: absolute;
}
.related-content-module .related-article-search-result li,
.featured-stories-module .related-article-search-result li,
.related-content-module .featured-stories-search-result li,
.featured-stories-module .featured-stories-search-result li {
  padding: 5px 10px;
  margin: 5px 0;
  font-size: 14px;
  cursor: pointer;
}
.related-content-module .related-article-search-result li:not(.no-results):hover,
.featured-stories-module .related-article-search-result li:not(.no-results):hover,
.related-content-module .featured-stories-search-result li:not(.no-results):hover,
.featured-stories-module .featured-stories-search-result li:not(.no-results):hover {
  background-color: rgba(0, 124, 190, 0.1);
}
.related-content-module .related-article-search-result .icon-spin,
.featured-stories-module .related-article-search-result .icon-spin,
.related-content-module .featured-stories-search-result .icon-spin,
.featured-stories-module .featured-stories-search-result .icon-spin {
  position: absolute;
  left: 45%;
}
.related-content-module .change-related-article,
.featured-stories-module .change-related-article,
.related-content-module .change-featured-story,
.featured-stories-module .change-featured-story {
  margin-bottom: 10px;
}
.related-content-module .search-related-article,
.featured-stories-module .search-related-article,
.related-content-module .search-featured-story,
.featured-stories-module .search-featured-story {
  margin-top: 10px;
}
.related-content-module .related-content-article-list[data-export-content],
.featured-stories-module .related-content-article-list[data-export-content],
.related-content-module .featured-stories-list[data-export-content],
.featured-stories-module .featured-stories-list[data-export-content] {
  margin-left: -10px;
  border: none;
  padding: 0;
}
.related-content-module .related-content-article-list-item,
.featured-stories-module .related-content-article-list-item,
.related-content-module .featured-stories-list-item,
.featured-stories-module .featured-stories-list-item {
  position: relative;
  padding: 10px 0 0 10px;
  border-bottom: 1px solid transparent;
  border-top: 1px solid transparent;
}
.related-content-module .related-content-article-list-item .module-inline-error,
.featured-stories-module .related-content-article-list-item .module-inline-error,
.related-content-module .featured-stories-list-item .module-inline-error,
.featured-stories-module .featured-stories-list-item .module-inline-error {
  bottom: -7px;
  left: 10px;
}
.related-content-module .icon-trash,
.featured-stories-module .icon-trash,
.related-content-module .icon-reorder,
.featured-stories-module .icon-reorder {
  display: inline-block;
  padding: 0 20px;
  cursor: pointer;
  position: absolute;
  top: 16px;
}
.related-content-module .icon-reorder,
.featured-stories-module .icon-reorder {
  cursor: grabbing;
  margin-left: 40px;
}
.lighter-bold {
  font-weight: 500;
}
.maximum-number-reached-warning {
  color: #707070;
}
@media (max-width: 767px) {
  .block-image,
  .export-callout {
    margin-left: 0;
  }
}
@media (min-width: 767px) and (max-width: 979px) {
  .related-content-module .icon-trash,
  .featured-stories-module .icon-trash,
  .related-content-module .icon-reorder,
  .featured-stories-module .icon-reorder {
    padding: 0 10px;
  }
  .related-content-module .icon-reorder,
  .featured-stories-module .icon-reorder {
    margin-left: 30px;
  }
}
.module-image-upload-form .module-image-preview-container {
  display: inline-block;
}
.module-image-upload-form .module-image-preview-container .module-image-fake-uploader {
  display: flex;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border: 1px dashed #CCCCCC;
  border-radius: 2px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}
.module-image-upload-form .module-image-preview-container .module-image-fake-uploader.has-image {
  border: 1px solid #CCCCCC;
}
.module-image-upload-form .module-image-preview-container .module-image-fake-uploader .icon-nwt-plus {
  color: #CCCCCC;
}
.module-image-upload-form .module-image-preview-container .module-image-fake-uploader .upload-completed {
  border: none;
}
.module-image-upload-form .module-image-preview-container .module-inline-error {
  margin-top: -55px;
  margin-left: 83px;
}
.module-image-upload-form .file-upload-button {
  margin: 0 10px;
  color: #007CBE;
}
.module-text-area-wrapper .module-inline-error {
  display: block;
  margin-top: -10px;
}
.dual-container-module .dual-container-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
}
.dual-container-module .dual-container-body .dual-container-section {
  display: inline-grid;
  grid-template-rows: 55px 225px;
  grid-row-gap: 20px;
}
.dual-container-module .dual-container-body .dual-container-body-input {
  height: 200px;
  box-sizing: border-box;
  overflow-y: scroll;
  word-break: break-word;
}
.dual-container-module input {
  box-sizing: border-box;
  width: 100%;
  height: 30px;
}
.module-text-area {
  resize: none;
  width: 100%;
  height: 70px;
  max-height: 70px;
  box-sizing: border-box;
  padding: 10px;
}
.module-editable-area {
  border: 1px solid #CCCCCC;
  border-radius: 3px;
  padding: 10px;
}
.text-bold {
  font-weight: 500;
}
.text-extra-bold {
  font-weight: 700;
}
.text-italic {
  font-style: italic;
}
.text-light {
  font-weight: 300;
}
.text-padding-left {
  padding-left: 10px;
}
.clearfix:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: " ";
  font-size: 0;
}
@-webkit-keyframes pop-upwards {
  0% {
    -webkit-transform: matrix(0.97, 0, 0, 1, 0, 12);
    transform: matrix(0.97, 0, 0, 1, 0, 12);
    opacity: 0;
  }
  20% {
    -webkit-transform: matrix(0.99, 0, 0, 1, 0, 2);
    transform: matrix(0.99, 0, 0, 1, 0, 2);
    opacity: 0.7;
  }
  40% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, -1);
    transform: matrix(1, 0, 0, 1, 0, -1);
    opacity: 1;
  }
  70% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
    transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
    transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
  }
}
@keyframes pop-upwards {
  0% {
    -webkit-transform: matrix(0.97, 0, 0, 1, 0, 12);
    transform: matrix(0.97, 0, 0, 1, 0, 12);
    opacity: 0;
  }
  20% {
    -webkit-transform: matrix(0.99, 0, 0, 1, 0, 2);
    transform: matrix(0.99, 0, 0, 1, 0, 2);
    opacity: 0.7;
  }
  40% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, -1);
    transform: matrix(1, 0, 0, 1, 0, -1);
    opacity: 1;
  }
  70% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
    transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
    transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
  }
}
.data-medium-element sup {
  vertical-align: super;
}
.data-medium-element sub {
  vertical-align: sub;
}
.data-medium-element img {
  max-width: 100%;
}
.medium-editor-hidden {
  display: none;
}
.medium-toolbar-arrow-under:after,
.medium-toolbar-arrow-over:before {
  position: absolute;
  left: 50%;
  display: block;
  margin-left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  content: "";
}
.medium-toolbar-arrow-under:after {
  border-width: 8px 8px 0 8px;
}
.medium-toolbar-arrow-over:before {
  top: -8px;
  border-width: 0 8px 8px 8px;
}
.medium-editor-toolbar,
.medium-editor-anchor-preview {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
  visibility: hidden;
  font-size: 16px;
  font-family: HelveticaNeue, Helvetica, Arial, sans-serif;
}
.medium-editor-toolbar ul,
.medium-editor-anchor-preview ul {
  margin: 0;
  padding: 0;
}
.medium-editor-toolbar li,
.medium-editor-anchor-preview li {
  float: left;
  margin: 0;
  padding: 0;
  list-style: none;
}
.medium-editor-toolbar li button,
.medium-editor-anchor-preview li button {
  display: block;
  margin: 0;
  padding: 15px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.33;
  text-decoration: none;
  box-sizing: border-box;
}
.medium-editor-toolbar li button:focus,
.medium-editor-anchor-preview li button:focus {
  outline: none;
}
.medium-editor-toolbar li .medium-editor-action-underline,
.medium-editor-anchor-preview li .medium-editor-action-underline {
  text-decoration: underline;
}
.medium-editor-toolbar li .medium-editor-action-pre,
.medium-editor-anchor-preview li .medium-editor-action-pre {
  padding: 15px 0;
  font-weight: 100;
  font-size: 12px;
  font-family: 'Menlo', monospace;
}
.medium-editor-anchor-preview {
  max-width: 280px;
  word-break: break-all;
  word-wrap: break-word;
  text-align: center;
  line-height: 1.4;
}
.medium-editor-anchor-preview a {
  display: inline-block;
  margin: 5px 5px 5px 10px;
  color: #fff;
}
.medium-editor-toolbar-active,
.medium-editor-anchor-preview-active {
  visibility: visible;
}
.sticky-toolbar {
  position: fixed;
  top: 1px;
}
.medium-editor-toolbar-active.stalker-toolbar {
  -webkit-animation: pop-upwards 160ms forwards linear;
  animation: pop-upwards 160ms forwards linear;
}
.medium-editor-action-bold {
  font-weight: bolder;
}
.medium-editor-action-italic {
  font-style: italic;
}
.medium-editor-toolbar-form {
  display: none;
}
.medium-editor-toolbar-form input,
.medium-editor-toolbar-form a {
  font-family: HelveticaNeue, Helvetica, Arial, sans-serif;
}
.medium-editor-toolbar-form .medium-editor-toolbar-input,
.medium-editor-toolbar-form label {
  margin: 0;
  padding: 6px;
  width: 316px;
  border: none;
  font-size: 14px;
  box-sizing: border-box;
}
.medium-editor-toolbar-form .medium-editor-toolbar-input:focus,
.medium-editor-toolbar-form label:focus {
  outline: 0;
  border: none;
  box-shadow: none;
  appearance: none;
}
.medium-editor-toolbar-form label {
  display: block;
}
.medium-editor-toolbar-form a {
  display: inline-block;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bolder;
  font-size: 24px;
}
.medium-editor-placeholder {
  position: relative;
}
.medium-editor-placeholder:after {
  position: absolute;
  top: 0;
  left: 0;
  content: attr(data-placeholder) !important;
  font-style: italic;
  white-space: pre;
}
.medium-editor-dragover {
  background: #ddd;
}
.medium-image-loading {
  width: 40px;
  height: 40px;
  background-color: #333;
  display: inline-block;
  border-radius: 100%;
  -webkit-animation: medium-image-loading-animation 1s infinite ease-in-out;
  animation: medium-image-loading-animation 1s infinite ease-in-out;
}
@-webkit-keyframes medium-image-loading-animation {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes medium-image-loading-animation {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
@-webkit-keyframes shake {
  0% {
    -webkit-transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(3px, 0);
  }
  75% {
    -webkit-transform: translate(-3px, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}
@keyframes shake {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(3px, 0);
  }
  75% {
    transform: translate(-3px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
.medium-toolbar-arrow-under:after,
.medium-toolbar-arrow-over:before {
  display: none;
}
.medium-editor-toolbar .medium-editor-toolbar-actions li button {
  background: none rgba(31, 31, 31, 0.9);
  border: none;
  box-shadow: none;
  color: #ccc;
  font-family: "Public Sans", Arial, "Segoe UI", Helvetica, sans-serif;
  font-size: 12px;
  height: 20px;
  line-height: 1.5;
  min-width: 30px;
  outline: none;
  padding: 7px 8px 23px;
  text-shadow: none;
  transition: background-color 0.1s ease-in;
}
.medium-editor-toolbar .medium-editor-toolbar-actions li button.medium-editor-button-first {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  padding-left: 12px;
}
.medium-editor-toolbar .medium-editor-toolbar-actions li button.medium-editor-button-last {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  padding-right: 12px;
}
.medium-editor-toolbar .medium-editor-toolbar-actions li button:hover,
.medium-editor-toolbar .medium-editor-toolbar-actions li button:focus {
  background-color: #000;
  color: #fff;
}
.medium-editor-toolbar .medium-editor-toolbar-actions li button.medium-editor-button-active {
  color: #5096f2;
}
.medium-editor-toolbar .medium-editor-toolbar-actions li button.medium-editor-button-active.cursor-default {
  cursor: default;
}
.medium-editor-toolbar-anchor-preview {
  padding: 17px 20px 10px;
  cursor: pointer;
}
.medium-editor-toolbar-anchor-preview .preview-anchor-wrap {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 5px;
  padding: 4px 12px;
}
.medium-editor-toolbar-anchor-preview a {
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 5px;
  color: #ccc;
  font-family: "Public Sans", Arial, "Segoe UI", Helvetica, sans-serif;
  font-size: 11px;
  font-weight: normal;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.medium-editor-toolbar-anchor-preview a:hover {
  color: #5096f2;
}
.medium-editor-toolbar-anchor-preview a.medium-editor-toolbar-anchor-preview-action {
  color: #5096f2;
  margin-left: 10px;
}
.medium-editor-toolbar-anchor-preview a.medium-editor-toolbar-anchor-preview-action:hover {
  color: #2f71ca;
}
.medium-editor-toolbar-form {
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 3px;
  padding: 25px 20px;
}
.medium-editor-toolbar-form .medium-editor-toolbar-input {
  background-color: transparent;
  color: #ccc;
  font-family: Consolas, "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", Courier, monospace;
  font-size: 12px;
  font-weight: normal;
  line-height: 12px;
  padding: 5px 10px;
  margin-top: 1px;
}
.medium-editor-toolbar-form .medium-editor-toolbar-input::selection {
  background-color: #fff;
  color: #000;
}
.medium-editor-toolbar-form .throbber {
  color: #5096f2;
  font-size: 12px;
  margin-right: 12px;
}
.medium-editor-toolbar-form a {
  color: #5096f2;
  display: inline-block;
  font-family: "Public Sans", Arial, "Segoe UI", Helvetica, sans-serif;
  font-size: 11px;
  font-weight: normal;
  letter-spacing: 0.01em;
  margin: 0 12px 0 0;
}
.medium-editor-toolbar-form a:hover {
  color: #2f71ca;
}
.medium-editor-toolbar-form a.medium-editor-toobar-anchor-save::after {
  content: "•";
  color: #666e75;
  margin-left: 4px;
}
.medium-editor-toolbar-form .medium-editor-toolbar-save {
  color: #fff;
  background-color: #007CBE;
  width: 100px;
  height: 32px;
  text-align: center;
  margin-right: 0;
  border-radius: 2px;
  font-size: 12px;
  line-height: 18px;
}
.medium-editor-toolbar-form .medium-editor-toolbar-save span {
  position: relative;
  top: 7px;
  font-size: 12px;
}
.medium-editor-toolbar-form .medium-editor-toolbar-save.disabled-save {
  background-color: #727272;
  pointer-events: none;
}
.medium-editor-toolbar-form .medium-editor-toolbar-save:hover {
  color: #fff;
  background-color: rgba(0, 124, 190, 0.5);
}
.medium-editor-toolbar-form .medium-editor-toolbar-cancel {
  color: #fff;
  width: 100px;
  height: 32px;
  text-align: center;
  margin-right: 0;
  border-radius: 2px;
  font-size: 12px;
  line-height: 18px;
}
.medium-editor-toolbar-form .medium-editor-toolbar-cancel span {
  position: relative;
  top: 7px;
  font-size: 12px;
}
.core-sidebar .inner-content .pane h4 {
  color: #999;
  font-family: "Public Sans", "arial rounded mt", Helvetica, Arial, sans-serif;
  font-size: 21px;
  font-weight: 300;
  letter-spacing: 0.02em;
  padding: 4px 0 4px 14px;
  display: inline-block;
}
.pane {
  position: relative;
}
.pane .pane-body {
  margin-top: 54px;
  padding-left: 10px;
}
.pane .pane-fixed-header {
  position: fixed;
  top: 110px;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid #e2e2e2;
}
@media (max-width: 979px) {
  .pane .pane-fixed-header {
    top: 90px;
  }
}
.pane-scrollable {
  overflow-x: hidden;
  overflow-y: scroll;
}
.pane-scrollable .pane {
  padding-right: 20px;
}
.pane-scrollable a {
  color: #007CBE;
}
.curated-link-suggestions li {
  list-style: none;
}
.curated-link-suggestions i:not(.icon-nwt-external-link) {
  float: left;
  margin: 2px 10px 10px 0;
}
.curated-link-suggestions .icon-nwt-external-link {
  color: #007CBE;
  margin: 5px;
  font-size: 10px;
  cursor: pointer;
}
.curated-link-suggestions .curated-link-list-item-unlinked {
  color: #007CBE;
}
.curated-link-suggestions .curated-link-list-item-linked {
  color: #007CBE;
}
.curated-link-suggestions .curated-link-list-item-linked .active {
  border: 1px solid #007CBE;
  box-shadow: none;
}
.curated-link-suggestions .curated-link-list-item-linked:hover a,
.curated-link-suggestions .curated-link-list-item-unlinked a {
  color: #0D6493;
}
.curated-link-suggestions .curated-link-list-item-linked:hover a:hover,
.curated-link-suggestions .curated-link-list-item-unlinked a:hover {
  text-decoration: underline;
}
.curated-link-suggestions .count-link-label {
  color: #606B71;
  display: block;
  font-size: 10px;
  font-family: Helvetica, sans-serif;
  line-height: 16px;
  margin-left: 26px;
}
.curated-link-suggestions .retired-link-label {
  font-weight: 600;
}
/*

    TODO: the metadata pane rules could stand a pass at being more LESS-y?
*/
.metadata-pane .metadata {
  width: auto;
}
.metadata-pane .metadata textarea {
  border-color: #ddd;
  font-family: Cambria, "Hoefler Text", Times, "Times New Roman", serif;
  padding: 10px 2%;
  width: 96%;
}
.metadata-pane fieldset.toggleable {
  border-bottom: 1px solid #e5e5e5;
  clear: both;
  font-size: 12px;
  line-height: 20px;
}
.metadata-pane fieldset.toggleable legend {
  border: 0;
  color: #999;
  font-size: 13px;
  margin: 0;
}
.metadata-pane fieldset.toggleable legend:hover {
  background-color: #f8f8f8;
  color: #666;
}
.metadata-pane fieldset.toggleable legend i {
  display: inline-block;
  font-size: 17px;
  margin: 10px 6px 0 8px;
  vertical-align: top;
}
.metadata-pane fieldset.toggleable legend i.url-link {
  margin-right: 2px;
  margin-top: 2px;
}
.metadata-pane fieldset.toggleable.active .opener {
  display: block;
}
.metadata-pane fieldset.toggleable .icon-nwt-chevron-down {
  display: none;
}
.metadata-pane fieldset.toggleable.active .icon-nwt-chevron-down {
  display: inline-block;
}
.metadata-pane fieldset.toggleable.active .icon-nwt-greater-than {
  display: none;
}
.metadata-pane fieldset.toggleable.active legend {
  color: #007CBE;
  line-height: 39px;
}
.metadata-pane fieldset.toggleable.active.has-invalid legend,
.metadata-pane fieldset.toggleable.has-invalid legend {
  color: #d00243;
}
.metadata-pane fieldset.toggleable .hideable {
  padding: 0 8px;
}
.metadata-pane fieldset.toggleable .view a {
  margin-left: 5px;
}
.metadata-pane fieldset.toggleable .view a:hover {
  text-decoration: none;
}
.metadata-pane fieldset.toggleable .view .icon-nwt-external-link {
  color: #007CBE;
  font-size: 14px;
}
.metadata-pane fieldset.toggleable .item-list {
  float: left;
  list-style: none;
  padding: 0 0 21px 0;
  margin: 0;
  width: 100%;
}
.metadata-pane fieldset.toggleable .item-list .item-block {
  background-color: #eee;
  border: 1px solid #dfdfdf;
  display: inline-block;
  float: left;
  font-family: Cambria, "Hoefler Text", Times, "Times New Roman", serif;
  font-size: 14px;
  line-height: 31px;
  margin: 7px 4px 0 0;
  padding: 0 14px 0 2px;
}
.metadata-pane fieldset.toggleable .item-list .item-block .destroy {
  color: #007CBE;
  cursor: pointer;
  display: inline-block;
  font-size: 11px;
  height: 20px;
  line-height: 25px;
  margin: 0px 4px 5px 4px;
  text-align: center;
  vertical-align: bottom;
  width: 20px;
}
.metadata-pane fieldset.toggleable .item-list .item-block .destroy:hover {
  background-color: #007CBE;
  color: #fff;
}
.metadata-pane .opener {
  display: none;
}
.metadata-pane .opener .button-open {
  background-color: #007CBE;
  border: 1px solid #EFEFEF;
  color: #f0f0f0;
  cursor: pointer;
  font-weight: 200;
  letter-spacing: 0.05em;
  margin-top: -39px;
  padding: 8px 11px 9px 8px;
  position: absolute;
  right: 7px;
}
.metadata-pane .opener .button-open:focus {
  -webkit-focus-ring-color: none;
  outline: none;
}
.metadata-pane .opener i {
  font-size: 12px;
  margin: 3px 0 0 0;
}
.metadata-pane .opener .action-add {
  float: right;
}
.metadata-pane .opener .inputs {
  display: none;
}
.metadata-pane .opener .inputs .button-add {
  margin: 0 0 11px 0;
}
.metadata-pane .opener.reveal .button-open {
  display: none;
}
.metadata-pane .opener.reveal .inputs {
  display: block;
}
.metadata-pane .no-pointer-events .button-open {
  pointer-events: none;
  background-color: #999999;
}
.metadata-pane .no-pointer-events .url-list.item-list .view.actions {
  display: none;
}
.metadata-pane .error-msg {
  color: #bd1622;
  margin: 0 5px;
  font-style: italic;
  font-weight: bold;
  padding-right: 35px;
}
.metadata-pane .ellipsis {
  display: block;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.metadata-pane .text-edit {
  background: #fcfcfc;
  border: 0;
  box-shadow: none;
  color: #666e75;
  font-family: Consolas, "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", Courier, monospace;
  height: 19px;
  margin: 4px 0 0 0;
  padding: 2px 0px;
  text-indent: 6px;
  width: 100%;
}
.metadata-pane .keywords-accordian .new {
  border-radius: 0;
  border: 0;
  margin: 6px 0px;
  width: 100%;
}
.metadata-pane .titles-accordian .alt-titles label {
  cursor: default;
  font-size: 12px;
  margin: 0;
  padding: 5px 6px 5px 1px;
}
.metadata-pane .titles-accordian .alt-titles .social-label {
  color: #aaa;
  font-size: 11px;
  text-transform: uppercase;
}
.metadata-pane .titles-accordian .alt-titles .text-edit {
  margin: 0 0 10px 0;
  padding: 6px 0px 5px;
}
.metadata-pane .titles-accordian .alt-titles .error-msg {
  color: #bd1622;
  font-style: normal;
  margin-left: 5px;
}
.metadata-pane .releases-accordian .actions {
  margin: 15px 0 0 0;
}
.metadata-pane .releases-accordian .actions .action-add {
  color: #007CBE;
  float: right;
}
.metadata-pane .releases-accordian .release-list {
  list-style: none;
  margin: 0;
  max-width: 100%;
  cursor: pointer;
}
.metadata-pane .releases-accordian .release-list > li {
  border-top: 1px dotted #ccc;
  display: table;
  margin: 0;
  table-layout: fixed;
  width: 100%;
}
.metadata-pane .releases-accordian .release-list > li > .view {
  display: table-row;
}
.metadata-pane .releases-accordian .release-list .actions {
  color: #007CBE;
  clear: both;
  float: right;
  margin: 5px 0 4px 0;
}
.metadata-pane .releases-accordian .release-list .actions span {
  cursor: pointer;
}
.metadata-pane .releases-accordian .release-block {
  border-bottom: 1px solid #e5e5e5;
}
.metadata-pane .releases-accordian .release-block .dot {
  color: #666e75;
  cursor: default;
  display: inline-block;
  padding: 0 5px 0 5px;
  float: right;
}
.metadata-pane .releases-accordian .section-title {
  color: #555;
  font-size: 15px;
  font-weight: normal;
  height: 30px;
  letter-spacing: -0.02em;
  display: inline-block;
}
.metadata-pane .releases-accordian .confirm {
  font-size: 12px;
  display: block;
  vertical-align: top;
  padding: 0 0 0 0;
}
.metadata-pane .releases-accordian .confirm input[type="checkbox"] {
  vertical-align: top;
}
.metadata-pane .references-accordian .actions {
  margin: 15px 0 0 0;
}
.metadata-pane .references-accordian .actions .action-add {
  color: #007CBE;
  cursor: pointer;
}
.metadata-pane .references-accordian .invalid-warning {
  margin: 5px 0 4px 0;
  color: #d00243;
}
.metadata-pane .references-accordian .url-list.item-list {
  list-style: none;
  margin: 0;
  max-width: 100%;
}
.metadata-pane .references-accordian .url-list.item-list > li {
  border-top: 1px dotted #ccc;
  display: table;
  margin: 0;
  table-layout: fixed;
  width: 100%;
}
.metadata-pane .references-accordian .url-list.item-list > li > .view {
  display: table-row;
}
.metadata-pane .references-accordian .url-list.item-list > li > .view.editable > span {
  display: block;
}
.metadata-pane .references-accordian .url-list.item-list > li.editing .actions {
  margin: 1px 0 4px;
}
.metadata-pane .references-accordian .url-list.item-list .link-title {
  color: #555;
  font-size: 15px;
  font-weight: normal;
  height: 30px;
  letter-spacing: -0.02em;
  line-height: 40px;
}
.metadata-pane .references-accordian .url-list.item-list .link-uri {
  font-size: 12px;
}
.metadata-pane .references-accordian .url-list.item-list .actions {
  color: #007CBE;
  clear: both;
  float: right;
  margin: 5px 0 4px 0;
}
.metadata-pane .references-accordian .url-list.item-list .actions span {
  cursor: pointer;
  margin: 0;
}
.metadata-pane .references-accordian .url-list.item-list .actions .dot {
  color: #666e75;
  cursor: default;
  display: inline-block;
  padding: 0 3px;
}
.metadata-pane .references-accordian .url-list.item-list .add-new {
  display: none;
}
.metadata-pane .references-accordian .url-list.item-list .editing .view {
  display: none;
}
.metadata-pane .references-accordian .url-list.item-list .editing .add-new {
  display: block;
}
/* Adjustments for VIEW mode */
.view-mode .metadata-pane .keywords-accordian .keywd-list {
  cursor: default;
}
.view-mode .metadata-pane .keywords-accordian .keywd-list .destroy {
  display: none;
}
.view-mode .metadata-pane .keywords-accordian .keywd-list .keyword-block {
  padding-left: 14px;
}
.view-mode .metadata-pane .references-accordian .button-open {
  display: none;
}
.view-mode .metadata-pane .references-accordian .url-list.item-list > li > .view.actions {
  display: none;
}
.view-mode .metadata-pane .releases-accordian .button-open {
  display: none;
}
.view-mode .metadata-pane .releases-accordian .release-list.item-list > li > .view.actions {
  display: none;
}
.info-pane a {
  text-decoration: none;
}
.info-pane strong {
  color: #333;
}
.info-pane .listless {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-pane .ed-guidance-link {
  clear: both;
  display: block;
  margin: 26px 0 2px 0;
}
.info-pane .info-pane-link {
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  color: #5096f2;
  display: block;
  font-size: 13px;
  margin: 0 0 4px 0;
  padding: 5px 8px;
}
.info-pane .info-pane-link:hover {
  background-color: #fff;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  margin: -1px 0 5px -1px;
}
.info-pane .info-pane-link i {
  display: inline-block;
  font-size: 11px;
  margin-left: 4px;
  padding-top: 2px;
  vertical-align: top;
}
.info-pane .site-stats li {
  padding-left: 20px;
}
.info-pane fieldset.toggleable {
  border-bottom: 1px solid #e5e5e5;
  clear: both;
  font-size: 12px;
  line-height: 20px;
}
.info-pane fieldset.toggleable legend {
  border: 0;
  color: #999;
  font-size: 13px;
  margin: 0;
}
.info-pane fieldset.toggleable legend:hover {
  color: #666;
}
.info-pane fieldset.toggleable legend i {
  display: inline-block;
  font-size: 17px;
  margin: 10px 6px 0 8px;
  vertical-align: top;
}
.info-pane fieldset.toggleable .icon-nwt-chevron-down {
  display: none;
}
.info-pane fieldset.toggleable.active .icon-nwt-chevron-down {
  display: inline-block;
}
.info-pane fieldset.toggleable.active .icon-nwt-greater-than {
  display: none;
}
.info-pane fieldset.toggleable.active legend {
  color: #007CBE;
}
.info-pane fieldset.toggleable .hideable {
  padding: 0 8px;
}
.info-pane fieldset.toggleable .hideable div {
  margin-bottom: 20px;
}
.info-pane fieldset.toggleable .hideable li {
  margin: 10px 0;
}
.info-pane fieldset.validation-errors legend,
.info-pane fieldset.active.validation-errors legend {
  color: #d00243;
  height: 39px;
}
.info-pane fieldset.validation-errors ul,
.info-pane fieldset.active.validation-errors ul {
  list-style-type: circle;
  margin-left: 20px;
}
.info-pane fieldset.validation-errors li i.icon-nwt-warning,
.info-pane fieldset.active.validation-errors li i.icon-nwt-warning {
  margin-left: -30px;
  padding-right: 17px;
}
.info-pane .info-username {
  color: #c42B85;
  display: block;
  font-size: 15px;
  font-weight: bold;
}
.info-pane .info-author-role {
  color: #999;
  display: block;
  float: left;
  font-size: 10px;
  font-style: italic;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.info-pane .info-timestamp {
  color: #999;
  display: block;
  float: right;
  font-size: 10px;
  margin-bottom: 10px;
}
.info-pane .info-feedback {
  clear: both;
  color: #333;
}
.info-pane .spine-notes .info-timestamp {
  float: left;
}
.bio-pane .bio-avatar-wrapper {
  clear: both;
  padding-top: 10px;
}
.bio-pane .bio-avatar-border {
  background-color: #fcfcfc;
  border: 1px solid #eee;
  border-radius: 85px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  display: block;
  height: 158px;
  margin: 20px auto;
  padding: 10px;
  width: 150px;
}
.bio-pane .bio-avatar {
  background: no-repeat center;
  background-size: cover;
  border-radius: 74px;
  border: 1px solid #f4f4f4;
  display: block;
  height: 148px;
  width: 148px;
}
.bio-pane .writer-name {
  color: #666e75;
  font-size: 19px;
  font-weight: normal;
  margin-bottom: 20px;
  text-align: center;
}
.bio-pane .bio-text {
  color: #333;
}
.seo-pane .word-count-block .word-count-inner .word-count,
.seo-pane .word-count-block .word-count-inner .percent,
.seo-pane .word-count-block .word-count-inner .target {
  display: inline-block;
  width: 33%;
}
.seo-pane .word-count-block .word-count-inner .word-count.wide {
  width: 100%;
}
.seo-pane .word-count-block .word-count {
  text-align: center;
}
.seo-pane .word-count-block .percent {
  text-align: left;
  float: left;
}
.seo-pane .word-count-block .target {
  text-align: right;
  float: right;
}
.seo-pane .input-wrapper {
  padding-right: 15px;
}
.seo-pane .input-wrapper input {
  border-radius: 0;
  font-size: 12px;
}
.seo-pane .input-wrapper input:focus {
  border-color: #007CBE;
  outline: none;
  box-shadow: none;
}
.seo-pane .action-btn {
  cursor: pointer;
}
.seo-pane .focus-keyword-block .txtNewKW {
  width: 100%;
}
.seo-pane .focus-keyword-block .detail-count .red {
  color: red;
}
.seo-pane .focus-keyword-block .detail-count .green {
  color: green;
}
.seo-pane .focus-keyword-block .focus-keyword-list {
  overflow-x: auto;
  margin-left: 10px;
}
.seo-pane .focus-keyword-block .focus-keyword-list .keywords-result-table {
  width: 100%;
  margin-bottom: 8px;
}
.seo-pane .focus-keyword-block .focus-keyword-list .keywords-result-table thead {
  cursor: pointer;
}
.seo-pane .focus-keyword-block .focus-keyword-list .keywords-result-table thead .remove-focus-keyword-icon {
  font-size: 14px;
  color: #f6f6f6;
  padding: 1px 2px;
  border-radius: 20px;
  margin-left: 2px;
}
.seo-pane .focus-keyword-block .focus-keyword-list .keywords-result-table thead:hover .remove-focus-keyword-icon {
  color: #CCCCCC;
}
.seo-pane .focus-keyword-block .focus-keyword-list .green {
  color: green;
}
.seo-pane .focus-keyword-block .focus-keyword-list .red {
  color: red;
}
.seo-pane .focus-keyword-block .focus-keyword-list td {
  padding: 0 0 5px 15px;
}
.seo-pane .focus-keyword-block .focus-keyword-list th {
  text-align: left;
  font-weight: 500;
  padding: 5px 10px 5px 0;
}
.seo-pane fieldset.toggleable {
  border-bottom: 1px solid #e5e5e5;
  clear: both;
  font-size: 12px;
  line-height: 20px;
}
.seo-pane fieldset.toggleable legend {
  border: 0;
  color: #999;
  font-size: 13px;
  margin: 0;
}
.seo-pane fieldset.toggleable legend:hover {
  background-color: #f8f8f8;
  color: #666;
}
.seo-pane fieldset.toggleable legend i {
  display: inline-block;
  font-size: 17px;
  margin: 10px 6px 0 8px;
  vertical-align: top;
}
.seo-pane fieldset.toggleable legend i.url-link {
  margin-right: 2px;
  margin-top: 2px;
}
.seo-pane fieldset.toggleable.active .opener {
  display: block;
}
.seo-pane fieldset.toggleable .icon-nwt-chevron-down {
  display: none;
}
.seo-pane fieldset.toggleable.active .icon-nwt-chevron-down {
  display: inline-block;
}
.seo-pane fieldset.toggleable.active .icon-nwt-greater-than {
  display: none;
}
.seo-pane fieldset.toggleable.active legend {
  color: #007CBE;
  line-height: 39px;
}
.seo-pane fieldset.toggleable.active.has-invalid legend,
.seo-pane fieldset.toggleable.has-invalid legend {
  color: #d00243;
}
.seo-pane fieldset.toggleable .hideable {
  padding: 0 10px 0 8px;
}
.seo-pane fieldset.toggleable .view a {
  margin-left: 5px;
}
.seo-pane fieldset.toggleable .view a:hover {
  text-decoration: none;
}
.seo-pane fieldset.toggleable .view .icon-nwt-external-link {
  color: #007CBE;
  font-size: 14px;
}
.seo-pane fieldset.toggleable .item-list {
  float: left;
  list-style: none;
  padding: 0 0 21px 0;
  margin: 0;
  width: 100%;
}
.seo-pane fieldset.toggleable .item-list .item-block {
  background-color: #eee;
  border: 1px solid #dfdfdf;
  display: inline-block;
  float: left;
  font-family: Cambria, "Hoefler Text", Times, "Times New Roman", serif;
  font-size: 14px;
  line-height: 31px;
  margin: 7px 4px 0 0;
  padding: 0 14px 0 2px;
}
.seo-pane fieldset.toggleable .item-list .item-block .destroy {
  color: #007CBE;
  cursor: pointer;
  display: inline-block;
  font-size: 11px;
  height: 20px;
  line-height: 25px;
  margin: 0px 4px 5px 4px;
  text-align: center;
  vertical-align: bottom;
  width: 20px;
}
.seo-pane fieldset.toggleable .item-list .item-block .destroy:hover {
  background-color: #007CBE;
  color: #fff;
}
.seo-pane .word-count-inner {
  padding-right: 30px;
}
.seo-pane .progress-bar-no-stripe .bar {
  background-color: #007CBE;
  background-image: linear-gradient(to bottom, #007CBE, #70bde6);
}
/* general actionbar spacing */
/* max number of flyout actionbar items */
.actionbar-thing {
  position: absolute;
  margin-left: -42px;
  font-size: 150%;
}
.actionbar-thing .labelnode {
  font-size: 50%;
  color: #ccc;
  display: inline-block;
  white-space: pre;
}
.actionbar-thing.hidden {
  opacity: 0;
}
.actionbar-thing .flyout-btn {
  opacity: 0.9;
  position: relative;
  top: 2px;
  left: 0;
  z-index: 99;
  cursor: pointer;
  color: #666e75;
  transition: all 0.3s ease-out;
}
.actionbar-thing .flyout-btn:hover {
  color: #007CBE;
}
.actionbar-thing .actionbar-inner {
  width: 0;
  height: 0;
  pointer-events: none;
}
.actionbar-thing ul.flyout {
  list-style-type: none;
  z-index: 98;
}
.actionbar-thing ul.flyout li {
  opacity: 0;
}
.actionbar-thing ul.flyout li a {
  text-decoration: none;
  color: #CCCCCC;
  padding: 0 15px;
  display: inline-block;
  width: 182px;
  box-sizing: border-box;
}
.actionbar-thing ul.flyout li a:hover {
  text-decoration: none;
}
.actionbar-thing ul.flyout li svg {
  width: 14px;
  height: 14px;
  fill: #007CBE;
}
.actionbar-thing ul.flyout li svg:hover {
  fill: #555;
}
.actionbar-thing ul.flyout li i {
  font-size: 12px;
  color: #CCCCCC;
}
.actionbar-thing ul.flyout li .ext-list-item-label {
  font-size: 14px;
  padding: 0 0 0 13px;
}
.actionbar-thing ul.flyout li:hover a {
  color: #FFFFFF;
  text-decoration: none;
}
.actionbar-thing ul.flyout li:hover i {
  color: #FFFFFF;
}
.actionbar-thing ul.flyout li:hover li a {
  color: #CCCCCC;
}
.actionbar-thing ul.flyout li:hover li i {
  color: #CCCCCC;
}
.actionbar-thing ul.flyout li:hover li:hover a {
  color: #FFFFFF;
  text-decoration: none;
}
.actionbar-thing ul.flyout li:hover li:hover i {
  color: #FFFFFF;
}
.actionbar-thing ul.flyout li:hover li:hover li a {
  color: #CCCCCC;
}
.actionbar-thing ul.flyout li:hover li:hover li i {
  color: #CCCCCC;
}
.actionbar-thing.expanded .flyout-btn {
  transform: rotate(135deg);
  opacity: 0.7;
}
.actionbar-thing.expanded .flyout li {
  color: #007CBE;
  opacity: 1;
  margin: 11px 0;
  padding: 3px 0 0;
}
.actionbar-thing.expanded .flyout li span:hover {
  color: #FFFFFF;
  cursor: pointer;
}
.actionbar-thing.expanded .flyout li:hover {
  cursor: pointer;
  background-color: #999999;
}
.actionbar-thing.expanded .flyout .list-hover {
  background-color: #999999;
}
.actionbar-thing.expanded .flyout .list-hover a[data-export-token='modules'],
.actionbar-thing.expanded .flyout .list-hover a[data-export-token='$tables'] {
  color: #ffffff;
}
.actionbar-thing.expanded .flyout .list-hover a[data-export-token='modules'] i,
.actionbar-thing.expanded .flyout .list-hover a[data-export-token='$tables'] i {
  color: #ffffff;
}
.actionbar-thing.expanded .actionbar-inner {
  height: auto;
  background-color: #1F1F1F;
  color: #FFFFFF;
  font-family: "Public Sans", "arial rounded mt", Helvetica, Arial, sans-serif;
  position: absolute;
  left: 15px;
  top: -80px;
  border-radius: 5px;
  pointer-events: initial;
  animation: fade-in 0.1s ease-in-out;
}
.actionbar-thing.expanded .actionbar-inner .icon-nwt-chevron-right {
  float: right;
  margin-top: 4px;
}
.actionbar-thing.expanded .actionbar-inner:not(.tables-extension-generator) {
  width: auto;
}
@keyframes fade-in {
  0% {
    width: 0;
  }
  100% {
    width: 185px;
  }
}
.actionbar-thing.expanded .modules-extension-list {
  left: 157px;
  top: 0;
  width: 185px;
  box-shadow: -2px -1px 8px 1px rgba(6, 6, 6, 0.34);
}
.actionbar-thing.expanded .modules-extension-list a:not(.table-action-generate) {
  min-width: 185px;
}
.actionbar-thing.expanded .modules-extension-list [data-export-token='$code'] {
  background-color: transparent;
}
.actionbar-thing.expanded .modules-extension-list [data-export-token='$relatedcontent'],
.actionbar-thing.expanded .modules-extension-list [data-export-token='$tables'] {
  width: 220px;
}
.actionbar-thing.expanded .modules-extension-list.hidden {
  display: none;
}
.actionbar-thing.expanded .slides-extension-list {
  width: 185px;
  left: 157px;
  top: 138px;
  border-radius: 0 5px 5px;
  box-shadow: -2px -1px 8px 1px rgba(6, 6, 6, 0.34);
}
.actionbar-thing.expanded .slides-extension-list [data-export-token='$slidestop'] {
  margin-bottom: 0;
}
@keyframes table-selector-animation {
  0% {
    height: 150px;
    width: 0;
  }
  99% {
    height: 150px;
    width: 145px;
  }
  100% {
    height: auto;
    width: max-content;
  }
}
.actionbar-thing.expanded .tables-extension-generator {
  width: max-content;
  min-height: 150px;
  height: auto;
  animation: table-selector-animation 0.2s ease-in-out;
  left: 220px;
  box-shadow: -2px -1px 8px 1px rgba(6, 6, 6, 0.34);
  top: 150px;
  padding: 15px 15px 10px 15px;
}
@keyframes fade-in-td {
  0% {
    opacity: 0;
    border: 0 solid transparent;
    background-color: transparent;
  }
  80% {
    opacity: 0.5;
    border: 1px solid rgba(154, 154, 154, 0.3);
    background-color: rgba(53, 53, 53, 0.3);
  }
  100% {
    opacity: 1;
    border: 1px solid #9a9a9a;
    background-color: #353535;
  }
}
.actionbar-thing.expanded .tables-extension-generator .table-action-generate {
  width: 100%;
  padding: 0;
  display: flex;
}
.actionbar-thing.expanded .tables-extension-generator .table-action-generate table {
  width: 100%;
  height: 100%;
  background-color: transparent;
  visibility: visible;
}
.actionbar-thing.expanded .tables-extension-generator .table-action-generate table td.initial-col {
  animation: fade-in-td 0.4s ease-in;
  opacity: 1;
}
.actionbar-thing.expanded .tables-extension-generator .table-action-generate table td {
  width: 20px;
  height: 20px;
  border: 1px solid #9a9a9a;
  display: inline-block;
  box-sizing: border-box;
  margin-bottom: 5px;
  background-color: #353535;
}
.actionbar-thing.expanded .tables-extension-generator .table-action-generate table td:not(:last-child) {
  margin-right: 5px;
}
.actionbar-thing.expanded .tables-extension-generator .table-action-generate table .add-table-col.table-item-selected {
  background-color: #bbbbbb;
  border: 1px solid #F8F8F8;
}
@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.actionbar-thing.expanded .tables-extension-generator .table-dimensions-info.initial-dimension p {
  animation: opacity 0.4s ease-in;
}
.actionbar-thing.expanded .tables-extension-generator .table-dimensions-info {
  margin-top: 10px;
}
.actionbar-thing.expanded .tables-extension-generator .table-dimensions-info p {
  margin-bottom: 0;
  padding: 0;
  line-height: 1;
  text-align: center;
  margin-top: 10px;
  color: #CCCCCC;
  font-size: 14px;
  font-family: "Public Sans", Arial, Helvetica, sans-serif;
  letter-spacing: 1px;
}
.actionbar-thing.expanded .site-specific-extension-list {
  top: 103px;
  left: 157px;
}
.actionbar-thing.expanded .site-specific-extension-list.actionbar-inner {
  width: 190px;
}
.actionbar-thing.expanded .site-specific-extension-list.actionbar-inner [data-export-token='$exercise'] {
  width: 190px;
}
.actionbar-thing.expanded .widgets-extension-list {
  top: 208px;
  left: 157px;
}
.actionbar-thing.expanded .widgets-extension-list.actionbar-inner {
  width: 265px;
}
.actionbar-thing.expanded .widgets-extension-list.actionbar-inner [data-export-token='$body_mass_calculator'] {
  width: 2650px;
}
.actionbar-thing.expanded .widgets-extension-list.actionbar-inner [data-export-token='$body_fat_percentage_calculator'] {
  width: 265px;
}
.actionbar-thing.expanded .widgets-extension-list.actionbar-inner [data-export-token='$target_heartrate_calculator'] {
  width: 265px;
}
.actionbar-thing .menu-arrow {
  position: absolute;
  left: -10px !important;
  top: 85px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-right: 10px solid #1F1F1F;
  border-bottom: 7px solid transparent;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none;
}
.composer-mode-view .block-actions-wrap {
  display: none;
}
.is_safari .editable-content [data-export-token='$step'] h3,
.is_safari .editable-content [data-export-token='$slide'] h3 {
  -webkit-user-select: text;
  user-select: text;
}
.editable-content {
  counter-reset: stepcounter slidecounter;
  /* since step is typically one-line, make the X the center */
}
.editable-content > h2,
.editable-content > h3,
.editable-content > h4,
.editable-content > [data-export-token='$slidestop'] {
  counter-reset: stepcounter slidecounter;
}
.editable-content [data-export-token='$step'] h3:before {
  margin-right: 8px;
  counter-increment: stepcounter;
  color: #ccc;
  content: "Step" "\000a" counter(stepcounter) ":";
}
.editable-content [data-export-token='$slide'] h3:before {
  margin-right: 8px;
  counter-increment: slidecounter;
  color: #ccc;
  content: "Slide" "\000a" counter(slidecounter) ":";
}
.editable-content [data-export-token='$things'] > h4:after {
  content: " Things You'll Need";
}
.editable-content [data-export-token='$warning'] > h4:after {
  content: " Warning";
}
.editable-content [data-export-token='$tip'] > h4:after {
  content: " Tip";
}
.editable-content [data-export-token='$blockquote'] > h4:after {
  content: " Blockquote";
}
.editable-content [data-export-token='$custom_module'] > h4:after {
  content: " Custom";
}
.editable-content [data-export-token='$module_end_section'] > h4:after {
  content: " End of Section";
}
.editable-content [data-export-token='$table'] > h4:after {
  content: " Table";
}
.editable-content [data-export-token='$exercise'] > h4:after {
  content: " Individual Exercise";
}
.editable-content [data-export-token='$gallery'] > h4:after {
  content: " Photo Gallery";
}
.editable-content [data-export-token='$thumbnailgroup'] > h4:after {
  content: " Thumbnail Group";
}
.editable-content [data-export-token='$relatedcontent'] > h4:after {
  content: " In-Line Related Content";
}
.editable-content [data-export-token='$inspirationgallery'] > h4:after {
  content: " Inspiration Gallery";
}
.editable-content [data-export-token='$featuredstories'] > h4:after {
  content: " Featured Stories";
}
.editable-content [data-export-token='$dualcontainer'] > h4:after {
  content: " Dual Container Module";
}
.editable-content [data-export-token='$body_mass_calculator'] > h4:after,
.editable-content [data-export-token='$body_fat_percentage_calculator'] > h4:after,
.editable-content [data-export-token='$target_heartrate_calculator'] > h4:after {
  content: " Widget";
}
.editable-content [data-export-token='$faq'] > h4:after {
  content: " Question & Answer";
}
.editable-content [data-export-token='$slidestop'] {
  margin-bottom: 24px;
}
.editable-content [data-export-token='$slidestop'] .block-actions-wrap {
  top: -45px;
}
.editable-content [data-export-token='$slidestop'] h4 {
  line-height: 0.05em;
  font-size: 12px;
  border-bottom: 1px solid #ccc;
}
.editable-content [data-export-token='$slidestop'] h4 span {
  background: #fff;
  color: #ccc;
  text-transform: uppercase;
  padding: 0 12px 0 0;
}
.editable-content [data-export-token='$anchor_link'] .block-actions-wrap {
  top: -45px;
}
.editable-content [data-export-token='$anchor_link'] h4 {
  margin: 3.4em 0;
  line-height: 0.05em;
  font-size: 12px;
  border-bottom: 1px solid #ccc;
}
.editable-content [data-export-token='$anchor_link'] h4 span {
  background: #fff;
  color: #727272;
  height: 12px;
  padding-right: 10px;
}
.editable-content [data-export-token='$anchor_link'] h4 span.anchor::before {
  content: "\f13d";
  font-family: 'FontAwesome';
  margin-right: 10px;
}
.editable-content [data-export-token='$anchor_link'] h4 span.linked,
.editable-content [data-export-token='$anchor_link'] h4 span.unlinked {
  float: right;
}
.editable-content [data-export-token='$anchor_link'] h4 span.linked::before,
.editable-content [data-export-token='$anchor_link'] h4 span.unlinked::before {
  content: "\00a0 ";
  padding: 1px 15px 0 15px;
  background-position-x: center;
  background-repeat: no-repeat;
}
.editable-content [data-export-token='$anchor_link'] h4 span.linked::before {
  background-image: url("../../core/images/icon-checked-green-round.svg");
}
.editable-content [data-export-token='$anchor_link'] h4 span.unlinked::before {
  background-image: url("../../core/images/icon-exclamation-gray-round.svg");
}
.editable-content [data-export-token='$code'] {
  background-color: #fff;
}
.editable-content [data-export-token='$code'] h4 {
  color: #666;
}
.editable-content [data-export-token='$code'] h4:after {
  content: " Code Block";
}
.editable-content [data-export-token='$code'] textarea {
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  box-shadow: none;
  resize: none;
  height: auto;
  width: 98%;
  border: none;
  background-color: #fff;
  color: #666;
  outline: none;
}
.editable-content .block-actions-wrap {
  left: -40px;
  top: 0;
  margin-top: 0;
  width: 24px;
}
.editable-content .block-actions-wrap .action-item {
  font-weight: bold;
  background: transparent;
  color: #666e75;
}
.editable-content .block-actions-wrap .action-item:hover {
  background-color: #5096f2;
  color: #dedede;
}
.editable-content [data-export-token='$slide'] .block-actions-wrap,
.editable-content [data-export-token='$step'] .block-actions-wrap {
  top: -28px;
}
[data-export-token] {
  position: relative;
}
[data-export-token]:hover .block-actions-wrap {
  opacity: 1;
}
.img-framer a {
  display: inline-block;
}
.preview-thumb {
  position: relative;
}
.icon-play.preview {
  font-size: 60px;
  color: #FFFFFF;
  opacity: 0.8;
  text-decoration: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.icon-play.preview:hover {
  opacity: 1;
  text-decoration: none;
}
.radio-button-group .radio-button-inline {
  display: inline-block;
  margin: 0 20px 15px 0;
}
.radio-button-group .radio-button-inline input {
  display: inline-block;
  width: 20px;
  margin: -3px 0 0 0;
}
.exercise-module-image .remove-exercise-video-button,
.exercise-module-video .remove-exercise-video-button {
  margin-left: 15px;
}
.exercise-module-image .file-upload-button,
.exercise-module-video .file-upload-button {
  float: left;
  color: #fff;
  padding: 2px 15px;
}
.exercise-module-image .file-upload-button:hover,
.exercise-module-video .file-upload-button:hover {
  color: #007CBE;
}
.exercise-module-image .image-format-guide-text,
.exercise-module-video .image-format-guide-text {
  display: inline-block;
  margin: 5px 0 0 15px;
  float: left;
}
.exercise-module-image .image-preview-container,
.exercise-module-video .image-preview-container {
  float: left;
  position: relative;
  margin: 0 15px 15px 0;
}
.exercise-module-image .exercise-image-preview,
.exercise-module-video .exercise-image-preview {
  width: 100px;
}
.exercise-module-image .image-upload-temp-watermark,
.exercise-module-video .image-upload-temp-watermark {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
}
.exercise-module-image .image-upload-temp-watermark span,
.exercise-module-video .image-upload-temp-watermark span {
  color: #fff;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translateY(-50%);
  transform: translate(-50%, -50%);
}
.exercise-module-image .clearfix,
.exercise-module-video .clearfix {
  clear: both;
}
.exercise-module-image .remove-exercise-image-button,
.exercise-module-video .remove-exercise-image-button {
  font-size: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  color: white;
  background-color: rgba(51, 51, 51, 0.8);
  padding: 5px;
  cursor: pointer;
  z-index: 10;
}
.exercise-module-image .remove-exercise-image-button:hover,
.exercise-module-video .remove-exercise-image-button:hover {
  background-color: #007CBE;
}
.export-callout div[data-export-content].exercise-data-input-group {
  border: none;
  padding: 0;
}
.module-textarea-100 {
  width: 100%;
  box-sizing: border-box;
  resize: none;
}
.faq-list {
  margin-bottom: 15px;
  border: none !important;
  padding: 0 !important;
}
.faq-list .question-answer-block fieldset {
  margin-bottom: 15px;
  padding: 30px 10px 10px 10px;
  border: 1px solid #CCCCCC;
}
.faq-list .question-answer-block fieldset .icon-trash {
  float: right;
  margin-top: -20px;
  cursor: pointer;
}
.faq-list .faq-answer-field {
  border: 1px solid #CCCCCC;
  border-radius: 3px;
  padding: 10px;
  font-family: Cambria, "Hoefler Text", Times, "Times New Roman", serif;
  font-size: 16px;
  min-height: 40px;
}
.edit-product-details-on-admin-button {
  float: right;
  cursor: pointer;
}
.edit-product-details-on-admin-button:after {
  content: url('../../core/images/Icon-Pencil-Paper-Blue.svg');
}
.things-needed-module .no-search-dropdown-selector {
  width: 50%;
  font-size: 14px;
  margin-bottom: 15px;
}
.things-needed-module .no-search-dropdown-options {
  position: absolute;
  font-size: 14px;
  width: 50%;
  list-style: none;
  margin: -15px 0 15px 0;
  background-color: white;
  z-index: 10;
  box-sizing: border-box;
  color: #333;
  border: 1px solid #CCCCCC;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.075);
  font-family: "Public Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.things-needed-module .no-search-dropdown-options li {
  padding: 5px 10px;
  margin: 5px 0;
  cursor: pointer;
}
.things-needed-module .no-search-dropdown-options li:hover {
  background-color: #f2f2f2;
  color: #007CBE;
}
.things-needed-module .tyn-split-view {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
.things-needed-module .tyn-split-view.hidden {
  display: none;
}
.things-needed-module .tyn-split-view .no-search-dropdown-selector {
  width: 100%;
}
.things-needed-module .tyn-split-view .no-search-dropdown-options {
  width: 100%;
}
.things-needed-module .things-needed-section .things-needed-body {
  border: 1px solid #CCCCCC;
  border-radius: 3px;
  padding: 10px;
  max-height: 200px;
  height: 200px;
  overflow-y: scroll;
}
.things-needed-module .radio-button-inline {
  font-size: 14px;
}
.things-needed-module .things-needed-section {
  position: relative;
}
.jwp-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  background-color: #d1d1c8;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" class="jw-svg-icon jw-svg-icon-jwplayer-logo" viewBox="0 0 992 1024" focusable="false"><path d="M144 518.4c0 6.4-6.4 6.4-6.4 0l-3.2-12.8c0 0-6.4-19.2-12.8-38.4 0-6.4-6.4-12.8-9.6-22.4-6.4-6.4-16-9.6-28.8-6.4-9.6 3.2-16 12.8-16 22.4s0 16 0 25.6c3.2 25.6 22.4 121.6 32 140.8 9.6 22.4 35.2 32 54.4 22.4 22.4-9.6 28.8-35.2 38.4-54.4 9.6-25.6 60.8-166.4 60.8-166.4 6.4-12.8 9.6-12.8 9.6 0 0 0 0 140.8-3.2 204.8 0 25.6 0 67.2 9.6 89.6 6.4 16 12.8 28.8 25.6 38.4s28.8 12.8 44.8 12.8c6.4 0 16-3.2 22.4-6.4 9.6-6.4 16-12.8 25.6-22.4 16-19.2 28.8-44.8 38.4-64 25.6-51.2 89.6-201.6 89.6-201.6 6.4-12.8 9.6-12.8 9.6 0 0 0-9.6 256-9.6 355.2 0 25.6 6.4 48 12.8 70.4 9.6 22.4 22.4 38.4 44.8 48s48 9.6 70.4-3.2c16-9.6 28.8-25.6 38.4-38.4 12.8-22.4 25.6-48 32-70.4 19.2-51.2 35.2-102.4 51.2-153.6s153.6-540.8 163.2-582.4c0-6.4 0-9.6 0-12.8 0-9.6-6.4-19.2-16-22.4-16-6.4-32 0-38.4 12.8-6.4 16-195.2 470.4-195.2 470.4-6.4 12.8-9.6 12.8-9.6 0 0 0 0-156.8 0-288 0-70.4-35.2-108.8-83.2-118.4-22.4-3.2-44.8 0-67.2 12.8s-35.2 32-48 54.4c-16 28.8-105.6 297.6-105.6 297.6-6.4 12.8-9.6 12.8-9.6 0 0 0-3.2-115.2-6.4-144-3.2-41.6-12.8-108.8-67.2-115.2-51.2-3.2-73.6 57.6-86.4 99.2-9.6 25.6-51.2 163.2-51.2 163.2v3.2z"/></svg>') no-repeat 100% 100%;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" class="jw-svg-icon jw-svg-icon-jwplayer-logo" viewBox="0 0 992 1024" focusable="false"><path d="M144 518.4c0 6.4-6.4 6.4-6.4 0l-3.2-12.8c0 0-6.4-19.2-12.8-38.4 0-6.4-6.4-12.8-9.6-22.4-6.4-6.4-16-9.6-28.8-6.4-9.6 3.2-16 12.8-16 22.4s0 16 0 25.6c3.2 25.6 22.4 121.6 32 140.8 9.6 22.4 35.2 32 54.4 22.4 22.4-9.6 28.8-35.2 38.4-54.4 9.6-25.6 60.8-166.4 60.8-166.4 6.4-12.8 9.6-12.8 9.6 0 0 0 0 140.8-3.2 204.8 0 25.6 0 67.2 9.6 89.6 6.4 16 12.8 28.8 25.6 38.4s28.8 12.8 44.8 12.8c6.4 0 16-3.2 22.4-6.4 9.6-6.4 16-12.8 25.6-22.4 16-19.2 28.8-44.8 38.4-64 25.6-51.2 89.6-201.6 89.6-201.6 6.4-12.8 9.6-12.8 9.6 0 0 0-9.6 256-9.6 355.2 0 25.6 6.4 48 12.8 70.4 9.6 22.4 22.4 38.4 44.8 48s48 9.6 70.4-3.2c16-9.6 28.8-25.6 38.4-38.4 12.8-22.4 25.6-48 32-70.4 19.2-51.2 35.2-102.4 51.2-153.6s153.6-540.8 163.2-582.4c0-6.4 0-9.6 0-12.8 0-9.6-6.4-19.2-16-22.4-16-6.4-32 0-38.4 12.8-6.4 16-195.2 470.4-195.2 470.4-6.4 12.8-9.6 12.8-9.6 0 0 0 0-156.8 0-288 0-70.4-35.2-108.8-83.2-118.4-22.4-3.2-44.8 0-67.2 12.8s-35.2 32-48 54.4c-16 28.8-105.6 297.6-105.6 297.6-6.4 12.8-9.6 12.8-9.6 0 0 0-3.2-115.2-6.4-144-3.2-41.6-12.8-108.8-67.2-115.2-51.2-3.2-73.6 57.6-86.4 99.2-9.6 25.6-51.2 163.2-51.2 163.2v3.2z"/></svg>') no-repeat 100% 100%;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.editable-content .export-embed-prompt .export-dismiss-input {
  position: absolute;
  margin-left: -38px;
  margin-top: 8px;
  opacity: 0.75;
  cursor: pointer;
}
.editable-content .export-embed-prompt .export-embed-input {
  width: 50%;
  max-width: 640px;
}
.editable-content .export-embed-prompt .invalid:after {
  content: "Not a valid link.";
}
.editable-content [data-export-token='$embed'] h4:after,
.editable-content [data-export-token='$jwplayer'] h4:after {
  content: "\000a" attr(data-provider) " Embed";
}
.editable-content [data-export-token='$embed'] ul,
.editable-content [data-export-token='$jwplayer'] ul {
  list-style-type: none;
  margin-left: 0;
}
.editable-content [data-export-token='$embed'] ul span.small,
.editable-content [data-export-token='$jwplayer'] ul span.small {
  font-weight: 400;
}
.editable-content [data-export-token='$embed'] ul li,
.editable-content [data-export-token='$jwplayer'] ul li {
  color: #727272;
  font-weight: 600;
  font-size: 14px;
  font-family: "Public Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.editable-content [data-export-token='$commerce_product'] h4:after {
  content: "\000a" attr(data-provider) " Embed";
}
.editable-content .export-embed .embed-block {
  padding: 8px;
}
.editable-content .export-embed .embed-block p {
  margin-bottom: 0;
}
.editable-content .export-embed .additional-fields-inputs.closed {
  display: none;
}
.editable-content .export-embed .additional-fields-label {
  font-size: 14px;
  margin-bottom: 15px;
}
.editable-content .export-embed .additional-fields-label .label-text {
  margin-left: 5px;
}
.editable-content .export-embed label.label-text {
  font-size: 14px;
  color: #333333;
}
.editable-content .export-embed .enable-product-fields-checkbox {
  margin-top: -2px;
}
.editable-content .export-embed hr {
  border-top: 1px solid #727272;
  margin-bottom: 20px;
}
.editable-content .export-embed .enable-additional-fields-container.closed {
  display: none;
}
.editable-content .export-embed .input-note {
  font-family: "Public Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: #727272;
  margin-bottom: 15px;
}
.editable-content .export-embed .input-full-width {
  width: 100%;
  box-shadow: none;
  border-radius: 2px;
  display: inline-block;
  box-sizing: border-box;
  padding: 15px 10px;
  margin-bottom: 15px;
}
.editable-content .embed-input-help-icon {
  color: #999999;
  border: 1px solid #999999;
  padding: 1px 4px;
  font-size: 12px;
  border-radius: 20px;
  margin: 0 5px;
  position: absolute;
  top: 7px;
  cursor: pointer;
}
.editable-content .export-embed-prompt .help-inline {
  padding-bottom: 11px;
  margin-left: 30px;
}
.embed-iframe-fluid {
  position: relative;
  height: 320px;
  max-height: 320px;
}
.embed-iframe-fluid iframe {
  width: 100%;
  height: 100%;
}
.image-with-hotspots-layover {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
}
.image-with-hotspots-layover span {
  text-align: center;
  width: 160px;
  font-size: 22px;
  line-height: 36px;
  color: #d1d1c8;
  font-family: Arial, Helvetica, sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.embedded-poll-preview iframe {
  height: 300px;
  width: 350px;
  margin-top: -20px;
}
.label-description-block {
  display: block;
  margin: -5px 0 5px;
  color: #727272;
  font-size: 12px;
}
.diff-view {
  margin-bottom: 300px;
}
.diff-view ins {
  background-color: rgba(0, 255, 0, 0.2);
  text-decoration: none;
}
.diff-view del {
  background-color: rgba(255, 0, 0, 0.2);
  text-decoration: none;
}
.diff-view .navbar-inner {
  border: 0;
  height: 50px;
  /*overflow: hidden;*/
  padding: 0;
  position: relative;
  margin-bottom: 20px;
}
.diff-view .navbar-inner .nav-workflow {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99999;
}
.diff-view .navbar-inner .nav-workflow li .action-revert-version {
  color: #fff;
  background-color: #007CBE;
  font-size: 12px;
  line-height: 20px;
  text-shadow: none;
  transition: all 0.4s;
}
.diff-view .navbar-inner .nav-workflow li .action-revert-version:hover {
  background-color: rgba(0, 124, 190, 0.1);
  color: #007CBE;
}
.diff-view .sidebar-heading {
  color: #111;
  clear: both;
  display: block;
  font-family: "Public Sans", "arial rounded mt", Helvetica, Arial, sans-serif;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 20px 10px;
  opacity: 0.75;
  padding: 20px 0 0;
}
.diff-view .control-nav .active {
  border-left: 1px solid #e2e2e2;
  border-right: 1px solid #e2e2e2;
}
.diff-view .control-nav .active span {
  background-color: #007CBE;
  border: 0;
  color: #dedede;
  display: block;
  height: 47px;
  line-height: 54px;
  font-size: 22px;
}
.diff-view .revisions-wrap {
  width: 100%;
  height: 100%;
}
.diff-view .pane-scrollable .pane {
  padding-right: 10px;
}
.diff-view .pane-scrollable .pane-body {
  margin-top: 60px;
}
.diff-view .revision-form {
  padding-bottom: 120px;
}
.diff-view .revision-form td {
  padding: 18px 20px 21px 20px;
}
.diff-view .revision-form .diff-text {
  padding: 21px 10px 0px 10px;
}
.diff-view .revision-form .diff-index {
  text-align: right;
}
.diff-view .revision-form .diff-role {
  color: #aaa;
  margin-left: 12px;
}
.diff-view .article-version-history .version-history-block {
  background-color: #fff;
  padding: 15px;
  margin-bottom: 10px;
}
.diff-view .article-version-history .version-history-time-period {
  font-weight: 500;
  font-size: 12px;
  color: #707070;
}
.diff-view .article-version-history ul {
  margin: 0;
}
.diff-view .article-version-history .version-history-selector {
  list-style: none;
  line-height: 20px;
  height: 30px;
  vertical-align: middle;
  margin: 5px 0;
  padding: 5px 10px;
  box-sizing: border-box;
  background-color: #f6f6f6;
}
.diff-view .article-version-history .version-history-selector label {
  font-size: 12px;
}
.diff-view .article-version-history .version-history-selector input {
  margin: -1px 5px 0 0;
  height: 12px;
}
.diff-view .article-version-history .current-revision {
  float: right;
  font-weight: 500;
  color: #707070;
}
.diff-view .dropdown-label {
  display: inline-block;
  font-size: 12px;
  float: right;
  margin: 10px 0;
}
.diff-view .no-search-dropdown-selector {
  margin: 0 15px 0 5px;
  width: 150px;
}
.diff-view .no-search-dropdown-selector .icon-nwt-times {
  top: 12px;
  position: absolute;
  right: 30px;
  color: #707070;
  font-size: 7.5px;
  cursor: pointer;
}
.diff-view .no-search-dropdown-selector .icon-nwt-times:hover {
  color: #007CBE;
}
.diff-view .no-versions-available {
  margin-top: 140px;
}
.client-workdesk .tables {
  margin-top: 70px;
}
.client-workdesk .tables .count {
  display: inline-block;
  margin-left: 0.25em;
  color: #999;
  font-weight: bold;
}
.client-workdesk .tables h3 {
  position: relative;
  cursor: pointer;
}
.client-workdesk .tables h3 .btn {
  position: absolute;
  left: -33px;
  top: 4px;
}
.client-workdesk .tables h3 .btn i {
  font-weight: bold;
}
.client-workdesk .tables .section {
  margin: 0 33px 3em 33px;
}
.client-view .block-commentable {
  position: relative;
  counter-reset: commentcounter;
}
.client-view .block-commentable mark {
  position: absolute;
  opacity: 0;
  bottom: 0;
  top: 0;
  right: -16px;
  width: 4px;
  transition: opacity 0.7s;
  counter-increment: commentcounter;
}
.client-view .block-commentable mark.resolved {
  counter-increment: commentcounter 0;
}
.client-view .block-commentable mark.active {
  opacity: 1;
}
.client-view .block-commentable:after {
  font-size: 14px;
  position: absolute;
  font-family: "nwt" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 36px;
  top: 0;
  right: -56px;
  content: "\e002" "\000a" counter(commentcounter);
  color: #ccc;
  cursor: pointer;
}
.table-sortable th {
  cursor: pointer;
  position: relative;
}
.table-sortable th:before {
  font-size: 14px;
  position: absolute;
  font-family: "nwt" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 36px;
  right: 7px;
  top: 0;
}
.table-sortable th.sort-ascending:before {
  content: "\e00e";
}
.table-sortable th.sort-descending:before {
  content: "\e00d";
}
.login-popup-container {
  width: 555px;
  background-color: #FFFFFF;
  margin: 100px auto;
  padding: 80px;
  box-sizing: border-box;
  font-family: 'Public Sans', Arial, Helvetica, sans-serif;
}
.login-popup-container .form-header h2 {
  font-size: 24px;
  color: #333333;
  text-align: center;
  font-weight: 400;
  margin: 0 0 15px;
}
.login-popup-container .form-header p {
  text-align: center;
  color: #666666;
  width: 75%;
  margin: 0 auto;
}
.login-popup-container hr {
  height: 3px;
  margin: 50px 0;
  border: none;
  background-color: #EEEEEE;
}
.login-popup-container #login-form {
  width: 80%;
  margin: 30px auto 0;
}
.login-popup-container .form-group {
  border: 1px solid #cccccc;
  margin-bottom: 40px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}
.login-popup-container .form-group .form-control {
  height: 40px;
  font-size: 14px;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  width: 100%;
  margin: 0;
  padding: 10px 15px;
  box-sizing: border-box;
}
.login-popup-container .form-group input::placeholder {
  color: #CCCCCC;
}
.login-popup-container .form-group .password-input {
  width: 75%;
}
.login-popup-container .form-group #forgot-password {
  font-size: 10px;
  display: inline;
  padding: 0 10px;
  font-weight: 500;
  color: #007CBE;
}
.login-popup-container #popup-login-button {
  font-size: 18px;
  width: 100%;
  margin: 0 auto 20px;
  display: block;
  color: #007CBE;
  background-color: #FFFFFF;
  border: 1px solid #007CBE;
  border-radius: 50px;
  outline: none;
  height: 40px;
}
.login-popup-container #popup-login-button:hover {
  background-color: rgba(0, 124, 190, 0.1);
}
.login-popup-container .confirm-logout-button {
  color: #007CBE;
  display: block;
  padding: 20px 0 0;
  text-align: center;
  font-size: 14px;
}
.login-popup-container #login-error-message {
  color: #D20241;
  margin: 0;
  text-align: center;
}
.table-of-contents {
  padding: 20px;
  border: 1px solid #eee;
  margin-top: 15px;
  position: relative;
}
.table-of-contents .table-of-contents-header {
  font-weight: 500;
  margin: 0 10px 0 25px;
}
.table-of-contents .icon-table-of-contents {
  position: absolute;
  top: 26px;
}
.table-of-contents .article-heading-list {
  margin-top: 15px;
  border-top: 1px solid #eee;
  padding: 15px 0 0;
}
.table-of-contents .article-heading-list .table-of-contents-heading-input {
  display: inline-block;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  padding: 12px 7px;
  border-radius: 4px;
  box-sizing: border-box;
  margin-bottom: 0;
}
.table-of-contents .article-heading-list .table-of-contents-heading-input.disabled {
  background-color: #f2f2f2;
  color: #727272;
}
.table-of-contents .article-heading-list .table-of-contents-heading-row-wrapper {
  display: flex;
  position: relative;
  margin-bottom: 28px;
}
.table-of-contents .article-heading-list .table-of-contents-heading-row-wrapper .heading-override-from-note {
  display: block;
  position: absolute;
  top: 25px;
  font-size: 12px;
  color: #727272;
  padding-left: 5px;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.table-of-contents .article-heading-list .table-of-contents-heading-row-wrapper:last-of-type {
  margin-bottom: 15px;
}
.table-of-contents .article-heading-list .table-of-contents-heading-input-wrapper {
  flex-grow: 2;
}
.table-of-contents .article-heading-list .table-of-contents-heading-input:focus {
  outline: none;
}
.table-of-contents .article-heading-list .heading-control-buttons {
  display: inline-block;
  flex-grow: 0;
  padding: 2px 0;
}
.table-of-contents .article-heading-list .heading-control-buttons i {
  margin-left: 20px;
  position: relative;
}
.table-of-contents .article-heading-list .heading-control-buttons i .custom-tooltip {
  display: none;
  position: absolute;
  color: #ffffff;
  box-sizing: border-box;
  z-index: 1000;
  float: left;
  background: black;
  padding: 3px 5px;
  font-size: 12px;
  top: 30px;
  font-family: Helvetica, Arial, sans-serif;
  border-radius: 3px;
}
.table-of-contents .article-heading-list .heading-control-buttons i .custom-tooltip:before {
  width: 0;
  height: 0;
  position: absolute;
  margin: 0 auto;
  text-align: center;
  left: 10px;
  top: -6px;
  right: 10px;
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 7px solid black;
}
.table-of-contents .article-heading-list .heading-control-buttons i:hover {
  cursor: pointer;
}
.table-of-contents .article-heading-list .heading-control-buttons i:hover .custom-tooltip {
  display: block;
}
.table-of-contents .article-heading-list .heading-control-buttons .icon-eye-not-visible,
.table-of-contents .article-heading-list .heading-control-buttons .icon-eye-visible {
  float: right;
  margin-top: 3px;
}
.table-of-contents .article-heading-list .heading-control-buttons .icon-eye-not-visible .custom-tooltip,
.table-of-contents .article-heading-list .heading-control-buttons .icon-eye-visible .custom-tooltip {
  top: 27px;
  right: -27px;
}
.table-of-contents .article-heading-list .heading-control-buttons .icon-scroll-to {
  float: left;
}
.table-of-contents .article-heading-list .heading-control-buttons .icon-scroll-to .custom-tooltip {
  width: 103px;
  right: -40px;
}
.table-of-contents .article-heading-list .no-headings-warning {
  font-size: 12px;
  color: #727272;
  font-style: italic;
}
.add-link-module {
  color: #fff;
  font-family: "Public Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding-bottom: 52px;
}
.add-link-module .link-module-header h4 {
  font-weight: 500;
  display: inline-block;
  margin: 0 0 20px;
  font-size: 16px;
}
.add-link-module .link-module-header .medium-editor-toolbar-close {
  cursor: pointer;
  float: right;
  font-weight: 600;
}
.add-link-module .link-module-sub-header {
  display: block;
  margin: 0 0 5px;
  font-size: 12px;
}
.add-link-module .link-module-sub-header .required-field-label::after {
  content: " * ";
  color: #d00243;
}
.add-link-module .add-link-input-toggle-bar {
  margin-bottom: 20px;
}
.add-link-module .add-link-input-toggle-bar label {
  display: inline-block;
  width: auto;
  padding: 0;
  font-size: 12px;
}
.add-link-module .add-link-input-toggle-bar label:not(:first-of-type) {
  margin-left: 30px;
}
.add-link-module .add-link-input-toggle-bar input {
  margin-top: -3px;
  margin-right: 5px;
}
.add-link-module .add-reference-input-toggle-bar {
  margin-bottom: 5px;
}
.add-link-module .add-reference-input-toggle-bar label {
  display: inline-block;
  width: auto;
  padding: 0;
  font-size: 12px;
  margin: 0 0 20px;
}
.add-link-module .add-reference-input-toggle-bar label:not(:first-of-type) {
  margin-left: 30px;
}
.add-link-module .add-reference-input-toggle-bar input {
  margin-top: -3px;
  margin-right: 10px;
}
.add-link-module .medium-editor-toolbar-input,
.add-link-module .medium-editor-toolbar-input-search-only {
  background-color: #fff;
  border-radius: 0;
  height: 32px;
  width: 100%;
  font-family: "Public Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #707070;
  box-sizing: border-box;
  margin: 0;
  font-size: 12px;
  padding: 10px;
}
.add-link-module .medium-editor-toolbar-input.badurl,
.add-link-module .medium-editor-toolbar-input-search-only.badurl {
  -webkit-animation-name: shake;
  -webkit-animation-duration: 0.15s;
  -webkit-animation-iteration-count: 3;
  -webkit-animation-timing-function: linear;
  animation-name: shake;
  animation-duration: 0.15s;
  animation-iteration-count: 3;
  animation-timing-function: linear;
}
.add-link-module .medium-editor-toolbar-input.badurl::before,
.add-link-module .medium-editor-toolbar-input-search-only.badurl::before {
  position: absolute;
  font-size: 12px;
  color: #fff;
  left: 40px;
  bottom: 1px;
  content: attr(data-validation-error);
}
.add-link-module .medium-editor-toolbar-input.badurl::after,
.add-link-module .medium-editor-toolbar-input-search-only.badurl::after {
  content: url("../../core/images/Icon-RedExclamation.svg");
  position: absolute;
  left: 20px;
  bottom: 0;
}
.add-link-module .medium-editor-toolbar-input-search-only {
  padding: 10px 30px 10px 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.add-link-module .medium-editor-toolbar-save {
  float: right;
  margin-top: -52px;
  width: 30px;
}
.add-link-module .medium-editor-toolbar-save.disabled {
  background-color: #999999;
  color: #fff;
  pointer-events: none;
}
.add-link-module .throbber {
  width: 40px;
  margin-left: -5px;
}
.add-link-module .hidden {
  display: none;
}
.add-link-module .no-search-dropdown-selector:not(.hidden) {
  display: block;
  background-color: #fff;
  width: 510px;
  height: 32px;
  cursor: pointer;
}
.add-link-module .no-search-dropdown-selector:not(.hidden) .selected-option-read-only {
  padding-top: 5px;
  color: #999999;
  width: 285px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.add-link-module .no-search-dropdown-selector:not(.hidden).no-options-available {
  border: none;
  background-color: transparent;
  padding: 10px 0;
  width: 100%;
  text-align: center;
  font-style: italic;
  color: #fff;
}
.add-link-module .search-dropdown-options {
  width: 510px;
  border: 1px solid #CCCCCC;
  min-height: 65px;
  list-style: none;
  padding: 10px 0;
  background-color: white;
  z-index: 10;
  box-sizing: border-box;
  color: #707070;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.075);
  font-family: "Public Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  max-height: 200px;
  overflow-y: scroll;
  position: absolute;
}
.add-link-module .search-dropdown-options li:not(.icon-spin) {
  padding: 5px 10px;
  margin: 5px 0;
  font-size: 14px;
  cursor: pointer;
  width: 383px;
}
.add-link-module .search-dropdown-options li:not(.no-results):hover {
  background-color: #f2f2f2;
}
.add-link-module .search-dropdown-options .icon-spin {
  margin-left: 45%;
}
.add-link-module .anchor-input-container {
  margin: 0 0 25px;
}
.add-link-module .anchor-input-container.badurl::before {
  position: absolute;
  font-size: 10px;
  line-height: 16px;
  color: #fff;
  top: 192px;
  content: attr(data-validation-error);
}
.add-link-module .anchor-input-container .icon-nwt-times {
  position: absolute;
  right: 35px;
  bottom: 108px;
  color: #707070;
  font-size: 12px;
  cursor: pointer;
  z-index: 100;
}
.add-link-module .reference-container.badurl::before {
  position: absolute;
  font-size: 10px;
  line-height: 16px;
  color: #fff;
  top: 345px;
  content: attr(data-validation-error);
}
.add-link-module .linked-article-item {
  color: #1A897C;
  font-family: "Public Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.add-link-module .linked-article-item:before {
  margin: 3px 5px 0 0;
  float: left;
}
.add-link-module .related-article-list-item:hover {
  color: #007CBE;
}
.add-link-module .related-article-list-item:hover .linked-article-item {
  color: #007CBE;
}
.add-link-module .related-article-list-item:hover .linked-article-item:before {
  content: url('../../core/images/Icon-PrimaryCheckRound.svg');
}
.add-link-module .related-article-list-subtitle {
  text-transform: uppercase;
  padding: 0px;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
}
.add-link-module .link-module-footer {
  height: 55px;
  margin: 0 0 5px;
  font-size: 12px;
  z-index: 100;
}
.link-module-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 72px;
  padding: 20px;
  width: 100%;
  background-color: #404B51;
  box-sizing: border-box;
}
@keyframes dot-keyframes {
  0% {
    opacity: 0.4;
    transform: scale(1, 1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2, 1.2);
  }
  100% {
    opacity: 0.4;
    transform: scale(1, 1);
  }
}
.loading-dots {
  text-align: center;
  width: 100%;
}
.loading-dots .loading-dot {
  animation: dot-keyframes 1.5s infinite ease-in-out;
  background-color: white;
  border-radius: 10px;
  display: inline-block;
  height: 8px;
  width: 8px;
  margin: 0 5px;
}
.loading-dots .loading-dot:nth-child(2) {
  animation-delay: 0.5s;
}
.loading-dots .loading-dot:nth-child(3) {
  animation-delay: 1s;
}
.loading-dots.small .loading-dot {
  height: 5px;
  width: 5px;
  margin: 0 3px;
}
.loading-dots.large {
  margin-top: 50px;
}
.loading-dots.large .loading-dot {
  height: 15px;
  width: 15px;
}
.loading-dots.inline {
  display: inline;
  border: none !important;
}
.loading-dots.primary-color {
  margin-top: 20px;
}
.loading-dots.primary-color .loading-dot {
  background-color: #007CBE;
}
.headinglabelbutton {
  float: right;
  margin-right: -235px;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f8f8;
  border-left: 4px solid #007CBE;
  width: 234px;
  box-sizing: border-box;
}
.headinglabelbutton .add-heading-label-button {
  padding: 17px 0;
}
.headinglabelbutton .icon-plus-round {
  margin-right: 10px;
  cursor: pointer;
  float: right;
}
.headinglabelbutton .button-text {
  font-weight: 500;
  font-size: 16px;
  color: #007CBE;
  float: right;
  margin-top: -1px;
  cursor: pointer;
}
.headinglabelbutton .no-search-dropdown-selector {
  width: 200px;
  background-color: #fff;
}
.headinglabelbutton .no-search-dropdown-options {
  width: 200px;
  list-style: none;
  margin: 0;
  background-color: white;
  z-index: 10;
  box-sizing: border-box;
  color: #333;
  border: 1px solid #CCCCCC;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.075);
  font-family: "Public Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.headinglabelbutton .no-search-dropdown-options li {
  padding: 5px 10px;
  margin: 5px 0;
  font-size: 12px;
  cursor: pointer;
}
.headinglabelbutton .no-search-dropdown-options li:hover {
  background-color: #f2f2f2;
  color: #007CBE;
}
.headinglabelbutton .composer-action-buttons {
  float: none;
}
.headinglabelbutton .composer-action-buttons .button-link {
  background: transparent;
  color: #007CBE;
}
.heading-label-module,
[data-export-token='$headinglabelmodule'] {
  float: right;
  margin-right: -248px;
  height: 62px;
  padding: 10px;
  width: 234px;
  box-sizing: border-box;
}
.heading-label-module label,
[data-export-token='$headinglabelmodule'] label {
  font-size: 10px;
  margin-bottom: 0;
  color: #707070;
  font-weight: 500;
  letter-spacing: 1px;
}
.heading-label-module .heading-label-key,
[data-export-token='$headinglabelmodule'] .heading-label-key {
  font-weight: 500;
  font-size: 16px;
  width: 140px;
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.heading-label-module .heading-label-module-action-buttons,
[data-export-token='$headinglabelmodule'] .heading-label-module-action-buttons {
  display: inline-block;
  float: right;
  margin-top: -7px;
}
.heading-label-module .heading-label-module-action-buttons i,
[data-export-token='$headinglabelmodule'] .heading-label-module-action-buttons i {
  cursor: pointer;
}
.heading-label-module .heading-label-module-action-buttons .icon-trash,
[data-export-token='$headinglabelmodule'] .heading-label-module-action-buttons .icon-trash {
  margin-left: 10px;
  float: right;
}
.heading-label-form {
  z-index: 10;
}
.heading-label-form label {
  font-weight: 600;
  margin-bottom: 10px;
}
html {
  height: 100%;
}
sup {
  vertical-align: super;
}
sub {
  vertical-align: sub;
}
.editorial-response {
  background: url("../../core/images/dms-logo-darkblue.png") no-repeat scroll 40px 47px #fafafc;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  margin: 40px 0;
  padding: 40px;
}
.editorial-response h3 {
  float: right;
  line-height: 50px;
  color: #666E76;
  font-weight: 200;
}
.editorial-response .response-wrapper {
  border-top: 1px solid #e0e0e0;
  clear: both;
  margin-top: 10px;
  padding: 10px 0;
}
.editorial-response .response-display-name {
  color: #c42B85;
  display: block;
  font-size: 17px;
  font-weight: bold;
}
.editorial-response .response-type {
  color: #777;
  display: block;
  font-size: 13px;
  font-style: italic;
  float: left;
  text-transform: uppercase;
}
.editorial-response .response-timestamp {
  color: #777;
  display: block;
  font-size: 13px;
  float: right;
  padding-bottom: 8px;
}
.editorial-response .response-text {
  clear: both;
}
h1.maintitle {
  font-family: "Public Sans", "arial rounded mt", Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  /*margin-top: 80px;*/
}
h1.maintitle.editable {
  cursor: pointer;
}
h1.maintitle.editable i {
  margin-top: 5px;
  margin-left: -50px;
  color: #ccc;
  position: absolute;
  opacity: 0;
}
h1.maintitle.editable.hovered i {
  opacity: 1;
}
#content .main-nav-wrap {
  /*
    li a {
        padding-top: 15px;
    }
    */
}
#content .main-nav-wrap .nav-workflow {
  float: left;
  height: auto;
  padding: 6px 0;
  padding-left: 60px;
  /*overflow: hidden; For drop down menu*/
}
#content .main-nav-wrap .nav-workflow .hamburger-wrap {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99999;
}
#content .hamburger {
  position: relative;
}
#content .hamburger .action-hamburger-toggle {
  color: #007CBE;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  height: 35px;
  line-height: 20px;
  margin: 0;
  padding-top: 15px;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  transition: all 0.4s;
  width: 60px;
}
#content .hamburger .action-hamburger-toggle > i {
  font-size: 20px;
  margin-right: 8px;
  vertical-align: bottom;
}
#content .hamburger ul {
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  left: 0;
  margin: 2px 0;
  opacity: 0;
  padding: 5px 0;
  position: absolute;
  top: 0;
  transition: opacity 0.1s ease-in;
  display: none;
}
#content .hamburger ul:before {
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.3);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  content: '';
  display: inline-block;
  left: 9px;
  position: absolute;
  top: -7px;
}
#content .hamburger ul:after {
  border-bottom: 6px solid #ffffff;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  content: '';
  display: inline-block;
  left: 10px;
  position: absolute;
  top: -6px;
}
#content .hamburger ul.active {
  left: 8px;
  opacity: 1;
  top: 38px;
  display: block;
}
#content .hamburger ul.edit .edit i {
  visibility: visible;
}
#content .hamburger ul.view .view i {
  visibility: visible;
}
#content .hamburger ul.diff .diff i {
  visibility: visible;
}
#content .hamburger ul .nav-header {
  color: #007CBE;
  display: block;
  font-size: 11px;
  font-weight: bold;
  line-height: 20px;
  text-transform: uppercase;
}
#content .hamburger ul .nav-header:hover {
  background-color: transparent;
  color: #007CBE;
  cursor: default;
}
#content .hamburger ul > li {
  color: #333;
  font-size: 14px;
  margin: 0;
  padding: 7px 20px 6px 10px;
}
#content .hamburger ul > li.active i {
  visibility: visible;
}
#content .hamburger ul > li:hover {
  background-color: #e2e2e2;
  color: #666;
  cursor: pointer;
}
#content .hamburger ul > li:hover i {
  color: #666;
}
#content .hamburger ul > li > i {
  color: #007CBE;
  font-size: 10px;
  margin-right: 8px;
  visibility: hidden;
}
#content .hamburger ul .preview-blank-page-redirect {
  padding-top: 0;
  cursor: pointer;
  color: #333;
  font-size: 14px;
  background-image: none;
  transition: none;
}
#content .hamburger ul .view .preview-blank-page-redirect:hover,
#content .hamburger ul .view .preview-blank-page-redirect:focus,
#content .hamburger ul .view .preview-blank-page-redirect:active,
#content .hamburger ul view .preview-blank-page-redirect:visited {
  background-color: transparent;
  cursor: pointer;
  color: #666;
  font-size: 14px;
  margin: 0;
  background-image: none;
}
#content .save-reassure {
  color: #999;
  font-size: 13px;
  display: block;
  margin: 15px 0 0 15px;
  opacity: 0;
  transition: opacity 1s;
}
#content .save-reassure.show {
  opacity: 1;
}
.preview-container .fixed-sidebar {
  background-color: #f2f2f2;
  height: 100%;
  right: 0;
}
.modal .article-rating .rate-wrapper {
  margin: 0 auto;
  width: 380px;
}
.modal .article-rating .rate-wrapper .btn-group {
  margin-bottom: 20px;
}
.modal .article-rating .rate-wrapper button {
  color: #777;
  padding: 4px 14px;
}
.modal .article-rating .rate-wrapper .btn.active {
  background-color: #57B5E7;
  color: #333;
  text-shadow: none;
}
.modal .article-rating .rate-wrapper .explainer {
  color: #999;
  display: block;
  font-size: 12px;
  letter-spacing: 0.01em;
}
.modal .article-reject {
  margin: 0 auto;
  width: 380px;
}
.modal .article-reject .reason-heading {
  font-weight: bold;
  margin-right: 1em;
}
.modal .article-reject .comment-head {
  font-weight: bold;
}
.modal .article-reject .comment-head .req {
  color: #aaa;
  font-size: 12px;
  font-style: italic;
  font-weight: normal;
  margin-left: 0.5em;
}
.modal .article-reject .reject-explainer {
  color: #900;
  display: none;
  font-size: 12px;
  font-style: italic;
  margin-top: -0.5em;
  padding: 0;
}
.modal .article-reject textarea {
  height: 5em;
  resize: none;
  width: 370px;
}
.modal .article-reject.validation-failed .reject-explainer {
  display: block;
}
.modal .article-reject.validation-failed .req {
  background-color: #a00;
  border-radius: 3px;
  color: #f0f0f0;
  padding: 4px 8px;
  vertical-align: top;
}
.modal .article-reject.validation-failed textarea {
  background-color: #fffff0;
}
.modal .modal-footer .btn.pull-right {
  margin-left: 8px;
}
.modal input.largetext {
  font-size: 125%;
}
.modal .error-msg {
  color: #bd1622;
  font-style: italic;
  font-weight: bold;
  padding: 0 35px 0 10px;
}
.spine-modal {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1200;
}
.spine-modal a {
  color: #007CBE;
}
.spine-modal .spinewrapper {
  border: 1px solid #111;
  background-color: #f0f0f0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
  margin: 90px 20% 0 20%;
  max-height: 50%;
  overflow-y: auto;
  padding: 40px;
}
.spine-modal .intro {
  border-bottom: 1px solid #ccc;
  margin-bottom: 2em;
  padding-bottom: 1em;
}
.spine-modal .spine-content {
  word-break: break-word;
}
.spine-modal .button-dismiss {
  background-color: #5096f2;
  background-image: none;
  border: 0;
  float: right;
  font-weight: 200;
  letter-spacing: 0.05em;
  margin-top: 1em;
}
.spine-modal .button-dismiss:hover {
  background-color: #2f71ca;
}
.spine-modal .button-dismiss:after {
  clear: both;
}
.nwt-callout {
  /* individual callout positioning adjustments */
}
.nwt-callout.view-brief {
  margin: 20px 5px 0 -240px;
}
.nwt-callout.view-brief .up {
  margin-left: 254px;
}
.nwt-callout.view-rewrite-brief {
  margin-top: 30px;
  margin-left: 20px;
}
.view-mode .view-mode-hidden {
  display: none;
}
.view-mode .main-nav-wrap .nav {
  float: left !important;
  margin-left: 3px;
}
.view-mode .tab-navigation ul li {
  width: 33%;
}
.view-mode .tab-navigation .control-nav .attention .alert-counter {
  margin-left: 22%;
}
.view-mode .export-image {
  display: table;
}
.view-mode .image-meta-edit-form input {
  display: none;
}
.view-mode .image-meta-edit-form .for-viewing {
  display: block;
}
.view-mode .imgframer {
  cursor: default;
}
.edit-mode .edit-mode-hidden {
  display: none;
}
.titleedit-modal .validation-message {
  display: none;
}
.titleedit-modal.invalid .validation-message {
  display: block;
}
.nwt-export-invalid {
  -webkit-animation-name: highlight;
  -webkit-animation-duration: 1.5s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
  animation-name: highlight;
  animation-duration: 1.5s;
  animation-iteration-count: 1;
  animation-timing-function: linear;
}
.fileinput-button {
  position: relative;
  overflow: hidden;
}
.fileinput-button input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: translate(-300px, 0) scale(4);
  -moz-transform: translate(-300px, 0) scale(4);
  font-size: 23px;
  direction: ltr;
  cursor: pointer;
}
@media (max-width: 767px) {
  .view-mode .nav-main {
    display: none;
  }
  .view-mode.composer-container {
    margin-top: -60px;
  }
}
@-webkit-keyframes highlight {
  0% {
    background-color: transparent;
  }
  5% {
    background-color: #ffffcc;
  }
  65% {
    background-color: #ffffcc;
  }
  100% {
    background-color: transparent;
  }
}
@-moz-keyframes highlight {
  0% {
    background-color: transparent;
  }
  5% {
    background-color: #ffffcc;
  }
  65% {
    background-color: #ffffcc;
  }
  100% {
    background-color: transparent;
  }
}
@keyframes highlight {
  0% {
    background-color: transparent;
  }
  5% {
    background-color: #ffffcc;
  }
  65% {
    background-color: #ffffcc;
  }
  100% {
    background-color: transparent;
  }
}
.navbar {
  margin-bottom: 0;
}
.sendback-action {
  position: relative;
}
.sendback-action .custom-tooltip {
  display: none;
  position: absolute;
  color: #ffffff;
  box-sizing: border-box;
  z-index: 1000;
  float: left;
  background: black;
  padding: 3px 7px;
  font-size: 12px;
  top: 36px;
  font-family: Helvetica, Arial, sans-serif;
  border-radius: 3px;
  left: 45%;
  transform: translate(-50%, 0);
  width: fit-content;
  cursor: initial;
}
.sendback-action .custom-tooltip:before {
  width: 0;
  height: 0;
  position: absolute;
  margin: 0 auto;
  text-align: center;
  left: 10px;
  top: -6px;
  right: 10px;
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 7px solid black;
}
.sendback-action:hover {
  cursor: pointer;
}
.sendback-action:hover .custom-tooltip {
  display: block;
}
.navbar-button-round {
  border: 1px solid #007CBE;
  border-radius: 30px;
  padding: 2px 20px !important;
  margin: 5px 20px 5px 0;
  min-width: 100px;
  text-align: center;
  box-sizing: border-box;
}
.navbar-button-round.disabled {
  border: 1px solid #cecece;
}
.mainhead-wrapper {
  margin-left: -10000px;
  margin-right: -200px;
  margin-top: -20px;
  border-bottom: 1px solid #f8f8f8;
  /* inner-shadow: 0px 3px 5px 0px rgba(0,0,0,0.17); */
}
.mainhead-wrapper .mainhead-reset {
  padding-top: 0px;
  padding-bottom: 20px;
  margin-left: 10000px;
  margin-right: 200px;
}
.editable-content {
  margin-top: 15px;
}
.maintitle .icon-legacy {
  font-size: 18px;
  color: #e2e2e2;
}
.composer-access-control-bar {
  width: 100%;
  min-height: 50px;
  float: left;
  position: fixed;
  left: 0;
  background: #007CBE;
  z-index: 1000;
}
.composer-access-control-bar .view-only-hamburger {
  display: inline-block;
}
.composer-access-control-bar .view-only-hamburger .icon-nwt-hamburger {
  color: #ffffff;
}
.has-control-request {
  margin-top: 50px;
}
.no-pointer-events {
  pointer-events: none;
}
.no-pointer-events .button-add,
.no-pointer-events .button-open,
.no-pointer-events .button-archived {
  background-color: #999999;
}
.view-only-overlay {
  position: fixed;
  pointer-events: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 10;
  cursor: not-allowed;
}
.view-only-hamburger {
  display: inline-block;
}
.view-only-mode-bar {
  display: inline-block;
  color: #ffffff;
  font-size: 12px;
  position: absolute;
  top: 12px;
  left: 60px;
}
.view-only-mode-bar .mode-type {
  font-weight: 600;
}
.view-only-mode-bar .view-only-message {
  margin: 0 3px 0 10px;
}
.view-only-mode-bar .request-control-action {
  display: inline-block;
}
.view-only-mode-bar .request-control-action .navbar-button-round {
  color: #007CBE;
  font-size: 12px;
  margin-top: 0;
  background-color: #ffffff;
}
.view-only-mode-bar .access-control-timer {
  font-weight: 600;
}
.takeover-control-bar {
  display: inline-block;
  font-size: 12px;
  float: right;
  margin-right: 10px;
  padding: 15px 0 0px;
}
.takeover-control-bar .takeover-time-lapsed {
  font-weight: 500;
  margin-right: 15px;
}
.takeover-control-bar .composer-action-buttons {
  margin: -5px 10px 10px 10px;
}
.takeover-control-bar .time-left-before-takeover {
  color: #d00243;
  font-weight: 500;
}
.takeover-modal,
.restore-version-modal {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 100000;
}
.takeover-modal .commerce-products-popup-container,
.restore-version-modal .commerce-products-popup-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1120px;
  margin: 100px auto;
  box-sizing: border-box;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 35px;
  padding-top: 0;
  text-align: center;
  position: relative;
}
.takeover-modal .commerce-products-popup-container .icon-nwt-times,
.restore-version-modal .commerce-products-popup-container .icon-nwt-times {
  border-radius: 10px;
  background-color: #ffffff;
  position: absolute;
  padding: 35px 35px 35px 0;
  right: 0;
  top: 0;
  cursor: pointer;
}
.takeover-modal .commerce-products-iframe,
.restore-version-modal .commerce-products-iframe {
  width: 100%;
  height: 100%;
  display: block;
  min-height: 500px;
}
.takeover-modal .takeover-popup-container,
.restore-version-modal .takeover-popup-container,
.takeover-modal .restore-version-popup-container,
.restore-version-modal .restore-version-popup-container {
  width: 550px;
  height: auto;
  margin: 100px auto;
  box-sizing: border-box;
  background-color: #ffffff;
  border-radius: 2px;
  padding: 30px;
  text-align: center;
}
.takeover-modal .disable-modals,
.restore-version-modal .disable-modals {
  display: flex;
  vertical-align: text-bottom;
  align-items: center;
  justify-content: center;
}
.takeover-modal .disable-modals input,
.restore-version-modal .disable-modals input {
  margin: 0 0 0 10px;
}
.takeover-modal .disable-modals-disclaimer,
.restore-version-modal .disable-modals-disclaimer {
  font-size: 9px;
}
.takeover-modal .composer-action-buttons,
.restore-version-modal .composer-action-buttons {
  float: none;
}
.takeover-modal .button-link,
.restore-version-modal .button-link {
  color: #007CBE;
  background-color: #ffffff;
}
.takeover-modal .view-only-switch-countdown,
.restore-version-modal .view-only-switch-countdown {
  font-weight: 500;
}
@media (max-width: 1250px) {
  .takeover-modal .commerce-products-popup-container,
  .restore-version-modal .commerce-products-popup-container {
    padding: 15px;
  }
  .takeover-modal .commerce-products-popup-container .icon-nwt-times,
  .restore-version-modal .commerce-products-popup-container .icon-nwt-times {
    right: 0;
    top: 0;
  }
}
.no-search-dropdown-selector {
  display: inline-block;
  border: 1px solid #CCCCCC;
  height: 30px;
  position: relative;
  color: #707070;
  font-size: 12px;
  padding-right: 10px;
  box-sizing: border-box;
}
.no-search-dropdown-selector .selected-option-read-only {
  display: inline-block;
  padding: 4px 10px;
  color: #333;
}
.no-search-dropdown-selector .no-search-dropdown-options li:hover {
  background-color: rgba(0, 124, 190, 0.1);
}
.no-search-dropdown-selector .icon-nwt-chevron-down,
.no-search-dropdown-selector .icon-nwt-chevron-up {
  float: right;
  padding: 9px 0 5px;
  cursor: pointer;
}
.no-search-dropdown-selector .icon-nwt-chevron-down:hover {
  color: #007CBE;
}
.center-text {
  text-align: center;
}
.full-preview-mode {
  height: 100%;
  background: #ededed;
}
.full-preview-mode .original-topnav {
  display: none;
}
.full-preview-mode #content {
  margin-top: 0px;
}
.full-preview-mode .preview-nav {
  z-index: 999;
  font-family: "Public Sans", "arial rounded mt", Helvetica, Arial, sans-serif;
  padding: 20px 0px;
  height: 20px;
  border-bottom: 1px solid #ccc;
  background-color: #333333;
  color: #999;
}
.full-preview-mode .preview-nav .navgroup {
  text-align: center;
  width: 100%;
}
.full-preview-mode .preview-nav .navgroup ul {
  margin-bottom: 0;
}
.full-preview-mode .preview-nav .navbar-button-round {
  color: #007CBE;
  line-height: 20px;
  padding: 6px 20px !important;
  font-size: 12px;
  background-color: #fff;
  border: none;
}
.full-preview-mode .preview-nav .navbar-button-round:hover {
  color: #fff;
  background-color: rgba(0, 124, 190, 0.5);
  text-decoration: none;
}
.full-preview-mode .preview-nav .navbar-brand {
  font-size: 18px;
  line-height: 20px;
  margin-left: 30px;
  margin-top: 20px;
  padding: 20px 0;
}
.full-preview-mode .preview-nav .navbar-brand:hover {
  color: #fff;
}
.full-preview-mode .preview-nav .screenshot-dropdown {
  display: inline-block;
  margin-right: 20px;
}
.full-preview-mode .preview-nav .screenshot-dropdown .btn-preview-download {
  background-color: #007CBE;
  color: #fff;
  position: relative;
  text-decoration: none !important;
  margin-right: 0;
}
.full-preview-mode .preview-nav .screenshot-dropdown .btn-preview-download:hover {
  background-color: rgba(0, 124, 190, 0.5);
  text-decoration: none;
}
.full-preview-mode .preview-nav .screenshot-dropdown .icon-chevron-down {
  margin-left: 10px;
  font-size: 9px;
}
.full-preview-mode .preview-nav .screenshot-dropdown .dropdown-menu {
  background-color: #1F1F1F;
  color: #fff;
  font-size: 12px;
  min-width: auto;
  padding: 10px 0;
  top: 27px;
  left: 0;
  border-radius: 3px;
  box-shadow: 0px 1px 1px 1px rgba(255, 255, 255, 0.4);
}
.full-preview-mode .preview-nav .screenshot-dropdown .dropdown-menu li {
  position: relative;
}
.full-preview-mode .preview-nav .screenshot-dropdown .dropdown-menu li .icon-nwt-check {
  position: absolute;
  font-size: 8px;
  left: 7px;
  top: 9px;
  display: none;
}
.full-preview-mode .preview-nav .screenshot-dropdown .dropdown-menu li .icon-nwt-check:before {
  font-weight: 600 !important;
}
.full-preview-mode .preview-nav .screenshot-dropdown .dropdown-menu li > a {
  color: #fff;
  cursor: pointer;
}
.full-preview-mode .preview-nav .screenshot-dropdown .dropdown-menu li > a:hover,
.full-preview-mode .preview-nav .screenshot-dropdown .dropdown-menu li > a:focus {
  background-color: #007CBE;
  background-image: none;
}
.full-preview-mode .preview-nav .screenshot-dropdown.open .btn-preview-download {
  background-color: #007CBE;
  outline: 0;
}
.full-preview-mode .preview-nav .screenshot-dropdown.open .btn-preview-download:hover {
  background-color: rgba(0, 124, 190, 0.5);
  color: #fff;
}
.full-preview-mode .preview-nav .screenshot-dropdown .preview-dimension {
  margin-right: 5px;
  font-weight: 300;
}
.full-preview-mode .preview-nav .btn-download-screenshoot {
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  float: right;
  display: inline-block;
  margin-right: 30px;
  cursor: pointer;
}
.full-preview-mode .preview-nav .btn-download-screenshoot:hover {
  color: #aaa;
}
.full-preview-mode .preview-nav .btn-download-screenshoot.disabled {
  color: #aaa;
  pointer-events: none;
}
.full-preview-mode iframe {
  width: 100%;
  position: absolute;
  top: 61px;
  border: none;
}
.rendered-article .preview-sections h2 {
  font-size: 24px;
}
.rendered-article .preview-sections .preview-sections h2 {
  font-size: 20px;
}
.preview-container {
  background-color: #fff;
  margin: 0 auto;
}
.preview-container.mobile-preview-container {
  width: 375px;
  height: 667px;
}
.preview-wrapper {
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
}
.preview-wrapper .preview-article {
  padding-bottom: 40px;
}
.preview-wrapper .hide-ins ins {
  display: none;
}
.preview-wrapper .hide-del del {
  display: none;
}
.preview-wrapper .navbar-inner {
  background: none #fff;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #e2e2e2;
  border-right: 1px solid #e2e2e2;
  box-shadow: none;
  padding: 0;
}
.preview-wrapper .control-nav .active span {
  background-color: #fff;
  border: 0;
  color: #007CBE;
  display: block;
  height: 47px;
  line-height: 54px;
  font-size: 22px;
}
.preview-wrapper .sidebar-heading {
  color: #111;
  clear: both;
  display: block;
  font-family: "Public Sans", "arial rounded mt", Helvetica, Arial, sans-serif;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 20px 10px;
  opacity: 0.75;
  padding: 20px 0 0;
}
.preview-wrapper .preview-wrap {
  width: 100%;
  height: 100%;
}
.preview-wrapper .preview + hr {
  margin-bottom: 300px;
}
.preview-wrapper .preview .maintitle {
  padding: 0 10px;
}
.preview-wrapper .preview .export-callout p {
  margin: 0;
}
.preview-wrapper .preview .stephead {
  color: #ccc;
}
.preview-wrapper .preview .stephead span {
  color: #555;
}
.preview-wrapper .preview .preview-content-part > blockquote {
  background: url("../../core/images/pseudo-blockquote.png") 20px 35px no-repeat transparent;
  background-size: 20px 20px;
  border: 1px solid #eee;
  border-left: 5px solid #666e75;
  margin-left: -20px;
  padding: 38px 20px 20px;
}
.preview-wrapper .preview .preview-content-part > blockquote:before {
  color: #666e75;
  content: "Blockquote";
  font-family: "Public Sans", "arial rounded mt", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: normal;
  margin-left: 25px;
}
.preview-wrapper .preview .preview-content-part > blockquote p {
  margin: 10px 0 0 0;
}
.preview-wrapper .preview .preview-image-part label {
  color: #ccc;
  text-transform: uppercase;
  font-size: 12px;
}
.preview-wrapper .preview .preview-image-part p {
  min-height: 1.75em;
}
.preview-wrapper .preview .preview-image-part .image-meta-dimensions {
  color: #ccc;
  font-family: Consolas, "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", Courier, monospace;
}
.preview-wrapper .preview .things {
  margin-bottom: 0;
}
.preview-wrapper .preview .things li p {
  line-height: 20px;
  margin: 0;
}
.false-page-break {
  background-color: #f2f2f2;
  height: 20px;
  margin-left: -120px;
  width: 200%;
}
.preview-meta {
  padding-top: 60px;
}
.preview-meta h4 {
  color: #666e75;
  font-family: "Public Sans", "arial rounded mt", Helvetica, Arial, sans-serif;
}
@media (max-width: 767px) {
  .maintitle {
    padding: 0 10px;
  }
  .preview {
    padding: 0 10px;
  }
}
.framewrapper {
  position: relative;
}
.framewrapper iframe {
  display: block;
  position: relative;
  z-index: 1;
  top: 0;
}
.framewrapper::before {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
