@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap);@charset "UTF-8";

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
}

:root {
  font-size: 16px;
}

body {
  font-family: "Nunito Sans", sans-serif !important;
}

.nowrap {
  white-space: nowrap;
}

.main-template {
  min-height: 100%;
}

.rlm {
  margin: 0 5px;
}

.footer-link {
  margin-left: 5px;
  margin-right: 5px;
  font-size: 11px;
  font-weight: 400;
  text-decoration: none;
  color: #707070;
}

.footer-link:hover {
  text-decoration: underline;
  color: #000000;
}

.fitters-multiselect {
  margin: 15px 0;
}

.fitters-multiselect .multiselect__tags {
  min-height: 40px;
  display: block;
  border-radius: 0px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: "Nunito Sans", sans-serif;
  border: 1px solid #E9E9F0;
}

.multiselect__spinner {
  position: absolute;
  right: 1px;
  top: 1px;
  width: 48px;
  height: 35px;
  background: #fff;
  display: block;
}

.multiselect__spinner:after,
.multiselect__spinner:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  margin: -8px 0 0 -8px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  border: 2px solid transparent;
  border-top-color: #41b883;
  box-shadow: 0 0 0 1px transparent;
}

.multiselect__spinner:before {
  -webkit-animation: spinning 2.4s cubic-bezier(0.41, 0.26, 0.2, 0.62);
          animation: spinning 2.4s cubic-bezier(0.41, 0.26, 0.2, 0.62);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.multiselect__spinner:after {
  -webkit-animation: spinning 2.4s cubic-bezier(0.51, 0.09, 0.21, 0.8);
          animation: spinning 2.4s cubic-bezier(0.51, 0.09, 0.21, 0.8);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.multiselect__loading-enter-active,
.multiselect__loading-leave-active {
  transition: opacity 0.4s ease-in-out;
  opacity: 1;
}

.multiselect__loading-enter,
.multiselect__loading-leave-active {
  opacity: 0;
}

.multiselect,
.multiselect__input,
.multiselect__single {
  font-family: inherit;
  font-size: 16px;
  touch-action: manipulation;
}

.multiselect {
  box-sizing: content-box;
  display: block;
  position: relative;
  width: 100%;
  min-height: 40px;
  text-align: left;
  color: #707070;
  font-size: 14px;
  font-weight: 700;
  font-family: "Nunito Sans", sans-serif;
}

@media (min-width: 260px) and (max-width: 320px) {
  .multiselect {
    width: 95%;
  }
}

.multiselect * {
  box-sizing: border-box;
}

.multiselect:focus {
  outline: none;
}

.multiselect--disabled {
  background: #ededed;
  pointer-events: none;
  opacity: 0.6;
}

.multiselect--active {
  z-index: 50;
}

.multiselect--active:not(.multiselect--above) .multiselect__current,
.multiselect--active:not(.multiselect--above) .multiselect__input,
.multiselect--active:not(.multiselect--above) .multiselect__tags {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.multiselect--active .multiselect__select {
  transform: rotate(180deg);
}

.multiselect--above.multiselect--active .multiselect__current,
.multiselect--above.multiselect--active .multiselect__input,
.multiselect--above.multiselect--active .multiselect__tags {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.multiselect__input,
.multiselect__single {
  position: relative;
  display: inline-block;
  min-height: 20px;
  line-height: 20px;
  border: none;
  border-radius: 5px;
  background: #fff;
  padding: 0 0 0 5px;
  width: 100%;
  transition: border 0.1s ease;
  box-sizing: border-box;
  margin-bottom: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  font-family: "Nunito Sans", sans-serif;
}

@media (min-width: 260px) and (max-width: 320px) {
  .multiselect__input,
  .multiselect__single {
    font-size: 10px;
    word-break: initial;
  }
}

.multiselect__input:-ms-input-placeholder {
  color: #35495e;
}

.multiselect__input::-webkit-input-placeholder {
  color: #35495e;
}

.multiselect__input::-moz-placeholder {
  color: #35495e;
}

.multiselect__input::-ms-input-placeholder {
  color: #35495e;
}

.multiselect__input::placeholder {
  color: #35495e;
}

.multiselect__tag ~ .multiselect__input,
.multiselect__tag ~ .multiselect__single {
  width: auto;
}

.multiselect__input:hover,
.multiselect__single:hover {
  border-color: #cfcfcf;
}

.multiselect__input:focus,
.multiselect__single:focus {
  border-color: #a8a8a8;
  outline: none;
}

.multiselect__single {
  padding-left: 5px;
  margin-bottom: 8px;
}

.multiselect__tags-wrap {
  display: inline;
}

.multiselect__tags {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 3px 40px 0 15px;
  /*border-radius: 5px;*/
  border-radius: 0px;
  background: #fff;
  font-size: 14px;
}

.multiselect__tag {
  position: relative;
  display: inline-block;
  padding: 4px 26px 4px 10px;
  border-radius: 0px;
  margin-right: 10px;
  color: #fff;
  line-height: 1;
  background: #d90103;
  margin-bottom: 5px;
  margin-left: 10px;
  margin-top: 5px;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
}

.multiselect__tag-icon {
  cursor: pointer;
  margin-left: 7px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  font-weight: 700;
  font-style: normal;
  width: 22px;
  text-align: center;
  line-height: 22px;
  transition: all 0.2s ease;
  border-radius: 0px;
}

.multiselect__tag-icon:after {
  content: "\D7";
  /*color: #266d4d;*/
  color: #fff;
  font-size: 14px;
}

.multiselect__tag-icon:focus,
.multiselect__tag-icon:hover {
  background: #d90103;
}

.multiselect__tag-icon:focus:after,
.multiselect__tag-icon:hover:after {
  color: #fff;
}

.multiselect__current {
  min-height: 40px;
  overflow: hidden;
  padding: 8px 30px 0 12px;
  white-space: nowrap;
  border-radius: 5px;
  border: 1px solid #e8e8e8;
}

.multiselect__current,
.multiselect__select {
  line-height: 16px;
  box-sizing: border-box;
  display: block;
  margin: 0;
  text-decoration: none;
  cursor: pointer;
}

.multiselect__select {
  position: absolute;
  width: 40px;
  height: 38px;
  right: 1px;
  top: 0px;
  padding: 4px 8px;
  text-align: center;
  transition: transform 0.2s ease;
}

.multiselect__select:before {
  position: relative;
  right: 0;
  top: 65%;
  color: #999;
  margin-top: 4px;
  border-color: #999 transparent transparent;
  border-style: solid;
  border-width: 5px 5px 0;
  content: "";
}

.multiselect__placeholder {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: -5px;
}

.multiselect--active .multiselect__placeholder {
  display: none;
}

.multiselect__content-wrapper {
  position: absolute;
  display: block;
  background: #ffffff;
  width: 100%;
  max-height: 240px;
  overflow: auto;
  border: 1px solid #e8e8e8;
  border-top: none;
  /* border-bottom-left-radius: 5px; */
  /* border-bottom-right-radius: 5px; */
  z-index: 50;
  -webkit-overflow-scrolling: touch;
}

.multiselect__content {
  list-style: none;
  display: inline-block;
  padding: 0;
  margin: 0;
  min-width: 100%;
  vertical-align: top;
}

.multiselect--above .multiselect__content-wrapper {
  bottom: 100%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom: none;
  border-top: 1px solid #e8e8e8;
}

.multiselect__content::webkit-scrollbar {
  display: none;
}

.multiselect__element {
  display: block;
}

.multiselect__option {
  display: block;
  padding: 12px;
  min-height: 40px;
  line-height: 16px;
  text-decoration: none;
  text-transform: none;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
}

.multiselect__option:after {
  top: 0;
  right: 0;
  position: absolute;
  line-height: 40px;
  padding-right: 12px;
  padding-left: 20px;
  font-size: 13px;
}

.multiselect__option--highlight {
  background: #a00911;
  outline: none;
  color: #fff;
}

.multiselect__option--highlight:after {
  content: attr(data-select);
  background: #a00911;
  color: #fff;
}

.multiselect__option--selected {
  background: #d90103;
  color: #ffffff;
  font-weight: 700;
}

.multiselect__option--selected:after {
  content: attr(data-selected);
  color: silver;
}

.multiselect__option--selected.multiselect__option--highlight {
  background: #d90103;
  color: #ffffff;
}

.multiselect__option--selected.multiselect__option--highlight:after {
  background: #d90103;
  content: attr(data-deselect);
  color: #ffffff;
}

.multiselect--disabled .multiselect__current,
.multiselect--disabled .multiselect__select {
  background: #ededed;
  color: #a6a6a6;
}

.multiselect__option--disabled {
  background: #ededed !important;
  color: #a6a6a6 !important;
  cursor: text;
  pointer-events: none;
}

.multiselect__option--group {
  background: #ededed;
  color: #35495e;
}

.multiselect__option--group.multiselect__option--highlight {
  background: #35495e;
  color: #fff;
}

.multiselect__option--group.multiselect__option--highlight:after {
  background: #35495e;
}

.multiselect__option--disabled.multiselect__option--highlight {
  background: #dedede;
}

.multiselect__option--group-selected.multiselect__option--highlight {
  background: #D7AA04;
  color: #fff;
}

.multiselect__option--group-selected.multiselect__option--highlight:after {
  background: #D7AA04;
  content: attr(data-deselect);
  color: #fff;
}

.multiselect-enter-active,
.multiselect-leave-active {
  transition: all 0.15s ease;
}

.multiselect-enter,
.multiselect-leave-active {
  opacity: 0;
}

.multiselect__strong {
  margin-bottom: 8px;
  line-height: 20px;
  display: inline-block;
  vertical-align: top;
}

#lynch-app {
  height: 100%;
  /* Pages */
  /* Sections */
  /* Auth */
  /* Components */
  /* Misc */
}

@media (max-width: 375px) {
  #lynch-app {
    overflow-x: hidden;
  }
}

#lynch-app .files {
  border: 0.5px solid #707070 !important;
}

#lynch-app .files .row {
  padding-left: 0px !important;
  padding-right: 0px !important;
  justify-content: start !important;
}

#lynch-app .files .row .file {
  flex: 1;
}

#lynch-app .files .add-files-btn {
  display: flex;
  background: #1A8B14;
  font-weight: bold;
  color: #fff;
  padding: 8px 10px;
  margin-left: 0px !important;
  font-weight: 800;
  font-size: 12px;
  font-family: "Nunito Sans", sans-serif;
  margin-top: 10px;
}

#lynch-app .files .add-files-btn span {
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 2px;
}

#lynch-app .files .add-files-btn svg {
  margin-left: 10px;
  margin-top: 2px;
  width: 10px;
  height: 8px;
  fill: #fff !important;
  opacity: 1;
}

@media (min-width: 320px) and (max-width: 767px) {
  #lynch-app .files .add-files-btn {
    margin-top: 0px;
  }
}

#lynch-app .main-content {
  /*background-color: $bg-dashboard;*/
  position: relative;
  z-index: 9998;
  min-height: 100vh;
}

@media (min-width: 1400px) {
  #lynch-app .main-content {
    margin-left: 292px;
  }
}

@media (max-width: 1399px) and (min-width: 1024px) {
  #lynch-app .main-content {
    margin-left: 192px;
  }
}

@media (max-width: 1023px) and (min-width: 376px) {
  #lynch-app .main-content {
    margin-left: 55px;
  }
}

#lynch-app .grid-wrapper {
  /* Zebra striping */
  /* 
  Max width before this PARTICULAR table gets nasty
  This query will take effect for any screen smaller than 760px
  and also iPads specifically.
  */
}

#lynch-app .grid-wrapper th {
  color: #fff !important;
  border: 1px solid #707070;
  background-color: #050505 !important;
  border-right: 1px solid #fff;
  text-align: left;
  font-family: "Nunito Sans", sans-serif;
  font-size: 12px !important;
  font-weight: 800 !important;
}

#lynch-app .grid-wrapper th:last-child {
  border-right: 1px solid #707070;
}

#lynch-app .grid-wrapper td {
  border: 0.5px solid #707070;
  color: #050505 !important;
  font-weight: 700;
}

#lynch-app .grid-wrapper td a.quote-name {
  flex: 1;
}

#lynch-app .grid-wrapper td.green {
  background: #C1D9C0;
}

#lynch-app .grid-wrapper td.has_issues {
  background: #E6C883;
}

#lynch-app .grid-wrapper td .copy-quote {
  cursor: pointer;
  background: #e6a716;
  border: 0px;
  color: #fff;
  padding: 5px 10px;
  text-transform: uppercase;
  font-weight: 800;
  font-family: "Nunito Sans", sans-serif;
  font-size: 8px;
}

#lynch-app .grid-wrapper td .history svg {
  color: #AEAEAE;
  opacity: 1;
  font-size: 17px;
}

#lynch-app .grid-wrapper td .history span {
  color: #050505;
  display: block;
  font-size: 8px;
}

#lynch-app .grid-wrapper td .history:hover {
  color: #050505;
}

#lynch-app .grid-wrapper td .add.not svg {
  width: auto;
  height: 20px;
  fill: #AFAFAF;
  opacity: 0.5;
  cursor: pointer;
}

#lynch-app .grid-wrapper td .add svg {
  fill: #429A01;
  color: #707070;
  opacity: 1;
  cursor: pointer;
}

#lynch-app .grid-wrapper td .add span {
  color: #050505;
  display: block;
  margin-top: -2px;
  font-size: 8px;
}

#lynch-app .grid-wrapper td .add:hover {
  color: #050505;
}

@media (min-width: 1400px) {
  #lynch-app .grid-wrapper {
    padding: 30px 85px;
  }
}

@media (max-width: 1399px) and (min-width: 1024px) {
  #lynch-app .grid-wrapper {
    padding: 30px 35px;
  }
}

@media (max-width: 1399px) {
  #lynch-app .grid-wrapper {
    padding: 20px;
  }
}

@media (max-width: 375px) {
  #lynch-app .grid-wrapper {
    padding-bottom: 70px;
  }
}

