@charset "UTF-8";

/*Grid*/
.wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  grid-auto-rows: minmax(100px, auto);
}
.one {
  grid-column: 1 / 3;
  grid-row: 1;
}
.two {
  grid-column: 2 / 4;
  grid-row: 1 / 3;
}
.three {
  grid-column: 1;
  grid-row: 2 / 5;
}
.four {
  grid-column: 3;
  grid-row: 3;
}
.five {
  grid-column: 2;
  grid-row: 4;
}
.six {
  grid-column: 3;
  grid-row: 4;
}




/* Imports *************************************************************************
*********************************************************************************************/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.row, .hr-row {
  width: 100%;
  height: auto;
  float: left;
  clear: both;
}

.container {
  width: 98%;
  height: auto;
  margin: 0 auto;
}

.inline, .calendar-container, .calendar-filter-sidebar, .calendar-task-sidebar, .five-sixth, .sixth, .seven-eighth, .five-eighth, .three-eighth, .eighth, .four-fifth, .three-fifth, .two-fifth, .fifth, .two-third, .third, .three-quarter, .quarter, .half, .full-width {
  float: left;
  padding: 5px;
}

.full-width {
  width: 100%;
}

.half {
  width: 50%;
}

.quarter {
  width: 25%;
}

.three-quarter {
  width: 75%;
}

.third {
  width: 33.33%;
}

.two-third {
  width: 66.66%;
}

.fifth {
  width: 20%;
}

.two-fifth {
  width: 40%;
}

.three-fifth {
  width: 60%;
}

.four-fifth {
  width: 80%;
}

.eighth {
  width: 12.5%;
}

.tenth {
  width: 10%;
}

.three-eighth {
  width: 37.5%;
}

.five-eighth {
  width: 62.5%;
}

.seven-eighth {
  width: 87.5%;
}

.sixth {
  width: 16.66%;
}

.five-sixth {
  width: 83.3%;
}

.dynamic-width {
  width: auto;
}

@media all and (max-width: 768px) {
  .half {
    width: 50%;
  }

  .quarter {
    width: 50%;
  }

  .three-quarter {
    width: 100%;
  }

  .third {
    width: 50%;
  }

  .two-third {
    width: 100%;
  }

  .fifth {
    width: 50%;
  }

  .two-fifth {
    width: 50%;
  }

  .three-fifth {
    width: 100%;
  }

  .four-fifth {
    width: 100%;
  }

  .eighth {
    width: 50%;
  }

  .three-eighth {
    width: 100%;
  }

  .five-eighth {
    width: 100%;
  }

  .seven-eighth {
    width: 100%;
  }

  .sixth {
    width: 50%;
  }

  .three-sixth {
    width: 100%;
  }
}
@media all and (max-width: 375px) {
  .inline, .calendar-container, .calendar-filter-sidebar, .calendar-task-sidebar, .full-width, .half, .quarter, .three-quarter, .third, .two-third, .fifth, .two-fifth, .three-fifth, .four-fifth, .eighth, .three-eighth, .five-eighth, .seven-eighth, .sixth, .five-sixth {
    width: 100%;
  }

  .button, .request-tab {
    width: 100%;
  }
}
/* 
    Created on : 17-Jun-2016, 15:59:24
    Author     : Ross
*/
/* Project Variables *************************************************************************
*********************************************************************************************/
/* Mixins **************************************************************************
*********************************************************************************************/
/* General Reset *****************************************************************************
*********************************************************************************************/
* {
  box-sizing: border-box;
  margin: 0;
}

html, body {
  min-height: 100vh;
  font-family: "stevie-sans", sans-serif;
  overflow-x: hidden;
  max-width: 100%;
  max-width: 100vw;
}

body {
  background-color: #f0f0f0;
  font-size: 14px;
  font-weight: normal;
}

pre {
  font-family: monospace;
  display: inline-block;
  background-color: #f0f0f0;
  padding: 2px;
}

.real-list {
  margin-left: 1rem;
}
.real-list li {
  list-style: disc;
}

div, article, section, header, footer, nav, li {
  position: relative;
}

small {
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  padding: 3px;
}

img {
  max-width: 100%;
}

b {
  font-weight: bold;
}

.clearfix:after, .sub-nav:after {
  content: "";
  display: block;
  clear: both;
}

form {
  float: left;
  width: 100%;
}

::-moz-selection {
  background: #000;
  color: #fff;
}

::selection {
  background: #000;
  color: #fff;
}

.perfect, .messages-container .message-preview .message .message-top .round-profile-large {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

input, textarea {
  -webkit-border-radius: 0;
  border: none;
  outline: none;
}

input[disabled], textarea[disabled], select[disabled], button[disabled] {
  background: #f0f0f0;
  cursor: not-allowed;
}

.float-right {
  float: right;
}

.ui-widget-content {
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  width: 100%;
  padding: 8px;
  border-radius: 0;
  box-shadow: 1px 2px 6px #e2e2e2;
  font-family: inherit;
}

.ui-datepicker {
  width: 17rem;
  display: none;
}
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
  padding: 8px;
  border: 1px solid #e2e2e2;
  cursor: pointer;
  margin-top: 1.5rem;
}
.ui-datepicker .ui-datepicker-prev:hover, .ui-datepicker .ui-datepicker-next:hover {
  cursor: pointer;
  background-color: #181818;
  color: #ffffff;
  transition: background-color ease-in-out 0.3s;
}
.ui-datepicker .ui-datepicker-prev {
  float: left;
}
.ui-datepicker .ui-datepicker-next {
  float: right;
}
.ui-datepicker .ui-datepicker-title {
  text-align: center;
  font-weight: bold;
}
.ui-datepicker tr:nth-child(even) {
  background-color: transparent;
}
.ui-datepicker tr:nth-child(even) a {
  background-color: #f0f0f0;
}
.ui-datepicker th {
  padding: 10px 2px 6px;
  text-align: center;
}
.ui-datepicker td {
  padding: 2px;
  text-align: center;
}
.ui-datepicker .ui-state-default {
  padding: 5px;
  margin: 0 auto;
  /*border: 1px solid $grey;*/
  display: block;
  width: 28px;
  height: 28px;
  padding: 7px 0px;
}
.ui-datepicker .ui-state-default:hover {
  cursor: pointer;
  background-color: #181818;
  color: #ffffff;
  transition: background-color ease-in-out 0.3s;
}
.ui-datepicker .ui-state-active {
  background-color: #f1e12f !important;
  border-radius: 50%;
}

.hidden {
  display: none !important;
}

p {
  margin-bottom: 10px;
}

*[disabled=disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

strong {
  font-weight: bold;
}

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

.tall-n-thin {
  font-size: 24px;
  display: block;
  margin: 5px 0px 30px 0px;
  font-weight: 100;
}

hr {
  float: left;
  width: 100%;
  border: none;
  height: 1px;
  background-color: #e2e2e2;
}
hr:before {
  margin-top: 20px;
  content: "";
  display: block;
  float: left;
}
hr:after {
  margin-bottom: 20px;
  content: "";
  display: block;
  float: left;
}

.hr-row {
  padding: 20px 10px;
  margin-bottom: 0px;
}

.uppercase {
  text-transform: uppercase;
}

.underline {
  text-decoration: underline;
}

.bold {
  font-weight: bold;
}

.large-thin-text {
  font-size: 24px;
  font-weight: 100;
}

.round-profile, .round-profile-largest, .round-profile-large, .round-profile-small {
  height: 40px;
  width: 40px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
}

.round-profile-small {
  height: 32px;
  width: 32px;
}

.round-profile-large {
  height: 64px;
  width: 64px;
}

.round-profile-largest {
  height: 128px;
  width: 128px;
  margin: 3px;
}

.remove-icon {
  color: #e92727;
}
.remove-icon.fa {
  font-size: 16px;
  margin: 0px 10px;
  display: inline-block;
  vertical-align: middle;
}

.people-tag {
  padding: 5px;
  margin-right: 5px;
  border-radius: 5px;
  background: #f0f0f0;
  border: 1px solid #e2e2e2;
}
.people-tag.ng-enter, .people-tag.ng-move, .people-tag.ng-leave {
  -webkit-animation: 0.2s fade_in;
          animation: 0.2s fade_in;
}
.people-tag.ng-leave {
  -webkit-animation: 0.2s fade_out;
          animation: 0.2s fade_out;
}
.people-tag .fa-close {
  margin: 0px 10px;
  cursor: pointer;
}
@-webkit-keyframes fade_out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fade_out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fade_in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade_in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.map {
  width: 100%;
  height: 400px;
}

#clock-in-map {
  height: 50vh;
}

.map-info-window {
  overflow: hidden;
  font-weight: normal;
  text-align: center;
}
.map-info-window h5 {
  margin: 0;
}
.map-info-window a {
  color: #00b0ea;
}
.map-info-window img {
  max-width: 200px;
  max-height: 200px;
  margin-bottom: 5px;
}

#time-entry-map {
  height: 50vh;
}

progress {
  width: 100%;
  height: 20px;
  border-radius: 5px;
  -webkit-appearance: none;
  border: 1px solid #e2e2e2;
}

progress[value]::-webkit-progress-value {
  background: #66c825;
}

progress[value]::-webkit-progress-bar {
  background: #ffffff;
}

.primary {
  color: #66c825;
}

.danger {
  color: #e92727;
}

ul ul {
  margin-left: 1.5rem;
}

.scroll-list {
  max-height: 5rem;
  overflow-y: scroll;
  overflow-x: hidden;
  border: 1px solid #a9a9a9;
}
.scroll-list li {
  margin-bottom: 10px;
}
.scroll-list li label {
  margin-left: 24px;
  font-weight: normal;
  text-transform: none;
}
.scroll-list li label input {
  float: left;
  margin: -3px 0 0 -24px;
}

.risk-list {
  max-height: 10rem;
  overflow-y: scroll;
  overflow-x: hidden;
  border: 1px solid #a9a9a9;
}
.risk-list li {
  margin-bottom: 10px;
}
.risk-list li label {
  margin-left: 24px;
  font-weight: normal;
  text-transform: none;
}
.risk-list li label input {
  float: left;
  margin: -3px 0 0 -24px;
}

.currency-wrapper {
  position: relative;
}
.currency-wrapper .currency-symbol {
  position: absolute;
  display: inline-block;
  left: 8px;
  top: 10px;
}
.currency-wrapper .currency {
  padding-left: 18px;
  text-align: right;
}

.notification {
  border: 1px solid #e2e2e2;
  padding: 5px;
  margin: 5px 0px;
  opacity: 0.6;
}
.notification.ng-enter, .notification.ng-move, .notification.ng-leave {
  -webkit-animation: 0.2s fade_in;
          animation: 0.2s fade_in;
}
.notification.ng-leave {
  -webkit-animation: 0.2s fade_out;
          animation: 0.2s fade_out;
}
.notification .notitifcation-title, .notification .mark-read-label {
  display: inline-block;
}
.notification .mark-read-label {
  float: right;
}
.notification small {
  font-style: italic;
}

.notification-unread {
  opacity: 1;
}

.modal-title {
  background: #181818;
  color: #f1e12f;
}
.modal-title * {
  margin: 0px;
  padding: 5px;
}
.modal-title .fa-close {
  font-size: 22px;
}

.fa.fa-star, .fa.fa-star-o {
  color: #f1e12f;
  font-size: 1.3rem;
}

.tooltip {
  display: inline-block;
  position: relative;
  width: 1rem;
  color: #00b0ea;
  font-size: 1em;
  margin-bottom: -0.25em;
}
.tooltip:hover {
  cursor: pointer;
}
.tooltip:after {
  content: attr(tip);
  position: absolute;
  bottom: 110%;
  background: #00b0ea;
  color: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  display: none;
  min-width: 200px;
  left: -100px;
  text-align: center;
  padding: 7px;
  font-family: "stevie-sans", sans-serif;
  transition: all ease-in-out 0.3s;
  z-index: 9999;
  font-size: 0.8rem;
  line-height: 1.5;
  text-transform: none;
}
.tooltip:hover::after {
  display: block;
}

@media all and (max-width: 768px) {
  /*    
    min-width: 150px;
    left: -75px;
  */
}
@media all and (max-width: 767px) {
  .tooltip {
    position: static;
  }
  .tooltip:hover {
    cursor: pointer;
  }
  .tooltip:after {
    position: absolute;
    left: -26px;
    width: 100%;
  }
}
.pagination {
  text-align: center;
  margin: 25px 0px;
}
.pagination li {
  display: inline-block;
  margin: 10px 2px;
}
.pagination li * {
  font-size: inherit;
  color: #282828;
  padding: 5px 10px;
  border-radius: 2px;
}
.pagination li.active * {
  color: black;
  background: #f1e12f;
}
.pagination li:hover * {
  color: black;
  background: #f0f0f0;
}

