/* Colours */
/* Breakpoints */
/* Mixins */
/* Page */
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  color: #2b2b2b;
  overflow-y: scroll; }

button {
  font-family: 'Raleway', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  background: #d96148;
  color: #ffffff;
  border: none;
  border-radius: 2px;
  padding: 0.5rem; }
  button[type=submit], button.button {
    padding: 0.5rem 1rem; }
  button:hover, button:focus {
    background: #e28572; }
  button > .fas {
    font-size: 1rem;
    display: block; }

h1, h2, h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: bold;
  text-transform: uppercase; }

label {
  color: #292c33;
  font-weight: bold; }

a.logout {
  display: block;
  text-align: right;
  margin-top: 3rem; }

.error {
  color: #c00;
  font-size: 0.9rem;
  margin: 0;
  padding: 0; }

header {
  background: #292c33;
  color: #f2f2f2;
  padding: 0.75rem 0; }
  header .row {
    align-items: center; }
    header .row .page-title h1 {
      font-size: 1.5rem; }
    header .row .logo {
      text-align: right; }
      header .row .logo img {
        display: block;
        height: 50px;
        margin: 0 0 0 auto; }
      header .row .logo p {
        font-size: 0.8rem;
        margin-top: 0.25rem;
        color: #d96148; }
  header h1, header p {
    margin-bottom: 0; }

main {
  padding: 1rem 0; }

.index {
  list-style: none;
  margin: 0;
  padding: 0; }
  .index > li {
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    background: #292c33;
    border: 1px solid #292c33;
    color: #f2f2f2;
    margin: 0 0 1rem; }
    .index > li > a {
      display: block;
      position: relative;
      padding: 0.5rem 1.5rem;
      font-size: 2rem;
      color: #f2f2f2; }
      .index > li > a:hover, .index > li > a:focus {
        color: #d96148;
        text-decoration: none; }
      .index > li > a > .fas {
        position: absolute;
        top: 15px;
        right: 1.5rem;
        transition: .5s transform; }
    .index > li.shown > a > .fas {
      transform: rotate3d(1, 0, 0, 180deg); }
    .index > li > ul {
      /*
      */
      display: none;
      font-family: 'Montserrat', sans-serif;
      font-weight: normal;
      font-style: normal;
      text-transform: none;
      list-style: none;
      margin: 0;
      padding: 0;
      background: #f2f2f2;
      color: #2b2b2b; }
      .index > li > ul > li {
        padding: 0.5rem 1.5rem;
        margin: 0;
        background: #ffffff;
        font-size: 1.1rem;
        display: flex;
        justify-content: space-between;
        align-items: center; }
        .index > li > ul > li:nth-child(even) {
          background: #f2f2f2; }
        .index > li > ul > li a {
          color: #292c33; }
          .index > li > ul > li a:hover, .index > li > ul > li a:focus {
            color: #d96148;
            text-decoration: none; }
          .index > li > ul > li a > button {
            margin-left: 0.5rem; }
          .index > li > ul > li a.delete > button {
            background: #dc3545; }
            .index > li > ul > li a.delete > button:hover, .index > li > ul > li a.delete > button:focus {
              background: #e4606d; }

.calendar {
  /*
  .event {
    background: #fcc;
    text-align: center;
    cursor: pointer;
  }
  */ }
  @media (min-width: 768px) {
    .calendar {
      display: flex;
      margin-left: -15px;
      margin-right: -15px; } }
  .calendar .c-col {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #fff;
    padding: 0.25rem 0.5rem; }
    @media (min-width: 768px) {
      .calendar .c-col {
        display: block;
        padding: 1rem 0.5rem;
        background: #f8f8f8;
        border: 1px solid #ffffff;
        -ms-flex: 0 0 12.5%;
        flex: 0 0 12.5%;
        max-width: 12.5%; } }
    .calendar .c-col .day-of-month {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      height: 100%; }
      @media (min-width: 768px) {
        .calendar .c-col .day-of-month {
          height: auto; } }
      .calendar .c-col .day-of-month .mobile {
        display: block;
        text-align: left;
        font-size: 1rem; }
        @media (min-width: 768px) {
          .calendar .c-col .day-of-month .mobile {
            display: none; } }
      .calendar .c-col .day-of-month .desktop {
        display: none; }
        @media (min-width: 768px) {
          .calendar .c-col .day-of-month .desktop {
            display: block;
            font-size: 1.25rem; } }
    .calendar .c-col .events-on-day {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%; }
      .calendar .c-col .events-on-day .event-info {
        background: #fcc;
        font-size: 0.75rem;
        margin: 2px 0;
        border-radius: 3px;
        overflow: hidden; }
        @media (min-width: 768px) {
          .calendar .c-col .events-on-day .event-info {
            margin: 0.5rem 0 0 0; } }
        .calendar .c-col .events-on-day .event-info:hover {
          background: #fbb; }
  .calendar .day {
    display: none; }
    @media (min-width: 768px) {
      .calendar .day {
        display: block;
        background: #292c33;
        color: #ffffff;
        text-align: center; } }
  .calendar .month-bg-0 {
    background: #eee;
    text-align: center;
    cursor: pointer; }
  .calendar .month-bg-1 {
    background: #ddd;
    text-align: center;
    cursor: pointer; }
  .calendar .highlight {
    background: #ffc; }
  .calendar .last-friday {
    background: #ff9; }
  .calendar .week-info {
    display: none;
    font-size: 0.75rem; }
    @media (min-width: 768px) {
      .calendar .week-info {
        display: block; } }

.period-total {
  font-size: 1.5rem;
  text-align: right; }
  .period-total .value {
    color: #090;
    font-weight: bold; }
    .period-total .value.over {
      color: #c00; }

nav ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0; }
  nav ul li {
    margin: 0;
    padding: 0; }
    nav ul li a {
      color: #ffffff; }
      nav ul li a:hover, nav ul li a:focus {
        color: #ffffff; }

.delete-event {
  margin: 0 auto 0 0 !important; }

.payments-table {
  padding: 0 15px; }
  .payments-table .payment-row {
    padding: 0 0 0.5rem 0;
    border-bottom: 1px solid #ccc;
    margin-bottom: 0.5rem;
    margin-left: -15px;
    margin-right: -15px; }
    .payments-table .payment-row > div {
      padding: 1px; }
  .payments-table .total-row {
    margin-left: -15px;
    margin-right: -15px; }
    .payments-table .total-row > div {
      padding: 1px; }

.agent-totals table {
  border: 1px solid #eee;
  border-collapse: collapse; }
  .agent-totals table th, .agent-totals table td {
    padding: 6px 12px; }
  .agent-totals table tbody td:nth-child(2), .agent-totals table tbody th:nth-child(2) {
    text-align: right; }

.budget-data table {
  border: 1px solid #eee;
  border-collapse: collapse; }
  .budget-data table tr.highlight th, .budget-data table tr.highlight td {
    background: #eee; }
  .budget-data table th, .budget-data table td {
    padding: 6px 12px;
    min-width: 100px; }
  .budget-data table tbody td:nth-child(2), .budget-data table tbody th:nth-child(2) {
    text-align: right; }

.flexy-bit {
  display: flex;
  flex-wrap: wrap;
  gap: 48px; }

/*# sourceMappingURL=admin.css.map */
