@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700);
.hidden {
  display: none !important;
  /*The .hidden selector has a very weak cascade strength, but its purpose is semantically strong.
  In the case of conflict with rules that specify table layouts, or default-inline elements as display: block,
  allow the hiding effect to dominate.*/
}

.off-screen {
  position: absolute;
  left: -9999px;
}

.nowrap {
  white-space: nowrap;
}

h1 > .off-screen,
h2 > .off-screen,
h3 > .off-screen,
h4 > .off-screen,
h5 > .off-screen,
h6 > .off-screen {
  /*In this scenario, we still want line height for the heading. If an off-screen heading turns up with multiple lines, we may have to add some tricks.*/
  position: relative;
}

p {
  margin-top: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: #fcfcfc;
  color: #333333;
}
body:after {
  content: "";
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/admin-background.jpg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  z-index: -1;
}

.expandable-menu .opener {
  cursor: pointer;
}

.header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  background-color: #333333;
  color: #CBCBCB;
  padding: 0 1.25em;
}
.header .header-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.header .responsive-menu-button, .header .hide-above-tablet {
  display: none;
}
.header .logo {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}
.header .logo img {
  display: block;
  padding-right: 1em;
  border-right: 1px solid #656565;
  margin: 0.8125em 0;
}
.header .nav-user-info {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.header .mobile-menu-container {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.header .mobile-menu-container .dynamic-menu-container {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.header .nav {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 1em;
}
.header .nav .menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.header .nav .menu li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  position: relative;
}
.header .nav .menu li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #CBCBCB;
  text-decoration: none;
  font-weight: bold;
  padding: 0.8em 1.5em;
}
.header .nav .menu li a:hover, .header .nav .menu li a:focus {
  background-color: #000;
}
.header .nav .menu li.active a {
  color: #fff;
}
.header .nav .menu li.active a:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  border-bottom: 6px solid #FAA61A;
}
.header .user-info {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: right;
}
.header .user-info > .wrapper {
  margin: 0.875em 0;
}
.header .user-info .welcome {
  font-weight: bold;
  font-size: 0.8125em;
  color: #FFFFFF;
}
.header .user-info .expandable-menu {
  font-size: 0.8125em;
}
.header .user-info .expandable-menu label.button {
  color: #CBCBCB;
  background-color: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
}
.header .user-info .expandable-menu label.button .icon {
  width: 0.625em;
  height: 1em;
}
.header .user-info .expandable-menu label.button:hover, .header .user-info .expandable-menu label.button:focus, .header .user-info .expandable-menu label.button:focus-within {
  color: #fff;
}
.header .user-info .user-name .fa {
  font-size: 1.1em;
  margin-left: 0.6em;
}
.header .user-info .institution {
  color: #F9A61A;
}

.contact-box {
  margin-top: 2.125em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1.15;
  letter-spacing: -0.4px;
  text-align: center;
  color: #fff;
  padding: 1.125em;
  width: 12.4375em;
  border-radius: 0.5em;
  background-image: url("../img/contact-prompt-img.png");
  background-size: cover;
  background-position: center bottom;
}
.contact-box:only-child {
  margin-top: 22vh;
}
.contact-box p {
  margin: 0;
}
.contact-box a {
  display: inline-block;
  margin-top: 1.5em;
  font-size: 0.625em;
  line-height: 1;
  color: #333333;
  background-color: #fff;
  padding: 0.6em 0.8em;
  border-radius: 6em;
  text-decoration: none;
  border: solid 1px #fff;
}
.contact-box a:hover, .contact-box a:focus {
  color: #0A5FA9;
}
.contact-box span {
  display: block;
}
.contact-box .height-control {
  height: 7.8125em;
  width: 0;
}

.filters + .contact-box, .filters + .dashboard-contact-box {
  margin-top: 0;
}

.quick-links.bottom {
  margin-top: auto;
  padding: 0.5em 1.25em;
  border: 1px solid #D7D7D7;
  border-radius: 4px;
  color: #0A5FA9;
  background-color: #fff;
}
.quick-links.bottom a {
  text-decoration: none;
}