#lynch-app .grid-wrapper .notifications {
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s linear;
  transition: opacity 600ms, visibility 600ms;
}

#lynch-app .grid-wrapper .notifications.show {
  margin: 5px auto 20px;
  height: auto;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: visible;
  opacity: 1;
}

#lynch-app .grid-wrapper .notifications.show div {
  padding: 5px 10px;
  text-align: center;
}

#lynch-app .grid-wrapper .notifications.top {
  margin: 20px auto 0;
}

#lynch-app .grid-wrapper .notifications.revert {
  margin: 0 auto 20px;
}

#lynch-app .grid-wrapper .notifications .error {
  color: #d90103;
  border: 1px solid #D90202;
  text-transform: uppercase;
}

#lynch-app .grid-wrapper .notifications .success {
  color: #008000;
  border: 1px solid #008000;
  text-transform: uppercase;
}

#lynch-app .grid-wrapper .two-columns .status-text {
  width: 100%;
}

@media (min-width: 260px) and (max-width: 767px) {
  #lynch-app .grid-wrapper .two-columns .status-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}

#lynch-app .grid-wrapper.single .grid-heading {
  padding-bottom: 5px;
  border-bottom: 1px solid #BBBBBB;
}

#lynch-app .grid-wrapper.single .action-buttons {
  display: flex;
  justify-content: flex-end;
}

#lynch-app .grid-wrapper.single .action-buttons .approve {
  margin-left: 20px;
  padding: 15px;
  background-color: #1A8B14;
  border: 1px solid #1A8B14;
  border-radius: 22px;
  color: #fff;
  text-transform: uppercase;
  opacity: 1;
  text-align: center;
  display: flex;
  align-items: center;
  outline: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
}

#lynch-app .grid-wrapper.single .action-buttons .approve span {
  margin-right: 10px;
}

#lynch-app .grid-wrapper.single .action-buttons .approve:hover {
  background-color: #1b6118;
  border: 1px solid #1b6118;
}

#lynch-app .grid-wrapper.single .action-buttons .approve-snags {
  margin-left: 20px;
  padding: 15px;
  background-color: #D5B035;
  border: 1px solid #D5B035;
  border-radius: 22px;
  color: #fff;
  text-transform: uppercase;
  opacity: 1;
  text-align: center;
  display: flex;
  align-items: center;
  outline: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
}

#lynch-app .grid-wrapper.single .action-buttons .approve-snags span {
  margin-right: 10px;
}

#lynch-app .grid-wrapper.single .action-buttons .approve-snags:hover {
  background-color: #a7861a;
  border: 1px solid #a7861a;
}

#lynch-app .grid-wrapper.single .action-buttons .approve-snags:hover svg {
  fill: #a7861a;
}

#lynch-app .grid-wrapper.single .action-buttons .approve-snags svg {
  background-color: #ffffff;
  fill: #D5B035;
  border-radius: 4px;
}

#lynch-app .grid-wrapper.single .action-buttons .snags-resolved {
  margin-left: 20px;
  padding: 15px;
  background-color: #1A8B14;
  border: 1px solid #1A8B14;
  border-radius: 22px;
  color: #fff;
  text-transform: uppercase;
  opacity: 1;
  text-align: center;
  display: flex;
  align-items: center;
  outline: none;
  font-weight: 800;
  font-size: 13px;
  cursor: default;
}

#lynch-app .grid-wrapper.single .action-buttons .snags-resolved span {
  margin-right: 10px;
}

#lynch-app .grid-wrapper.single .action-buttons .invoiced {
  margin-left: 20px;
  padding: 15px;
  background-color: #d90103;
  border: 1px solid #d90103;
  border-radius: 22px;
  color: #fff;
  text-transform: uppercase;
  opacity: 1;
  text-align: center;
  display: flex;
  align-items: center;
  outline: none;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
}

#lynch-app .grid-wrapper.single .action-buttons .invoiced span {
  margin-right: 10px;
}

#lynch-app .grid-wrapper.single .action-buttons .invoiced:hover {
  background-color: #a00911;
  border: 1px solid #a00911;
}

@media (min-width: 260px) and (max-width: 1023px) {
  #lynch-app .grid-wrapper.single .action-buttons {
    flex-direction: column;
  }

  #lynch-app .grid-wrapper.single .action-buttons .approve,
  #lynch-app .grid-wrapper.single .action-buttons .approve-snags,
  #lynch-app .grid-wrapper.single .action-buttons .invoiced {
    margin-top: 15px;
    margin-left: 0px;
    justify-content: space-between;
  }

  #lynch-app .grid-wrapper.single .action-buttons .approve-snags {
    margin-top: 15px;
    margin-bottom: 20px;
  }

  #lynch-app .grid-wrapper.single .action-buttons .invoiced {
    margin-bottom: 20px;
  }
}

#lynch-app .grid-wrapper .grid-heading h2 {
  color: #050505;
  text-transform: uppercase;
  font-size: 1.5625rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  word-break: break-all;
}

@media (min-width: 260px) and (max-width: 374px) {
  #lynch-app .grid-wrapper .grid-heading h2 {
    flex-direction: column;
    word-break: break-word;
  }
}

@media (min-width: 375px) and (max-width: 767px) {
  #lynch-app .grid-wrapper .grid-heading h2 {
    flex-direction: column;
    word-break: break-word;
  }

  #lynch-app .grid-wrapper .grid-heading h2 .single-actions {
    margin-left: 0 !important;
    margin-top: 10px;
  }
}

#lynch-app .grid-wrapper .grid-heading h2 strong {
  margin-right: auto;
  margin-left: 5px;
}

#lynch-app .grid-wrapper .grid-heading h2 .single-actions {
  margin-left: auto;
}

#lynch-app .grid-wrapper .grid-heading h2 .single-actions svg {
  cursor: pointer;
}

#lynch-app .grid-wrapper .grid-heading h2 .single-actions svg:hover {
  opacity: 1;
  fill: #d90103;
  cursor: pointer;
}

#lynch-app .grid-wrapper .grid-heading h2 .single-actions .buttons-wrapper {
  display: flex;
}

#lynch-app .grid-wrapper .grid-heading h2 .single-actions .buttons-wrapper span {
  color: #050505;
}

#lynch-app .grid-wrapper .grid-heading .add-div {
  width: 24px;
}

#lynch-app .grid-wrapper .grid-heading .add-div a:hover svg {
  opacity: 1;
}

#lynch-app .grid-wrapper .grid-heading .add-div svg {
  opacity: 0.5;
  fill: #d90103;
}

#lynch-app .grid-wrapper .grid-heading .create-div {
  font-size: 0.9rem;
  font-weight: bold;
  background: #1d8a13;
  border-radius: 10px;
  padding: 15px 30px;
  cursor: pointer;
}

#lynch-app .grid-wrapper .grid-heading .create-div:hover {
  background: #429A01;
}

#lynch-app .grid-wrapper .grid-heading .create-div svg {
  font-size: 17px;
  fill: #fff;
  color: #fff;
  margin-left: 15px;
}

#lynch-app .grid-wrapper .grid-heading .create-div a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

#lynch-app .grid-wrapper .grid-heading .create-div a:hover {
  text-decoration: none;
}

#lynch-app .grid-wrapper .grid-heading .total {
  font-size: 1rem;
}

#lynch-app .grid-wrapper .grid-heading .total span {
  font-weight: bold;
}

#lynch-app .grid-wrapper .grid-sub-heading h2 {
  color: #050505;
  text-transform: uppercase;
  font-size: 1.5625rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Nunito Sans", sans-serif;
}

@media (min-width: 375px) {
  #lynch-app .grid-wrapper .grid-sub-heading h2 {
    justify-content: space-between;
  }
}

#lynch-app .grid-wrapper .grid-sub-heading h2 strong {
  margin-right: auto;
  margin-left: 5px;
}

#lynch-app .grid-wrapper .grid-sub-heading h2 .single-actions {
  margin-left: auto;
}

#lynch-app .grid-wrapper .breadcrumbs {
  margin-bottom: 20px;
  font-size: 0.925rem;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  text-transform: capitalize;
}

#lynch-app .grid-wrapper .breadcrumbs a {
  color: #707070;
  text-decoration: none;
  margin-right: 10px;
}

#lynch-app .grid-wrapper .breadcrumbs a:hover {
  color: #ad0710;
  text-decoration: underline;
}

#lynch-app .grid-wrapper .breadcrumbs span {
  color: #707070;
  margin-right: 10px;
}

#lynch-app .grid-wrapper .table-row {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  #lynch-app .grid-wrapper .table-row {
    flex-direction: column;
  }
}

#lynch-app .grid-wrapper .table-row.single {
  padding-top: 40px;
}

#lynch-app .grid-wrapper .table-row.single.customer-files {
  padding-bottom: 40px;
}

@media (min-width: 769px) {
  #lynch-app .grid-wrapper .table-row .table-col {
    width: 49%;
  }
}

@media (max-width: 768px) {
  #lynch-app .grid-wrapper .table-row .table-col {
    width: 100%;
  }
}

#lynch-app .grid-wrapper .toggle {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px auto 10px;
}

#lynch-app .grid-wrapper .toggle .circle {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  border: 2px solid #707070;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

@media (min-width: 260px) and (max-width: 767px) {
  #lynch-app .grid-wrapper .toggle .circle {
    width: 25px;
    height: 25px;
  }
}

#lynch-app .grid-wrapper .toggle .circle svg {
  fill: #AFAFAF;
  opacity: 0.5;
}

#lynch-app .grid-wrapper .toggle .circle:hover {
  background-color: #050505;
}

#lynch-app .grid-wrapper .toggle .circle:hover svg {
  opacity: 1;
}

#lynch-app .grid-wrapper .toggle.expanded .circle svg {
  transform: rotate(180deg) !important;
}

#lynch-app .grid-wrapper .collapsed_p {
  overflow: hidden;
}

@media (min-width: 1024px) {
  #lynch-app .grid-wrapper .collapsed_p {
    max-height: 205px;
  }
}

@media (max-width: 1023px) {
  #lynch-app .grid-wrapper .collapsed_p {
    /*max-height: 315px;*/
  }

  #lynch-app .grid-wrapper .collapsed_p.more .toggle {
    display: none;
  }
}

@media (min-width: 768px) {
  #lynch-app .grid-wrapper .collapsed_p.less {
    margin-bottom: 20px;
  }
}

#lynch-app .grid-wrapper .collapsed_dash_p {
  overflow: hidden;
}

@media (min-width: 1024px) {
  #lynch-app .grid-wrapper .collapsed_dash_p {
    max-height: 185px;
  }
}

@media (max-width: 1023px) {
  #lynch-app .grid-wrapper .collapsed_dash_p {
    max-height: 165px;
  }

  #lynch-app .grid-wrapper .collapsed_dash_p.more .toggle {
    display: none;
  }
}

@media (min-width: 768px) {
  #lynch-app .grid-wrapper .collapsed_dash_p.less {
    margin-bottom: 20px;
  }
}

#lynch-app .grid-wrapper .show-more-btn {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #ffffff;
  background-color: #1A8B14;
  padding: 8px 15px;
  cursor: pointer;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: 30px;
  font-size: 12px;
}

#lynch-app .grid-wrapper .show-more-btn:hover {
  background-color: #429A01;
}

@media (max-width: 1023px) {
  #lynch-app .grid-wrapper .show-more-btn {
    margin-top: 15px;
  }
}

#lynch-app .grid-wrapper table {
  width: 100%;
  border-collapse: collapse;
  /*box-shadow: 0px 2px 6px #0000000A;*/
}

#lynch-app .grid-wrapper table.top {
  margin-top: 20px;
}

@media (min-width: 1024px) {
  #lynch-app .grid-wrapper table {
    /*border-left: 1px solid $gray-border;
    border-right: 1px solid $gray-border;
    border-top: 1px solid $gray-border;*/
    margin: 0 auto 25px;
  }
}

@media (max-width: 1023px) {
  #lynch-app .grid-wrapper table {
    margin: 20px auto;
  }
}

#lynch-app .grid-wrapper table.single {
  margin-top: 20px;
}

@media (max-width: 767px) {
  #lynch-app .grid-wrapper table.single {
    margin-bottom: 0;
  }
}

#lynch-app .grid-wrapper table.single table,
#lynch-app .grid-wrapper table.single tbody,
#lynch-app .grid-wrapper table.single th,
#lynch-app .grid-wrapper table.single td,
#lynch-app .grid-wrapper table.single tr {
  display: block;
}

#lynch-app .grid-wrapper table.single tr {
  border: 0.5px solid #707070;
}

@media (max-width: 767px) {
  #lynch-app .grid-wrapper table.single tr {
    margin-bottom: 0;
  }
}

#lynch-app .grid-wrapper table.single td {
  border: none;
  position: relative;
  padding-left: 50%;
  display: flex;
  align-items: center;
}

@media (min-width: 1024px) {
  #lynch-app .grid-wrapper table.single td {
    border-bottom: 0.5px solid #707070;
  }
}

#lynch-app .grid-wrapper table.single td .span {
  word-break: break-all;
}

#lynch-app .grid-wrapper table.single td .span.completionStatus {
  background-color: #9DD59A;
}

#lynch-app .grid-wrapper table.single td:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 45%;
  content: attr(data-column);
  color: #fff;
  font-weight: 700;
  background-color: #050505;
  height: 100%;
  line-height: 100%;
  padding-left: 5%;
  display: flex;
  align-items: center;
  font-family: "Nunito Sans", sans-serif;
}

@media (min-width: 768px) {
  #lynch-app .grid-wrapper table.single td:before {
    white-space: nowrap;
  }
}

#lynch-app .grid-wrapper table.product,
#lynch-app .grid-wrapper table.auxiliary-items {
  margin-top: 20px;
  margin-bottom: 10px;
}

#lynch-app .grid-wrapper table.product td .span,
#lynch-app .grid-wrapper table.auxiliary-items td .span {
  min-height: 45px;
  margin: auto;
}

#lynch-app .grid-wrapper table.product td .span .danger-icon svg,
#lynch-app .grid-wrapper table.auxiliary-items td .span .danger-icon svg {
  height: 20px;
  width: 20px;
}