.orderby-form label {
  float: right;
  text-align: right;
  margin-bottom: -6px;
}
.orderby-form label select {
  width: auto;
  padding: 2px;
  padding-right: 20px;
  margin: 1px;
}

/* Structure ***********************************************************************************
*********************************************************************************************/
header {
  width: 100%;
  max-width: 100vw;
  min-height: 70px;
  background-color: #181818;
  color: #ffffff;
  z-index: 9998;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
header .header-center-wrapper {
  padding: 5px 0;
  width: 100%;
  float: left;
}
header .header-center-wrapper .app-logo {
  max-height: 56px;
  padding: 7px 0px;
  width: auto;
  margin-right: 5px;
  max-width: 100%;
}
header .header-center-wrapper .shortcut-buttons {
  float: right;
  margin: -5px 10px;
}
header .header-center-wrapper .shortcut-buttons .shortcut {
  float: left;
  margin: 18px 5px;
  background-color: #fda11c;
}
header .header-center-wrapper .user-dropdown {
  margin-top: 8px;
  float: right;
  height: auto;
  text-align: right;
}
header .header-center-wrapper .user-dropdown .user-dropdown-toggle {
  width: 100%;
  float: right;
}
header .header-center-wrapper .user-dropdown .welcome-container {
  max-width: 189px;
  padding-top: 5px;
  text-align: left;
}
header .header-center-wrapper .user-dropdown .welcome-container, header .header-center-wrapper .user-dropdown .round-profile, header .header-center-wrapper .user-dropdown .round-profile-small, header .header-center-wrapper .user-dropdown .round-profile-large, header .header-center-wrapper .user-dropdown .round-profile-largest, header .header-center-wrapper .user-dropdown .fa-angle-down {
  display: inline-block;
  vertical-align: middle;
}
header .header-center-wrapper .user-dropdown .users-name {
  color: #f1e12f;
  font-size: 20px;
  text-transform: uppercase;
  display: block;
}
header .header-center-wrapper .user-dropdown .fa-angle-down {
  font-size: 20px;
  margin: 10px 10px 0 0;
}
@media all and (max-width: 1700px) {
  header .header-center-wrapper {
    padding: 5px 70px;
  }
  header .header-center-wrapper .user-dropdown {
    margin-right: 0px;
  }
  header .header-center-wrapper .user-dropdown .user-dropdown-toggle {
    text-align: center;
  }
  header .header-center-wrapper .user-dropdown .welcome-container {
    display: none;
  }
  header .header-center-wrapper .user-dropdown .dropdown-container {
    width: 190px;
    right: 0;
    left: auto;
  }
  header .header-center-wrapper .user-dropdown .round-profile, header .header-center-wrapper .user-dropdown .round-profile-small, header .header-center-wrapper .user-dropdown .round-profile-large, header .header-center-wrapper .user-dropdown .round-profile-largest {
    margin: 0px;
  }
  header .header-center-wrapper .user-dropdown .fa-angle-down {
    margin-top: 5px;
  }
  header .header-center-wrapper h1 {
    margin: 0 10px;
    margin-top: 18px;
    text-align: center;
  }
}
@media (max-width: 890px) {
  header .header-center-wrapper .shortcut-buttons {
    display: none;
  }
}
@media all and (max-width: 425px) {
  header .header-center-wrapper .app-logo {
    max-width: 150px;
    padding: 17px 0;
  }
}
header .left-toggle, header .right-toggle {
  display: none;
  float: left;
  height: 70px;
  background: #f1e12f;
  position: absolute;
  width: 70px;
  z-index: 1;
}
header .left-toggle:hover, header .right-toggle:hover {
  cursor: pointer;
}
header .left-toggle .perfect, header .left-toggle .messages-container .message-preview .message .message-top .round-profile-large, .messages-container .message-preview .message .message-top header .left-toggle .round-profile-large, header .right-toggle .perfect, header .right-toggle .messages-container .message-preview .message .message-top .round-profile-large, .messages-container .message-preview .message .message-top header .right-toggle .round-profile-large {
  text-align: center;
}
@media all and (max-width: 1700px) {
  header .left-toggle, header .right-toggle {
    display: block;
  }
}
header .right-toggle {
  right: 0;
}
header .dropdown-container {
  display: none;
  z-index: 9999;
  background: #181818;
  position: absolute;
  right: 0px;
  width: 120%;
  top: 55px;
}
header .dropdown-container a {
  text-transform: uppercase;
  padding: 20px;
  display: block;
  color: #ffffff;
  position: relative;
}
header .dropdown-container a .notification-counter {
  margin-left: 10px;
}
header .dropdown-container a:hover {
  background: #f1e12f;
  color: #181818;
}
header .dropdown-container .yellow-text {
  color: #f1e12f;
}
header .dropdown-container .yellow-text:hover {
  color: #f1e12f;
  background: #a9a9a9;
}
header .user-dropdown-toggle:hover {
  cursor: pointer;
}
header .notification-counter {
  padding: 0.25rem 0.45rem;
  border-radius: 500px;
  color: #ffffff;
  font-weight: 400;
  background: #e92727;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
}
header .round-profile, header .round-profile-small, header .round-profile-large, header .round-profile-largest {
  position: relative;
}
header .round-profile .notification-counter, header .round-profile-small .notification-counter, header .round-profile-large .notification-counter, header .round-profile-largest .notification-counter {
  position: absolute;
  bottom: -8px;
  right: -4px;
}
@media (max-width: 362px) {
  header .header-center-wrapper {
    padding: 5px 40px;
  }
  header .right-toggle, header .left-toggle {
    width: 40px;
  }
  header .dropdown-container {
    top: 45px;
  }
}
@media (max-width: 294px) {
  header .header-center-wrapper {
    padding: 5px 30px;
  }
  header .right-toggle, header .left-toggle {
    width: 30px;
  }
}
@media (max-width: 375px) {
  header {
    min-height: 50px;
    height: 50px;
  }
  header .left-toggle, header .right-toggle {
    height: 50px;
  }
  header .header-center-wrapper .app-logo {
    padding: 7px 0;
  }
  header .header-center-wrapper .user-dropdown {
    margin: 0;
  }
}

.upgrade-btn {
  top: -1.4rem;
  display: inline;
}

@media (max-width: 420px) {
  .upgrade-btn {
    display: none;
  }
}
.web-container {
  height: 100%;
  height: 100vh;
}

.no-padding {
  padding: 0;
}

.left {
  float: left;
}

.right {
  float: right;
}

.display-inline{
  display: inline;
}

.main-box .row, .main-box .hr-row {
  margin-bottom: 0px;
}

.main-box .section {
  margin-bottom: 1.2rem;
}

.under-construction {
  height: 90vh;
  background: url("/img/under-construction.jpg");
  background-position: center center;
  background-size: cover;
}

/* Typography ********************************************************************************
*********************************************************************************************/
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
  margin: 0.1rem 0 0.4rem 0;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 22px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

h5, h6 {
  font-size: 14px;
}

form h1, form h2, form h3, form h4, form h5 {
  margin: 1rem 0 0.5rem 0;
}

p {
  font-weight: 100;
}
p a {
  color: #66c825;
}

a {
  outline: none;
  border: none;
  text-decoration: none;
  font-size: inherit;
  color: #181818;
}
a:visited, a:active {
  outline: none;
  border: none;
}

br {
  margin-bottom: 5px;
}

table .fa-check {
  color: #66c825;
}
table .fa-close {
  color: #e92727;
}

.map {
  width: 100%;
  height: 200px;
}

.text-left {
  text-align: left;
}

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

.text-centered {
  text-align: center;
}

.message-area, .error-area, .large-error, .warning-area {
  width: 100%;
  margin: 0px;
  padding: 15px 10px;
  color: #ffffff;
  background: #81dc44;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 2%;
}
.message-area p, .error-area p, .large-error p, .warning-area p {
  margin: 0px;
  padding: 0px;
  font-weight: bold;
}

.warning-area {
  float: left;
  background: #fdab36;
}
.warning-area a {
  color: #181818;
  text-decoration: underline;
}

.error-area, .large-error {
  float: left;
  background: #ee5555;
}

.global-message-area {
  width: 100%;
  margin-bottom: 2%;
}
.global-message-area p {
  margin: 0px 2px;
  padding: 10px;
  color: #ffffff;
  background: #1ec7ff;
  border: solid 2px #00b0ea;
}
.global-message-area p a {
  color: inherit;
}
.global-message-area .dismiss-global-message {
  float: right;
}
.global-message-area .dismiss-global-message:hover {
  cursor: pointer;
}

.global-message-area {
  width: 100%;
  margin-bottom: 2%;
}
.global-message-area p {
  margin: 0px 2px;
  padding: 10px;
  color: #ffffff;
  background: #1ec7ff;
  border: solid 2px #00b0ea;
}
.global-message-area p a {
  color: inherit;
}
.global-message-area .dismiss-global-message {
  float: right;
}
.global-message-area .dismiss-global-message:hover {
  cursor: pointer;
}

.large-error {
  font-size: 1.1rem;
}

.alert, .alert-error, .alert-warning, .alert-success {
  padding: 10px;
  width: 100%;
  border: 1px solid #00b0ea;
  background-color: #1ec7ff;
  color: #ffffff;
  font-weight: bold;
}

.alert-success {
  border-color: #66c825;
  background-color: #81dc44;
}

.alert-warning {
  border-color: #fd9603;
  background-color: #fdab36;
}

.alert-error {
  border-color: #e92727;
  background-color: #ee5555;
}

.inline, .calendar-container, .calendar-filter-sidebar, .calendar-task-sidebar, .full-width, .half, .quarter, .three-quarter, .third, .two-third, .fifth, .two-fifth, .three-fifth, .four-fifth, .eighth, .three-eighth, .five-eighth, .seven-eighth, .sixth, .five-sixth {
  display: inline-block;
}

.grey-text {
  color: #e2e2e2;
}

.dark-grey-text {
  color: #a9a9a9;
}

.green-text {
  color: #66c825;
}

.blue-text {
  color: #00b0ea;
}

.yellow-text {
  color: #f1e12f;
}

.orange-text {
  color: #fd9603;
}

.red-text {
  color: #e92727;
}

.i-button i {
  color: #66c825;
  font-size: 16px;
  margin-left: 6px;
}

/* Calendars ********************************************************************************
*********************************************************************************************/
.calendar-filter-sidebar, .calendar-task-sidebar {
  background: #f0f0f0;
  width: 0%;
  padding: 0px;
  transition: all ease 0.5s;
  overflow: hidden;
  opacity: 0;
}
.calendar-filter-sidebar.active, .calendar-task-sidebar.active {
  width: 25%;
  display: inline-block;
  padding: 5px;
  opacity: 1;
}
@media screen and (max-width: 1000px) {
  .calendar-filter-sidebar, .calendar-task-sidebar {
    width: 100%;
    height: 0;
  }
  .calendar-filter-sidebar.active, .calendar-task-sidebar.active {
    width: 100%;
    display: block;
    height: auto;
  }
}

@media screen and (max-width: 1000px) {
  div.calendar-task-sidebar {
    position: absolute;
    top: 0;
    z-index: 10;
  }

  .calendar-filter-sidebar, .calendar-task-sidebar {
    width: 100%;
    height: 0;
  }
  .calendar-filter-sidebar.active, .calendar-task-sidebar.active {
    width: 100%;
    display: block;
    height: auto;
  }
}
.estimateTaskTemplate {
  width: 100%;
  background: #66c825;
  padding: 8px;
  cursor: pointer;
  color: #ffffff;
}
.estimateTaskTemplate .fa-plus {
  float: right;
}

.calendar-container {
  width: 75%;
}
@media screen and (max-width: 1000px) {
  .calendar-container {
    width: 100%;
  }
}

@media screen and (max-width: 1440px) {
  .sticky-stats {
    max-width: 1200px !important;
  }
}
.sticky-stats {
  position: fixed;
  margin: 0 auto;
  width: 85%;
  top: 70px;
  z-index: 999;
}
.sticky-stats + div {
  transition: margin ease-in-out 0.5s;
}
.sticky-stats .stats-wrapper {
  display: none;
  background-color: #282828;
  max-height: 80vh;
  overflow-y: scroll;
}
.sticky-stats .stats-wrapper .stats-content {
  width: 70%;
  margin: 0 auto;
  padding: 30px 0 10px;
  color: #ffffff;
}
.sticky-stats .stats-wrapper .stats-content .stat-heading {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  text-transform: uppercase;
  height: 2rem;
}
.sticky-stats .stats-wrapper .stats-content .stat-white, .sticky-stats .stats-wrapper .stats-content .stat-red, .sticky-stats .stats-wrapper .stats-content .stat-amber, .sticky-stats .stats-wrapper .stats-content .stat-green {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 400;
}
.sticky-stats .stats-wrapper .stats-content .stats-element {
  padding-bottom: 2rem !important;
}
.sticky-stats .stats-wrapper .stats-content .stat-green {
  color: #66c825;
}
.sticky-stats .stats-wrapper .stats-content .stat-amber {
  color: #fd9603;
}
.sticky-stats .stats-wrapper .stats-content .stat-red {
  color: #e92727;
}
@media screen and (max-width: 1700px) {
  .sticky-stats {
    width: 100%;
  }
  .sticky-stats .fifth {
    width: 33.33%;
  }
  .sticky-stats .stat-white, .sticky-stats .stats-wrapper .stats-content .stat-green, .sticky-stats .stats-wrapper .stats-content .stat-amber, .sticky-stats .stats-wrapper .stats-content .stat-red {
    font-size: 15px !important;
  }
}
@media screen and (max-width: 736px) {
  .sticky-stats {
    width: 100%;
  }
  .sticky-stats .fifth {
    width: 50%;
  }
}
@media screen and (max-width: 414px) {
  .sticky-stats {
    width: 100%;
  }
  .sticky-stats .fifth {
    width: 100%;
  }
}
@media (max-width: 375px) {
  .sticky-stats {
    top: 50px;
  }
}

.sticky-padding {
  margin-top: 190px;
}

.stats-toggle {
  position: relative;
  display: block;
  height: 36px;
  width: 190px;
  margin: 0 auto;
  background-color: #282828;
  color: #ffffff;
  text-transform: uppercase;
  cursor: pointer;
}
.stats-toggle span {
  display: block;
  padding: 10px;
  font-size: 16px;
  text-align: center;
  letter-spacing: 1px;
}
.stats-toggle span i {
  display: inline-block;
  padding-right: 8px;
}
.stats-toggle:before {
  content: "";
  position: absolute;
  top: 0;
  left: -36px;
  height: 0;
  width: 0;
  border-top: 36px solid #282828;
  border-left: 36px solid transparent;
}
.stats-toggle:after {
  content: "";
  position: absolute;
  right: -36px;
  top: 0;
  height: 0;
  width: 0;
  border-top: 36px solid #282828;
  border-right: 36px solid transparent;
}

.calendar-container .calendar-filter {
  background-color: #f0f0f0;
  border-top: 1px solid #e2e2e2;
  border-left: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
  height: 100%;
  min-height: 800px;
}
.calendar-container .calendar-filter .tab {
  padding: 20px;
  border-bottom: 1px solid #e2e2e2;
}
.calendar-container .calendar-filter .tab h2 {
  display: inline;
}
.calendar-container .calendar-filter .tab i {
  float: right;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  margin-top: 2px;
}
.calendar-container .calendar-filter .tab i.rotation {
  transform: rotate(180deg);
}
.calendar-container .calendar-filter .tab:last-child {
  border: none;
}
.calendar-container .calendar-filter .tab .tab-toggle {
  display: none;
  max-height: 500px;
  overflow: scroll;
}
.calendar-container .calendar-filter .tab .tab-toggle.active {
  display: block;
}
.calendar-container .calendar-filter .tab ul {
  margin-top: 20px;
}
.calendar-container .calendar-filter .tab ul li {
  font-size: 12px;
  display: block;
  margin: 6px 0;
  clear: both;
  font-weight: 100;
  clear: left;
}
.calendar-container .calendar-filter .tab ul li label {
  margin: 0 0 0 24px;
  font-weight: normal;
}
.calendar-container .calendar-filter .tab ul li input[type=checkbox] {
  float: left;
  margin: -2px 0 0 -24px;
}
.calendar-container .three-quarter {
  border: 1px solid #e2e2e2;
  padding: 20px;
}
.calendar-container .three-quarter .center-date {
  text-align: center;
}
.calendar-container .three-quarter .center-date h3 {
  display: inline-block;
  font-size: 14px;
  margin: 0 10px;
  font-weight: 400;
}
.calendar-container .three-quarter .center-date i {
  cursor: pointer;
}
.calendar-container .three-quarter .cal-view-control {
  float: right;
  position: absolute;
  right: 0;
  top: 0;
}
.calendar-container .three-quarter .cal-view-control i {
  display: inline;
  font-size: 10px;
  margin-right: 4px;
}
.calendar-container .three-quarter .cal-view-control p {
  display: inline;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
}
.calendar-container .three-quarter .full-width:nth-child(1) {
  margin-bottom: 30px;
}
.calendar-container .month-calendar {
  width: 100%;
  height: auto;
  float: left;
}
.calendar-container .month-calendar .grid {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border: 1px solid #e2e2e2;
}
.calendar-container .month-calendar .grid span {
  width: 14.28%;
  border-right: 1px solid #e2e2e2;
  display: none;
  height: 100%;
  float: left;
}
.calendar-container .month-calendar .grid span:nth-child(1) {
  left: 14%;
  border-left: 1px solid #e2e2e2;
}
.calendar-container .month-calendar .grid span:nth-child(2) {
  left: 24%;
}
.calendar-container .month-calendar .grid span:nth-child(3) {
  left: 38%;
}
.calendar-container .month-calendar .grid span:nth-child(4) {
  left: 52%;
}
.calendar-container .month-calendar .grid span:nth-child(5) {
  left: 66%;
}
.calendar-container .month-calendar .grid span:nth-child(6) {
  left: 80%;
}
.calendar-container .month-calendar .grid span:nth-child(7) {
  left: 94%;
}
.calendar-container .month-calendar table {
  width: 100%;
}
.calendar-container .month-calendar table.unique-table thead tr {
  background-color: #f0f0f0;
}
.calendar-container .month-calendar table.unique-table tr {
  background-color: #ffffff;
  display: table-row;
  border-bottom: 1px solid #e2e2e2;
}
.calendar-container .month-calendar table.unique-table tr:nth-child(even) {
  background-color: #ffffff;
}
.calendar-container .month-calendar table.unique-table tr:last-child {
  border-bottom: none;
}
.calendar-container .month-calendar table.unique-table tr td {
  display: table-cell;
  padding: 0;
}
.calendar-container .month-calendar table.unique-table tr td .cal-note {
  width: 100%;
  padding: 6px;
  font-weight: 400;
}
.calendar-container .month-calendar table.unique-table tr td .cal-note.project {
  border-left: 2px solid #f1e12f;
  background: rgba(241, 225, 47, 0.7);
}
.calendar-container .month-calendar table.unique-table tr td .cal-note.meeting {
  border-left: 2px solid #e2e2e2;
  background: rgba(226, 226, 226, 0.7);
}
.calendar-container .month-calendar table.unique-table tr td .cal-note.meeting small {
  float: right;
  font-weight: 100;
  margin-top: 2px;
}
.calendar-container .month-calendar table.unique-table tr.hoverable:hover {
  background-color: #d7d7d7;
}
.calendar-container .month-calendar table .each-day {
  height: auto;
  min-height: 150px;
}
.calendar-container .month-calendar table .each-day span {
  padding: 6px;
  display: block;
}

/* Left Sidebar ******************************************************************************
*********************************************************************************************/
.left-sidebar {
  height: 100%;
  max-height: 100vh;
  width: 200px;
  float: left;
  background-color: #ffffff;
  border-right: 1px solid #e2e2e2;
  padding-top: 70px;
  z-index: 9997;
  position: fixed;
  overflow: scroll;
}
.left-sidebar ul li a {
  text-transform: uppercase;
  color: #181818;
  font-size: 12px;
  padding: 30px;
  display: block;
  font-weight: bold;
}
.left-sidebar ul li a:hover {
  background-color: #e2e2e2;
  transition: all 0.3s ease;
}
.left-sidebar ul li.active {
  background-color: #f1e12f;
}

/* Right Sidebar *****************************************************************************
*********************************************************************************************/
.right-sidebar {
  height: 100%;
  height: 100vh;
  width: 325px;
  float: left;
  background-color: #ffffff;
  border-left: 1px solid #e2e2e2;
  padding-top: 70px;
  z-index: 9997;
  position: fixed;
  right: 0;
  top: 0;
}
.right-sidebar .sidebar-section {
  border-top: 2px solid #353535;
}
.right-sidebar .sidebar-header {
  background-color: #181818;
  padding: 15px 10px;
}
.right-sidebar .sidebar-header h4 {
  color: #ffffff;
  margin: 0px;
}
.right-sidebar .sidebar-body {
  padding: 10px;
}
.right-sidebar h4 {
  font-size: 14px;
  margin: 0px;
}
.right-sidebar .calendar .sidebar-body {
  padding: 0;
}
.right-sidebar .calendar .calendar-controls {
  text-align: center;
  padding: 8% 4% 4% 4%;
}
.right-sidebar .calendar .calendar-controls h2 {
  display: inline-block;
  margin: 0 10px;
  font-weight: bold;
}
.right-sidebar .calendar .calendar-controls i {
  display: inline-block;
  cursor: pointer;
}
.right-sidebar .calendar table td {
  padding: 5px;
}
.right-sidebar ul li {
  padding: 2%;
  clear: both;
}
.right-sidebar ul li:first-of-type {
  padding: 4% 2% 2%;
}
.right-sidebar ul li:last-of-type {
  padding: 2% 2% 4%;
}
.right-sidebar ul li a {
  text-decoration: underline;
}
.right-sidebar .task-list ul li {
  list-style: disc;
  list-style-position: inside;
}
.right-sidebar .schedule-list ul li span {
  font-size: 12px;
  color: #a9a9a9;
}
.right-sidebar table tr {
  background-color: #ffffff;
}
.right-sidebar table tr:nth-child(even) {
  background-color: #ffffff;
}
.right-sidebar .help-section #help-toggle:hover {
  cursor: pointer;
}
.right-sidebar .help-section #help-toggle .fa {
  position: absolute;
  right: 10px;
  top: 11px;
  color: #ffffff;
  font-size: 20px;
}
.right-sidebar .help-section a {
  color: #282828;
}
.right-sidebar .help-section #help-body li {
  margin-bottom: 0.5rem;
}
.right-sidebar .help-section #help-body li:last-child {
  margin-bottom: 0;
}
.right-sidebar .help-section #help-body a {
  text-decoration: none;
  color: #00b0ea;
}
.right-sidebar .help-section #help-body p {
  color: #a9a9a9;
}
.right-sidebar .help-section #help-body .fa {
  font-size: 17px;
  margin-right: 10px;
  width: 1rem;
}

