/* Utilities */
html {
  font-family: 'Roboto', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  font-size: 10px;
  font-weight: 300;
}
html .block {
  display: block;
}
html .inline-block {
  display: inline-block;
}
html .spacer {
  width: 100%;
  height: 1rem;
}
html .spacer.x2 {
  height: 2rem;
}
html .spacer.x3 {
  height: 2rem;
}
html .spacer.x4 {
  height: 4rem;
}
html .flex {
  display: flex;
}
html .flex.flex-row {
  flex-direction: row;
}
html .flex.flex-column {
  flex-direction: column;
}
html .flex.flex-wrap {
  flex-wrap: wrap;
}
html .flex.flex-nowrap {
  flex-wrap: nowrap;
}
html .flex.flex-start {
  justify-content: flex-start;
}
html .flex.flex-end {
  justify-content: flex-end;
}
html .flex.flex-center {
  justify-content: center;
}
html .flex.space-between {
  justify-content: space-between;
}
html .flex.space-around {
  justify-content: space-around;
}
html .flex.space-evenly {
  justify-content: space-evenly;
}
html .flex .align-items-stretch {
  align-items: stretch;
}
html .flex .align-items-flex-start {
  align-items: flex-start;
}
html .flex .align-items-flex-center {
  align-items: center ;
}
html .flex .align-items-flex-end {
  align-items: flex-end;
}
html .flex .align-content-flex-start {
  align-content: flex-start e;
}
html .flex .align-content-flex-end {
  align-content: flex-end;
}
html .flex .align-content-center {
  align-content: center;
}
html .flex .align-content-space-between {
  align-content: space-between;
}
html .flex .align-content-space-around {
  align-content: space-around;
}
html .flex .align-content-stretch {
  align-content: stretch;
}
html .flex .flex-grow {
  flex-grow: 8;
}
html .round-corner {
  border-radius: none;
}
html .round-corner .round-corner-all {
  border-radius: 1rem;
}
html .round-corner.round-corder-top-left {
  border-top-left-radius: 1rem;
}
html .round-corner.round-corder-top-right {
  border-top-right-radius: 1rem;
}
html .round-corner.round-corder-bottom-left {
  border-bottom-right-radius: 1rem;
}
html .round-corner.round-corder-bottom-right {
  border-bottom-left-radius: 1rem;
}
html .round-corner-large {
  border-radius: none;
}
html .round-corner-large .round-corner-all {
  border-radius: 2rem;
}
html .round-corner-large.round-corder-top-left {
  border-top-left-radius: 2rem;
}
html .round-corner-large.round-corder-top-right {
  border-top-right-radius: 2rem;
}
html .round-corner-large.round-corder-bottom-left {
  border-bottom-right-radius: 2rem;
}
html .round-corner-large.round-corder-bottom-right {
  border-bottom-left-radius: 2rem;
}
html .round-corner-tiny {
  border-radius: none;
}
html .round-corner-tiny .round-corner-all {
  border-radius: 0.5rem;
}
html .round-corner-tiny.round-corder-top-left {
  border-top-left-radius: 0.5rem;
}
html .round-corner-tiny.round-corder-top-right {
  border-top-right-radius: 0.5rem;
}
html .round-corner-tiny.round-corder-bottom-left {
  border-bottom-right-radius: 0.5rem;
}
html .round-corner-tiny.round-corder-bottom-right {
  border-bottom-left-radius: 0.5rem;
}
/* Default */
html body {
  min-height: 100svh;
}
html body .w100,
html body .fullwidth {
  width: 100%;
  flex-shrink: 0;
}
html body .w75 {
  width: 75%;
  flex-shrink: 0;
}
html body .w50,
html body .half {
  width: 50%;
  flex-shrink: 0;
}
html body .w30 {
  width: 30%;
  flex-shrink: 0;
}
html body .w25 {
  width: 25%;
  flex-shrink: 0;
}
html body .hidden {
  display: none;
  height: 0;
  width: 0;
}
/* Nav */
html body header {
  z-index: 999999;
}
html body header nav {
  padding: 1rem;
  background: #fafafa;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
html body header nav #logo {
  width: 16rem;
  height: 4rem;
  background-image: url("/img/logo-billboard4all.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
html body header nav .menu {
  padding: 0;
  padding-left: 2rem;
}
html body header nav .menu > ul {
  display: inline-block;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  float: left;
}
html body header nav .menu > ul > li {
  display: inline-block;
  background-color: transparent;
  height: 4rem;
  padding: 0 2rem 0 1rem;
  margin: 0;
  float: left;
}
html body header nav .menu > ul > li:hover {
  background: #eaeaea;
  color: #4c4c4c;
}
html body header nav .menu > ul > li:hover > ul {
  display: inherit;
  background: #eaeaea;
  color: #4c4c4c;
}
html body header nav .menu > ul > li > ul {
  display: none;
  position: absolute;
  min-width: 24rem;
  top: 4rem;
  left: 0;
  background: #ffffff;
  padding: 2rem;
  margin: 0;
  list-style: none;
}
html body header nav .menu > ul > li > ul > li {
  width: auto;
  float: none;
  display: list-item;
  position: relative;
}
html body header nav .menu > ul > li > ul > li:hover {
  font-weight: 700;
}
html body header nav .menu a {
  display: inline-block;
  color: #0c3a58;
  font-size: 2.4rem;
  line-height: 4rem;
}
html body header nav .menu a:hover {
  color: #0c3a58;
}
html body header nav .menu .with-icon {
  height: 4rem;
}
html body header nav .menu .with-icon i,
html body header nav .menu .with-icon i::before {
  display: inline-block;
  width: 4rem;
  height: 4rem;
  text-align: center;
  line-height: 4rem;
  font-size: 2.4rem;
  float: left;
}
html body header nav .menu .with-icon .label {
  display: inline-block;
  width: auto;
  height: 4rem;
  text-align: left;
  line-height: 4rem;
  font-size: 1.6rem;
  padding: 0;
  margin: 0;
  float: left;
}
html body header nav .menu.actions > ul > li > ul {
  left: auto;
  right: 0;
}
html body header nav .actions a {
  color: #0c3a58;
}
html body header nav .actions a:hover {
  color: #0c3a58;
}
html body header nav .actions .icon,
html body header nav .actions .icon i,
html body header nav .actions .icon i::before {
  display: inline-block;
  width: 4rem;
  height: 4rem;
  text-align: center;
  line-height: 4rem;
  font-size: 2.4rem;
}
/* public body */
html body.public {
  min-height: 100svh;
}
/* form */
html body form {
  padding: 2rem;
  margin: 0;
}
html body form .nolabel label {
  display: none;
}
html body form fieldset {
  padding: 0;
  margin: 0;
}
html body form fieldset label {
  float: left;
  width: 100%;
  height: 3.5rem;
  line-height: 3.5rem;
  padding: 0;
  margin: 0;
}
html body form fieldset input[type="color"],
html body form fieldset input[type="date"],
html body form fieldset input[type="datetime"],
html body form fieldset input[type="datetime-local"],
html body form fieldset input[type="email"],
html body form fieldset input[type="month"],
html body form fieldset input[type="number"],
html body form fieldset input[type="password"],
html body form fieldset input[type="search"],
html body form fieldset input[type="tel"],
html body form fieldset input[type="text"],
html body form fieldset input[type="url"],
html body form fieldset input[type="week"],
html body form fieldset input:not([type]),
html body form fieldset textarea,
html body form fieldset select {
  font-size: 1.6rem;
  float: left;
  width: 100%;
  padding: 0 1rem;
  margin: 0;
  line-height: 3.5rem;
  height: 3.5rem;
  background: #ffffff;
  border-color: #aaaaaa;
}
html body form fieldset input[type="color"]:focus,
html body form fieldset input[type="date"]:focus,
html body form fieldset input[type="datetime"]:focus,
html body form fieldset input[type="datetime-local"]:focus,
html body form fieldset input[type="email"]:focus,
html body form fieldset input[type="month"]:focus,
html body form fieldset input[type="number"]:focus,
html body form fieldset input[type="password"]:focus,
html body form fieldset input[type="search"]:focus,
html body form fieldset input[type="tel"]:focus,
html body form fieldset input[type="text"]:focus,
html body form fieldset input[type="url"]:focus,
html body form fieldset input[type="week"]:focus,
html body form fieldset input:not([type]):focus,
html body form fieldset textarea:focus,
html body form fieldset select:focus {
  background: #eeeeee;
  border-color: #0c3a58;
}
html body form fieldset select {
  -webkit-appearance: listbox;
  -moz-appearance: listbox;
  appearance: listbox;
}
html body form fieldset textarea {
  padding: 1rem;
  line-height: 1.8rem;
  height: 11rem;
}
html body form fieldset .section-title {
  width: 100%;
  font-size: 2.6rem;
  line-height: 4rem;
  font-weight: 500;
  padding-top: 2rem;
  text-decoration: underline;
}
html body form fieldset .image-preview {
  display: inline-block;
  float: left;
  margin-right: 1rem;
  margin-bottom: 1rem;
  border: none;
  width: 17rem;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.25);
}
html body form fieldset .image-preview .image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 16rem;
  height: 16rem;
  float: left;
}
html body form fieldset .image-preview .action {
  width: 16rem;
  float: left;
  padding: 5px;
  margin-top: -5rem;
  background: rgba(255, 255, 255, 0.75);
}
html body form fieldset .image-preview .action > div {
  line-height: 2rem;
  font-size: 1.4rem;
  color: #4c4c4c;
}
html body form fieldset .image-preview .action input {
  margin: 0;
}
html body form fieldset .actions a.icon {
  display: inline-block;
  width: 3rem;
  height: 4rem;
  text-align: center;
  line-height: 4rem;
  font-size: 2.4rem;
}
html body form fieldset .actions a.icon:hover {
  background-color: #eaeaea;
}
html body form fieldset .actions a.icon i,
html body form fieldset .actions a.icon i:before {
  display: inline-block;
  float: left;
  width: 3rem;
  height: 4rem;
  text-align: center;
  line-height: 4rem;
  font-size: 2.4rem;
  padding: 0;
  margin: 0;
  color: #4c4c4c;
}
html body form fieldset .actions a.button {
  padding: 0 2rem;
  margin: 0 0.5rem;
  background-color: #0c3a58;
  border-color: #0c3a58;
  color: #ffffff;
}
html body form button {
  margin: 0 1rem 0 0;
}
html body form button[type=submit] {
  background: #0c3a58;
  border-color: #0c3a58;
  color: #ffffff;
}
html body form button[type=submit]:hover {
  background: #135784;
}
html body form.by-row fieldset .input {
  float: left;
  width: 100%;
  padding: 0 0 1rem 0;
}
html body form.by-row fieldset .input label {
  width: 12rem;
}
html body form.by-row fieldset .input input {
  width: calc(100% - 12rem);
}
/* Form */
html body main .form.content form fieldset .input {
  width: 100%;
  padding: 0 2rem 2rem 0;
}
html body main .form.content form fieldset .input .input-error {
  float: left;
  padding: 1rem 0;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4rem;
  color: #ff0000;
}
html body main .form.content form fieldset .input .checkbox {
  display: inline-block;
  width: auto;
  padding-right: 2rem;
}
html body main .form.content form fieldset .input .checkbox input {
  margin-right: 1rem;
}
/* General Pages */
html body main section#content > .content {
  width: 100%;
  padding: 2rem;
  margin: 0;
}
html body main section#content > .content .page-header {
  padding: 0;
  margin: 0;
  margin-bottom: 2rem;
}
html body main section#content > .content .page-header .title {
  line-height: 4rem;
  font-size: 2.4rem;
  font-weight: 300;
  text-align: left;
}
html body main section#content > .content .page-header .actions a.icon {
  display: inline-block;
  width: 3rem;
  height: 4rem;
  text-align: center;
  line-height: 4rem;
  font-size: 2.4rem;
}
html body main section#content > .content .page-header .actions a.icon:hover {
  background-color: #eaeaea;
}
html body main section#content > .content .page-header .actions a.icon i,
html body main section#content > .content .page-header .actions a.icon i:before {
  display: inline-block;
  float: left;
  width: 3rem;
  height: 4rem;
  text-align: center;
  line-height: 4rem;
  font-size: 2.4rem;
  padding: 0;
  margin: 0;
  color: #4c4c4c;
}
html body main section#content > .content .page-header .actions a.button {
  padding: 0 2rem;
  margin: 0 0.5rem;
  background-color: #0c3a58;
  border-color: #0c3a58;
  color: #ffffff;
}
/* Data Table */
html body main section#content > .content .table .dt-container .dt-search {
  max-width: 36rem;
  float: right;
  margin: 0;
  padding: 0;
}
html body main section#content > .content .table .dt-container .dt-search label {
  width: 10rem;
  float: left;
  margin: 0;
  padding: 0 1rem;
  text-align: right;
  line-height: 4rem;
  font-size: 1.4rem;
  font-weight: 300;
}
html body main section#content > .content .table .dt-container .dt-search input {
  width: calc(100% - 10rem);
  height: 4rem;
  float: left;
  margin: 0;
  padding: 0 1rem;
  line-height: 4rem;
  font-size: 1.4rem;
}
html body main section#content > .content .table .dt-container td.actions {
  white-space: nowrap;
}
html body main section#content > .content .table .dt-container td.actions a {
  display: inline-block;
  width: 3rem;
  height: 4rem;
  text-align: center;
  line-height: 4rem;
  font-size: 2.4rem;
}
html body main section#content > .content .table .dt-container td.actions a:hover {
  background-color: #eaeaea;
}
html body main section#content > .content .table .dt-container td.actions a i,
html body main section#content > .content .table .dt-container td.actions a i:before {
  display: inline-block;
  float: left;
  width: 3rem;
  height: 4rem;
  text-align: center;
  line-height: 4rem;
  font-size: 2.4rem;
  padding: 0;
  margin: 0;
  color: #4c4c4c;
}
html body main section#content > .content .table .dt-container .dt-paging button {
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  padding: 0;
  margin: 0;
}
html body main section#content > .content .table .dt-container .dt-paging button.dt-paging-button {
  font-size: 1.8rem;
  background-image: none;
  border-color: #eaeaea;
  color: #4c4c4c;
}
html body main section#content > .content .table .dt-container .dt-paging button.dt-paging-button:hover {
  background-color: #eaeaea;
  color: #4c4c4c !important;
}
html body main section#content > .content .table .dt-container .dt-paging button.dt-paging-button.current:hover {
  background-color: inherit;
  color: inherit;
}
html body main section#content > .content .table .dt-container .dt-paging button.dt-paging-button.disabled {
  display: none;
}
html body main section#content > .content .table .dt-container .dt-paging button.dt-paging-button.first,
html body main section#content > .content .table .dt-container .dt-paging button.dt-paging-button.next,
html body main section#content > .content .table .dt-container .dt-paging button.dt-paging-button.previous,
html body main section#content > .content .table .dt-container .dt-paging button.dt-paging-button.last {
  font-size: 2.4rem;
}
/* Dashboard */
html body.dashboard.login nav {
  display: none;
}
html body.dashboard.login #content {
  align-items: center;
  justify-content: center;
}
html body #login-form {
  background: #f0f0f0;
  width: 36rem;
}
html body #login-form form fieldset .logo {
  margin-left: 15%;
  width: 70%;
  height: 6rem;
  background-image: url("/img/logo-billboard4all.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.input-row.master {
  display: none;
}
.sub-form .master label,
.sub-form .entry label {
  /*display: none;*/
}
.sub-form .input-row a {
  margin-top: 4rem;
}
html body #flash {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.8);
}
html body #flash .message.success {
  font-size: 2rem;
  color: GREEN;
}
html body #flash .message.error {
  font-size: 2rem;
  color: RED;
}
/*# sourceMappingURL=admin.css.map */