#lynch-app .grid-wrapper table.product td .span.justify-between,
#lynch-app .grid-wrapper table.auxiliary-items td .span.justify-between {
  justify-content: space-between;
}

#lynch-app .grid-wrapper table.product td .span.vertical,
#lynch-app .grid-wrapper table.auxiliary-items td .span.vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#lynch-app .grid-wrapper table.product td .span .mt-2,
#lynch-app .grid-wrapper table.auxiliary-items td .span .mt-2 {
  margin-top: 2px;
  border-bottom: 0.5px solid #050505;
}

#lynch-app .grid-wrapper table.product td .span input,
#lynch-app .grid-wrapper table.auxiliary-items td .span input {
  min-height: 35px;
}

#lynch-app .grid-wrapper table.product td .span .form-input,
#lynch-app .grid-wrapper table.product td .span label,
#lynch-app .grid-wrapper table.auxiliary-items td .span .form-input,
#lynch-app .grid-wrapper table.auxiliary-items td .span label {
  margin-bottom: 0;
}

#lynch-app .grid-wrapper table.product td .span .form-input .component__select,
#lynch-app .grid-wrapper table.product td .span .form-input .select--option,
#lynch-app .grid-wrapper table.auxiliary-items td .span .form-input .component__select,
#lynch-app .grid-wrapper table.auxiliary-items td .span .form-input .select--option {
  height: 35px;
  line-height: 35px;
}

@media (max-width: 767px) {
  #lynch-app .grid-wrapper table.product td .span .form-input .component__select,
  #lynch-app .grid-wrapper table.auxiliary-items td .span .form-input .component__select {
    display: inline-flex;
    width: 50%;
  }
}

#lynch-app .grid-wrapper table.product td .span.remove button .icon,
#lynch-app .grid-wrapper table.auxiliary-items td .span.remove button .icon {
  cursor: pointer;
}

#lynch-app .grid-wrapper table.product td .span.remove button .icon.active.remove,
#lynch-app .grid-wrapper table.auxiliary-items td .span.remove button .icon.active.remove {
  fill: #D90202;
}

#lynch-app .grid-wrapper table.product td.center .span input,
#lynch-app .grid-wrapper table.auxiliary-items td.center .span input {
  text-align: center;
}

@media (min-width: 1024px) {
  #lynch-app .grid-wrapper table.product td.quantity,
  #lynch-app .grid-wrapper table.auxiliary-items td.quantity {
    max-width: 125px;
  }
}

#lynch-app .grid-wrapper table.product .aux-td,
#lynch-app .grid-wrapper table.auxiliary-items .aux-td {
  display: table-cell !important;
}

@media (min-width: 260px) and (max-width: 768px) {
  #lynch-app .grid-wrapper table.product .aux-td,
  #lynch-app .grid-wrapper table.auxiliary-items .aux-td {
    display: flex !important;
  }
}

#lynch-app .grid-wrapper table.product .aux-td .span input,
#lynch-app .grid-wrapper table.auxiliary-items .aux-td .span input {
  border-bottom: 1px solid #707070;
}

@media (min-width: 260px) and (max-width: 768px) {
  #lynch-app .grid-wrapper table.product .aux-tr,
  #lynch-app .grid-wrapper table.auxiliary-items .aux-tr {
    position: unset;
  }

  #lynch-app .grid-wrapper table.product .aux-tr th,
  #lynch-app .grid-wrapper table.auxiliary-items .aux-tr th {
    display: flex;
    align-items: center;
    height: 54px;
    max-height: 54px;
    border-right: 0;
  }
}

@media (min-width: 260px) and (max-width: 768px) {
  #lynch-app .grid-wrapper table.auxiliary-items {
    display: flex;
  }

  #lynch-app .grid-wrapper table.auxiliary-items thead,
  #lynch-app .grid-wrapper table.auxiliary-items tbody {
    width: 50%;
  }
}

#lynch-app .grid-wrapper table.empty {
  box-shadow: none;
  border: 0;
}

#lynch-app .grid-wrapper table.empty tr {
  background-color: transparent;
  border-bottom: 0;
}

#lynch-app .grid-wrapper table.empty td {
  border: 0;
}

#lynch-app .grid-wrapper table.expanded {
  margin-bottom: 0;
}

#lynch-app .grid-wrapper table.collapsed {
  margin-bottom: 0;
}

#lynch-app .grid-wrapper table.collapsed tbody {
  max-height: 139px;
  overflow: hidden;
}

#lynch-app .grid-wrapper table.dashboard-table tr {
  cursor: pointer;
}

#lynch-app .grid-wrapper table.dashboard-table tr:hover td {
  background-color: #F1F1F3;
  text-decoration: none;
}

#lynch-app .grid-wrapper table.dashboard-table tr.has-issues {
  background-color: #D80C17;
  color: #fff;
}

#lynch-app .grid-wrapper table.dashboard-table tr.has-issues td {
  color: #ffffff;
}

#lynch-app .grid-wrapper table.dashboard-table tr.has-issues:hover td {
  background-color: #880109;
}

#lynch-app .grid-wrapper table.orders-table tr {
  cursor: pointer;
}

#lynch-app .grid-wrapper table.orders-table tr:hover td {
  background-color: #F1F1F3;
  text-decoration: none;
}

#lynch-app .grid-wrapper .table-data {
  margin: 20px auto;
}

#lynch-app .grid-wrapper .table-data .table-title {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: bold;
  color: #050505;
  /*background-color: #dcdcdc;*/
  padding: 15px;
  padding-left: 0px;
  /*border-left: 1px solid #E9E9F0;*/
  /*border-right: 1px solid #E9E9F0;*/
  /*border-top: 1px solid #E9E9F0;*/
}

#lynch-app .grid-wrapper tr {
  background-color: #ffffff;
  border-bottom: 0.5px solid #707070;
}

#lynch-app .grid-wrapper th {
  background-color: #050505;
  font-weight: bold;
  height: 45px;
  padding: 0 15px;
}

#lynch-app .grid-wrapper td,
#lynch-app .grid-wrapper th {
  min-height: 45px;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #707070;
}

#lynch-app .grid-wrapper th.text-left {
  text-align: left;
}

#lynch-app .grid-wrapper td .edit {
  margin-left: 0px;
  margin-right: 5px;
}

#lynch-app .grid-wrapper td .delete {
  margin-left: 0px;
  margin-right: 7px;
}

#lynch-app .grid-wrapper td .delete.active,
#lynch-app .grid-wrapper td .edit.active {
  margin-right: 15px;
}

#lynch-app .grid-wrapper td .delete.active svg,
#lynch-app .grid-wrapper td .edit.active svg {
  fill: #AFAFAF;
}

@media (max-width: 1023px) {
  #lynch-app .grid-wrapper td.transport:after {
    content: " \BB";
    position: absolute;
    left: 5px;
    font-size: 1.5rem;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #lynch-app .grid-wrapper td.fitting:after {
    content: " \BB\BB";
    position: absolute;
    left: 5px;
    font-size: 1.5rem;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 1023px) and (min-width: 260px) and (max-width: 767px) {
  #lynch-app .grid-wrapper td.fitting:after {
    display: none;
  }
}

#lynch-app .grid-wrapper td.center {
  text-align: center;
}

#lynch-app .grid-wrapper td.center.justify-between .span {
  justify-content: space-between;
}

#lynch-app .grid-wrapper td.center.justify-content-center {
  justify-content: center;
}

#lynch-app .grid-wrapper td.center .span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 auto;
}

#lynch-app .grid-wrapper td.center .span .danger-icon svg {
  height: 20px;
  width: 20px;
}

#lynch-app .grid-wrapper td.center .span span {
  min-width: 50px;
}

@media (min-width: 260px) and (max-width: 767px) {
  #lynch-app .grid-wrapper td.center .span span {
    min-width: unset;
  }
}

@media (min-width: 260px) and (max-width: 768px) {
  #lynch-app .grid-wrapper td.center .span {
    justify-content: space-around;
  }
}

#lynch-app .grid-wrapper td .flex-wrap {
  padding: 5px 15px;
  min-height: 35px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

#lynch-app .grid-wrapper td .flex-wrap span {
  min-width: 50px;
}

#lynch-app .grid-wrapper td .span {
  min-height: 45px;
  display: flex;
  align-items: center;
}

@media (min-width: 1024px) and (max-width: 1400px) {
  #lynch-app .grid-wrapper td .span {
    padding: 5px 15px 5px 20px;
  }
}

@media (min-width: 1400px) {
  #lynch-app .grid-wrapper td .span {
    padding: 0px 15px 0px 20px;
  }
}

@media (max-width: 1023px) {
  #lynch-app .grid-wrapper td .span {
    padding: 5px 15px;
  }
}

@media (min-width: 376px) and (max-width: 768px) {
  #lynch-app .grid-wrapper td .span {
    width: auto;
  }
}

@media (max-width: 375px) {
  #lynch-app .grid-wrapper td .span {
    word-break: break-all;
  }
}

@media (max-width: 1023px) {
  #lynch-app .grid-wrapper td .span {
    width: 100%;
    word-break: break-word;
  }

  #lynch-app .grid-wrapper td .span .form-input .component__select {
    overflow: hidden;
  }

  #lynch-app .grid-wrapper td .span .form-input .select--option {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
  }
}

@media (min-width: 260px) and (max-width: 320px) {
  #lynch-app .grid-wrapper td .span {
    font-size: 10px !important;
  }
}

#lynch-app .grid-wrapper td .span.copy-quote-wrapper {
  display: flex;
  justify-content: space-between;
}

#lynch-app .grid-wrapper td .span.copy-quote-wrapper button {
  background-color: #E6A716;
  padding: 10px;
  border: 1px #E6A716;
  color: #fff;
  border-radius: 2px;
  text-transform: uppercase;
  font-weight: bold;
  outline: none;
}

#lynch-app .grid-wrapper td .span.copy-quote-wrapper button:hover {
  background-color: #cd8f00;
  border: 1px #cd8f00;
  cursor: pointer;
}

@media (max-width: 1023px) {
  #lynch-app .grid-wrapper td .span.roles {
    justify-content: center;
    flex-direction: column;
  }
}

#lynch-app .grid-wrapper td .span.error .delete,
#lynch-app .grid-wrapper td .span.error .disqualified,
#lynch-app .grid-wrapper td .span.error input,
#lynch-app .grid-wrapper td .span.error .component__select {
  border: 0.5px solid #d90103;
  border-radius: 3px;
}

#lynch-app .grid-wrapper td .span .full-width {
  width: 100%;
  display: block;
}

#lynch-app .grid-wrapper td .span input {
  border: 0;
  padding: 0 5px;
  width: calc(100% - 10px);
}

#lynch-app .grid-wrapper td .span input:focus {
  outline: 0;
  border-color: #000000;
}

#lynch-app .grid-wrapper td .span.no-flex {
  display: inherit;
}

@media (max-width: 1023px) {
  #lynch-app .grid-wrapper td .span.no-flex {
    flex-direction: column;
  }
}

#lynch-app .grid-wrapper td a {
  color: #d90103;
  text-decoration: none;
}

#lynch-app .grid-wrapper td a:hover {
  text-decoration: underline;
}

#lynch-app .grid-wrapper td .remove {
  max-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lynch-app .grid-wrapper td .remove.active button {
  cursor: pointer;
}

#lynch-app .grid-wrapper td .remove.active button svg {
  fill: #d90103;
}

#lynch-app .grid-wrapper td .remove.active button:hover {
  opacity: 1;
}

#lynch-app .grid-wrapper td .remove button {
  border: 0;
  background-color: transparent;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  cursor: text;
}

#lynch-app .grid-wrapper td .remove button:focus {
  outline: 0;
}

#lynch-app .grid-wrapper td .remove button svg {
  transform: rotate(45deg);
  max-width: 15px;
  width: 15px;
  fill: #AFAFAF;
}

@media (max-width: 1023px) {
  #lynch-app .grid-wrapper {
    /* Force table to not be like tables anymore */
  }

  #lynch-app .grid-wrapper table,
  #lynch-app .grid-wrapper thead,
  #lynch-app .grid-wrapper tbody,
  #lynch-app .grid-wrapper th,
  #lynch-app .grid-wrapper td,
  #lynch-app .grid-wrapper tr {
    display: block;
  }

  #lynch-app .grid-wrapper table:not(.empty) {
    /* Hide table headers (but not display: none;, for accessibility) */
  }

  #lynch-app .grid-wrapper table:not(.empty) thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  #lynch-app .grid-wrapper table:not(.empty) tr {
    border: 0.5px solid #707070;
    margin-bottom: 15px;
  }

  #lynch-app .grid-wrapper table:not(.empty) tr.expanded td {
    display: flex;
    padding-left: 50%;
  }

  #lynch-app .grid-wrapper table:not(.empty) tr.expanded td:before {
    display: flex;
  }

  #lynch-app .grid-wrapper table:not(.empty) td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 0.5px solid #707070;
    position: relative;
    padding-left: 0;
    align-items: center;
    display: none;
  }

  #lynch-app .grid-wrapper table:not(.empty) td:first-child {
    display: flex;
  }

  #lynch-app .grid-wrapper table:not(.empty) td:last-of-type {
    border-bottom: 0;
  }

  #lynch-app .grid-wrapper table:not(.empty) td .toggle {
    width: auto;
    margin: 0 0 0 auto;
  }

  #lynch-app .grid-wrapper table:not(.empty) td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 0;
    left: 0;
    bottom: 0;
    width: 45%;
    /* Label the data */
    content: attr(data-column);
    color: #ffffff;
    font-weight: bold;
    background-color: #050505;
    height: 100%;
    line-height: 100%;
    padding-left: 5%;
    align-items: center;
    display: none;
    font-family: "Nunito Sans", sans-serif;
  }
}

@media (max-width: 1023px) and (min-width: 768px) {
  #lynch-app .grid-wrapper table:not(.empty) td:before {
    white-space: nowrap;
  }
}