.expandable-menu {
  position: relative;
}
.expandable-menu .menu {
  position: absolute;
  right: 0;
  top: 100%;
  opacity: 0;
  background-color: #FFFFFF;
  border: 1px solid #D7D7D7;
  border-radius: 4px;
  color: #000;
  padding: 0.4em 1.2em 1em;
  min-width: 9.5em;
  z-index: 5;
}
.expandable-menu .menu li {
  display: block;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.expandable-menu .menu a, .expandable-menu .menu .link, .expandable-menu .menu .label {
  color: inherit;
  text-decoration: none;
  display: block;
  white-space: nowrap;
}
.expandable-menu .menu a:hover, .expandable-menu .menu a:focus, .expandable-menu .menu a:focus-within, .expandable-menu .menu .link:hover, .expandable-menu .menu .link:focus, .expandable-menu .menu .link:focus-within, .expandable-menu .menu .label:hover, .expandable-menu .menu .label:focus, .expandable-menu .menu .label:focus-within {
  color: #0A5FA9;
}

.section-title {
  font-size: 2em;
  margin: 0;
  display: inline;
}

.section-subtitle {
  margin-top: 0;
  line-height: 1.3125;
}

.section-title.has-page-title:after {
  content: ":";
}

.page-title {
  font-size: 2em;
  font-weight: 300;
  display: inline;
}

.title-area .instructions {
  display: inline;
  margin-left: 1em;
}

.page > .title-area {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.page > .title-area:before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: -1rem;
  background-color: rgba(252, 252, 252, 0.85);
  width: calc(100% + 2rem);
  height: calc(100% + 1rem);
  border-radius: 0.5rem;
  z-index: -1;
}

.flexbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flexbox > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.flexbox > *.sidebar {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.flexbox > *.sidebar .sidebar-content-wrapper {
  padding-left: 1.25em;
}

.page-body > .flexbox {
  margin-left: -1.25em;
  margin-right: -1.25em;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.page-body > .flexbox .sidebar {
  position: relative;
  z-index: 1;
}
.page-body > .flexbox .sidebar:before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  background-color: rgba(252, 252, 252, 0.85);
  width: calc(100% + 2rem);
  height: calc(100% + 2rem);
  border-radius: 0.5rem;
  z-index: -1;
}
.page-body > .flexbox > * {
  margin-left: 1.25em;
  margin-right: 1.25em;
}
.page-body.flexbox {
  padding-left: 0;
  padding-right: 0;
  margin-left: -1.5em;
  margin-right: -1.5em;
}
.page-body.flexbox > * {
  margin-left: 1.5em;
  margin-right: 1.5em;
}

.page-body-wrapper.flexbox {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 1.5rem;
  margin-left: -1.5em;
  margin-right: -1.5em;
  margin-bottom: 1.5rem;
}
.page-body-wrapper.flexbox > * {
  margin-left: 1.5em;
  margin-right: 1.5em;
}

.stats-box {
  color: #333333;
}
.stats-box.has-widget {
  background-color: rgba(10, 95, 169, 0.1);
  padding: 1em 0.625em;
  margin: 0 0.25rem 0.5rem;
  width: 10.4375em;
  min-height: 11.0625em;
  display: block;
  border-radius: 2px;
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.stats-box.has-widget figcaption .label {
  display: block;
  font-size: 1.125em;
  line-height: 1.1666666667;
  color: #0A5FA9;
  text-align: center;
}
.stats-box.has-widget figcaption .label strong {
  font-weight: 400;
  display: block;
}
.stats-box.has-widget .chart {
  font-size: 0.625em;
  line-height: 1.8;
  letter-spacing: -0.01px;
}
.stats-box.has-widget .chart .value {
  width: 2.5em;
}
.stats-box.has-widget .average-selections {
  font-size: 0.6875em;
  line-height: 1.3636363636;
  text-align: center;
  margin-top: 1em;
}
.stats-box.has-widget .average-selections strong {
  font-weight: 400;
}
.stats-box.simple-stat .label {
  display: block;
  font-size: 0.75em;
  line-height: 1.4166666667;
}
.stats-box.simple-stat .value {
  font-size: 1.375em;
  line-height: 1;
  font-weight: 600;
  display: block;
}

.stats-box .range {
  color: #333;
  font-size: 0.6em;
  display: block;
}

.stats-box .icon {
  display: inline;
  font-size: 0.5em;
  vertical-align: middle;
}

.stats-box .see-all {
  font-size: 0.6em;
  position: absolute;
  bottom: 0.5em;
  right: 1em;
}

/*Bar graph widget*/
.bar-graph th {
  font-weight: inherit;
}

.bar-graph.compact th,
.bar-graph.compact td {
  height: 1.8em;
}

.bar-graph th,
.bar-graph td {
  vertical-align: middle;
}

.bar-graph .label {
  text-align: left;
}

.bar-graph .bar {
  fill: #FAA61A;
  display: block;
}

.bar-graph .value {
  display: block;
  text-align: right;
  font-weight: bold;
}

.bar-graph.compact .label {
  width: 7.2em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bar-graph.compact .bar {
  width: 5em;
  height: 0.8em;
}

.bar-graph.full {
  width: 44em;
  margin-left: auto;
  margin-right: auto;
  background-color: #F9F9F9;
  padding: 2em;
}

.bar-graph.full .label {
  position: absolute;
}

.bar-graph.full th,
.bar-graph.full td {
  padding-bottom: 2em;
  vertical-align: top;
}

.bar-graph.full .bar {
  width: 21em;
  height: 1.5em;
  float: right;
}

/*Page alerts*/
.notice-wrapper {
  display: block;
}

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

.notice {
  background-color: #d2eceb;
  padding: 0.5em 2em;
  border-radius: 0.3em;
  display: inline-block;
}

p.notice {
  margin: 0;
}

.notice .help-link {
  display: block;
  text-align: right;
  font-size: 0.9em;
}

.alert.notice {
  /*Nothing to do here yet*/
}

.alert.error {
  color: red;
}

.info.ui-row .alert.error {
  font-size: 1rem;
  display: inline-block;
  font-weight: 700;
  line-height: 1.375;
  padding: 0.5625em 1.375em;
  color: #333333;
  background-color: rgba(250, 166, 25, 0.68);
  border-radius: 4px;
}

ul.error, li.error {
  list-style-type: circle;
  color: red;
  padding-left: 20px;
}

ul.password-requirements {
  list-style-type: circle;
  text-align: left;
}

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

/*Links and buttons*/
a {
  color: inherit;
}

.link {
  text-decoration: underline;
  cursor: pointer;
  display: inline;
}

.text-link {
  color: #0A5FA9;
}
.text-link:hover, .text-link:focus {
  color: rgb(7.1508379888, 67.9329608939, 120.8491620112);
}

label.link {
  position: relative;
}

label.link input {
  position: absolute;
  left: -9999px;
}

a.disabled, .link.disabled {
  opacity: 0.6;
  cursor: text;
}

button, input[type=submit], input[type=button] {
  /*Get rid of most browser-provided styling.*/
  background-color: transparent;
  border: 0 none currentColor;
  padding: 0;
  /*Probably what browsers do anyway:*/
  display: inline-block;
  /*iOS:*/
  -webkit-appearance: none;
  /*Applies to Firefox. No known affect, just for good measure:*/
  -moz-appearance: none;
  /*Other just for good measure:*/
  width: auto;
  font-size: inherit;
}

label.button {
  position: relative;
}

.button.disabled,
button[disabled], button.disabled,
input[type=submit][disabled], input[type=submit].disabled,
input[type=button][disabled], input[type=button].disabled {
  opacity: 0.3;
  cursor: default;
}

.button.disabled .text,
button[disabled], button.disabled .text,
input[type=submit][disabled], input[type=submit].disabled .text,
input[type=button][disabled], input[type=button].disabled .text {
  opacity: 0.6;
}

label.button input {
  /*Deprecated. Button elements do not require this wrapper to be styled.*/
  position: absolute;
  left: -9999px;
}

.button,
button,
input[type=submit],
input[type=button] {
  display: inline-block;
  color: #FFF;
  background-color: #0A5FA9;
  border-radius: 4px;
  padding: 0.5em 0.75em;
  text-align: center;
  cursor: pointer;
  line-height: 1.3;
}
.button:hover, .button:focus,
button:hover,
button:focus,
input[type=submit]:hover,
input[type=submit]:focus,
input[type=button]:hover,
input[type=button]:focus {
  background-color: rgb(7.1508379888, 67.9329608939, 120.8491620112);
}

.button .icon,
button .icon,
input[type=submit] .icon,
input[type=button] .icon {
  display: inline-block;
}

.button .icon:first-child,
button .icon:first-child,
input[type=submit] .icon:first-child,
input[type=button] .icon:first-child {
  margin-right: 0.5em;
}

.button .icon:last-child,
button .icon:last-child,
input[type=submit] .icon:last-child,
input[type=button] .icon:last-child {
  margin-left: 0.5em;
}

.button.left,
button.left,
input[type=submit].left,
input[type=button].left {
  float: left;
}

.button.right,
button.right,
input[type=submit].right,
input[type=button].right {
  float: right;
}

a.button {
  text-decoration: none;
}

.button.view-pdf, .button.pdf-external {
  color: #0A5FA9;
  background-color: #fff;
  border-color: currentcolor;
  border-style: solid;
  border-width: 2px;
}
.button.view-pdf:hover, .button.view-pdf:focus, .button.pdf-external:hover, .button.pdf-external:focus {
  color: #fff;
  background-color: #0A5FA9;
  border-color: #0A5FA9;
}

button.link,
input[type=submit],
input[type=button] {
  color: inherit;
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  text-align: inherit;
  line-height: inherit;
}

ul.actions > li {
  display: inline;
}

ul.actions > li:before {
  content: "| ";
}

ul.actions > li:first-child:before {
  content: none;
}

input[type=text][disabled] {
  background-color: transparent;
  border-color: #DDD;
}

.file-browser input[type=text][disabled] {
  border-color: #707070;
}

/*Potentially resuable UI element: a file selection widget that has been hidden but may be triggered by javascript*/
input.hidden-upload {
  visibility: hidden;
  position: absolute;
}

.page {
  padding: 1.8125em 1.875em;
  position: relative;
  font-size: 16px;
}

.page-header {
  font-size: 19px;
  margin: 0.9em 0;
}

.page-header.empty-header {
  padding-bottom: 1.3em;
}

.range-links {
  display: block;
  text-align: center;
  font-size: 15px;
}

.range-links li {
  display: inline-block;
  border-left: 1px solid #000;
  padding: 0 1em;
  color: #000;
  line-height: 1;
  vertical-align: middle;
}

.range-links li.active {
  color: #0A5FA9;
  font-weight: bold;
}

.range-links li:first-child {
  border-left: 0px none transparent;
}

.range-links li.custom-range {
  border-left: 0px none transparent;
}

.range-links a, .range-links .link {
  text-decoration: none;
  color: inherit;
}

.date-range-settings .custom-range-text {
  position: absolute;
  left: -9999px;
}

.date-range-settings .custom-range-form {
  white-space: nowrap;
}

.range-links .custom-range .date-field {
  color: #C2C2C2;
  display: inline-block;
  width: 120px;
}

.range-links .custom-range .date-field input {
  border: 1px solid #C2C2C2;
  border-radius: 4px;
  padding-left: 1.6em;
}

.range-links .custom-range .date-field .icon {
  left: 1px;
  right: auto;
  top: 2px;
}

.range-links .custom-range .date-field > * {
  padding: 0.3em;
  line-height: 1.3em;
  color: #333;
}

.ui-row {
  margin: 0 0 1em 0;
}

.ui-row.partial.left {
  float: left;
}

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

.ui-row.partial.right {
  float: right;
}

.ui-row.center {
  text-align: center;
  margin-left: 17em;
}

.button.major {
  font-size: 1.06em;
}

.ui-row .button + .button {
  margin-left: 3em;
}

/*Standard dialog "window"*/
.modal {
  background-color: rgba(51, 51, 51, 0.85);
  z-index: 2;
}

.dialog {
  max-width: 26.0625em;
  min-width: 18.75em;
  border-radius: 4px;
  background-color: #fff;
  color: #333333;
  padding: 1.875em;
}

.dashboardblast ~ .modal .dialog, .viewbookblasts ~ .modal .dialog {
  max-width: 37.5em;
}
.dashboardblast ~ .modal .dialog .file-browser, .viewbookblasts ~ .modal .dialog .file-browser {
  margin-top: 1em;
}

.dialog.alert {
  min-width: 32em;
}

.dialog .title {
  margin: 0 0 0.375rem 0;
  font-size: 1.0625em;
  line-height: 1.3529411765;
  font-weight: 700;
}

.dialog .title-bar .icon {
  display: none;
}

.dialog .close-region {
  display: none;
}

.dialog .close-icon {
  display: none;
}

.dialog .content-area {
  padding: 0;
}
.dialog .content-area .fields {
  padding: 0;
  font-size: 0.8125em;
  line-height: 1.3846153846;
}

.dialog .fields .container {
  /*Really this should scale up IF something else forced the dialog's width to increase. Oh well, so far it does not.*/
  max-width: 35em;
}

.dialog .fields .container:empty {
  display: none;
}

.dialog .button-area {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 1.875em;
}
.dialog .button-area .button {
  margin: 0 0.9375em;
  line-height: 1.375;
  padding: 0.5625em 1.375em;
  min-width: 7.6875em;
}

.dialog.alert .button-area {
  text-align: center;
  display: block;
}

.dialog .button.cancel-button {
  color: #333;
  border: 1px solid currentColor;
  background-color: transparent;
}

.dialog.alert .button {
  min-width: 5em;
}

.dashboardblast-body .dialog .ok-button, .viewbookblasts-body .dialog .ok-button {
  border: solid 1px transparent;
}
.dashboardblast-body .dialog .ok-button.disabled, .viewbookblasts-body .dialog .ok-button.disabled {
  pointer-events: none;
}
.dashboardblast-body .dialog .ok-button.disabled.processing, .dashboardblast-body .dialog .ok-button.disabled.complete, .viewbookblasts-body .dialog .ok-button.disabled.processing, .viewbookblasts-body .dialog .ok-button.disabled.complete {
  opacity: 0.6;
}
.dashboardblast-body .dialog .ok-button .icon-slot.fa-spinner-scale, .viewbookblasts-body .dialog .ok-button .icon-slot.fa-spinner-scale {
  animation: processing 1.5s linear infinite;
}
@keyframes processing {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}

/*Form fields*/
label {
  display: block;
}

.field {
  width: 100%;
  max-width: 31.3em;
  display: inline-block;
  margin-bottom: 1em;
}

.half-field {
  width: 50%;
  padding-right: 0.5em;
  max-width: 15.65em;
}

.half-field + .half-field {
  /*If consecutive rows of these pairs occur, they must be grouped in container elements.*/
  padding-right: 0;
  padding-left: 0.5em;
}

.textfield-wrapper {
  position: relative;
  line-height: 1.5;
  display: inline-block;
  width: 100%;
  max-width: 31.3em;
}

.textfield-wrapper .icon {
  font-size: 1em;
  color: #C2C2C2;
  line-height: inherit;
  padding: 4.8px 0.5em;
  position: absolute;
  right: 1px;
  top: 0;
}

/*This style might be used in the future, but the target needs to be updated to be a little more specific
label .text{
	display: block;
	text-transform: uppercase;
	font-size: 0.8em;
	color: #C2C2C2;
}*/
input[type=text], input[type=password] {
  width: 100%;
  max-width: 31.3em;
  border-radius: 0.3em;
  border: 1px solid #707070;
  padding: 4.8px 1.2em;
}

input::placeholder {
  font-style: italic;
}

input::-webkit-input-placeholder {
  font-style: italic;
}

input::-moz-placeholder {
  font-style: italic;
}

input::-ms-input-placeholder {
  font-style: italic;
}

select {
  width: 100%;
  max-width: 31.3em;
  border-radius: 0.3em;
  border: 2px solid #C2C2C2;
  padding: 4.8px 1.2em;
}

.form-row {
  overflow: hidden;
}

fieldset {
  /*Reduce this visually to just a div. We're interested in its semantic function.*/
  border: none;
  margin: 0;
  padding: 0;
}

/*(File browser widget)*/
.file-browser .abstract-table {
  display: table;
  width: 100%;
}

.file-browser .abstract-table > * {
  display: table-cell;
  vertical-align: middle;
}

.file-browser .filename-box {
  background: initial;
  cursor: text;
  width: 100%;
  min-width: 25em;
}

.file-browser .browse-button {
  background-color: transparent;
  border: 1px solid #707070;
  color: #333;
  padding-top: 0.35em;
  padding-bottom: 0.35em;
  margin-left: 0.4em;
}

/*Progress bar*/
.progress-bar {
  width: 100%;
  height: 1.3em;
}

.progress-bar .foreground {
  fill: #FAA61A;
}

.progress-bar .background {
  fill: #d9b16f;
}

/*Standard table presentation*/
table {
  width: 100%;
  text-align: left;
}

table.table.head-row thead {
  border-top: 1px solid #DDD;
}

table.table thead th {
  font-weight: inherit;
}

table.table.head-row thead th {
  background-color: #ECECEC;
}

table.table thead th.column-data {
  border-right: 1px solid #F9F9F9;
  cursor: pointer;
  white-space: nowrap;
  padding-right: 1.8em;
}

table.table thead th.column-data .icon {
  float: right;
  margin-right: -1.2em;
  width: 0.625em;
  height: 1em;
}

table.table thead th.column-data .icon.arrow-down {
  vertical-align: middle;
}

table.table thead th.column-data .icon.arrow-up {
  display: none;
}

table.table thead th.column-data.sort {
  font-weight: bold;
}

table.table thead th.column-data.sort-descending .icon.arrow-down {
  display: none;
}

table.table thead th.column-data.sort-descending .icon.arrow-up {
  display: block;
}

table.table thead th.column-data:last-child {
  border-right: 0px none transparent;
}

table.table thead th {
  padding: 0.3em 0.4em;
}

table.table tbody {
  font-size: 0.875em;
}

table.table td,
table.table th {
  padding: 0.3em;
}

/*"Normally" the first and every other row of the table should have a darker background*/
table.table tr:nth-child(odd) {
  background-color: #F0F0F0;
}

/*If there is a table head, and the table is tagged as treating the thead as a row, that row has a darker background and
the first body row should have the light background color*/
table.table.head-row thead + tbody tr:nth-child(even) {
  background-color: #F0F0F0;
}

table.table.head-row thead + tbody tr:nth-child(odd) {
  background-color: transparent;
}

/*If the table is tagged as not treating the thead as a row, no background for the thead.*/
table.table.no-head-row thead tr {
  background-color: transparent;
}

table.table th:first-child, table.table td:first-child {
  padding-left: 1.625rem;
}

.column-checkbox {
  text-align: center;
  width: 3em;
}

.column-status-icon {
  color: #CFCFCF;
  text-align: center;
}

.flex-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flex-container > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

@media screen and (max-width: 87.5em) {
  .flexbox > *.sidebar .sidebar-content-wrapper {
    padding-left: 0;
  }
}
@media screen and (max-width: 71.875em) {
  .header {
    font-size: 0.875em;
  }
  .header .nav .menu li a {
    padding: 1.1em;
  }
}
@media screen and (min-width: 60.0625em) {
  .header .mobile-menu-container .dynamic-menu-container {
    display: flex !important;
    opacity: 1 !important;
  }
}
@media screen and (max-width: 60em) {
  .hide-tablet {
    display: none;
  }
  .header {
    padding-right: 0;
    position: relative;
  }
  .header .responsive-menu-button, .header .mobile-menu-container, .header .nav, .header .user-info, .header .hide-above-tablet {
    display: block;
  }
  .header .logo {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .header .nav-user-info {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: left;
    position: relative;
    z-index: 2;
  }
  .header .responsive-menu-button {
    color: inherit;
    background-color: transparent;
    border-radius: 0;
    font-size: 1.5em;
  }
  .header .responsive-menu-button:hover, .header .responsive-menu-button:focus {
    color: #fff;
    background-color: #000;
  }
  .header .responsive-menu-button .icon {
    margin-right: 0;
  }
  .header .responsive-menu-button .icon:before {
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
  }
  .header .responsive-menu-button.open-menu .icon:before {
    content: "\f0c9";
  }
  .header .responsive-menu-button.close-menu {
    position: absolute;
    top: 0.2em;
    right: 0.05em;
  }
  .header .responsive-menu-button.close-menu .icon:before {
    content: "\f00d";
  }
  .header .mobile-menu-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
  }
  .header .mobile-menu-container .dynamic-menu-container {
    opacity: 0;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #000;
    min-width: 12em;
    max-height: 100vh;
    overflow-y: auto;
    box-shadow: 0.4em 0.4em 2px rgba(0, 0, 0, 0.1);
    padding-top: 4.125em;
  }
  .header .mobile-menu-container .dynamic-menu-container ul {
    padding: 0;
  }
  .header .mobile-menu-container .dynamic-menu-container ul li {
    display: block;
    margin: 0;
  }
  .header .mobile-menu-container .dynamic-menu-container ul li a {
    display: block;
    padding: 0.5rem 1rem;
  }
  .header .mobile-menu-container .dynamic-menu-container ul li a:focus, .header .mobile-menu-container .dynamic-menu-container ul li a:hover {
    color: #fff;
  }
  .header .mobile-menu-container .dynamic-menu-container ul li.active a {
    color: #fff;
    background-color: #333333;
  }
  .header .mobile-menu-container .dynamic-menu-container ul li.active a:after {
    content: none;
    display: none;
  }
  .header .mobile-menu-container .dynamic-menu-container .contact-support {
    display: block;
    margin-top: 0.5rem;
    padding: 0.2rem 1rem;
    text-decoration: none;
  }
  .header .mobile-menu-container .dynamic-menu-container .contact-support:hover, .header .mobile-menu-container .dynamic-menu-container .contact-support:focus {
    color: #fff;
  }
  .header .nav {
    margin: 0;
  }
  .header .nav .menu {
    display: block;
  }
  .header .user-info {
    text-align: left;
  }
  .header .user-info > .wrapper {
    margin-top: 0;
  }
  .header .user-info .welcome, .header .user-info .institution {
    display: none;
  }
  .header .user-info .expandable-menu {
    font-size: 1em;
  }
  .header .user-info .expandable-menu label.button, .header .user-info .expandable-menu .user-name.opener {
    display: none;
  }
  .header .user-info .expandable-menu .menu {
    display: block !important;
    height: auto !important;
    opacity: 1 !important;
    position: relative;
    background-color: transparent;
    border: none;
    color: inherit;
  }
  .header .user-info .expandable-menu .menu li a {
    padding-top: 0;
    padding-bottom: 0;
  }
  .page-body > .flexbox {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
  }
  .page-body > .flexbox > * {
    min-width: 80%;
    margin-left: 0;
    margin-right: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .page-body > .flexbox > *.sidebar {
    margin-bottom: 1em;
  }
  .page-body > .flexbox > *.sidebar .sidebar-content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .section-title {
    font-size: 1.8em;
  }
  .page-body-wrapper.flexbox, .page-body.flexbox {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
  }
  .page-body-wrapper.flexbox > *, .page-body.flexbox > * {
    min-width: 80%;
    margin-top: 1.5rem;
    margin-left: 0;
    margin-right: 0;
  }
  .contact-box:only-child {
    margin-top: 0;
  }
  .filters + .contact-box {
    float: right;
    margin-top: 0;
  }
  .page.dashboard .filters, .page.leads .filters {
    float: left;
  }
}
@media screen and (max-width: 47.9375em) {
  .page {
    padding: 1em;
  }
  .page-body > .flexbox .sidebar:before {
    left: -0.75rem;
    width: calc(100% + 1.5rem);
  }
  .section-title {
    font-size: 1.6em;
  }
  .filters + .contact-box {
    display: none;
  }
  .ui-row {
    margin: 0 0 1em 0;
  }
  .page.dashboard .filters, .page.leads .filters {
    float: none;
  }
  .modal > .wrapper {
    position: relative;
    top: 2rem;
    width: 90%;
    margin: 0 auto;
  }
  .modal .dialog {
    max-width: none;
    min-width: 0;
    width: 100%;
    padding: 1rem;
  }
  .modal .dialog .button-area {
    padding-top: 0.5rem;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .modal .dialog .button-area .button {
    font-size: 0.9em;
    width: 100%;
    margin: 0;
  }
  .modal .dialog .button-area .button + .button {
    margin-top: 0.5rem;
  }
  .dashboardblast + .modal .dialog, .viewbookblasts + .modal .dialog {
    max-width: none;
  }
  .dashboardblast + .modal .dialog .file-browser, .viewbookblasts + .modal .dialog .file-browser {
    margin-top: 1em;
  }
  .dashboardblast + .modal .dialog .file-browser .abstract-table, .viewbookblasts + .modal .dialog .file-browser .abstract-table {
    display: block;
  }
  .dashboardblast + .modal .dialog .file-browser .abstract-table > *, .viewbookblasts + .modal .dialog .file-browser .abstract-table > * {
    display: block;
  }
  .dashboardblast + .modal .dialog .file-browser .filename-box, .viewbookblasts + .modal .dialog .file-browser .filename-box {
    min-width: 0;
  }
  .dashboardblast + .modal .dialog .file-browser .browse-button, .viewbookblasts + .modal .dialog .file-browser .browse-button {
    display: block;
    margin: 0.5rem 0;
  }
}

/*# sourceMappingURL=common.css.map */