.inner-sidebar {
  border-left: 1px solid #e2e2e2;
}

/* Confirmation Box ******************************************************************************
*********************************************************************************************/
.confirm-background, .confirm-foreground {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 997;
}

.confirm-container {
  display: none;
  position: fixed;
  z-index: 9998;
}

.confirm-background {
  background: #000;
  opacity: 0.8;
}

.confirm-foreground {
  background: #ffffff;
  width: 500px;
  max-width: 92%;
  margin: 20% auto;
  bottom: auto;
  padding: 25px;
}
.confirm-foreground button {
  margin: 5px;
  float: right;
}

/* Main Content ******************************************************************************
*********************************************************************************************/
.main-content {
  width: 100%;
  float: left;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 70px 325px 58px 200px;
  min-height: 100vh;
}
@media (max-width: 362px) {
  .main-content {
    padding-top: 50px;
  }
}

.main-box {
  background-color: #ffffff;
  border: 1px solid #f0f0f0;
  padding: 18px;
  margin-bottom: 20px;
}
@media all and (max-width: 375px) {
  .main-box {
    padding: 10px 5px;
  }
}
.main-box .container {
  width: 100%;
}
.main-box.Dashboard {
  padding: 0;
  border: none;
  background: none;
}
.main-box.Dashboard .container .module-container {
  border: 1px solid #e2e2e2;
  background-color: #ffffff;
  margin-bottom: 20px;
  padding: 0;
}
.main-box.Dashboard .container .module-container .module {
  border: none;
  padding: 20px;
}
.main-box.Dashboard .container .module-container .module h2 {
  margin-bottom: 20px;
}
@media all and (max-width: 1023px) {
  .main-box.Dashboard .container .module-container {
    width: 100%;
  }
}
.main-box.Dashboard .half {
  width: 49.5%;
  float: left;
  margin-right: 1%;
}
.main-box.Dashboard .half:nth-child(2) {
  margin-right: 0;
}
.main-box.Dashboard .third {
  width: 32.66%;
  float: left;
  margin-right: 1%;
}
.main-box.Dashboard .third:nth-child(3) {
  margin-right: 0;
}
.main-box.Projects {
  padding: 0;
  border: none;
  background: none;
  width: 100%;
}
.main-box.Projects .row:nth-child(1), .main-box.Projects .hr-row:nth-child(1) {
  padding: 0 10px;
}