@media (max-width: 1023px) {
  #lynch-app .grid-wrapper table.top td,
  #lynch-app .grid-wrapper table.single td,
  #lynch-app .grid-wrapper table.product td {
    padding-left: 50% !important;
    display: flex !important;
  }

  #lynch-app .grid-wrapper table.top td:before,
  #lynch-app .grid-wrapper table.single td:before,
  #lynch-app .grid-wrapper table.product td:before {
    display: flex !important;
  }
}

#lynch-app .grid-wrapper .project-tree {
  margin: 0 auto 20px;
}

#lynch-app .grid-wrapper .project-tree .empty {
  text-transform: uppercase;
  margin-top: 10px;
  font-size: 13px;
  font-family: "Nunito Sans", sans-serif;
  margin-top: 25px;
  font-weight: 600;
  color: #707070;
  margin-bottom: 25px;
}

#lynch-app .grid-wrapper td .status-text {
  /*width: 100%;*/
}

#lynch-app .grid-wrapper td .status-text span {
  flex: 1;
  display: flex;
  word-break: break-word;
}

#lynch-app .grid-wrapper td .status-text svg {
  fill: #050505 !important;
  opacity: 1 !important;
}

#lynch-app .grid-wrapper td .status-text .change-status {
  background: #050505;
  color: #fff;
  border-radius: 0px;
  padding: 3px 7px;
  text-transform: uppercase;
  font-weight: 800;
  font-family: "Nunito Sans", sans-serif;
  font-size: 10px;
  margin-left: 10px;
  word-break: break-word;
}

#lynch-app .grid-wrapper td .status-text.quote-status-0 {
  background-color: #e6c883;
}

@media (min-width: 320px) and (max-width: 767px) {
  #lynch-app .grid-wrapper td .status-text.quote-status-0 {
    flex-direction: column;
  }
}

#lynch-app .grid-wrapper td .status-text.quote-status-1 {
  background-color: #9dd59a;
}

@media (min-width: 320px) and (max-width: 767px) {
  #lynch-app .grid-wrapper td .status-text.quote-status-1 {
    flex-direction: column;
  }
}

#lynch-app .grid-wrapper td .status-text.quote-status-2,
#lynch-app .grid-wrapper td .status-text.quote-status-8 {
  background-color: #D80C17;
  color: #fff;
}

#lynch-app .grid-wrapper td .status-text.quote-status-2 svg,
#lynch-app .grid-wrapper td .status-text.quote-status-8 svg {
  fill: #ffffff !important;
}

@media (min-width: 320px) and (max-width: 767px) {
  #lynch-app .grid-wrapper td .status-text.quote-status-2,
  #lynch-app .grid-wrapper td .status-text.quote-status-8 {
    flex-direction: column;
  }
}

#lynch-app .grid-wrapper td .status-text.fabrication-status-0,
#lynch-app .grid-wrapper td .status-text.product-status-0,
#lynch-app .grid-wrapper td .status-text.transport-status-0,
#lynch-app .grid-wrapper td .status-text.fitting-status-0,
#lynch-app .grid-wrapper td .status-text.order-status-0 {
  background-color: rgba(255, 193, 7, 0.2);
}

#lynch-app .grid-wrapper td .status-text.fabrication-status-1,
#lynch-app .grid-wrapper td .status-text.product-status-1,
#lynch-app .grid-wrapper td .status-text.order-status-1 {
  background-color: #e6c883;
}

#lynch-app .grid-wrapper td .status-text.fabrication-status-2,
#lynch-app .grid-wrapper td .status-text.fabrication-status-3,
#lynch-app .grid-wrapper td .status-text.product-status-2,
#lynch-app .grid-wrapper td .status-text.product-status-3,
#lynch-app .grid-wrapper td .status-text.order-status-2 {
  background-color: #9dd59a;
}

#lynch-app .grid-wrapper td .status-text.fabrication-status-4,
#lynch-app .grid-wrapper td .status-text.product-status-4,
#lynch-app .grid-wrapper td .status-text.order-status-4 {
  background-color: #D80C17;
  color: #fff;
}

#lynch-app .grid-wrapper td .status-text.fabrication-status-4 svg,
#lynch-app .grid-wrapper td .status-text.product-status-4 svg,
#lynch-app .grid-wrapper td .status-text.order-status-4 svg {
  fill: #ffffff !important;
}

#lynch-app .grid-wrapper td .status-text.transport-status-1 {
  background-color: #e6c883;
}

#lynch-app .grid-wrapper td .status-text.transport-status-2,
#lynch-app .grid-wrapper td .status-text.transport-status-3 {
  background-color: #9dd59a;
}

#lynch-app .grid-wrapper td .status-text.transport-status-4 {
  background-color: #D80C17;
  color: #fff;
}

#lynch-app .grid-wrapper td .status-text.transport-status-4 svg {
  fill: #ffffff !important;
}

#lynch-app .grid-wrapper td .status-text.fitting-status-1 {
  background-color: #e6c883;
}

#lynch-app .grid-wrapper td .status-text.fitting-status-2,
#lynch-app .grid-wrapper td .status-text.fitting-status-3 {
  background-color: #9dd59a;
}

#lynch-app .grid-wrapper td .status-text.fitting-status-4 {
  background-color: #D80C17;
  color: #fff;
}

#lynch-app .grid-wrapper td .status-text.fitting-status-4 svg {
  fill: #ffffff !important;
}

#lynch-app .grid-wrapper td.status-td {
  position: relative;
}

#lynch-app .grid-wrapper td.status-td:before {
  position: absolute;
  content: " ";
  width: 10px;
  height: 100%;
  left: -12px;
  top: 0;
}

@media (min-width: 1024px) {
  #lynch-app .grid-wrapper td.status-td.quote-status-0:before {
    background-color: #e6c883;
  }
}

@media (max-width: 1023px) {
  #lynch-app .grid-wrapper td.status-td.quote-status-0 {
    border-top: 5px solid #e6c883;
  }
}

@media (min-width: 1024px) {
  #lynch-app .grid-wrapper td.status-td.quote-status-1:before {
    background-color: #9dd59a;
  }
}

@media (max-width: 1023px) {
  #lynch-app .grid-wrapper td.status-td.quote-status-1 {
    border-top: 5px solid #9dd59a;
  }
}

@media (min-width: 1024px) {
  #lynch-app .grid-wrapper td.status-td.quote-status-2:before,
  #lynch-app .grid-wrapper td.status-td.quote-status-8:before {
    background-color: #D80C17;
    color: #fff;
  }
}

@media (max-width: 1023px) {
  #lynch-app .grid-wrapper td.status-td.quote-status-2,
  #lynch-app .grid-wrapper td.status-td.quote-status-8 {
    border-top: 5px solid #D80C17;
  }
}

@media (min-width: 1024px) {
  #lynch-app .grid-wrapper td.status-td.fabrication-status-0:before {
    background-color: rgba(255, 193, 7, 0.2);
  }
}

@media (max-width: 1023px) {
  #lynch-app .grid-wrapper td.status-td.fabrication-status-0 {
    border-top: 5px solid rgba(255, 193, 7, 0.2);
  }
}

@media (min-width: 1024px) {
  #lynch-app .grid-wrapper td.status-td.fabrication-status-1:before {
    background-color: #e6c883;
  }
}

@media (max-width: 1023px) {
  #lynch-app .grid-wrapper td.status-td.fabrication-status-1 {
    border-top: 5px solid #e6c883;
  }
}

@media (min-width: 1024px) {
  #lynch-app .grid-wrapper td.status-td.fabrication-status-2:before,
  #lynch-app .grid-wrapper td.status-td.fabrication-status-3:before {
    background-color: #9dd59a;
  }
}

@media (max-width: 1023px) {
  #lynch-app .grid-wrapper td.status-td.fabrication-status-2,
  #lynch-app .grid-wrapper td.status-td.fabrication-status-3 {
    border-top: 5px solid #9dd59a;
  }
}

@media (min-width: 1024px) {
  #lynch-app .grid-wrapper td.status-td.fabrication-status-4:before {
    background-color: #D80C17;
    color: #fff;
  }
}

@media (max-width: 1023px) {
  #lynch-app .grid-wrapper td.status-td.fabrication-status-4 {
    border-top: 5px solid #D80C17;
  }
}

@media (min-width: 1024px) {
  #lynch-app .grid-wrapper td.status-td.transport-status-0:before {
    background-color: rgba(255, 193, 7, 0.2);
  }
}

@media (max-width: 1023px) {
  #lynch-app .grid-wrapper td.status-td.transport-status-0 {
    border-top: 5px solid rgba(255, 193, 7, 0.2);
  }
}

@media (min-width: 1024px) {
  #lynch-app .grid-wrapper td.status-td.transport-status-1:before {
    background-color: #e6c883;
  }
}

@media (max-width: 1023px) {
  #lynch-app .grid-wrapper td.status-td.transport-status-1 {
    border-top: 5px solid #e6c883;
  }
}

@media (min-width: 1024px) {
  #lynch-app .grid-wrapper td.status-td.transport-status-2:before,
  #lynch-app .grid-wrapper td.status-td.transport-status-3:before {
    background-color: #9dd59a;
  }
}

@media (max-width: 1023px) {
  #lynch-app .grid-wrapper td.status-td.transport-status-2,
  #lynch-app .grid-wrapper td.status-td.transport-status-3 {
    border-top: 5px solid #9dd59a;
  }
}

@media (min-width: 1024px) {
  #lynch-app .grid-wrapper td.status-td.transport-status-4:before {
    background-color: #D80C17;
    color: #fff;
  }
}

@media (max-width: 1023px) {
  #lynch-app .grid-wrapper td.status-td.transport-status-4 {
    border-top: 5px solid #D80C17;
  }
}

@media (min-width: 1024px) {
  #lynch-app .grid-wrapper td.status-td.fitting-status-0:before {
    background-color: rgba(255, 193, 7, 0.2);
  }
}

@media (max-width: 1023px) {
  #lynch-app .grid-wrapper td.status-td.fitting-status-0 {
    border-top: 5px solid rgba(255, 193, 7, 0.2);
  }
}

@media (min-width: 1024px) {
  #lynch-app .grid-wrapper td.status-td.fitting-status-1:before {
    background-color: #e6c883;
  }
}

@media (max-width: 1023px) {
  #lynch-app .grid-wrapper td.status-td.fitting-status-1 {
    border-top: 5px solid #e6c883;
  }
}

@media (min-width: 1024px) {
  #lynch-app .grid-wrapper td.status-td.fitting-status-2:before,
  #lynch-app .grid-wrapper td.status-td.fitting-status-3:before,
  #lynch-app .grid-wrapper td.status-td.fitting-status-5:before {
    background-color: #9dd59a;
  }
}

@media (max-width: 1023px) {
  #lynch-app .grid-wrapper td.status-td.fitting-status-2,
  #lynch-app .grid-wrapper td.status-td.fitting-status-3,
  #lynch-app .grid-wrapper td.status-td.fitting-status-5 {
    border-top: 5px solid #9dd59a;
  }
}

@media (min-width: 1024px) {
  #lynch-app .grid-wrapper td.status-td.fitting-status-4:before {
    background-color: #D80C17;
    color: #fff;
  }
}

@media (max-width: 1023px) {
  #lynch-app .grid-wrapper td.status-td.fitting-status-4 {
    border-top: 5px solid #D80C17;
  }
}

#lynch-app .grid-wrapper .product-status-reason {
  text-transform: lowercase;
}

#lynch-app .grid-wrapper th.has_sort {
  cursor: pointer;
}

#lynch-app .grid-wrapper th.active_sort .sort_order {
  visibility: initial;
}

#lynch-app .grid-wrapper th:hover .sort_order {
  visibility: initial;
}

#lynch-app .grid-wrapper th .sort_order {
  display: inline-flex;
  visibility: hidden;
}

#lynch-app .grid-wrapper th .sort_order svg {
  height: 10px;
  width: 12px;
}

#lynch-app .grid-wrapper th .sort_order svg .stroke-color {
  stroke: #ffffff;
}

#lynch-app .grid-wrapper .fabrication-complete-section {
  display: flex;
  padding: 25px 0px;
}

#lynch-app .grid-wrapper .fabrication-complete-section .fabrication-complete-label {
  color: #797979;
  font-size: 1.3625rem;
  font-weight: normal;
  display: flex;
  margin-right: 20px;
  font-weight: 700;
}

#lynch-app .grid-wrapper .fabrication-complete-section .fabrication-complete-value {
  font-size: 1.3625rem;
  font-weight: 700;
  display: flex;
}

#lynch-app .grid-wrapper .fabrication-complete-section .fabrication-complete-value.unfinished {
  color: #D80C17;
}

#lynch-app .grid-wrapper .fabrication-complete-section .fabrication-complete-value.finished {
  color: #9dd59a;
}

#lynch-app .grid-wrapper .fitting-jobs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

@media (min-width: 260px) and (max-width: 1023px) {
  #lynch-app .grid-wrapper .fitting-jobs {
    flex-direction: column;
  }
}

#lynch-app .grid-wrapper .customer-contact .options {
  display: flex;
  margin: 20px 0;
}

@media (min-width: 260px) and (max-width: 767px) {
  #lynch-app .grid-wrapper .customer-contact .options {
    flex-direction: column;
    width: 100%;
  }

  #lynch-app .grid-wrapper .customer-contact .options .element {
    margin-right: 0px !important;
  }

  #lynch-app .grid-wrapper .customer-contact .options .element .time {
    margin-bottom: 20px;
  }
}

#lynch-app .grid-wrapper .customer-contact .options .element {
  display: flex;
  flex-direction: column;
  margin-right: 35px;
}

#lynch-app .grid-wrapper .customer-contact .options .element .title {
  margin-bottom: 8px;
}

#lynch-app .grid-wrapper .customer-contact .options .element .time {
  height: 46px;
  line-height: 46px;
  border: 1px solid #d4d4d4;
  border-radius: 0px;
  color: #707070;
  font-weight: 600;
  padding: 0 18px;
  font-size: 13px;
  font-family: "Nunito Sans", sans-serif;
}

