* {
  box-sizing: border-box; }

html {
  font-size: 10px; }

body {
  font-family: 'Open Sans', sans-serif;
  background: #ccc;
  color: #4E5E6A;
  line-height: 1.45;
  font-size: 14px; }

html, body {
  padding: 0;
  margin: 0; }

a {
  color: #0b3d4c; }

a:hover, a:focus, a:active {
  text-decoration: underline;
  color: #1983a4; }

abbr {
  text-decoration: none;
  border-bottom: none; }

abbr[title] {
  text-decoration: none;
  border-bottom: none; }

abbr::before {
  content: '\300c'; }

abbr::after {
  content: '\300d'; }

table {
  width: 100%; }

html, body, #app {
  width: 100vw;
  height: 100vh;
  max-height: 100vh;
  max-width: 100vw;
  overflow: hidden; }

#app {
  display: grid;
  grid-template-rows: 60px 1fr;
  grid-template-columns: 280px 1fr; }

#brand {
  grid-row: 1;
  grid-column: 1; }

#app > nav {
  grid-row: 2;
  grid-column: 1; }

#app > main {
  grid-row: 1 / all;
  grid-column: 2; }

#app > #notifications {
  grid-row: 1;
  grid-column: 2;
  z-index: 10; }
  #app > #notifications > * {
    padding: 0.5rem 1rem;
    margin: 0;
    margin-bottom: 1rem; }
    #app > #notifications > * .title {
      font-size: 1.5rem; }
    #app > #notifications > *.error {
      border: 1px solid #ff6666;
      background: #ffb3b3;
      color: #000; }
    #app > #notifications > *.notice {
      border: 1px solid #00ca00;
      background: #88e3a0;
      color: #000; }

#brand {
  display: block;
  font-size: 20px;
  background: #126078;
  text-align: center;
  height: 60px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  vertical-align: middle;
  border: none; }

#app.slim-app-nav #brand [class*="fa"] {
  margin-right: 0; }

#app > nav {
  background: #24738B;
  color: #e7e7e7; }
  #app > nav a {
    text-decoration: none; }

#app > nav a {
  display: block;
  color: inherit; }
#app > nav a, #app > nav a:hover, #app > nav a:visited, #app > nav a:focus, #app > nav a:active, #app > nav button {
  text-decoration: none; }
#app > nav a:hover, #app > nav a.open, #app > nav a:focus, #app > nav button:hover {
  background: #1D5769; }
#app > nav .profile {
  margin-bottom: 2rem; }
  #app > nav .profile a:hover, #app > nav .profile a:focus {
    background: #24738B; }
#app > nav > ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: block;
  justify-content: center;
  text-align: left;
  font-size: 14px; }
  #app > nav > ul > li {
    display: block; }
  #app > nav > ul > li > a {
    padding: 0.5rem 2rem; }
  #app > nav > ul *[class*='fa'] {
    font-size: 1em;
    margin-right: 1rem; }
#app > nav > h2 {
  background: #1D5769;
  color: #fff;
  font-size: 1.1em;
  font-weight: 500;
  padding: 0.7rem 2rem;
  margin-bottom: 0;
  margin-top: 0.5rem; }
  #app > nav > h2:first-child {
    margin-top: 0; }
#app > nav > #account-actions {
  margin-top: 2.5rem; }
#app > nav .profile .name {
  color: #fff; }

#app.slim-app-nav {
  grid-template-columns: 60px 1fr; }

#app.slim-app-nav > nav > ul {
  font-size: 0;
  text-align: center; }
  #app.slim-app-nav > nav > ul *[class*='fa'] {
    font-size: 16px;
    margin-bottom: 0;
    margin-right: 0; }

#app > header {
  display: flex;
  justify-content: space-between;
  background: #fff;
  font-size: 1.4rem; }
  #app > header a, #app > header a:hover, #app > header a:visited, #app > header a:focus, #app > header a:active {
    text-decoration: none; }

#app > header .toolbar .profile {
  padding-left: 2rem;
  padding-right: 2rem; }
#app > header .toolbar .sign-out *[class*='fa'] {
  margin-right: 1rem; }