.sub-nav {
  margin-bottom: 25px;
  float: left;
  display: inline-block;
}
.sub-nav li {
  text-transform: uppercase;
  display: inline-block;
  font-weight: bold;
}
.sub-nav li:after {
  content: "|";
  margin: 0 10px;
  display: inline;
  color: #e2e2e2;
  font-weight: 100;
}
.sub-nav li:first-child {
  padding-left: 0;
}
.sub-nav li:last-child {
  border-right: none;
}
.sub-nav li:last-child:after {
  display: none;
}
.sub-nav li a {
  color: #181818;
  display: inline;
}
.sub-nav li a:hover {
  color: #181818;
}
.sub-nav li a.active {
  text-decoration: underline;
  color: #181818;
}
@media all and (max-width: 900px) {
  .sub-nav li:after {
    display: none;
  }
  .sub-nav li a {
    display: block;
    padding: 10px;
    background: #282828;
    color: #ffffff;
    border-radius: 2px;
    margin: 2px 1px;
    font-weight: normal;
    font-size: 80%;
  }
  .sub-nav li a.active {
    color: #f1e12f;
    text-decoration: none;
  }
}

.project-status-container {
  display: inline-block;
  float: right;
  margin-top: -10px;
}
.project-status-container label, .project-status-container select, .project-status-container button {
  display: inline-block;
  width: auto;
}
.project-status-container button {
  padding: 8px;
}

.title-row, .error-title-row {
  padding: 20px 18px;
}
.title-row h2, .error-title-row h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 0px;
}
@media all and (max-width: 768px) {
  .title-row, .error-title-row {
    text-align: center;
  }
}

.error-title-row h2 {
  font-size: 72px;
}

@media screen and (max-width: 1700px) {
  header {
    position: fixed;
  }

  .right-sidebar, .left-sidebar {
    position: fixed;
    z-index: 10;
    transition: all 0.5s ease;
    height: 100vh;
    padding-top: 70px;
    overflow: auto;
  }

  .right-sidebar {
    right: -100%;
  }

  .left-sidebar {
    left: -100%;
  }

  .main-content {
    width: 100%;
    height: auto;
    overflow: auto;
    margin: 0;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 1200px;
    margin: auto;
    float: none;
  }
}
footer {
  padding: 18px;
  font-size: 12px;
  font-weight: lighter;
  color: #a9a9a9;
  float: left;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media all and (max-width: 520px) {
  footer .half {
    width: 100%;
    text-align: center;
  }
  footer .align-right {
    text-align: center;
  }
}

/* Tables ************************************************************************************
*********************************************************************************************/
table {
  width: 100%;
  font-size: 12px;
}
table thead, table tbody, table tfoot {
  width: 100%;
}
table thead {
  border-bottom: 1px solid #f0f0f0;
}
table tr.clickable:hover {
  background: #a9a9a9;
}
table tr:nth-child(even) {
  background: #f0f0f0;
}
table tr td {
  font-weight: 100;
  padding: 15px 5px;
  vertical-align: middle;
}
table tr th {
  text-align: left;
  font-weight: bold;
  text-transform: uppercase;
  padding: 15px 5px;
}
table tfoot tr {
  background: #f1e12f;
}
table tfoot tr td {
  font-weight: bold;
}

.table-links {
  text-align: right;
}
.table-links form {
  display: inline-block;
  width: auto;
  font-size: inherit;
  float: none;
}
.table-links a, .table-links button {
  display: inline-block;
  margin: 1px 6px;
  font-weight: 400;
  text-transform: uppercase;
  font-size: inherit;
  font-family: inherit;
}

@media all and (max-width: 768px) {
  .responsive-table {
    width: 100%;
    display: block;
  }
  .responsive-table thead, .responsive-table tbody, .responsive-table tfoot {
    float: left;
  }
  .responsive-table thead {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .responsive-table tr {
    width: 100%;
    display: block;
    border-bottom: 2px #a9a9a9 solid;
    padding: 16px 0 6px;
  }
  .responsive-table tr:last-child {
    margin-bottom: 10px;
  }
  .responsive-table tr td {
    position: relative;
    display: block;
    min-height: 32px;
    padding: 5px;
    padding-left: 50%;
  }
  .responsive-table tr td::before {
    content: attr(data-title) "";
    position: absolute;
    left: 5px;
    width: 45%;
    padding-right: 10px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: left;
  }
  .responsive-table .table-links {
    padding-left: 5px;
    clear: both;
    text-align: center;
  }
  .responsive-table .table-links::before {
    display: none;
  }
  .responsive-table .table-links a, .responsive-table .table-links form {
    display: inline-block;
  }
  .responsive-table .text-right, .responsive-table .text-center {
    text-align: left;
  }
}
@media all and (max-width: 375px) {
  .responsive-table tr {
    width: 100%;
    display: block;
  }
  .responsive-table td {
    width: 100%;
    display: block;
  }
  .responsive-table td::before {
    display: block;
    width: 100%;
  }
}
/* Form **************************************************************************************
*********************************************************************************************/
form .row, form .hr-row {
  margin-bottom: 20px;
}

input, select, textarea, .scroll-list, .risk-list, .fake-input {
  border: 1px solid #e2e2e2;
  width: 100%;
  padding: 10px;
  border-radius: 2px;
  font-family: inherit;
}
input:active, input:focus, select:active, select:focus, textarea:active, textarea:focus, .scroll-list:active, .scroll-list:focus, .risk-list:active, .risk-list:focus, .fake-input:active, .fake-input:focus {
  outline: none;
}
input[type=checkbox], input[type=radio], select[type=checkbox], select[type=radio], textarea[type=checkbox], textarea[type=radio], .scroll-list[type=checkbox], .scroll-list[type=radio], .risk-list[type=checkbox], .risk-list[type=radio], .fake-input[type=checkbox], .fake-input[type=radio] {
  width: auto;
  display: inline-block;
}
input[type=file], select[type=file], textarea[type=file], .scroll-list[type=file], .risk-list[type=file], .fake-input[type=file] {
  width: auto;
}
input.invalid, select.invalid, textarea.invalid, .scroll-list.invalid, .risk-list.invalid, .fake-input.invalid {
  border-color: #e92727;
}

.fake-input {
  height: 2.5em;
  display: inline-block;
}

input.autofill {
  background: url("../img/select.png") center right no-repeat #fff;
  cursor: pointer;
}

.scroll-list, .risk-list {
  min-height: 2rem;
  background: #ffffff;
}

.estimateTasks {
  margin-top: 10px;
}
.estimateTasks .scroll-list {
  min-height: 8rem;
}

.long-scroll-list {
  min-height: 9rem;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("../img/select.png") center right no-repeat #fff;
  cursor: pointer;
  padding-right: 20px;
}

.datepicker, .datetimepicker {
  background: url("../img/calendar.png") center right no-repeat #fff;
  cursor: pointer;
}

input.percentage {
  width: auto;
  max-width: 100%;
  padding-right: 22px;
  background: url("../img/percentage.png") center right no-repeat #fff;
}

input[type=submit] {
  border: none;
  width: auto;
  margin-top: 1%;
}

input[type=checkbox], input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 16px;
  width: 16px;
  display: inline-block;
  vertical-align: middle;
  background-image: url("/img/checkbox.png");
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}
input[type=checkbox]:hover, input[type=radio]:hover {
  background-position: top center;
}
input[type=checkbox]:checked, input[type=radio]:checked {
  background-position: center center;
}
input[type=checkbox][disabled], input[type=radio][disabled] {
  background: #f0f0f0;
  cursor: not-allowed;
}

button {
  border: none;
  display: inline;
  background: none;
  color: inherit;
  outline: none;
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
}

.button, .request-tab {
  padding: 10px;
  margin: 2px;
  display: inline-block;
  width: auto;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
  border: none;
  cursor: pointer;
  text-align: center;
  line-height: normal;
  border-radius: 2px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  background-color: #66c825;
  transition: all linear 0.1s;
}
.button input, .request-tab input {
  display: none;
}
.button:hover, .request-tab:hover {
  background-color: #72d82e;
}
.button:active, .request-tab:active {
  background-color: #57aa1f;
}
@media all and (max-width: 375px) {
  .button, .request-tab {
    min-width: 48%;
    padding: 15px;
  }
}
.button.button-large, .button-large.request-tab {
  font-size: 16px;
  padding: 15px 40px;
}
.button.button-full, .button-full.request-tab {
  width: 100%;
}
.button.button-black, .button-black.request-tab {
  background-color: #181818;
  transition: all linear 0.1s;
}
.button.button-black:hover, .button-black.request-tab:hover {
  background-color: #252525;
}
.button.button-black:active, .button-black.request-tab:active {
  background-color: #060606;
}
.button.button-grey, .button-grey.request-tab {
  background-color: #e2e2e2;
  transition: all linear 0.1s;
  color: #a9a9a9;
}
.button.button-grey:hover, .button-grey.request-tab:hover {
  background-color: #efefef;
}
.button.button-grey:active, .button-grey.request-tab:active {
  background-color: #d0d0d0;
}
.button.button-red, .button-red.request-tab {
  background-color: #e92727;
  transition: all linear 0.1s;
}
.button.button-red:hover, .button-red.request-tab:hover {
  background-color: #eb3e3e;
}
.button.button-red:active, .button-red.request-tab:active {
  background-color: #d61616;
}
.button.button-red .fa, .button-red.request-tab .fa {
  color: #ffffff !important;
}
.button.button-yellow, .button-yellow.request-tab {
  background-color: #f1e12f;
  transition: all linear 0.1s;
  color: #181818;
}
.button.button-yellow:hover, .button-yellow.request-tab:hover {
  background-color: #f3e447;
}
.button.button-yellow:active, .button-yellow.request-tab:active {
  background-color: #ecda10;
}
.button.button-blue, .button-blue.request-tab {
  background-color: #00b0ea;
  transition: all linear 0.1s;
}
.button.button-blue:hover, .button-blue.request-tab:hover {
  background-color: #05c1ff;
}
.button.button-blue:active, .button-blue.request-tab:active {
  background-color: #0095c6;
}
.button.button-small, .button-small.request-tab {
  padding: 7px;
}
.button.button-full, .button-full.request-tab {
  width: 100%;
}
.button.upload-button, .upload-button.request-tab {
  background: #00b0ea;
}
.button.upload-button input, .upload-button.request-tab input {
  display: none;
}
.button[disabled=disabled], [disabled=disabled].request-tab {
  background: #e2e2e2;
  color: #a9a9a9;
}

.pointer-hover {
  cursor: pointer;
}

.loading {
  display: block;
  position: absolute;
  float: left;
  width: 100%;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: url("/img/ajax-loader.gif") no-repeat center center;
  background-size: auto;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 99;
}

i.loading {
  height: 2rem;
  width: 2rem;
  margin-bottom: -0.5rem;
  display: inline-block;
  position: relative;
  float: none;
  background-size: 100%;
}

.input-loading {
  background: url("/img/ajax-loader.gif") no-repeat center right;
  background-size: auto 90%;
  background-repeat: no-repeat;
}

label {
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  margin: 5px 0px;
}
label input[type=file] {
  display: none;
}

.checkbox-label {
  text-transform: none;
  font-weight: normal;
}
.checkbox-label:hover {
  cursor: pointer;
}
.checkbox-label:hover input[type=checkbox] {
  background-position: top center;
}

.no-label .button, .no-label .request-tab {
  margin: -1px 1px 6px 1px;
  font-size: 12px;
}
@media all and (min-width: 375px) {
  .no-label:before {
    content: "";
    display: block;
    margin: 5px 0px;
    height: 12px;
  }
}

.error {
  color: #e92727;
  font-size: 11px;
  margin: 2px;
}

.location-error {
  display: none;
}

.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.fake-disabled {
  cursor: not-allowed;
  -webkit-appearance: none;
  background: none;
  color: #181818;
  opacity: 1;
}

label.required:after {
  content: "*";
  font-weight: 100;
  font-size: 16px;
  margin-left: 4px;
  color: #e92727;
  display: inline-block;
  position: absolute;
  top: 6px;
}

/* Login ***********************************************************************************
*********************************************************************************************/
.auth-background {
  height: 100%;
  height: 100vh;
  width: 100%;
  background-image: url("/img/login.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}
.auth-background .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #181818;
  opacity: 0.85;
}
.auth-background .button, .auth-background .request-tab {
  font-weight: bold;
  font-size: 1rem;
}
.auth-background label, .auth-background a {
  font-weight: normal;
  color: inherit;
}
.auth-background a {
  text-decoration: underline;
  margin: 5px 0;
  display: block;
  float: left;
  width: 100%;
  text-align: center;
}
.auth-background .row, .auth-background .hr-row {
  margin-bottom: 2px;
}
.auth-background .auth-box {
  max-width: 300px;
  margin: 0 auto;
  color: #ffffff;
}
.auth-background .auth-box img {
  display: block;
  margin: 0 auto 30px;
}
.auth-background .auth-box input[type=checkbox] {
  margin-right: 1em;
}
.auth-background .auth-box label {
  position: relative;
  text-transform: none;
  font-size: 14px;
}
.auth-background .auth-box .button-yellow {
  color: #181818;
  text-decoration: none;
}
.auth-background .auth-box .sign-up-button {
  margin-top: 20px;
}
.auth-background .auth-box .message-area, .auth-background .auth-box .warning-area, .auth-background .auth-box .large-error, .auth-background .auth-box .error-area {
  margin-bottom: 20px;
}
.auth-background .auth-box .error {
  margin-top: 8px;
  color: #e92727;
}

/* Stock ***********************************************************************************
*********************************************************************************************/
.stock-adjustment-location-new {
  position: absolute;
}

/* Projects ***********************************************************************************
*********************************************************************************************/
.with-stats {
  padding-top: 40px;
}

.project-list .fifth {
  padding: 15px;
}

.create-project-button {
  position: relative;
  display: block;
  text-align: center;
  width: 100%;
  color: #a9a9a9;
  border-color: #e2e2e2;
  border: 1px solid #e2e2e2;
  height: 330px;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all ease-in-out 0.2s;
  background: #f0f0f0;
}
.create-project-button .fa-plus {
  display: block;
  font-size: 32px;
}
.create-project-button:hover {
  background: #ffffff;
  color: #181818;
}

.project-box {
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  padding: 15px;
  background-position: top left;
  background-repeat: no-repeat;
  transition: all ease-in-out 0.3s;
}
.project-box .image-container {
  height: 130px;
  margin-bottom: 10px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.project-box p {
  font-weight: 100;
  margin: 3px 0px;
}
.project-box h3 {
  margin: 1px;
  font-size: 20px;
}
.project-box .ref {
  font-size: 18px;
  margin-bottom: 30px;
}
.project-box.full-project:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0px;
  height: 0px;
  border-top: solid 30px #00b0ea;
  border-left: solid 30px #00b0ea;
  border-right: solid 30px transparent;
  border-bottom: solid 30px transparent;
}
.project-box.quick-project:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0px;
  height: 0px;
  border-top: solid 30px #66c825;
  border-left: solid 30px #66c825;
  border-right: solid 30px transparent;
  border-bottom: solid 30px transparent;
}
.project-box.unsuccessful-project {
  opacity: 0.5;
}
.project-box.unsuccessful-project:hover {
  opacity: 1;
}

@media (max-width: 1650px) {
  .project-list .fifth {
    width: 33.33%;
  }
}
@media (max-width: 790px) {
  .project-list .fifth {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .project-list .fifth {
    width: 100%;
  }
}

.projects-cost-table tr td, .projects-cost-table tr th {
  padding: 2px;
}
.projects-cost-table tbody td {
  font-size: 24px;
  font-weight: normal;
}

.project-thumb-small {
  width: auto;
  max-width: 100%;
  max-height: 60px;
}

#clock-in-timer {
  padding: 10px 0;
  font-size: 20px;
}

canvas.signature {
  background: url("/img/signature.png");
}

canvas.signature::hover, canvas.signature::active {
  border: 2px solid #e2e2e2;
  cursor: URL("/img/pencil.ico"), crosshair;
}

.signature-table td, .signature-table th {
  vertical-align: middle;
}

img.signature {
  height: 4rem;
}

button.save-estimate-button {
  margin-top: 7em;
}

.terms-wrapper {
  padding: 10px;
  margin: 10px 0px;
  border: 1px solid #e2e2e2;
  font-size: 80%;
}
.terms-wrapper h3 {
  margin: 2px 0px;
}

.schedule-popup-bg, .schedule-popup-container {
  display: none;
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 9;
}

.schedule-popup-bg {
  background-color: #000;
  opacity: 0.3;
}

.schedule-popup-close {
  cursor: pointer;
}

.schedule-popup-container {
  background-color: #fff;
  margin: 10% 25%;
}
.schedule-popup-container .schedule-popup-header {
  background-color: #181818;
  color: #ffffff;
  padding: 5px;
}
.schedule-popup-container .schedule-popup-header h3 {
  margin: 0px;
}
.schedule-popup-container .schedule-popup-header .fa-close {
  color: #e92727;
  font-size: 1.5rem;
}
.schedule-popup-container .schedule-popup-content {
  padding: 20px 10px;
}

.time-input {
  width: 2.2rem;
  display: inline-block;
  text-align: center;
}

.time-sep {
  margin-top: 1.7rem;
  display: inline-block;
}

canvas {
  border: 1px solid #e2e2e2;
  display: block;
  margin-bottom: 10px;
}

/* Outer */
.popup {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.75);
}