#lynch-app .grid-wrapper .customer-contact .options .element .time select {
  border: none;
  outline: none;
  background-color: #fff;
  /* for Firefox */
  -moz-appearance: none;
  /* for Chrome */
  -webkit-appearance: none;
  cursor: pointer;
  font-size: 15px;
  color: #707070;
}

#lynch-app .grid-wrapper .customer-contact .options .element .time select::-ms-expand {
  display: none;
}

#lynch-app .grid-wrapper .customer-contact .form-create .comment-btn-wrapper {
  margin-top: 10px;
  margin-bottom: 20px;
  margin-right: 0;
  margin-left: 0;
}

#lynch-app .grid-wrapper .customer-contact .form-create .comment-btn-wrapper .add-comment {
  text-decoration: none;
  display: flex;
  background: #1A8B14;
  font-weight: bold;
  color: #fff;
  padding: 8px 15px;
  margin-left: 0px !important;
  font-weight: 800;
  font-size: 12px;
  font-family: "Nunito Sans", sans-serif;
  margin-top: 10px;
  float: right;
  cursor: pointer;
  border: 0;
}

#lynch-app .grid-wrapper .customer-contact .form-create .comment-btn-wrapper .add-comment span {
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 2px;
}

#lynch-app .grid-wrapper .customer-contact .form-create .comment-btn-wrapper .add-comment svg {
  margin-left: 10px;
  margin-top: 2px;
  width: 10px !important;
  height: 18px !important;
  fill: #fff !important;
  opacity: 1;
}

#lynch-app .grid-wrapper .customer-contact .form-create .comment-btn-wrapper .add-comment:hover {
  opacity: 0.8;
}

#lynch-app .dashboard .charts {
  margin: 20px auto;
  display: flex;
}

@media (min-width: 768px) {
  #lynch-app .dashboard .charts {
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  #lynch-app .dashboard .charts {
    flex-direction: column;
  }
}

#lynch-app .dashboard .charts .chart {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  #lynch-app .dashboard .charts .chart {
    width: 49%;
    max-width: 49%;
  }
}

@media (max-width: 767px) {
  #lynch-app .dashboard .charts .chart {
    width: 100%;
  }
}

#lynch-app .dashboard .charts .chart h2 {
  font-size: 1rem;
  color: #707070;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  #lynch-app .dashboard .charts .chart h2 {
    margin-top: 15px;
  }
}

#lynch-app .dashboard .calendar-action {
  display: flex;
  margin: 20px auto;
}

@media (min-width: 320px) and (max-width: 767px) {
  #lynch-app .dashboard .calendar-action {
    flex-direction: column;
  }
}

#lynch-app .dashboard .calendar-action .fitting-calendar-btn,
#lynch-app .dashboard .calendar-action .fabrication-calendar-btn {
  width: 15%;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #D90202;
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  border: none;
  text-transform: uppercase;
  padding: 10px;
  cursor: pointer;
}

#lynch-app .dashboard .calendar-action .fitting-calendar-btn svg,
#lynch-app .dashboard .calendar-action .fabrication-calendar-btn svg {
  height: 35px;
  width: 50px;
}

#lynch-app .dashboard .calendar-action .fitting-calendar-btn:hover,
#lynch-app .dashboard .calendar-action .fabrication-calendar-btn:hover {
  background-color: #a00911;
}

@media (max-width: 767px) {
  #lynch-app .dashboard .calendar-action .fitting-calendar-btn,
  #lynch-app .dashboard .calendar-action .fabrication-calendar-btn {
    width: 100%;
  }

  #lynch-app .dashboard .calendar-action .fitting-calendar-btn:last-child,
  #lynch-app .dashboard .calendar-action .fabrication-calendar-btn:last-child {
    margin-top: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  #lynch-app .dashboard .calendar-action .fitting-calendar-btn,
  #lynch-app .dashboard .calendar-action .fabrication-calendar-btn {
    width: 30%;
  }
}

@media (min-width: 260px) and (max-width: 320px) {
  #lynch-app .dashboard .calendar-action .fitting-calendar-btn,
  #lynch-app .dashboard .calendar-action .fabrication-calendar-btn {
    flex-direction: column;
    font-size: 10px !important;
    word-break: initial !important;
    margin-top: 10px !important;
  }
}

#lynch-app .dashboard .calendar-action .fitting-calendar-btn {
  margin-right: 0px;
}

#lynch-app .dashboard .calendar {
  display: flex;
  flex-direction: column;
}

#lynch-app .dashboard .calendar .calendar-fitting,
#lynch-app .dashboard .calendar .calendar-fabrication {
  margin: 40px auto;
}

#lynch-app .dashboard .calendar .calendar-fitting .fc-right .fc-button-group,
#lynch-app .dashboard .calendar .calendar-fabrication .fc-right .fc-button-group {
  display: none;
}

#lynch-app .dashboard .calendar .calendar-fitting .fc-center,
#lynch-app .dashboard .calendar .calendar-fabrication .fc-center {
  float: right;
}

#lynch-app .dashboard .calendar .calendar-fitting .fc-agendaDay-button,
#lynch-app .dashboard .calendar .calendar-fabrication .fc-agendaDay-button {
  display: none;
}

#lynch-app .dashboard .calendar .calendar-fitting .fc-agendaWeek-button,
#lynch-app .dashboard .calendar .calendar-fabrication .fc-agendaWeek-button {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

#lynch-app .dashboard .calendar .calendar-fitting .fc-button,
#lynch-app .dashboard .calendar .calendar-fabrication .fc-button {
  background-color: #ffffff;
  cursor: pointer;
  background-image: none;
  background-repeat: unset;
  border: none;
  box-shadow: none;
  text-shadow: none;
  margin-right: 5px;
}

#lynch-app .dashboard .calendar .calendar-fitting .fc-button:last-child,
#lynch-app .dashboard .calendar .calendar-fabrication .fc-button:last-child {
  margin-right: 0;
}

#lynch-app .dashboard .calendar .calendar-fitting .fc-button span,
#lynch-app .dashboard .calendar .calendar-fabrication .fc-button span {
  color: #4D4F5C;
}

#lynch-app .dashboard .calendar .calendar-fitting .fc-button:focus,
#lynch-app .dashboard .calendar .calendar-fabrication .fc-button:focus {
  outline: 0;
}

#lynch-app .dashboard .calendar .calendar-fitting .fc-button:hover,
#lynch-app .dashboard .calendar .calendar-fabrication .fc-button:hover {
  background-color: #d4d4d4;
}

#lynch-app .dashboard .calendar .calendar-fitting .fc-button.fc-state-disabled,
#lynch-app .dashboard .calendar .calendar-fabrication .fc-button.fc-state-disabled {
  cursor: not-allowed;
}

#lynch-app .dashboard .calendar .calendar-fitting .fc-button.fc-state-disabled:hover,
#lynch-app .dashboard .calendar .calendar-fabrication .fc-button.fc-state-disabled:hover {
  background-color: #ffffff;
}

#lynch-app .dashboard .calendar .calendar-fitting .fc-agenda-view tr th,
#lynch-app .dashboard .calendar .calendar-fabrication .fc-agenda-view tr th {
  padding: 0 4px !important;
}

#lynch-app .dashboard .calendar .calendar-fitting .fc-agenda-view .fc-row table tbody tr td,
#lynch-app .dashboard .calendar .calendar-fabrication .fc-agenda-view .fc-row table tbody tr td {
  min-height: 45px !important;
}

#lynch-app .dashboard .calendar .calendar-fitting .fc-view-container .fc-day-header,
#lynch-app .dashboard .calendar .calendar-fabrication .fc-view-container .fc-day-header {
  vertical-align: middle;
  border-right: 1px solid #b8b8b8;
}

#lynch-app .dashboard .calendar .calendar-fitting .fc-view-container .fc-day-header:last-child,
#lynch-app .dashboard .calendar .calendar-fabrication .fc-view-container .fc-day-header:last-child {
  border-right: 1px solid #dcdcdc;
}

#lynch-app .dashboard .calendar .calendar-fitting .fc-view-container .fc-event-container a,
#lynch-app .dashboard .calendar .calendar-fabrication .fc-view-container .fc-event-container a {
  color: #000000;
}

#lynch-app .dashboard .calendar .calendar-fitting .fc-view-container .fc-event-container .fc-event,
#lynch-app .dashboard .calendar .calendar-fabrication .fc-view-container .fc-event-container .fc-event {
  padding: 5px;
  background-color: #9dd59a;
  cursor: pointer;
}

#lynch-app .dashboard .calendar .calendar-fitting .fc-view-container .fc-title,
#lynch-app .dashboard .calendar .calendar-fitting .fc-view-container .fc-time,
#lynch-app .dashboard .calendar .calendar-fabrication .fc-view-container .fc-title,
#lynch-app .dashboard .calendar .calendar-fabrication .fc-view-container .fc-time {
  width: 20ch;
}

#lynch-app .dashboard .calendar .calendar-fitting .fc-view-container table,
#lynch-app .dashboard .calendar .calendar-fabrication .fc-view-container table {
  margin: 0;
}

#lynch-app .dashboard .calendar .calendar-fitting .fc-view-container table .fc-body tr .fc-day-grid .fc-row table tbody tr td,
#lynch-app .dashboard .calendar .calendar-fabrication .fc-view-container table .fc-body tr .fc-day-grid .fc-row table tbody tr td {
  min-height: unset !important;
}

#lynch-app .dashboard .calendar .calendar-fitting .fc-view-container table .fc-body tr .fc-day-grid .fc-row .fc-content-skeleton table,
#lynch-app .dashboard .calendar .calendar-fabrication .fc-view-container table .fc-body tr .fc-day-grid .fc-row .fc-content-skeleton table {
  margin: unset !important;
  border-bottom: 0 hidden transparent !important;
  border-top: none !important;
  box-shadow: none !important;
  border-color: unset !important;
}

#lynch-app .dashboard .calendar .calendar-fitting .fc-view-container table .fc-body tr .fc-day-grid .fc-row .fc-content-skeleton table thead tr,
#lynch-app .dashboard .calendar .calendar-fabrication .fc-view-container table .fc-body tr .fc-day-grid .fc-row .fc-content-skeleton table thead tr {
  background-color: transparent !important;
  border-bottom: none !important;
}

#lynch-app .dashboard .calendar .calendar-fitting .fc-view-container table .fc-body tr .fc-day-grid .fc-row .fc-content-skeleton table tbody tr,
#lynch-app .dashboard .calendar .calendar-fabrication .fc-view-container table .fc-body tr .fc-day-grid .fc-row .fc-content-skeleton table tbody tr {
  background-color: transparent !important;
}

#lynch-app .dashboard .calendar .calendar-fitting .fc-view-container table .fc-body tr .fc-day-grid .fc-row .fc-content-skeleton table td,
#lynch-app .dashboard .calendar .calendar-fabrication .fc-view-container table .fc-body tr .fc-day-grid .fc-row .fc-content-skeleton table td {
  border-color: #707070 !important;
}

@media (max-width: 768px) {
  #lynch-app .dashboard .calendar .calendar-fitting,
  #lynch-app .dashboard .calendar .calendar-fabrication {
    margin: 0px;
  }

  #lynch-app .dashboard .calendar .calendar-fitting .fc-view-container table,
  #lynch-app .dashboard .calendar .calendar-fabrication .fc-view-container table {
    display: table !important;
    border-top: 1px solid #ddd;
  }

  #lynch-app .dashboard .calendar .calendar-fitting .fc-view-container table tr,
  #lynch-app .dashboard .calendar .calendar-fabrication .fc-view-container table tr {
    position: unset !important;
    display: table-row;
    border: none;
    margin-bottom: 0;
  }

  #lynch-app .dashboard .calendar .calendar-fitting .fc-view-container table td,
  #lynch-app .dashboard .calendar .calendar-fabrication .fc-view-container table td {
    display: table-cell;
    border-left: 1px solid #ddd !important;
    border-right: 1px solid #ddd !important;
    border-top: 0px;
    border-bottom: 0px;
  }

  #lynch-app .dashboard .calendar .calendar-fitting .fc-view-container table thead,
  #lynch-app .dashboard .calendar .calendar-fabrication .fc-view-container table thead {
    display: table-header-group;
  }

  #lynch-app .dashboard .calendar .calendar-fitting .fc-view-container table thead tr th,
  #lynch-app .dashboard .calendar .calendar-fabrication .fc-view-container table thead tr th {
    display: table-cell;
  }

  #lynch-app .dashboard .calendar .calendar-fitting .fc-view-container table tbody,
  #lynch-app .dashboard .calendar .calendar-fabrication .fc-view-container table tbody {
    display: table-row-group;
  }

  #lynch-app .dashboard .calendar .calendar-fitting .fc-view-container table tbody tr,
  #lynch-app .dashboard .calendar .calendar-fabrication .fc-view-container table tbody tr {
    display: table-row;
  }
}

@media (max-width: 767px) {
  #lynch-app .dashboard .calendar .calendar-fitting .fc-toolbar,
  #lynch-app .dashboard .calendar .calendar-fabrication .fc-toolbar {
    display: flex;
    flex-direction: column;
  }

  #lynch-app .dashboard .calendar .calendar-fitting .fc-toolbar .fc-left,
  #lynch-app .dashboard .calendar .calendar-fitting .fc-toolbar .fc-right,
  #lynch-app .dashboard .calendar .calendar-fabrication .fc-toolbar .fc-left,
  #lynch-app .dashboard .calendar .calendar-fabrication .fc-toolbar .fc-right {
    margin-bottom: 20px;
  }
}

#lynch-app .pagination-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#lynch-app .pagination-wrapper ul {
  list-style: none;
  display: flex;
}

#lynch-app .pagination-wrapper li {
  min-width: 30px;
  height: 30px;
  margin-right: 5px;
}

#lynch-app .pagination-wrapper li:last-of-type {
  margin-right: 0;
}

#lynch-app .pagination-wrapper li.active button {
  background-color: #d90103;
  color: #ffffff;
}

#lynch-app .pagination-wrapper button {
  background-color: #ffffff;
  border: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