#app > main {
  background: #f7f7f7;
  overflow-y: auto;
  overflow-x: hidden; }

#app > main > header {
  background: #E9EDF2;
  position: relative;
  padding: 0;
  padding-bottom: 2rem;
  color: #126078;
  border-bottom: 1px solid #dee2e8; }
  #app > main > header::before {
    background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0));
    width: 100%;
    position: absolute;
    content: '';
    height: 5px; }
  #app > main > header h1 {
    font-size: 24px;
    font-weight: 700;
    padding: 2rem;
    padding-bottom: 0;
    margin: 0;
    margin-bottom: 4px;
    color: #126078; }
  #app > main > header #breadcrumbs {
    margin: 0;
    padding: 2rem;
    padding-top: 0;
    display: block;
    list-style: none; }
    #app > main > header #breadcrumbs a {
      color: inherit;
      text-decoration: none; }
      #app > main > header #breadcrumbs a:hover, #app > main > header #breadcrumbs a:focus {
        text-decoration: underline; }
    #app > main > header #breadcrumbs > * {
      display: inline; }
      #app > main > header #breadcrumbs > *::after {
        content: '/';
        padding-left: 1rem;
        padding-right: 1rem;
        opacity: 0.3; }
      #app > main > header #breadcrumbs > *:last-child::after {
        content: ''; }

#app > main > * {
  padding: 2rem; }

dev-note {
  display: block;
  font-size: 0.8em;
  flex-basis: 100%;
  padding: 2rem;
  background: #ffffA5;
  border: 1px solid #ffff72;
  border-radius: 1rem; }

dev-note {
  display: none; }

.breadcrumbs {
  list-style: none;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  height: 36px;
  line-height: 1;
  padding-left: 2rem;
  margin-top: 4px;
  margin-bottom: 0; }
  .breadcrumbs > * {
    display: flex;
    flex-direction: row;
    margin: 0;
    height: 36px;
    align-items: center; }
    .breadcrumbs > *:not(:last-child)::after {
      content: '\f054';
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      font-size: 0.65em;
      margin-left: 1rem; }
  .breadcrumbs a, .breadcrumbs span {
    display: inline-block;
    padding-left: 1rem;
    padding-right: 1rem; }
  .breadcrumbs li:first-child > * {
    padding-left: 0; }

main > .wrap {
  padding: 0 !important;
  margin: 0 !important; }

.group-box .menu-bar {
  margin-left: -1rem;
  margin-top: -1rem;
  margin-bottom: 1rem; }

.split-pane {
  display: flex;
  flex-direction: row; }
  .split-pane > * {
    flex-basis: 50%; }

ol.item-list, ul.item-list {
  list-style-type: none;
  margin: 0;
  padding: 0; }
  ol.item-list > li, ul.item-list > li {
    padding: 0; }
  ol.item-list a, ul.item-list a {
    cursor: pointer;
    padding: 0.5rem 1rem;
    color: #4E5E6A;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 80px 3fr 2fr;
    text-decoration: none; }
    ol.item-list a:hover, ul.item-list a:hover {
      background: #f0f0f0;
      text-decoration: none; }
    ol.item-list a .id, ul.item-list a .id {
      text-align: left;
      grid-row: 1;
      grid-column: 1;
      opacity: 0.45; }
    ol.item-list a .name, ul.item-list a .name {
      grid-row: 1;
      grid-column: 2; }
    ol.item-list a .info, ul.item-list a .info {
      white-space: nowrap;
      text-overflow: ellipsis;
      text-align: right;
      grid-row: 1;
      grid-column: 3;
      opacity: 0.45; }