/* Inner */
.popup-inner {
  max-width: 700px;
  width: 90%;
  padding: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0px 2px 6px black;
  border-radius: 3px;
  background: #fff;
}

/* Close Button */
.popup-close {
  width: 30px;
  height: 30px;
  padding-top: 4px;
  display: inline-block;
  position: absolute;
  top: 0px;
  right: 0px;
  transition: ease 0.25s all;
  transform: translate(50%, -50%);
  border-radius: 1000px;
  background: rgba(0, 0, 0, 0.8);
  font-family: Arial, Sans-Serif;
  font-size: 20px;
  text-align: center;
  line-height: 100%;
  color: #fff;
}

.popup-close:hover {
  transform: translate(50%, -50%) rotate(180deg);
  background: black;
  text-decoration: none;
}

/* Button Delete */
.button-delete {
  width: 30px;
  height: 30px;
  padding-top: 0px;
  display: inline-block;
  position: absolute;
  bottom: 0px;
  right: 0px;
  transition: ease 0.25s all;
  transform: translate(50%, 50%);
  border-radius: 1000px;
  background: rgba(255, 0, 0, 0.8);
  font-family: Arial, Sans-Serif;
  font-size: 20px;
  text-align: center;
  line-height: 100%;
  color: #fff;
}

.button-delete:hover {
  transform: translate(50%, 50%) rotate(180deg);
  background: red;
  text-decoration: none;
}

/* Admin ***********************************************************************************
*********************************************************************************************/
.messages-container .message-list a {
  color: inherit;
}
.messages-container .message-list .message {
  border-bottom: 1px #e2e2e2 solid;
  padding: 8px 0px;
  margin: 0px 5px;
}
.messages-container .message-list .message:hover {
  background: #f0f0f0;
  cursor: pointer;
}
.messages-container .message-list .message .message-data {
  margin-top: 10px;
}
.messages-container .message-list .message .message-date {
  margin-left: 10px;
}
.messages-container .message-list .message .round-profile-small {
  margin: 0px 3px;
}
.messages-container .message-list .message-read {
  font-weight: normal;
}
.messages-container .message-list .message-unread {
  font-weight: bold;
}
.messages-container .message-list .active-message {
  background: #1ec7ff;
  color: #ffffff;
}
.messages-container .subject-title {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.messages-container .content-preview {
  color: #a9a9a9;
  font-weight: normal;
}
.messages-container .two-third {
  padding-left: 20px;
}
.messages-container .message-preview {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  padding: 20px 20px 0;
  max-height: 600px;
  overflow: scroll;
}
.messages-container .message-preview .message-header {
  margin: 0px;
}
.messages-container .message-preview .message-header .row:first-child, .messages-container .message-preview .message-header .hr-row:first-child {
  margin-bottom: 10px;
}
.messages-container .message-preview .message-header .row span, .messages-container .message-preview .message-header .hr-row span {
  font-weight: 100;
  font-size: 12px;
  margin-right: 10px;
}
.messages-container .message-preview .message-header .row span.subject-title, .messages-container .message-preview .message-header .hr-row span.subject-title {
  font-weight: 400;
  margin-right: 0;
}
.messages-container .message-preview .message-header .row span.recipient-name, .messages-container .message-preview .message-header .hr-row span.recipient-name {
  font-weight: 400;
  margin-right: 0;
}
.messages-container .message-preview .message-header .row .message-user, .messages-container .message-preview .message-header .hr-row .message-user {
  margin-right: 10px;
  display: inline;
}
.messages-container .message-preview .message-header .row .message-user:last-child, .messages-container .message-preview .message-header .hr-row .message-user:last-child {
  margin-right: 0;
}
.messages-container .message-preview .message-header .row .message-user .round-profile, .messages-container .message-preview .message-header .hr-row .message-user .round-profile, .messages-container .message-preview .message-header .row .message-user .round-profile-small, .messages-container .message-preview .message-header .hr-row .message-user .round-profile-small, .messages-container .message-preview .message-header .row .message-user .round-profile-large, .messages-container .message-preview .message-header .hr-row .message-user .round-profile-large, .messages-container .message-preview .message-header .row .message-user .round-profile-largest, .messages-container .message-preview .message-header .hr-row .message-user .round-profile-largest {
  width: 30px;
  height: 30px;
}
.messages-container .message-preview .subject-title {
  font-weight: bold;
}
.messages-container .message-preview .message {
  background: #f0f0f0;
  margin: 30px 0px;
}
.messages-container .message-preview .message .message-top {
  position: relative;
  margin: 0px 0px 15px 0px;
}
.messages-container .message-preview .message .message-top .status-bar {
  height: 20px;
  background: #a9a9a9;
}
.messages-container .message-preview .message .message-top .round-profile-large {
  width: 64px;
}
.messages-container .message-preview .message .message-main {
  position: relative;
}
.messages-container .message-preview .message .message-main .message-meta {
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  margin: 20px 0px;
}
.messages-container .message-preview .message .message-main .message-meta h3 {
  font-size: 14px;
  margin-bottom: 0;
}
.messages-container .message-preview .message .message-main .message-content {
  padding: 30px;
  font-weight: 100;
}
.messages-container .message-preview .message .message-main .message-attachment {
  margin-top: 20px;
}
.messages-container .message-preview .message:last-child .status-bar {
  background: #00b0ea;
  color: #ffffff;
}
.messages-container .third.no-top-margin button {
  margin-top: 0;
}

.recipient-name {
  font-weight: bold;
  text-transform: uppercase;
}

/* Dashboard ***********************************************************************************
*********************************************************************************************/
@media all and (max-width: 1750px) {
  .dashboard-container .module-container.half {
    width: 100%;
  }
}
@media all and (max-width: 780px) {
  .dashboard-container .third {
    width: 100%;
  }
}
@media all and (max-width: 780px) {
  .dashboard-container .half {
    width: 100%;
  }
}

.module {
  width: 100%;
  height: auto;
  float: left;
  clear: both;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #a9a9a9;
}
.module h1, .module h2, .module h3, .module h4, .module h5, .module h6 {
  margin: 0px;
}
.module .project-breakdown-table td {
  font-size: 16px;
  font-weight: 100;
}
@media all and (max-width: 768px) {
  .module .project-breakdown-table td {
    font-size: 12px;
  }
}
.module .project-breakdown-table .profit-col {
  color: #66c825;
}
.module .latest-messages-table td {
  /*padding: 10px;*/
}
.module .latest-messages-table .unread td {
  font-weight: bold;
}
.module .latest-messages-table .subject-title {
  text-transform: uppercase;
}
.module .invoice-progress-bars-container .row, .module .invoice-progress-bars-container .hr-row {
  margin-bottom: 10px;
}
.module .invoice-progress-bars-container .row:last-child, .module .invoice-progress-bars-container .hr-row:last-child {
  margin-bottom: 0;
}
.module .invoice-progress-bars-container .row span, .module .invoice-progress-bars-container .hr-row span {
  display: inline-block;
  width: 10%;
  min-width: 4rem;
  text-transform: uppercase;
  font-weight: bold;
}
.module .invoice-progress-bars-container .row progress, .module .invoice-progress-bars-container .hr-row progress {
  display: inline-block;
  width: 80%;
}
.module .billing-table .total {
  background: #66c825;
  color: #ffffff;
}

.note-row {
  padding: 10px;
  margin: 5px;
  border-bottom: 1px solid #e2e2e2;
}
.note-row:last-of-type {
  border: none;
}
.note-row .button, .note-row .request-tab {
  margin-top: 8px;
}

.note-meta {
  margin-right: 5px;
  border-right: 1px solid #e2e2e2;
}

@media (max-width: 763px) {
  .note-meta {
    margin-right: 0;
    border-right: none;
  }
}
/* Contacts ***********************************************************************************
*********************************************************************************************/
.contact-methods-list .icons {
  float: right;
}

.main-box .contact-search {
  margin-bottom: 15px;
}

.account-contacts {
  margin-top: 15px;
}

/* Media ***********************************************************************************
*********************************************************************************************/
.media-wrapper {
  position: relative;
  float: left;
  width: 100%;
  min-height: 520px;
}

.media-container {
  text-align: center;
  border: 1px solid #e2e2e2;
  padding: 5px;
  margin: 5px;
  height: 260px;
}
.media-container .media-bar {
  text-align: right;
  font-size: 18px;
}
.media-container .fa {
  cursor: pointer;
}

.media-thumb, .media-upload-preview {
  max-width: 100%;
  width: 100%;
  height: 200px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.media-module-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
}
.media-module-container .media-module-background {
  position: absolute;
  width: 100%;
  height: 100vh;
  max-height: 100%;
  background: #000;
  opacity: 0.8;
}
.media-module-container .media-module {
  width: 80%;
  margin: 4% auto;
  height: 80vh;
  background: #fff;
  padding: 10px;
  overflow: auto;
}
.media-module-container .media-wrapper {
  overflow-y: scroll;
}

/* Admin ***********************************************************************************
*********************************************************************************************/
.package-pie {
  display: inline-block;
  height: 92px;
  width: 92px;
  margin-right: 30px;
  background: url("/img/package.png");
}
.package-pie strong {
  padding: 40px 35px;
  display: block;
}

.plan > label {
  border: 1px solid #e2e2e2;
  float: left;
  width: 100%;
  padding: 5px;
}
.plan h5 {
  margin: 2px 0px;
}
.plan .plan-checkbox {
  margin-top: 10px;
}
.plan .plan-number {
  width: 3rem;
}
.plan.cancel-plan label {
  border-color: #e92727;
}
.plan.cancel-plan h5 {
  color: #e92727;
}

.trial-header {
  padding: 6px;
  color: #ffffff;
  background-color: #fd9603;
  text-align: center;
  position: fixed;
  bottom: 0px;
  width: 100%;
  left: 0px;
  z-index: 9999;
  opacity: 0.8;
}
.trial-header p {
  margin: 0px;
}
.trial-header a {
  font-size: inherit;
  color: #181818;
  text-decoration: underline;
}

.autofill-container {
  display: none;
  position: absolute;
  background: #fff;
  border: 1px solid #e2e2e2;
  max-height: 150px;
  overflow-y: scroll;
  z-index: 9999;
  left: 0px;
  right: 0px;
  margin: 0 5px;
}
.autofill-container .autofill-item {
  display: block;
  padding: 6px;
  position: relative;
}
.autofill-container .autofill-item:hover {
  cursor: pointer;
  background: #e2e2e2;
}
.autofill-container .autofill-loading {
  display: block;
  padding: 6px;
  position: relative;
  background-image: url("../img/ajax-loader.gif");
  background-position: center right;
  background-size: auto 90%;
  background-repeat: no-repeat;
  color: #a9a9a9;
}

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #f1e12f;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 5px;
}