#lynch-app .pagination-wrapper button:focus {
  outline: 0;
}

#lynch-app .pagination-wrapper button:hover {
  background-color: #d4d4d4;
}

#lynch-app .pagination-wrapper button:hover svg {
  opacity: 1;
}

#lynch-app .pagination-wrapper button svg {
  width: 10px;
  opacity: 0.6;
}

#lynch-app .pagination-wrapper button.left svg {
  transform: rotate(90deg);
}

#lynch-app .pagination-wrapper button.right svg {
  transform: rotate(-90deg);
}

#lynch-app .auth-template {
  height: 100%;
  overflow: hidden;
}

#lynch-app .login-page {
  display: flex;
}

#lynch-app .login-page .bg-image {
  width: 50%;
  overflow: hidden;
}

@media (min-width: 375px) and (max-width: 1024px) {
  #lynch-app .login-page .bg-image {
    width: 100%;
    z-index: 1;
    position: relative;
  }

  #lynch-app .login-page .bg-image img {
    height: 100vh;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media (min-width: 375px) and (max-width: 767px) {
  #lynch-app .login-page .bg-image {
    width: 100%;
    z-index: 1;
    position: relative;
  }

  #lynch-app .login-page .bg-image img {
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media (max-width: 374px) {
  #lynch-app .login-page .bg-image {
    display: none;
  }
}

#lynch-app .login-page img {
  width: auto;
  height: 100%;
}

#lynch-app .login-page img.app-logo {
  max-height: 100px;
}

#lynch-app .form-section {
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 50%;
}

@media (max-width: 1024px) {
  #lynch-app .form-section {
    width: 100%;
    z-index: 2;
    position: absolute;
    height: 75vh;
    min-height: 75vh;
    background-color: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (min-width: 375px) and (max-width: 767px) {
  #lynch-app .form-section {
    width: 100%;
    z-index: 2;
    position: absolute;
    height: 88vh;
    min-height: 88vh;
    background-color: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

#lynch-app .form-section .fake-div {
  width: 100%;
  height: 95px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #BBBBBB;
}

#lynch-app .form-section .fake-div.row {
  flex-direction: row;
  justify-content: center;
}

#lynch-app .login-form {
  padding: 0 15px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 350px;
}

@media (max-width: 375px) {
  #lynch-app .login-form {
    width: 100%;
    padding: 0;
  }
}

#lynch-app .login-form .logo {
  margin: 50px 0px;
}

#lynch-app .login-form .welcome-title {
  text-transform: uppercase;
  color: #D90202;
  letter-spacing: 0px;
  text-align: center;
  font-weight: 400;
  font-size: 25px;
}

#lynch-app .login-form .welcome {
  margin-top: 10px;
  text-align: center;
  letter-spacing: 0px;
  color: #707070;
  opacity: 1;
  font-weight: 600;
  font-size: 16px;
}

#lynch-app .login-form form {
  width: 100%;
}

#lynch-app .login-form .form-full,
#lynch-app .login-form .form-split,
#lynch-app .login-form .form-footer {
  width: 100%;
}

#lynch-app .login-form .form-full {
  margin-top: 50px;
}

#lynch-app .login-form .form-full.no-mt {
  margin-top: 0;
}

#lynch-app .login-form .form-split {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

@media (min-width: 260px) and (max-width: 767px) {
  #lynch-app .login-form .form-split {
    margin-bottom: 10px;
  }
}

#lynch-app .login-form .form-split.center {
  justify-content: center;
}

#lynch-app .login-form .form-split.mt {
  margin-top: 62px;
  margin-bottom: 0;
}

#lynch-app .login-form .form-split .auth-input {
  width: 48%;
  max-width: 168px;
}

#lynch-app .login-form .form-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

@media (min-width: 260px) and (max-width: 767px) {
  #lynch-app .login-form .form-footer {
    flex-direction: column-reverse;
    align-items: center;
  }
}

#lynch-app .login-form .form-footer.center {
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

#lynch-app .login-form .form-link {
  font-size: 13px;
  color: #212121;
  text-decoration: none;
  font-weight: 400;
  text-align: center;
}

#lynch-app .login-form .form-link.right {
  margin-left: auto;
}

#lynch-app .login-form .form-link.already {
  margin-top: 37px;
}

#lynch-app .sidebar {
  background-color: #212121;
  position: fixed;
  left: 0;
  bottom: 0;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 1400px) {
  #lynch-app .sidebar {
    width: 292px;
    max-width: 292px;
  }
}

@media (max-width: 1399px) and (min-width: 1024px) {
  #lynch-app .sidebar {
    width: 192px;
    max-width: 192px;
  }
}

@media (max-width: 1023px) and (min-width: 376px) {
  #lynch-app .sidebar {
    width: 55px;
    max-width: 55px;
  }
}

@media (min-width: 376px) {
  #lynch-app .sidebar {
    top: 0;
    height: 100%;
  }
}

@media (max-width: 375px) {
  #lynch-app .sidebar {
    width: 100%;
    height: 60px;
    z-index: 9999;
  }
}

#lynch-app .sidebar .logo {
  padding: 7px 0;
  font-family: "Times New Roman";
  margin: 0;
  display: flex;
  justify-content: center;
  font-weight: normal;
  letter-spacing: 7px;
}

@media (min-width: 1024px) {
  #lynch-app .sidebar .logo {
    font-size: 80px;
  }
}

@media (max-width: 1023px) {
  #lynch-app .sidebar .logo {
    font-size: 1.5rem;
    padding: 0;
    height: 79px;
    align-items: center;
    margin-left: 8px;
  }
}

@media (max-width: 375px) {
  #lynch-app .sidebar .logo {
    display: none;
  }
}

#lynch-app .sidebar .logo a {
  color: #d90103;
  text-decoration: none;
}

#lynch-app .sidebar .logo a:hover {
  color: #ffffff;
}

@media (max-width: 375px) {
  #lynch-app .sidebar-wrapper ul {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    overflow-x: scroll;
  }
}

#lynch-app .sidebar-wrapper li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  height: 60px;
  position: relative;
  font-weight: 600;
}

#lynch-app .sidebar-wrapper li.active {
  background-color: #d90103;
}

#lynch-app .sidebar-wrapper li.active .link .icon svg {
  opacity: 1;
}

#lynch-app .sidebar-wrapper li.active .long p {
  max-width: 81px;
}

#lynch-app .sidebar-wrapper li p {
  margin-left: 10px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #ffffff;
}

@media (max-width: 1023px) {
  #lynch-app .sidebar-wrapper li p {
    display: none;
  }
}

#lynch-app .sidebar-wrapper a {
  color: #ffffff;
  font-size: 0.875rem;
  text-decoration: none;
}

#lynch-app .sidebar-wrapper .link {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #707070;
}

#lynch-app .sidebar-wrapper .link:hover {
  background-color: #880109;
}

#lynch-app .sidebar-wrapper .link:hover .icon svg {
  opacity: 1;
}

#lynch-app .sidebar-wrapper .link .icon {
  width: 25px;
  display: flex;
  justify-content: center;
}

@media (min-width: 376px) and (max-width: 1023px) {
  #lynch-app .sidebar-wrapper .link .icon {
    margin-right: 15px;
  }
}

@media (min-width: 376px) {
  #lynch-app .sidebar-wrapper .link .icon {
    margin-left: 15px;
  }
}

@media (max-width: 375px) {
  #lynch-app .sidebar-wrapper .link .icon {
    margin-left: 11px;
    margin-right: 11px;
  }
}

#lynch-app .sidebar-wrapper .link .icon svg {
  opacity: 0.7;
  fill: #ffffff;
}

#lynch-app .sidebar-wrapper .extend {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #d90103;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1023px) {
  #lynch-app .sidebar-wrapper .extend {
    display: none;
  }
}

#lynch-app .sidebar-wrapper .extend:hover {
  background-color: #ad0710;
}

#lynch-app .sidebar-wrapper .extend:hover .icon svg {
  opacity: 1;
}

#lynch-app .sidebar-wrapper .extend .icon {
  width: 24px;
  display: flex;
  justify-content: center;
}

#lynch-app .sidebar-wrapper .extend .icon svg {
  opacity: 0.7;
  fill: #ffffff;
  width: 100%;
}

#lynch-app .navbar {
  background-color: #ffffff;
  height: 79px;
  width: 100%;
  /*box-shadow: 0px 2px 6px #0000000A;*/
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#lynch-app .navbar .logo {
  padding: 7px 0;
  font-family: "Times New Roman";
  margin: 0 0 0 20px;
  display: flex;
  justify-content: center;
  font-size: 1.7rem;
}

#lynch-app .navbar .logo a {
  color: #d90103;
  text-decoration: none;
}

#lynch-app .navbar .logo a:hover {
  color: #707070;
}

#lynch-app .navbar .search {
  margin-left: 20px;
  display: flex;
  align-items: center;
}

#lynch-app .navbar .search .icon {
  margin-right: 5px;
}

#lynch-app .navbar .user-menu {
  margin-right: 85px;
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: #707070;
}

@media (min-width: 1400px) {
  #lynch-app .navbar .user-menu {
    margin-right: 85px;
  }
}

@media (max-width: 1399px) and (min-width: 1024px) {
  #lynch-app .navbar .user-menu {
    margin-right: 35px;
  }
}

@media (max-width: 1399px) {
  #lynch-app .navbar .user-menu {
    margin-right: 20px;
  }
}

#lynch-app .navbar .user-menu a {
  background-color: #D90202;
  text-decoration: none;
  padding: 8px 15px;
  color: #fff;
  margin-left: 10px;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.3px;
}

#lynch-app .navbar .user-menu a:hover {
  background-color: #880109;
}

#lynch-app .loader-container {
  width: 100%;
  min-height: calc(100vh - 79px);
  display: flex;
  justify-content: center;
  align-items: center;
}

#lynch-app .lds-spinner {
  color: #d90103;
  width: 80px;
  height: 80px;
}

#lynch-app .lds-spinner div {
  transform-origin: 40px 40px;
  -webkit-animation: lds-spinner 1.2s linear infinite;
          animation: lds-spinner 1.2s linear infinite;
}

#lynch-app .lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #d90103;
}

#lynch-app .lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}

#lynch-app .lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}

#lynch-app .lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}

#lynch-app .lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}

#lynch-app .lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s;
}

#lynch-app .lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s;
}

#lynch-app .lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}

#lynch-app .lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}

#lynch-app .lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}

#lynch-app .lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}

#lynch-app .lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s;
}

#lynch-app .lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

@-webkit-keyframes lds-spinner {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes lds-spinner {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

#lynch-app .filter-wrapper {
  margin: 25px auto 0;
  width: 100%;
  display: flex;
}

@media (min-width: 768px) {
  #lynch-app .filter-wrapper {
    justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  #lynch-app .filter-wrapper {
    flex-direction: column;
  }
}

#lynch-app .filter-wrapper .filter-input #filter-search {
  padding-left: 40px !important;
  background-image: url("/build/images/search-icon_24.svg");
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 15px;
}

#lynch-app .filter-wrapper .filter-input.main-filter {
  max-width: 100%;
  flex: 1;
}

@media (min-width: 768px) {
  #lynch-app .filter-wrapper .filter-input {
    max-width: 50%;
  }
}

@media (max-width: 767px) {
  #lynch-app .filter-wrapper .filter-input {
    width: 100%;
  }
}

@media (min-width: 1025px) {
  #lynch-app .filter-wrapper .filter-dropdown {
    width: 15%;
  }
}

@media (min-width: 768px) {
  #lynch-app .filter-wrapper .filter-dropdown {
    margin-left: 15px;
    max-width: calc(25% - 15px);
  }
}

@media (max-width: 767px) {
  #lynch-app .filter-wrapper .filter-dropdown {
    width: 100%;
  }
}

#lynch-app .v-table-dynamic {
  margin-top: 37px;
}

#lynch-app .product-warnings {
  width: 100%;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#lynch-app .product-warnings .warning {
  border: 1px solid #d90103;
  padding: 5px 10px;
  background-color: #ffffff;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 14px;
}

#lynch-app .lynch-modal {
  display: flex;
  position: fixed;
  justify-content: center;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4);
}

#lynch-app .lynch-modal .modal-content {
  margin: auto 15px;
  padding: 15px 48px 48px;
  border: 1px solid #888;
  width: 651px;
  box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.2), 0 3px 12px 0 rgba(0, 0, 0, 0.2);
  -webkit-animation-name: animatetop;
          animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  border-radius: 5px;
  background-color: #ffffff;
}

@media (min-width: 260px) and (max-width: 375px) {
  #lynch-app .lynch-modal .modal-content {
    height: 70vh;
    width: 90%;
    padding: 0;
    overflow: hidden;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  #lynch-app .lynch-modal .modal-content .modal-header,
  #lynch-app .lynch-modal .modal-content .modal-body,
  #lynch-app .lynch-modal .modal-content .modal-footer {
    padding: 0 20px;
    margin: 12px 0px;
    width: 80%;
  }

  #lynch-app .lynch-modal .modal-content .modal-footer {
    display: flex;
    flex-direction: column-reverse;
  }

  #lynch-app .lynch-modal .modal-content .modal-footer button {
    margin: 12px 0px;
    margin-left: 0px !important;
    margin-right: 0px !important;
    width: 100% !important;
  }
}

@media (min-width: 376px) and (max-width: 767px) {
  #lynch-app .lynch-modal .modal-content {
    height: 70vh;
    width: 99%;
    padding: 0;
    overflow: hidden;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  #lynch-app .lynch-modal .modal-content .modal-header,
  #lynch-app .lynch-modal .modal-content .modal-body,
  #lynch-app .lynch-modal .modal-content .modal-footer {
    padding: 0 20px;
    margin: 12px 0px;
    width: 80%;
  }

  #lynch-app .lynch-modal .modal-content .modal-footer {
    display: flex;
    flex-direction: column-reverse;
  }

  #lynch-app .lynch-modal .modal-content .modal-footer button {
    margin: 12px 0px;
    margin-left: 0px !important;
    margin-right: 0px !important;
    width: 100% !important;
  }
}