main > nav > a {
  padding: 2rem 4rem;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #24738B;
  transition: background 380ms;
  border-left: 1px solid #29849f;
  border-right: 1px solid #1f6277; }
  main > nav > a.current {
    background: #1D5769 !important; }
  main > nav > a:active, main > nav > a:hover, main > nav > a:focus {
    color: #fff;
    background: #29849f;
    text-decoration: none; }
  main > nav > a:first-child {
    border-left: none; }
  main > nav > a:last-child {
    border-right: none; }

main > section {
  background: #fff;
  padding-left: 0;
  padding-right: 0;
  margin-left: 2rem;
  margin-right: 2rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16); }

main > section > * {
  padding: 2rem; }

.group-box > header > *:first-child {
  margin-top: 0; }

#app > main > nav {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  flex-align: flex-start; }

p.desc {
  font-size: .8em;
  opacity: 0.8; }

label:empty::after {
  content: '' !important; }

input[type='text'] {
  min-width: 450px; }

select {
  width: 80%; }

.data-grid th[scope="row"] {
  text-align: left; }
.data-grid thead th:first-of-type {
  text-align: left; }

.controls {
  text-align: right; }
  .controls > * {
    text-align: center; }
  .controls span {
    display: inline-block;
    width: 45px; }
  .controls button {
    background: transparent;
    color: #126078;
    width: 45px; }

form.compact {
  max-width: 95ex; }

form.inline {
  display: inline-block; }

.data-grid td.controls {
  max-width: none; }

.add-aptitude button {
  margin-left: 2rem; }

.badge {
  border-radius: 6px;
  background: #126078;
  padding: 2px 6px;
  color: #fff; }

textarea {
  width: 550px;
  height: 150px; }

label.label-after {
  padding-left: 1ex; }

#edit-artist-video header {
  margin-bottom: 2rem; }

#artist-photos-list .data-grid th:first-child,
#artist-photos-list .data-grid td:first-child {
  width: 95px;
  padding-left: 0;
  padding-right: 0;
  text-align: center; }

.data-grid.resume th:first-child, .data-grid.resume td:first-child {
  width: 300px; }
.data-grid.resume th.badges, .data-grid.resume td.badges {
  width: 150px; }
  .data-grid.resume th.badges .badge, .data-grid.resume td.badges .badge {
    display: inline-block; }
.data-grid.resume th.controls, .data-grid.resume td.controls {
  width: 150px; }

#artist-resume-projects-list h3 {
  font-size: 16px;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem; }

.data-grid.translation th, .data-grid.translation td {
  text-align: left; }
  .data-grid.translation th:not(:last-child), .data-grid.translation td:not(:last-child) {
    width: 40%; }

#app > main {
  padding-bottom: 14rem; }

main > nav > a {
  padding: 1.5rem 2.5rem; }

#app > main > nav {
  flex-wrap: wrap; }

#artist-toggle {
  background: #126078;
  padding: 0;
  display: flex;
  justify-content: flex-end; }

#artist-toggle form {
  padding: 0; }

button.toggle {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 15px;
  padding: 0;
  height: auto;
  padding: 1px; }

button.toggle > span {
  padding: .25rem 1.5rem;
  border-radius: 15px;
  display: block; }

.disable button.toggle .active {
  background: #4d4; }

.enable button.toggle .inactive {
  background: #f00; }

#list-contacts .data-grid.recipients > tbody tr:not(.recipients) {
  display: none; }
#list-contacts .data-grid.senders > tbody tr:not(.senders) {
  display: none; }

.edit-inline, .delete-inline {
  display: inline;
  margin-left: 3rem; }
  .edit-inline button, .delete-inline button {
    margin: 0;
    background: transparent;
    padding: 0;
    color: #202020; }

.role-artists .photos {
  padding-left: 0;
  margin-left: -1rem;
  list-style-type: none;
  display: flex;
  justify-content: flex-start; }
  .role-artists .photos > * {
    margin: 1rem; }

main > section > hr {
  padding: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
  height: 1px;
  border: none;
  background: #ececec; }

#edit-recipients .option > * {
  vertical-align: top; }

#edit-recipients .option-label {
  display: inline-block; }

#existing-roles-list h3 {
  font-size: 16px; }

#list-suggestions tr.sent {
  opacity: 0.5; }

fieldset.inputs .option {
  display: inline-block;
  min-width: 200px; }

form.rebuild button {
  padding: .25rem 1.5rem;
  height: auto;
  margin-right: 2rem;
  background: #292;
  color: #fff;
  border-radius: 1em; }

form.rebuild button:hover {
  padding: .25rem 1.5rem;
  height: auto;
  margin-right: 2rem;
  background: #4B4;
  color: #fff;
  border-radius: 1em; }

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