.equipment-list-image {
  max-width: 30px;
  max-height: 30px;
  vertical-align: middle;
}

.invoice-builder .invoice-row-template {
  display: none;
}
.invoice-builder input[disabled=disabled] {
  opacity: 1;
  background-color: transparent;
  border: none;
}

div.remove-accreditation-container a.remove-accreditation {
  position: relative;
  top: 32px;
  cursor: pointer;
}

.fc {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #e2e2e2;
}
.fc h2 {
  font-size: 1.2em;
}

#project-calendar .project {
  background-color: #a9a9a9;
  color: #ffffff;
}
#project-calendar .project-unsuccessful {
  opacity: 0.4;
}
#project-calendar .current-project {
  background-color: #00b0ea;
  border-color: #00b0ea;
}

.calendar .project {
  background-color: #00b0ea;
  border-color: #00b0ea;
}
.calendar .completedTask:after {
  content: "";
  font-family: FontAwesome;
  position: absolute;
  right: 5px;
  bottom: 0px;
  color: #ffffff;
}

.slide-in-out {
  transition: all 0.2s ease;
}

.slide-in-out.ng-enter {
  opacity: 0;
  transform: translateX(50%);
}

.slide-in-out.ng-enter-activation {
  opacity: 1;
  transform: translateX(0%);
}

.slide-in-out.ng-leave {
  opacity: 1;
  transform: translateX(0%);
}

.slide-in-out.ng-leave.ng-leave-active {
  opacity: 0;
  transform: translateX(50%);
}

.fa-circle.grey {
  color: #e2e2e2;
}
.fa-circle.green {
  color: #66c825;
}
.fa-circle.orange {
  color: #fd9603;
}
.fa-circle.red {
  color: #e92727;
}

.terms-box {
  background-color: #f0f0f0;
  height: 30%;
  height: 70vh;
  overflow-y: scroll;
  border: 1px solid #a9a9a9;
  padding: 5px;
  margin-bottom: 10px;
}
.terms-box ul {
  list-style: disc;
  margin-left: 1em;
}
.terms-box ol {
  list-style-type: decimal;
  margin-left: 1em;
}
.terms-box li, .terms-box p {
  margin-bottom: 0.5em;
}

#footer-image {
  max-width: 100%;
  max-height: 200px;
  display: block;
  clear: both;
}

.billing-left {
  width: 80%;
  float: left;
}

.billing-right {
  width: 20%;
  float: left;
  padding: 0px 5px;
}
.billing-right .cart {
  margin: 3px;
  border: 1px solid #e2e2e2;
  float: left;
  width: 100%;
  background-color: #ffffff;
}
.billing-right .cart .loading {
  display: block;
}
.billing-right .cart h2 {
  background-color: #181818;
  color: #ffffff;
  font-size: 16px;
  padding: 10px;
  margin-top: 0px;
}
.billing-right .cart .row .row, .billing-right .cart .hr-row .row, .billing-right .cart .row .hr-row, .billing-right .cart .hr-row .hr-row {
  padding: 10px;
}
.billing-right .cart .row .row.border-bottom, .billing-right .cart .hr-row .row.border-bottom, .billing-right .cart .row .border-bottom.hr-row, .billing-right .cart .hr-row .border-bottom.hr-row {
  border-bottom: 1px dotted #e2e2e2;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.billing-right .cart .total {
  font-size: 22px;
}
.billing-right .cart .button-large {
  width: 100%;
}
.billing-right .demo-section {
  margin: 3px;
  border: 1px solid #e2e2e2;
  float: left;
  width: 100%;
  padding: 10px;
  background-color: #ffffff;
  text-align: center;
}
.billing-right .demo-section p {
  font-size: 16px;
}

.billing-step {
  margin: 3px;
  border: 1px solid #e2e2e2;
}
.billing-step .plan-box {
  margin-top: 30px;
  padding: 40px 10px;
}
.billing-step .plan-box.half:first-child {
  border-right: 1px solid #e2e2e2;
}
.billing-step .cta-box {
  border: 1px solid #00b0ea;
  background: #008ab7;
  color: #ffffff;
  padding: 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.billing-step .cta-box h3 {
  margin: 0;
  margin-bottom: 8px;
  color: #66c825;
  font-size: 24px;
}
.billing-step .cta-box p {
  font-size: 16px;
}
.billing-step .cta-box p:last-child {
  margin-bottom: 0;
}
.billing-step h2 {
  background-color: #181818;
  padding: 10px;
  color: #ffffff;
  font-size: 16px;
  margin: 0px;
}
.billing-step .price {
  font-size: 28px;
}
.billing-step .user-input {
  font-size: 28px;
  width: auto;
  clear: both;
}
.billing-step .users-button {
  padding: 8px;
}
.billing-step .plan-name {
  margin-bottom: 30px;
}
.billing-step .hint {
  padding: 5px;
  background-color: #00b0ea;
  color: #ffffff;
  font-weight: bold;
  position: absolute;
  top: 36px;
  left: 5px;
  right: 5px;
}
.billing-step .billing-radio {
  width: 100%;
  background-color: #e2e2e2;
  padding: 10px;
  font-size: 14px;
  border-radius: 3px;
  color: #181818;
  cursor: pointer;
  box-sizing: border-box;
  border: solid 2px #ffffff;
}
.billing-step .billing-radio:hover {
  border: solid 2px #00b0ea;
}
.billing-step .billing-radio.selected {
  background-color: #66c825;
  color: #ffffff;
}
.billing-step .billing-radio.selected:hover {
  border: solid 2px #66c825;
}
.billing-step .billing-radio input {
  margin-right: 10px;
}
.billing-step .promo-alert {
  padding: 10px;
  background-color: #181818;
  color: #ffffff;
}
.billing-step .promo-alert span {
  color: #f1e12f;
}

.register-background {
  height: 100%;
  height: 100vh;
  width: 100%;
  background-color: #181818;
  background-image: url("/img/login.jpg");
  background-size: cover;
  background-position: center;
  position: fixed;
}
.register-background .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #181818;
  opacity: 0.85;
}

.register-container {
  margin: 2% 30%;
  width: 40%;
  float: left;
  text-align: center;
}
.register-container label {
  text-align: left;
}
.register-container img {
  display: block;
  margin: 0 auto 30px;
  width: 350px;
}
.register-container .billing-step {
  background-color: #ffffff;
  float: left;
  width: 100%;
}
.register-container .billing-step .body {
  padding: 30px;
}
.register-container .cards-accepted {
  max-width: 100%;
  margin: 0px;
  float: right;
}
.register-container .cards-accepted img {
  float: left;
  width: auto;
  max-height: 50px;
}
.register-container .cards-accepted #siteseal img {
  width: auto;
  margin: 0px;
  margin-top: 10px;
}

#card-errors {
  font-size: 18px;
}

.card-container {
  position: relative;
  height: 400px;
}
.card-container .payment-card, .card-container .payment-card-reverse {
  position: absolute;
  z-index: 10;
  padding: 30px;
  padding-top: 80px;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  display: inline-block;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#3b679e+0,2b88d9+50,207cca+51,7db9e8+100;Blue+Gloss+%232 */
  background: #3b679e;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #3b679e 0%, #2b88d9 50%, #207cca 51%, #7db9e8 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3b679e", endColorstr="#7db9e8", GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  width: 450px;
  max-width: 100%;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}
.card-container .payment-card label, .card-container .payment-card-reverse label {
  font-size: 12px;
  color: #ffffff;
}
.card-container .payment-card input, .card-container .payment-card-reverse input {
  background: none;
  color: #ffffff;
  border: none;
  border-bottom: 1px solid #ffffff;
  text-shadow: 1px 1px #e2e2e2;
  font-size: 18px;
}
.card-container .payment-card .card-number-container, .card-container .payment-card-reverse .card-number-container {
  float: left;
  width: 100%;
}
.card-container .payment-card .card-exp-container, .card-container .payment-card-reverse .card-exp-container {
  margin: 10px 0px;
  float: left;
}
.card-container .payment-card .card-exp-container label, .card-container .payment-card-reverse .card-exp-container label {
  float: left;
  width: 4rem;
  margin-right: 10px;
}
.card-container .payment-card .card-exp-container input, .card-container .payment-card-reverse .card-exp-container input {
  float: left;
  width: 8em;
}
.card-container .payment-card .card-name-container, .card-container .payment-card-reverse .card-name-container {
  width: 100%;
  float: left;
}
.card-container .payment-card-reverse {
  height: 290px;
  top: 100px;
  left: 250px;
  z-index: 5;
}
.card-container .payment-card-reverse .card-black-stripe {
  position: absolute;
  top: 40px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 50px;
  background-color: #181818;
}
.card-container .payment-card-reverse .card-cvc-container {
  float: right;
  width: 100%;
  margin-top: 10px;
}
.card-container .payment-card-reverse .card-cvc-container input {
  background-color: #ffffff;
  color: #181818;
  width: 90%;
  margin: 0 auto;
  text-align: right;
  font-style: italic;
}
.card-container .payment-card-reverse .card-cvc-container label {
  text-align: right;
  width: 90%;
}
.card-container .payment-card-reverse .stripe-logo {
  width: 150px;
  position: absolute;
  bottom: 0px;
  right: 30px;
}
.card-container input.has-error {
  border: 1px solid #e92727;
}
.card-container input.valid:focus {
  border: 1px solid #66c825;
}