#lynch-app .lynch-modal .modal-content.modal-large {
  width: 900px;
}

#lynch-app .lynch-modal .modal-header {
  border: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

#lynch-app .lynch-modal .modal-header.horizontal {
  flex-direction: row;
}

#lynch-app .lynch-modal .modal-header .close {
  color: #707070;
  margin-left: auto;
  font-size: 40px;
  font-weight: normal;
  margin-right: 0;
  opacity: 1;
}

#lynch-app .lynch-modal .modal-header .close svg {
  stroke: #707070;
  outline: 0;
}

#lynch-app .lynch-modal .modal-header .close:hover,
#lynch-app .lynch-modal .modal-header .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#lynch-app .lynch-modal .modal-header .close:hover svg,
#lynch-app .lynch-modal .modal-header .close:focus svg {
  stroke: #d90103;
}

#lynch-app .lynch-modal .modal-header h2 {
  font-size: 1.125rem;
  color: #707070;
  margin-top: 20px;
  font-weight: 600;
  display: initial;
}

#lynch-app .lynch-modal .modal-header h2.center {
  text-align: center;
}

#lynch-app .lynch-modal .modal-header h2.large {
  font-size: 2rem;
  font-weight: 700;
}

@media (min-width: 260px) and (max-width: 767px) {
  #lynch-app .lynch-modal .modal-header h2.large {
    font-size: 1rem;
  }
}

#lynch-app .lynch-modal .modal-header p {
  margin-top: 20px;
  font-size: 1.125rem;
}

#lynch-app .lynch-modal .modal-header p.error {
  color: #d90103;
}

#lynch-app .lynch-modal .modal-body {
  padding: 20px 0 0;
}

#lynch-app .lynch-modal .modal-body .lightbox__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

#lynch-app .lynch-modal .modal-body .lightbox__image img {
  width: 50% !important;
}

#lynch-app .lynch-modal .modal-body p {
  font-size: 0.8125rem;
  line-height: 1.125rem;
  margin: 0 0 20px;
  padding: 0;
  color: #707070;
}

#lynch-app .lynch-modal .modal-body p.error {
  margin: 0;
  color: #d90103;
}

#lynch-app .lynch-modal .modal-body .photos {
  display: flex;
  flex-wrap: wrap;
  max-height: 200px;
  overflow: hidden;
  overflow-y: auto;
}

#lynch-app .lynch-modal .modal-body .photos .photo {
  width: 100px;
  max-width: 100px;
  height: auto;
  margin-right: 10px;
  margin-bottom: 10px;
}

#lynch-app .lynch-modal .modal-body .photos .photo img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

#lynch-app .lynch-modal .modal-body .success,
#lynch-app .lynch-modal .modal-body .error {
  margin: 10px auto 0;
  text-align: center;
  text-transform: uppercase;
}

#lynch-app .lynch-modal .modal-body .success {
  color: #008000;
}

#lynch-app .lynch-modal .modal-body .error {
  color: #d90103;
}

#lynch-app .lynch-modal .modal-body.with-max-height {
  overflow-y: scroll;
}

@media (min-width: 1025px) {
  #lynch-app .lynch-modal .modal-body.with-max-height {
    max-height: 600px;
  }
}

@media (max-width: 1024px) {
  #lynch-app .lynch-modal .modal-body.with-max-height {
    max-height: 300px;
  }
}

#lynch-app .lynch-modal .modal-footer {
  padding: 50px 0 0;
  border: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#lynch-app .lynch-modal .modal-footer button:last-child {
  margin-left: 15px;
}

@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

#lynch-app .borderless-input input {
  border: 0;
  color: #000000;
  font-size: 0.75rem;
  line-height: 1.6875rem;
  width: 100%;
  min-width: 250px;
}

#lynch-app .borderless-input input:focus {
  outline: 0;
}

#lynch-app .borderless-input input::-webkit-input-placeholder {
  opacity: 0.7;
}

#lynch-app .borderless-input input::-moz-placeholder {
  opacity: 0.7;
}

#lynch-app .borderless-input input:-ms-input-placeholder {
  opacity: 0.7;
}

#lynch-app .borderless-input input::-ms-input-placeholder {
  opacity: 0.7;
}

#lynch-app .borderless-input input::placeholder {
  opacity: 0.7;
}

#lynch-app .auth-input {
  margin-bottom: 10px;
  text-align: center;
}

#lynch-app .auth-input input {
  border: 1px solid #D90202;
  color: #707070;
  font-size: 13px;
  width: 224px;
  max-width: 224px;
  border-radius: 25px;
  padding: 17px 14px;
}

@media (min-width: 260px) and (max-width: 319px) {
  #lynch-app .auth-input input {
    font-size: 12px;
  }
}

#lynch-app .auth-input input:focus {
  outline: 0;
}

#lynch-app .auth-input input::-webkit-input-placeholder {
  opacity: 0.8;
}

#lynch-app .auth-input input::-moz-placeholder {
  opacity: 0.8;
}

#lynch-app .auth-input input:-ms-input-placeholder {
  opacity: 0.8;
}

#lynch-app .auth-input input::-ms-input-placeholder {
  opacity: 0.8;
}

#lynch-app .auth-input input::placeholder {
  opacity: 0.8;
}

#lynch-app .checkbox input {
  margin-right: 3px;
}

#lynch-app .checkbox label {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  cursor: pointer;
}

#lynch-app .form-input-single label {
  color: #707070;
  font-size: 0.75rem;
  width: 100%;
  transition: font-size 0.3s;
  margin-bottom: 8px;
}

#lynch-app .form-input,
#lynch-app .form-input-single {
  width: 100%;
  display: flex;
  flex-direction: column;
}

#lynch-app .form-extra {
  color: #707070;
  font-size: 13px;
  font-weight: 600;
}

#lynch-app .form-extra span {
  color: #d90103;
}

@media (min-width: 260px) and (max-width: 767px) {
  #lynch-app .form-extra {
    margin-bottom: 20px;
  }
}

#lynch-app .add-product-btn {
  display: flex;
  background: #1A8B14;
  font-weight: bold;
  color: #fff;
  padding: 8px 10px;
  margin-left: 0px !important;
  font-weight: 800;
  font-size: 12px;
  font-family: "Nunito Sans", sans-serif;
  margin-top: 10px;
  width: 138px;
  float: right;
  cursor: pointer;
}

#lynch-app .add-product-btn span {
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 2px;
}

#lynch-app .add-product-btn svg {
  margin-left: 10px;
  margin-top: 2px;
  width: 10px;
  height: 8px;
  fill: #fff !important;
  opacity: 1;
}

#lynch-app .add-product-btn:hover {
  opacity: 0.8;
}

#lynch-app .form-input {
  margin-bottom: 20px;
  /* SELECT DROPDOWN */
}

#lynch-app .form-input.row {
  flex-direction: row;
  align-items: center;
  font-size: 0.75rem;
  margin-bottom: 16px;
}

#lynch-app .form-input.row input {
  margin-right: 5px;
  height: inherit;
  cursor: pointer;
}

#lynch-app .form-input.row label {
  margin-bottom: 0;
  cursor: pointer;
}

#lynch-app .form-input label {
  color: #707070;
  font-size: 0.75rem;
  width: 100%;
  transition: font-size 0.3s;
  margin-bottom: 8px;
}

#lynch-app .form-input label span {
  color: #d90103;
}

#lynch-app .form-input.error label {
  font-size: 0.625rem;
  margin-bottom: 1px;
}

#lynch-app .form-input.error input,
#lynch-app .form-input.error textarea,
#lynch-app .form-input.error .component__select {
  border-color: #d90103;
}

#lynch-app .form-input .error {
  margin-bottom: 5px;
  color: #d90103;
  transition-timing-function: ease-in;
  transition: 0.2s;
  font-size: 0.8125rem;
}

#lynch-app .form-input input {
  height: 46px;
  line-height: 46px;
  border: 1px solid #d4d4d4;
  border-radius: 0px;
  color: #707070;
  font-weight: 600;
  padding: 0 18px;
  font-size: 13px;
  font-family: "Nunito Sans", sans-serif;
}

@media (min-width: 260px) and (max-width: 320px) {
  #lynch-app .form-input input {
    font-size: 10px;
  }
}

#lynch-app .form-input input:focus {
  outline: 0;
  border-color: #D90202;
}

#lynch-app .form-input input::-webkit-input-placeholder {
  color: #707070;
}

#lynch-app .form-input input::-moz-placeholder {
  color: #707070;
}

#lynch-app .form-input input:-ms-input-placeholder {
  color: #707070;
}

#lynch-app .form-input input::-ms-input-placeholder {
  color: #707070;
}

#lynch-app .form-input input::placeholder {
  color: #707070;
}

#lynch-app .form-input textarea {
  border: 1px solid #d4d4d4;
  border-radius: 0px;
  padding: 18px;
  font-size: 13px;
  height: 170px;
  font-weight: 600;
  font-family: "Nunito Sans", sans-serif;
  margin-top: 8px;
  color: #707070;
  max-width: 100%;
}

#lynch-app .form-input textarea:focus {
  outline: 0;
  border-color: #D90202;
}

#lynch-app .form-input textarea::-webkit-input-placeholder {
  color: #707070;
}

#lynch-app .form-input textarea::-moz-placeholder {
  color: #707070;
}

#lynch-app .form-input textarea:-ms-input-placeholder {
  color: #707070;
}

#lynch-app .form-input textarea::-ms-input-placeholder {
  color: #707070;
}

#lynch-app .form-input textarea::placeholder {
  color: #707070;
}

@media (min-width: 260px) and (max-width: 320px) {
  #lynch-app .form-input textarea {
    font-size: 10px;
    width: auto;
    max-width: 90%;
  }
}

#lynch-app .form-input .component-container {
  cursor: pointer;
  position: relative;
}

#lynch-app .form-input .component-container.active .component__select {
  border: 1px solid #D90202;
}

#lynch-app .form-input .component__select {
  height: 46px;
  line-height: 46px;
  border: 1px solid #d4d4d4;
  border-radius: 0px;
  padding: 0 18px;
  font-size: 13px;
  display: grid;
  grid-template-columns: 10fr 1fr;
  position: relative;
  z-index: 1501;
  background-color: #ffffff;
  font-weight: 600;
  font-family: "Nunito Sans", sans-serif;
  text-transform: uppercase;
}

@media (min-width: 260px) and (max-width: 320px) {
  #lynch-app .form-input .component__select {
    font-size: 10px;
  }
}

#lynch-app .form-input .component__select--name {
  cursor: pointer;
  color: #707070;
}

#lynch-app .form-input .component__select--name.selected {
  color: #707070;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#lynch-app .form-input .c-arrow-down svg,
#lynch-app .form-input .c-arrow-up svg {
  fill: #AFAFAF;
}

#lynch-app .form-input .c-arrow-down {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: end;
  cursor: pointer;
}

#lynch-app .form-input .c-arrow-up {
  justify-self: end;
}

#lynch-app .form-input .c-arrow-up svg {
  transform: rotate(180deg);
}

#lynch-app .form-input .component__select-options {
  background: #ffffff;
  border: 1px solid #d4d4d4;
  border-top: none;
  position: absolute;
  z-index: 1502;
  width: calc(100% - 2px);
  margin: 1px 0 0;
  padding: 2px 0 0;
}

@media (min-width: 260px) and (max-width: 767px) {
  #lynch-app .form-input .component__select-options {
    height: 150px;
    overflow: hidden;
    overflow-y: auto;
  }
}

#lynch-app .form-input .select--option {
  height: 46px;
  line-height: 45px;
  display: grid;
  color: #707070;
  align-content: center;
  padding: 0 18px;
  background-color: #ffffff;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 13px !important;
}

#lynch-app .form-input .select--option:hover {
  background-color: #EEEEEE;
  border: 1px solid #000000;
}

#lynch-app .form-input .select--option:hover label {
  border: 0;
}

@media (min-width: 260px) and (max-width: 1024px) {
  #lynch-app .form-input .select--option {
    line-height: normal;
  }
}

#lynch-app .form-input .select--option label {
  cursor: pointer;
  margin-bottom: 0;
  border-bottom: 1px solid #EEEEEE;
}

#lynch-app .form-input .select--option:last-child label {
  border-bottom: none;
}

#lynch-app .form-input .select--option input {
  display: none;
}

#lynch-app .form-input .single-option {
  height: 55px;
  background-color: #2595ec;
  font-size: 0.75rem;
  border: 1px solid red;
}

#lynch-app .form-input .cust-sel {
  width: 200px;
  height: 38px;
  background-color: #f5f5fa;
  border: 1px solid #dddddd;
}

#lynch-app .form-input .cust-sel:focus {
  outline-width: 0;
}

#lynch-app .main-button,
#lynch-app .secondary-button {
  border-radius: 4px;
  padding: 0;
  border-width: 1px;
  border-style: solid;
  width: 165px;
  max-width: 165px;
  height: 46px;
  max-height: 46px;
  cursor: pointer;
  font-size: 0.9375rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}

#lynch-app .main-button:focus,
#lynch-app .secondary-button:focus {
  outline: 0;
  box-shadow: none;
}

#lynch-app .main-button {
  background-color: #d90103;
  border-color: #d90103;
  color: #ffffff;
  width: 254px;
  max-width: 254px;
  height: 50px;
  max-height: 50px;
  border-radius: 25px;
  border: 1px solid #707070;
}

#lynch-app .main-button:hover {
  background-color: #a00911;
}

@media (min-width: 260px) and (max-width: 767px) {
  #lynch-app .main-button {
    margin-top: 10px;
    margin-right: 0px;
  }
}

#lynch-app .secondary-button {
  background-color: #ffffff;
  border-color: #AFAFAF;
  color: #000000;
  width: 254px;
  max-width: 254px;
  height: 50px;
  max-height: 50px;
  border-radius: 25px;
  border: 1px solid #707070;
  margin-right: 15px;
}

#lynch-app .secondary-button:hover {
  background-color: #d4d4d4;
}