.terms-container {
  background-color: #ffffff;
  padding: 10px;
}

.offer-note {
  font-size: 10px;
}

.why-section {
  position: absolute;
  background: #fff;
  width: 22%;
  right: 15px;
  top: 120px;
  border: 1px solid #e2e2e2;
  border-left: none;
  border-right: none;
}
.why-section h2 {
  float: left;
  width: 100%;
  background: none;
  color: #181818;
  padding-bottom: 0px;
}
.why-section p {
  padding: 8px;
  float: left;
}
@media (max-width: 1734px) and (min-width: 1360px) {
  .why-section {
    float: left;
    position: relative;
    width: 100%;
    top: 0px;
    right: 0px;
  }
}
@media (max-width: 918px) {
  .why-section {
    float: left;
    position: relative;
    width: 100%;
    top: 0px;
    right: 0px;
  }
}

@media (max-width: 1360px) {
  .card-container .payment-card, .card-container .payment-card-reverse {
    position: relative;
    top: 0px;
    left: 0px;
    margin-bottom: 10px;
  }
}
@media (max-width: 1250px) {
  .billing-left, .billing-right {
    width: 100%;
    padding: 0px;
  }

  .register-container .cards-accepted {
    float: left;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 590px) {
  .register-container {
    margin: 2% 3%;
    width: 94%;
  }
}
@media (max-width: 480px) {
  .register-container .billing-step .body {
    padding: 8px;
  }
}
.tour-toggle {
  cursor: pointer;
  color: #00b0ea;
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.tour-toggle:after {
  content: "Show Tour Notes";
  font-family: "stevie-sans", sans-serif;
  font-size: 16px;
  display: block;
  float: left;
  margin-top: 4px;
  margin-right: 4px;
}

.help-container {
  margin-top: -20px;
  margin-bottom: 20px;
  z-index: 10;
}

.request-tab {
  transform: rotate(-90deg);
  transform-origin: left top 0;
  white-space: nowrap;
  display: block;
  right: -140px;
  top: 40vh;
  position: fixed;
  z-index: 9999;
  padding: 18px;
  padding-bottom: 25px;
  color: #ffffff;
  transition: all ease 1s;
}
.request-tab a {
  color: inherit;
  text-decoration: none;
}
.request-tab #dismiss-demo {
  margin-left: 10px;
  font-size: 14px;
  color: #3a7215;
}
.request-tab.dismissed {
  right: -300px;
}

img.demo {
  width: 500px;
  max-width: 100%;
  margin: 20px 5px;
  display: block;
}

.month-overview table thead th {
  padding: 10px 5px;
  text-align: center;
}
.month-overview table tr {
  border-bottom: 1px solid #f0f0f0;
}
.month-overview table tr td {
  position: relative;
  border-right: 1px solid #f0f0f0;
  text-align: center;
  height: 2.5rem;
  width: 2rem;
  padding: 0;
}
.month-overview table tr td.additional-date {
  background: #f0f0f0;
  color: #a9a9a9;
}
.month-overview table tr td.current-date {
  background: #f1e12f;
  color: #a9a9a9;
}
.month-overview table tr td.has-tasks:before {
  content: "";
  display: block;
  background: #00b0ea;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  right: 3px;
}

.billing-stats .inline, .billing-stats .full-width, .billing-stats .half, .billing-stats .quarter, .billing-stats .three-quarter, .billing-stats .third, .billing-stats .two-third, .billing-stats .fifth, .billing-stats .two-fifth, .billing-stats .three-fifth, .billing-stats .four-fifth, .billing-stats .eighth, .billing-stats .three-eighth, .billing-stats .five-eighth, .billing-stats .seven-eighth, .billing-stats .sixth, .billing-stats .five-sixth, .billing-stats .calendar-filter-sidebar, .billing-stats .calendar-task-sidebar, .billing-stats .calendar-container {
  margin-right: 1.5em;
}
.billing-stats .inline .stat, .billing-stats .full-width .stat, .billing-stats .half .stat, .billing-stats .quarter .stat, .billing-stats .three-quarter .stat, .billing-stats .third .stat, .billing-stats .two-third .stat, .billing-stats .fifth .stat, .billing-stats .two-fifth .stat, .billing-stats .three-fifth .stat, .billing-stats .four-fifth .stat, .billing-stats .eighth .stat, .billing-stats .three-eighth .stat, .billing-stats .five-eighth .stat, .billing-stats .seven-eighth .stat, .billing-stats .sixth .stat, .billing-stats .five-sixth .stat, .billing-stats .calendar-filter-sidebar .stat, .billing-stats .calendar-task-sidebar .stat, .billing-stats .calendar-container .stat {
  font-size: 28px;
  font-weight: 100;
  color: #282828;
}

.billing-table td:last-child, .billing-table th:last-child {
  text-align: right;
}
.billing-table tfoot tr {
  background-color: #ffffff;
  border-top: 2px solid #e2e2e2;
}
.billing-table tfoot tr:last-child {
  background-color: #f1e12f;
}

.card-field-group input {
  width: auto;
  display: inline-block;
}

div#create-estimate-from-template {
  float: left;
  text-align: right;
}
div#create-estimate-from-template form > * {
  float: right;
}

select#estimate-template-select {
  padding: 10px;
  position: relative;
  top: 2px;
}

div#template-estimate-options {
  display: block;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 10;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
  /* Modal Content/Box */
  /* The Close Button */
}
div#template-estimate-options .modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  /* 15% from the top and centered */
  padding: 20px;
  height: 200px;
  border: 1px solid #888;
  width: 80%;
  /* Could be more or less, depending on screen size */
  position: relative;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
div#template-estimate-options .modal-content span.modal-close {
  postion: absolute;
  top: 5px;
  right: 5px;
}
div#template-estimate-options .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
div#template-estimate-options .close:hover,
div#template-estimate-options .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

div#dialog {
  display: none;
}
div#dialog input, div#dialog select {
  width: 80%;
  display: block;
  margin: 10px 10%;
}
div#dialog button {
  width: 40%;
  margin: 10px 30%;
}

/* The cost categories on the estimate and task pages */
h3.cost-category {
  font-size: 16px;
  margin: 5px 0 10px;
  border-bottom: 1px dotted silver;
  padding-bottom: 3px;
}

/* Purchase order create page */
div.purchase-order-header {
  background-color: #cacac7;
  height: 40px;
  border-radius: 2px;
  margin-bottom: 6px;
}
div.purchase-order-header span.po-form-expander {
  position: absolute;
  bottom: 9px;
  left: 50%;
  font-weight: bold;
}
div.purchase-order-header .rotate-180 {
  transform: rotate(180deg);
}
div.purchase-order-header h4 {
  display: inline-block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
div.purchase-order-header span.button, div.purchase-order-header span.request-tab {
  margin: 0;
  display: inline-block;
  float: right;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding: 7px;
}
div.purchase-order-header span {
  display: inline-block;
  float: right;
  margin-right: 10px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

table.purchase-order-items {
  margin-bottom: 20px;
  border-bottom: 1px dotted #cacac7;
}

table.estimate-tasks-summary {
  text-align: center;
}
table.estimate-tasks-summary th {
  text-align: center;
}

div.purchase-order div.addresses-container div.vendor-address, div.purchase-order div.addresses-container div.delivery-address {
  display: inline-block;
  width: 49%;
}
div.purchase-order textarea {
  height: 120px;
}
div.purchase-order td.total-label {
  font-weight: bold;
  text-align: right;
  font-size: 1rem;
}
div.purchase-order span.label {
  display: block;
  margin: 8px 0;
  font-weight: bold;
}
div.purchase-order span.label:after {
  content: ":";
}
div.purchase-order span.create-purchase-order {
  float: right;
}
div.purchase-order div.purchase-order div.meta-data-container input {
  width: 48%;
}
div.purchase-order div.purchase-order-number-fields input {
  display: inline;
}
div.purchase-order div.purchase-order-number-fields input:nth-child(1) {
  margin-right: 2%;
  width: 20%;
}
div.purchase-order div.purchase-order-number-fields input:nth-child(2) {
  width: 48%;
}

table.purchase-orders-to-generate th, table.purchase-orders-to-generate td, table.purchase-orders-already-generated th, table.purchase-orders-already-generated td {
  text-align: center;
}

table.purchase-orders-to-generate th {
  width: 22%;
}
table.purchase-orders-to-generate th:nth-child(4) {
  width: 34%;
}

td.create-purchase-order {
  text-align: center;
}

/* Purchase order template */
html.purchase-order-template body {
  background: #cccccc;
}
html.purchase-order-template page-container[size=A4] {
  box-sizing: border-box;
  background: white;
  width: 21cm;
  height: 29.7cm;
  display: block;
  margin: 0 auto;
  margin-bottom: 0.5cm;
  box-shadow: 0 0 0.5cm rgba(0, 0, 0, 0.5);
  padding: 3px 10px 40px;
  position: relative;
}
@media print {
  html.purchase-order-template body, html.purchase-order-template page-container[size=A4] {
    margin: 0;
    box-shadow: 0;
  }
}
html.purchase-order-template span.date_label {
  position: absolute;
  top: 75px;
  right: 140px;
}
html.purchase-order-template span.date {
  position: absolute;
  top: 75px;
  right: 10px;
}
html.purchase-order-template span.po_number_label {
  position: absolute;
  top: 95px;
  right: 140px;
}
html.purchase-order-template span.po_number {
  position: absolute;
  top: 95px;
  right: 10px;
}
html.purchase-order-template h1 {
  text-transform: uppercase;
  position: absolute;
  top: 0;
  right: 10px;
}
html.purchase-order-template h2 {
  text-transform: uppercase;
  margin-bottom: 5px;
}
html.purchase-order-template .addresses-container {
  content: "";
  display: table;
  clear: both;
  width: 100%;
}
html.purchase-order-template .addresses-container div {
  width: 300px;
}
html.purchase-order-template .addresses-container div.vendor-address {
  float: left;
}
html.purchase-order-template .addresses-container div.shipping-address {
  float: right;
}
html.purchase-order-template h3 {
  background-color: #e2e2e2;
  -webkit-print-color-adjust: exact;
  color: #fff;
  text-transform: uppercase;
  padding: 3px;
}
html.purchase-order-template table {
  margin-top: 20px;
  width: 100%;
  border-collapse: collapse;
}
html.purchase-order-template table thead {
  background-color: #e2e2e2;
  -webkit-print-color-adjust: exact;
  color: #fff;
  text-transform: uppercase;
  padding: 3px;
}
html.purchase-order-template table td {
  -webkit-print-color-adjust: exact;
}
html.purchase-order-template table.items, html.purchase-order-template table.totals, html.purchase-order-template table.summary {
  border-bottom: 1px solid black;
}
html.purchase-order-template table.items th, html.purchase-order-template table.items td, html.purchase-order-template table.totals th, html.purchase-order-template table.totals td, html.purchase-order-template table.summary th, html.purchase-order-template table.summary td {
  padding: 3px;
}
html.purchase-order-template table.items th, html.purchase-order-template table.totals th, html.purchase-order-template table.summary th {
  border-right: 1px solid #e2e2e2;
}
html.purchase-order-template table.items tr:last-child td, html.purchase-order-template table.totals tr:last-child td, html.purchase-order-template table.summary tr:last-child td {
  border-bottom: 1px solid black;
}
html.purchase-order-template table.items td, html.purchase-order-template table.totals td, html.purchase-order-template table.summary td {
  border-right: 1px solid black;
  border-left: 1px solid black;
  border-bottom: 2px solid white;
}
html.purchase-order-template table.items td.instructions, html.purchase-order-template table.totals td.instructions, html.purchase-order-template table.summary td.instructions {
  background-color: #fbfbfb;
}
html.purchase-order-template table.items colgroup col:last-child, html.purchase-order-template table.totals colgroup col:last-child, html.purchase-order-template table.summary colgroup col:last-child {
  background-color: #eaeaea;
  -webkit-print-color-adjust: exact;
}
html.purchase-order-template table.summary td:nth-child(n+1):nth-child(-n+3) {
  width: 20%;
}
html.purchase-order-template table.items td {
  width: 20%;
}
html.purchase-order-template table.totals {
  margin-top: 0;
  border-bottom: none;
}
html.purchase-order-template table.totals tr {
  border-bottom: none;
}
html.purchase-order-template table.totals tr:last-child td {
  border-bottom: none;
}
html.purchase-order-template table.totals tr td:last-child {
  background-color: white;
  border: 1px solid #d9d9d9;
}
html.purchase-order-template table.totals tr:first-child td:last-child {
  background-color: #eaeaea;
  border: 1px solid #eaeaea;
  border-bottom: 1px solid #d9d9d9;
}
html.purchase-order-template table.totals tr:last-child td:nth-last-child(2) {
  border-top: 2px solid black;
}
html.purchase-order-template table.totals tr:last-child td:last-child {
  background-color: #d9d9d9;
  border: 1px solid #d9d9d9;
  border-top: 2px solid black;
}
html.purchase-order-template table.totals td {
  border: none;
}
html.purchase-order-template table.totals td:nth-child(n+2):nth-child(-n+3) {
  width: 20%;
}
html.purchase-order-template div.footer {
  position: absolute;
  bottom: 20px;
  text-align: center;
  width: 100%;
  margin: auto;
  left: 0;
}
html.purchase-order-template address {
  font-style: normal;
}

.tour-toggle-tooltip {
  font-family: "stevie-sans", sans-serif;
  font-size: 0.9rem;
  border: 0;
  position: absolute;
  color: #f4f4f4;
  top: 0;
  left: -29.5rem;
  background-color: black;
  width: 29rem;
  height: 1.6rem;
  padding: 0.3rem;
  text-align: center;
}

.text-green-1 {
  color: #20c81e !important;
}

.text-green-2 {
  color: #90dc5a !important;
}

.text-yellow-1 {
  color: #ffa203 !important;
}

.text-grey-1 {
  color: #878787 !important;
}

.text-red-1 {
  color: #bf2228 !important;
}

.margin-top-2-0 {
  margin-top: 2rem !important;
}

.margin-top-1-3 {
  margin-top: 1.3rem !important;
}

.margin-bottom-1-3 {
  margin-bottom: 1.3rem !important;
}

.padding-bottom-10-0 {
  padding-bottom: 10rem !important;
}

.margin-1-0 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.tender-categories {
  font-size: 0.8rem !important;
  font-weight: 700 !important;
}

.estimate-hr {
  margin-top: 2.5rem !important;
  margin-bottom: 1.5rem !important;
}

.estimate-users {
  margin-top: 1.2rem;
  margin-left: 1.3rem;
}

.estimate-users ul li {
  display: inline !important;
  margin-left: 0.7rem !important;
}

.estimate-section-header {
  background: #000;
  color: #fff;
  padding: 0.8rem;
  font-size: 1.1rem;
}

.estimate-section-header-link {
  margin-left: 0.8rem;
  font-size: 0.6rem;
}

.estimate-section-header-item {
  font-weight: 100;
  font-size: 0.9rem;
  margin-right: 2rem;
  color: #b1b1b4;
}

.estimate-section-header-price {
  font-weight: 100;
  font-size: 1.2rem;
  color: #fff;
}

.toggle-container {
  padding: 0 1.6rem;
  margin-top: 2rem;
}

.estimate-content-header-price {
  color: #000;
  font-weight: 400;
}

.estimate-section-content-body {
  margin-top: 0.9rem;
}

.estimate-body-table table {
  margin: 0 0.5rem;
}

.estimate-body-table table th {
  font-weight: 700;
  font-size: 0.7rem;
}

.estimate-body-table table td {
  font-weight: 100;
  font-size: 0.7rem;
  color: #494949;
}

.estimate-content-btn {
  width: 100%;
  margin-top: 1rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.estimate-task-btn {
  width: 100% !important;
}

.task-btn-container {
  margin-left: 1.7rem;
  margin-top: 1.2rem;
  margin-right: 1.3rem;
}

.estimate-section hr {
  margin-top: 1.2rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.estimate-section-content-hr {
  margin-left: 2rem !important;
  margin-top: 1.2rem !important;
  width: 100%;
}

.finalise-element-title {
  font-size: 0.65rem;
}

.finalise-element-value {
  font-size: 1.4rem;
  font-weight: 100;
}

.sub-task-title {
  font-size: 1.1rem;
}

#add-new-parent-task {
  height: 15rem;
  position: fixed;
  z-index: 99999;
  display: none;
}

#toggled-new-parent-task {
  height: 4rem;
  position: fixed;
  z-index: 99999;
}

.new-parent-task-content {
  background: #000000;
  padding: 0.5rem 1.5rem 4rem 1.5rem;
}

.new-parent-task-content label {
  color: #fff;
}

.new-parent-task-title {
  padding: 1.5rem;
  background: #000000;
  color: #f3e400;
  font-size: 1.2rem !important;
}

.new-parent-task-btn {
  width: 100% !important;
}

.select2-selection--single {
  height: 35px !important;
  border: 1px solid #e2e2e2 !important;
}

.select2-selection--multiple {
  border: 1px solid #e2e2e2 !important;
}

.subtask-toggle {
  margin-top: 0.5rem !important;
  margin-left: 0.5rem !important;
  overflow: hidden !important;
}

.plant-toggle {
  margin-top: 0.5rem !important;
  margin-left: 0.5rem !important;
  overflow: hidden !important;
}

.material-toggle {
  margin-top: 0.5rem !important;
  margin-left: 0.5rem !important;
  overflow: hidden !important;
}

.material-toggle-overflow-visible {
  overflow: visible !important;
}

.specialist-toggle {
  margin-top: 0.5rem !important;
  margin-left: 0.5rem !important;
  overflow: hidden !important;
}

.labour-toggle {
  margin-top: 0.5rem !important;
  margin-left: 0.5rem !important;
  overflow: hidden !important;
}

.sundry-toggle {
  margin-top: 0.5rem !important;
  margin-left: 0.5rem !important;
  overflow: hidden !important;
}

.input-edit-parent-task {
  width: 9rem;
  height: 1.6rem;
  margin-left: 0.3rem;
  font-size: 0.9rem;
  display: none;
}

.save-parent-task, .cancel-parent-task {
  display: none;
}

.input-edit-subtask {
  width: 12rem;
  height: 1.6rem;
  margin-left: 0.3rem;
  font-size: 0.9rem;
  display: none;
}

.save-subtask, .cancel-subtask {
  display: none;
}

.input-edit-plant-name {
  width: 18rem;
  height: 1.6rem;
  margin-left: 0.3rem;
  font-size: 0.8rem;
  display: none;
}

.input-edit-plant-hours {
  width: 6rem;
  height: 1.6rem;
  margin-left: 0.3rem;
  font-size: 0.8rem;
  display: none;
}

.input-edit-plant-hourly-cost {
  width: 6rem;
  height: 1.6rem;
  margin-left: 0.3rem;
  font-size: 0.8rem;
  display: none;
}

.input-edit-plant-hourly-price {
  width: 6rem;
  height: 1.6rem;
  margin-left: 0.3rem;
  font-size: 0.8rem;
  display: none;
}

.input-edit-plant-description {
  width: 28rem;
  height: 1.6rem;
  margin-left: 0.3rem;
  font-size: 0.8rem;
  display: none;
}

.save-plant, .cancel-plant {
  display: none;
}

.input-edit-material-name {
  width: 18rem;
  height: 1.6rem;
  margin-left: 0.3rem;
  font-size: 0.8rem;
  display: none;
}

.input-edit-material-quantity {
  width: 6rem;
  height: 1.6rem;
  margin-left: 0.3rem;
  font-size: 0.8rem;
  display: none;
}

.input-edit-material-cost-per-unit {
  width: 6rem;
  height: 1.6rem;
  margin-left: 0.3rem;
  font-size: 0.8rem;
  display: none;
}

.input-edit-material-price-per-unit {
  width: 6rem;
  height: 1.6rem;
  margin-left: 0.3rem;
  font-size: 0.8rem;
  display: none;
}

.input-edit-material-supplier-name {
  width: 18rem;
  height: 1.6rem;
  margin-left: 0.3rem;
  font-size: 0.8rem;
  display: none;
}

.save-material, .cancel-material {
  display: none;
}

.select-edit-subcontractor-name {
  width: 100%;
  margin-left: 0.3rem;
  font-size: 0.8rem;
  padding: 5px !important;
  display: none;
}

.input-edit-subcontractor-cost {
  width: 6rem;
  height: 1.6rem;
  margin-left: 0.3rem;
  font-size: 0.8rem;
  display: none;
}

.input-edit-subcontractor-price {
  width: 6rem;
  height: 1.6rem;
  margin-left: 0.3rem;
  font-size: 0.8rem;
  display: none;
}

.input-edit-subcontractor-description {
  width: 28rem;
  height: 1.6rem;
  margin-left: 0.3rem;
  font-size: 0.8rem;
  display: none;
}

.save-subcontractor, .cancel-subcontractor {
  display: none;
}

.input-edit-labour-type {
  width: 18rem;
  height: 1.6rem;
  margin-left: 0.3rem;
  font-size: 0.8rem;
  display: none;
}

.input-edit-labour-hours {
  width: 6rem;
  height: 1.6rem;
  margin-left: 0.3rem;
  font-size: 0.8rem;
  display: none;
}

.input-edit-labour-hourly-cost {
  width: 6rem;
  height: 1.6rem;
  margin-left: 0.3rem;
  font-size: 0.8rem;
  display: none;
}

.input-edit-labour-hourly-price {
  width: 6rem;
  height: 1.6rem;
  margin-left: 0.3rem;
  font-size: 0.8rem;
  display: none;
}

.input-edit-labour-description {
  width: 28rem;
  height: 1.6rem;
  margin-left: 0.3rem;
  font-size: 0.8rem;
  display: none;
}

.save-labour, .cancel-labour {
  display: none;
}

.input-edit-sundry-name {
  width: 18rem;
  height: 1.6rem;
  margin-left: 0.3rem;
  font-size: 0.8rem;
  display: none;
}

.input-edit-sundry-cost {
  width: 6rem;
  height: 1.6rem;
  margin-left: 0.3rem;
  font-size: 0.8rem;
  display: none;
}

.input-edit-sundry-price {
  width: 6rem;
  height: 1.6rem;
  margin-left: 0.3rem;
  font-size: 0.8rem;
  display: none;
}

.save-sundry, .cancel-sundry {
  display: none;
}

.font-size-1-3 {
  font-size: 1.3rem !important;
}

.font-size-1-2 {
  font-size: 1.2rem !important;
}

.font-size-0-9 {
  font-size: 0.9rem !important;
}

.xero-hr {
  margin: 1rem 0;
}

.top-2-8 {
  top: 2.8rem !important;
}

@media (max-width: 420px) {
  .estimate-section-header-link {
    margin-left: 0;
    vertical-align: middle !important;
  }

  .estimate-section-header-container {
    margin-top: 0.5rem;
    float: left;
  }

  .estimate-section-header {
    padding-bottom: 3.2rem;
  }

  .estimate-section-header-item {
    margin-right: 0;
    font-size: 0.8rem;
  }

  .estimate-section-header-price {
    font-size: 0.9rem;
  }

  .parent-toggle-pointer {
    font-size: 1.1rem !important;
    margin-left: 0.5rem;
    color: #f1e12f;
  }

  .parent-task-main-title {
    font-size: 0.9rem;
  }

  .estimate-parent-main-title {
    margin-right: 2rem;
  }

  .subtask-section-header-container {
    margin-top: 0.25rem;
    float: left;
  }

  .sub-task-title {
    font-size: 0.8rem;
  }

  .estimate-subtask-container {
    padding-bottom: 0.8rem;
  }

  .subtask-toggle-pointer {
    font-size: 1rem !important;
    margin-left: 0.5rem;
    color: #de5f08;
  }

  .estimate-body-table table td {
    font-size: 0.7rem;
  }

  #add-new-parent-task {
    top: 300px !important;
  }

  .new-parent-task-content {
    padding: 0.5rem 1.5rem 12rem 1.5rem;
  }
}
@media (max-width: 320px) {
  #add-new-parent-task {
    top: 215px !important;
  }
}
.messages-broadcast {
  font-size: 0.7rem !important;
  font-weight: 700 !important;
}

.remodal-link-btn {
  padding: 0.78rem 1rem !important;
}

.remodal {
  max-width: 780px !important;
}

.remote-estimate-url {
  font-size: 0.8rem;
  font-weight: normal;
  padding: 0.4rem;
  border: 1px solid #eee;
}