@media (min-width: 260px) and (max-width: 767px) {
  #lynch-app .secondary-button {
    margin-top: 10px;
    margin-right: 0px;
    margin-bottom: 10px;
  }
}

#lynch-app .small-cancel,
#lynch-app .small-secondary,
#lynch-app .small-primary,
#lynch-app .small-tertiary {
  width: 155px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px !important;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 10px;
  opacity: 0.8;
  text-transform: uppercase;
  font-weight: 700;
}

#lynch-app .small-cancel:focus,
#lynch-app .small-secondary:focus,
#lynch-app .small-primary:focus,
#lynch-app .small-tertiary:focus {
  outline: 0;
}

#lynch-app .small-cancel:hover,
#lynch-app .small-secondary:hover,
#lynch-app .small-primary:hover,
#lynch-app .small-tertiary:hover {
  opacity: 1;
}

@media (min-width: 320px) and (max-width: 767px) {
  #lynch-app .small-cancel,
  #lynch-app .small-secondary,
  #lynch-app .small-primary,
  #lynch-app .small-tertiary {
    width: 100% !important;
    padding: 0 20px;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  #lynch-app .small-cancel:first-child,
  #lynch-app .small-secondary:first-child,
  #lynch-app .small-primary:first-child,
  #lynch-app .small-tertiary:first-child {
    margin-left: 0px;
  }
}

@media (min-width: 260px) and (max-width: 320px) {
  #lynch-app .small-cancel,
  #lynch-app .small-secondary,
  #lynch-app .small-primary,
  #lynch-app .small-tertiary {
    font-size: 10px !important;
    word-break: initial !important;
  }
}

#lynch-app .small-cancel {
  background-color: #ffffff;
  color: #4D4F5C;
  border: 1px solid #AFAFAF;
}

#lynch-app .small-secondary {
  background-color: #AFAFAF;
  color: #ffffff;
  border: 1px solid #AFAFAF;
}

#lynch-app .small-tertiary {
  background-color: #707070;
  color: #ffffff;
  border: 1px solid #707070;
  opacity: 1;
}

@media (min-width: 260px) and (max-width: 767px) {
  #lynch-app .small-tertiary {
    margin-top: 10px;
  }
}

#lynch-app .small-primary {
  background-color: #1d8a13;
  color: #ffffff;
  border: 1px solid #707070;
  word-break: break-word;
}

@media (min-width: 260px) and (max-width: 767px) {
  #lynch-app .small-primary {
    margin-left: 0px;
  }
}

#lynch-app .add-photo.active {
  cursor: pointer;
  color: #d90103;
}

#lynch-app .add,
#lynch-app .edit,
#lynch-app .delete {
  border: 0;
  background-color: transparent;
  cursor: text;
}

@media (min-width: 376px) {
  #lynch-app .add,
  #lynch-app .edit,
  #lynch-app .delete {
    margin-left: 15px;
    margin-right: 15px;
  }
}

@media (max-width: 375px) {
  #lynch-app .add,
  #lynch-app .edit,
  #lynch-app .delete {
    margin-left: 5px;
    margin-right: 5px;
  }
}

#lynch-app .add svg,
#lynch-app .edit svg,
#lynch-app .delete svg {
  width: auto;
  height: 20px;
  fill: #AFAFAF;
  opacity: 0.5;
}

#lynch-app .add.active,
#lynch-app .edit.active,
#lynch-app .delete.active {
  cursor: pointer;
}

#lynch-app .add.active svg,
#lynch-app .edit.active svg,
#lynch-app .delete.active svg {
  fill: #d90103;
}

#lynch-app .add.active:hover svg,
#lynch-app .edit.active:hover svg,
#lynch-app .delete.active:hover svg {
  opacity: 1;
}

#lynch-app .add:focus,
#lynch-app .edit:focus,
#lynch-app .delete:focus {
  outline: 0;
}

#lynch-app .form-create {
  /*background-color: $white;*/
  /*box-shadow: 0px 2px 6px #0000000A;*/
}

#lynch-app .form-create.transparent {
  background-color: transparent;
  margin: 0;
  box-shadow: none;
}

@media (min-width: 768px) {
  #lynch-app .form-create.transparent {
    padding: 0 35px;
  }
}

@media (max-width: 767px) {
  #lynch-app .form-create.transparent {
    padding: 0;
  }
}

@media (min-width: 1024px) {
  #lynch-app .form-create {
    margin: 30px 0 0;
    /*padding: 30px 55px;*/
  }
}

@media (max-width: 1023px) and (min-width: 768px) {
  #lynch-app .form-create {
    margin: 25px 0 0;
    /*padding: 25px 35px;*/
  }
}

@media (max-width: 767px) {
  #lynch-app .form-create {
    margin: 20px 0 0;
    /*padding: 20px 25px;*/
  }
}

#lynch-app .form-create .form-row {
  display: flex;
}

#lynch-app .form-create .form-row.align-right {
  flex-direction: column-reverse;
}

@media (max-width: 767px) {
  #lynch-app .form-create .form-row {
    flex-direction: column;
  }
}

#lynch-app .form-create .form-row .buttons-wrapper {
  margin-top: 100px;
  justify-content: flex-end;
  width: 100%;
}

@media (min-width: 260px) and (max-width: 767px) {
  #lynch-app .form-create .form-row .buttons-wrapper {
    margin-top: 10px;
    margin-bottom: 10px;
    flex-direction: column-reverse;
  }
}

#lynch-app .form-create .form-row .buttons-wrapper.no-margin-top {
  margin-top: 10px;
}

#lynch-app .form-create .form-row .buttons-wrapper .small-cancel {
  border-radius: 20px;
  font-size: 1rem;
  opacity: 1;
}

#lynch-app .form-create .form-row .buttons-wrapper .small-cancel:hover {
  opacity: 0.8;
}

@media (min-width: 260px) and (max-width: 767px) {
  #lynch-app .form-create .form-row .buttons-wrapper .small-cancel {
    margin-left: 0px;
    width: auto;
    margin-top: 10px;
  }
}

#lynch-app .form-create .form-row .buttons-wrapper .small-primary {
  opacity: 1;
  border-radius: 20px;
  font-size: 1rem;
  width: auto;
  padding-left: 40px;
  padding-right: 40px;
}

#lynch-app .form-create .form-row .buttons-wrapper .small-primary:hover {
  opacity: 0.8;
}

@media (min-width: 260px) and (max-width: 767px) {
  #lynch-app .form-create .form-row .buttons-wrapper .small-primary {
    margin-left: 0px;
  }
}

#lynch-app .form-create .form-row .buttons-wrapper .small-tertiary {
  opacity: 1;
  border-radius: 20px;
  font-size: 1rem;
  width: auto;
  padding-left: 40px;
  padding-right: 40px;
}

#lynch-app .form-create .form-row .buttons-wrapper .small-tertiary:hover {
  opacity: 0.8;
}

@media (min-width: 260px) and (max-width: 767px) {
  #lynch-app .form-create .form-row .buttons-wrapper .small-tertiary {
    margin-left: 0px;
  }
}

#lynch-app .form-create .form-input input,
#lynch-app .form-create .form-input textarea {
  border-radius: 0px;
}

@media (min-width: 768px) {
  #lynch-app .form-create .col-input {
    max-width: 462px;
    width: 50%;
  }
}

@media (max-width: 767px) {
  #lynch-app .form-create .col-input {
    width: 100%;
  }
}

@media (min-width: 768px) {
  #lynch-app .form-create .col-input:nth-of-type(2) {
    margin-left: 30px;
  }
}

@media (min-width: 768px) {
  #lynch-app .form-create .col-input.estimated-hours {
    margin-left: 30px;
  }
}

#lynch-app .form-create .buttons-wrapper {
  margin-top: 10px;
  margin-bottom: 10px;
  width: 70%;
  display: flex;
  justify-content: flex-end;
}

#lynch-app .files {
  background-color: #ffffff;
  box-shadow: 0px 2px 6px #0000000A;
  border: 1px solid #707070;
  padding: 0 20px;
  margin-bottom: 30px !important;
}

#lynch-app .files.collapsed {
  max-height: 137px;
  overflow: hidden;
}

@media (min-width: 768px) {
  #lynch-app .files {
    margin: 20px auto 0;
    min-height: 200px;
  }
}

@media (max-width: 767px) {
  #lynch-app .files.more {
    margin: 20px auto 0;
  }

  #lynch-app .files.less {
    margin: 20px auto 25px;
  }
}

#lynch-app .files .row {
  border-bottom: 1px solid #707070;
  padding: 5px 15px;
  min-height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#lynch-app .files .row.between {
  justify-content: space-between;
}

#lynch-app .files .row:last-of-type {
  border-bottom: 0;
}

#lynch-app .files .file {
  font-size: 0.75rem;
  color: #707070;
}

#lynch-app .files .file a {
  color: #d90103;
  cursor: pointer;
  font-weight: 700;
}

#lynch-app .files .file a:hover {
  text-decoration: underline;
}

#lynch-app .files .empty {
  text-transform: uppercase;
  text-align: center;
  font-size: 13px;
  font-family: "Nunito Sans", sans-serif;
  margin-top: 25px;
  font-weight: 600;
  color: #707070;
  margin-bottom: 25px;
}

#lynch-app .comments {
  margin: 0 auto 20px;
  flex-direction: column-reverse;
}

#lynch-app .comments textarea {
  width: 97%;
  max-width: 97%;
}

@media (min-width: 320px) and (max-width: 1024px) {
  #lynch-app .comments textarea {
    width: auto;
  }
}

@media (min-width: 260px) and (max-width: 319px) {
  #lynch-app .comments textarea {
    font-size: 10px;
    width: auto;
    max-width: 90%;
  }
}

#lynch-app .comments .notifications {
  margin-bottom: 15px !important;
}

#lynch-app .comments .empty {
  text-transform: uppercase;
  font-size: 13px;
  font-family: "Nunito Sans", sans-serif;
  margin-top: 25px;
  font-weight: 600;
  color: #707070;
  margin-bottom: 25px;
}

#lynch-app .comments .comments-container {
  margin-top: 23px;
  max-height: 450px;
  overflow: hidden;
  overflow-y: auto;
}

#lynch-app .comments .comment {
  font-size: 12px;
  color: #212121;
  font-weight: 700;
  font-family: "Nunito Sans", sans-serif;
}

#lynch-app .comments .comment-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  padding: 15px 0px;
  background-color: #ffffff;
}

#lynch-app .comments .comment-row.message {
  display: block;
  color: #212121;
}

#lynch-app .comments .comment-row.message div {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 12px;
  font-family: "Nunito Sans", sans-serif;
}

#lynch-app .comments .comment-row .author {
  color: #707070;
  padding: 0;
  font-size: normal;
  font-weight: 700;
  font-size: 12px;
  font-family: "Nunito Sans", sans-serif;
}

#lynch-app .comments .comment-row .message {
  display: block;
  margin-bottom: 15px;
}

@media (min-width: 320px) and (max-width: 767px) {
  #lynch-app .comments .comment-row .message {
    width: 35ch;
  }
}

#lynch-app .comments .comment-row .remove {
  float: right;
}

#lynch-app .comments .comment-btn-wrapper {
  margin-top: 10px;
  margin-bottom: 20px;
  margin-right: 0;
  margin-left: 0;
}

#lynch-app .comments .comment-btn-wrapper .add-comment {
  text-decoration: none;
  display: flex;
  background: #1A8B14;
  font-weight: bold;
  color: #fff;
  padding: 8px 15px;
  margin-left: 0px !important;
  font-weight: 800;
  font-size: 12px;
  font-family: "Nunito Sans", sans-serif;
  margin-top: 10px;
  float: right;
  cursor: pointer;
  border: 0;
}

#lynch-app .comments .comment-btn-wrapper .add-comment span {
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 2px;
}

#lynch-app .comments .comment-btn-wrapper .add-comment svg {
  margin-left: 10px;
  margin-top: 2px;
  width: 10px !important;
  height: 18px !important;
  fill: #fff !important;
  opacity: 1;
}

#lynch-app .comments .comment-btn-wrapper .add-comment:hover {
  opacity: 0.8;
}

#lynch-app .alert {
  margin-top: 24px;
}

#lynch-app .alert p {
  color: #d90103;
}

/* Standalone from #lynch-app */

.tooltip {
  display: block !important;
  z-index: 10000;
}

.tooltip .tooltip-inner {
  background: #000000;
  color: #ffffff;
  border-radius: 3px;
  padding: 5px 10px;
}

.tooltip .tooltip-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  margin: 5px;
  border-color: #000000;
  z-index: 1;
}

.tooltip[x-placement^=top] {
  margin-bottom: 5px;
}

.tooltip[x-placement^=top] .tooltip-arrow {
  border-width: 5px 5px 0 5px;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  bottom: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}

.tooltip[x-placement^=bottom] {
  margin-top: 5px;
}

.tooltip[x-placement^=bottom] .tooltip-arrow {
  border-width: 0 5px 5px 5px;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-top-color: transparent !important;
  top: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}

.tooltip[x-placement^=right] {
  margin-left: 5px;
}

.tooltip[x-placement^=right] .tooltip-arrow {
  border-width: 5px 5px 5px 0;
  border-left-color: transparent !important;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
  left: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}

.tooltip[x-placement^=left] {
  margin-right: 5px;
}

.tooltip[x-placement^=left] .tooltip-arrow {
  border-width: 5px 0 5px 5px;
  border-top-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  right: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}

.tooltip[aria-hidden=true] {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.15s, visibility 0.15s;
}

.tooltip[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.15s;
}

.tooltip.info .tooltip-inner {
  background: rgba(0, 68, 153, 0.9);
  color: white;
  padding: 24px;
  border-radius: 5px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.tooltip.info .tooltip-arrow {
  border-color: rgba(0, 68, 153, 0.9);
}

.tooltip.popover .popover-inner {
  background: #f9f9f9;
  color: black;
  padding: 24px;
  border-radius: 5px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.tooltip.popover .popover-arrow {
  border-color: #f9f9f9;
}

