@charset "UTF-8";

/* src/scss/app.scss */
.app-content .app-btn,
.app-menu .app-btn {
  background-color: #307186;
  color: #fff;
}
.app-content {
  margin: 0 auto;
  max-width: 400px;
  padding-top: 90px;
  position: relative;
}
.app-content .loading {
  align-items: center;
  background-color: #307186;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  left: 0;
  position: fixed;
  text-transform: uppercase;
  top: 0;
  width: 100%;
  z-index: 999;
}
.app-content .loading#loginLoading {
  opacity: 0.7;
}
.app-menu {
  position: absolute;
  right: 0;
  width: 100%;
  z-index: 3;
}
.app-menu .nav-wrapper {
  background: #fff;
  height: 100vh;
  left: 0;
  position: fixed;
  transform: translateX(100%);
  transition: transform 0.5s;
  width: 100vw;
}
.app-menu .nav-wrapper.active {
  animation: app-menu-animate-in 0.5s ease;
  transform: translateX(0);
}
.app-menu .nav-wrapper .mobile-nav-bar {
  align-items: center;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 80%;
  justify-content: center;
  position: relative;
  text-align: center;
}
.app-menu .nav-wrapper .mobile-nav-bar li {
  list-style: none;
  margin-bottom: 10px;
  width: 80vw;
}
.app-menu .nav-wrapper .mobile-nav-bar li.switch-user-menu-item {
  margin-top: 40px;
}
.app-menu .nav-wrapper .mobile-nav-bar li.logout-menu-item #logout-btn {
  background-color: orange;
}
.app-menu .nav-wrapper .mobile-nav-bar li button {
  width: 100%;
}
.app-menu .nav-wrapper .main-menu-fixed-btn-group {
  bottom: 80px;
  display: flex;
  height: 50px;
  position: fixed;
  right: 15px;
}
.app-menu .nav-wrapper .main-menu-fixed-btn-group span:first-child {
  margin-right: 10px;
}
.app-menu .nav-wrapper .main-menu-fixed-btn-group span.reload-data-menu-item button {
  padding: 0.5rem;
}
.app-menu .nav-wrapper .main-menu-fixed-btn-group span.reload-data-menu-item img {
  filter: invert(1);
  width: 100%;
}
.app-menu .nav-wrapper .main-menu-fixed-btn-group button {
  background-color: #307186;
  border: 0;
  border-radius: 50%;
  height: 3rem;
  margin: 0;
  padding: 0;
  width: 3rem;
}
@keyframes app-menu-animate-in {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
.username-wrapper {
  color: #333;
  font-size: 0.9rem;
  line-height: 1.2;
  padding: 10px;
  z-index: 2;
}
.username-wrapper .logged-in-as,
.username-wrapper .running-as-label {
  color: #666;
  display: block;
  font-size: 0.8rem;
}
.username-wrapper .logged-in-name {
  display: block;
  font-weight: bold;
  margin-bottom: 4px;
}
.username-wrapper .running-as-name {
  color: #e67e22;
  display: block;
  font-weight: bold;
}
.username-wrapper .switch-back-btn {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 0.7rem;
  margin-left: 4px;
  padding: 0;
  text-decoration: underline;
}
.username-wrapper .switch-back-btn:hover {
  color: #666;
}
#burger-menu {
  opacity: 1;
  position: fixed;
  right: 10px;
  top: 10px;
  transition: opacity 0.25s;
  z-index: 2;
}
#burger-menu.show {
  animation: animate-in-burger-menu 0.25s ease;
}
#burger-menu.hide {
  opacity: 0;
  pointer-events: none;
}
#burger-menu .burger-menu-wrapper {
  align-items: center;
  background-color: #307186;
  border-radius: 10px;
  display: flex;
  height: 50px;
  justify-content: center;
  width: 50px;
}
#burger-menu .burger-menu-wrapper #burger {
  background-color: #fff;
  border: 0;
  height: 3px;
  outline: 0;
  position: relative;
  transition: background-color 0.25s;
  width: 70%;
}
#burger-menu .burger-menu-wrapper #burger.active {
  background-color: transparent;
}
#burger-menu .burger-menu-wrapper #burger.active::before {
  top: 0;
  transform: rotate(45deg);
}
#burger-menu .burger-menu-wrapper #burger.active::after {
  bottom: 0;
  transform: rotate(-45deg);
}
#burger-menu .burger-menu-wrapper #burger::before {
  background: #fff;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  top: 9px;
  transition: top 0.4s, transform 0.4s;
  width: 100%;
}
#burger-menu .burger-menu-wrapper #burger::after {
  background: #fff;
  bottom: 10px;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  transition: bottom 0.4s, transform 0.4s;
  width: 100%;
}
@keyframes animate-in-burger-menu {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.latest-reports-container {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  min-height: 100%;
  width: calc(100% - 20px);
}
.latest-reports-container .latest-reports-wrapper {
  width: 100%;
}
.latest-reports-container .latest-reports-wrapper .latest-report-list-header {
  border-bottom: 2px solid #307186;
  display: flex;
  padding-bottom: 10px;
}
.latest-reports-container .latest-reports-wrapper .latest-report-list-header .reports-header.localisation {
  width: 35%;
  word-break: break-word;
}
.latest-reports-container .latest-reports-wrapper .latest-report-list-header .reports-header.type {
  padding-left: 5px;
  width: 22%;
}
.latest-reports-container .latest-reports-wrapper .latest-report-list-header .reports-header.date {
  width: 23%;
}
.latest-reports-container .latest-reports-wrapper .latest-report-list-header .reports-header.details {
  text-align: right;
  width: 20%;
}
.latest-reports-container .latest-reports-wrapper .reports-list {
  font-size: 14px;
  margin-bottom: 3rem;
}
.latest-reports-container .latest-reports-wrapper .reports-list .row-wrapper {
  align-items: center;
  border-bottom: 1px solid #307186;
  display: flex;
  padding: 10px 0;
}
.latest-reports-container .latest-reports-wrapper .reports-list .row-wrapper .report-entry.localisation {
  width: 35%;
}
.latest-reports-container .latest-reports-wrapper .reports-list .row-wrapper .report-entry.type {
  padding-left: 5px;
  width: 22%;
}
.latest-reports-container .latest-reports-wrapper .reports-list .row-wrapper .report-entry.date {
  width: 23%;
}
.latest-reports-container .latest-reports-wrapper .reports-list .row-wrapper .report-entry.details {
  text-align: right;
  width: 20%;
}
.report-modal-container {
  animation: animate-in-modal 0.3s ease;
  background-color: rgba(48, 113, 134, 0.8392156863);
  height: 100%;
  left: 0;
  opacity: 1;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 3;
}
.report-modal-container.animate-out {
  animation: animate-out-modal 0.3s ease;
}
.report-modal-container.animate-out .report-modal-wrapper {
  animation: animate-out-modal-content 0.3s ease;
}
.report-modal-container.animate-out .report-modal-wrapper .modal-close-btn {
  transform: rotate(-180deg);
}
.report-modal-container .report-modal-wrapper {
  animation: animate-in-modal-content 0.4s ease;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2901960784);
  font-size: 13px;
  height: 93vh;
  left: 50%;
  overflow: scroll;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 93vw;
}
.report-modal-container .report-modal-wrapper .modal-close-btn {
  animation: animate-in-close-btn 0.4s ease;
  background: transparent;
  height: 40px;
  position: absolute;
  right: 10px;
  top: 10px;
  transition: transform 0.3s;
  width: 40px;
}
.report-modal-container .report-modal-wrapper .modal-close-btn::before,
.report-modal-container .report-modal-wrapper .modal-close-btn::after {
  background-color: #307186;
  content: "";
  display: block;
  height: 3px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 90%;
}
.report-modal-container .report-modal-wrapper .modal-close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.report-modal-container .report-modal-wrapper .modal-close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.report-modal-container .report-modal-wrapper .localisation-information {
  padding: 10px;
}
.report-modal-container .report-modal-wrapper .localisation-information > div {
  display: flex;
}
.report-modal-container .report-modal-wrapper .localisation-information > div span:first-child {
  font-weight: 700;
  width: 40%;
}
.report-modal-container .report-modal-wrapper .report-information {
  border-top: 1px solid #307186;
  padding: 10px;
}
.report-modal-container .report-modal-wrapper .report-information .report-entry {
  border-bottom: 1px solid #e9ecef;
  display: flex;
  margin-bottom: 3px;
  padding: 3px 0;
}
.report-modal-container .report-modal-wrapper .report-information .report-entry .entry-title {
  font-weight: 700;
  width: 50%;
}
.report-modal-container .report-modal-wrapper .report-information .report-entry .entry-information {
  width: 50%;
}
@keyframes animate-in-modal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes animate-out-modal {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes animate-in-modal-content {
  from {
    transform: translate(-100%, -50%);
  }
  to {
    transform: translate(-50%, -50%);
  }
}
@keyframes animate-out-modal-content {
  from {
    transform: translate(-50%, -50%);
  }
  to {
    transform: translate(-100%, -50%);
  }
}
@keyframes animate-in-close-btn {
  from {
    transform: rotate(-180deg);
  }
  to {
    transform: rotate(0);
  }
}
.login-form-view {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  z-index: 2;
}
.login-form-view .login-form-wrapper {
  width: 80vw;
}
.login-form-view .login-form-wrapper .logo-container {
  background-color: #307186;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  padding: 20px;
}
.login-form-view .login-form-wrapper .logo-container img {
  max-height: 100px;
}
.login-form-view .login-form-wrapper form {
  text-align: center;
}
.login-form-view .login-form-wrapper form button {
  width: 100%;
}
.service-information .service-header {
  display: none;
  position: absolute;
  top: 10px;
}
.lightbox {
  align-items: center;
  background: #fff;
  border: 1px solid black;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: none;
  height: 90%;
  justify-content: center;
  left: 50%;
  padding: 10px;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  z-index: 1000;
}
.lightbox .lightbox__img {
  max-height: 80%;
  max-width: 100%;
  width: 100%;
}
.lightbox .lightbox__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  position: absolute;
  top: 10px;
  width: 100%;
}
.lightbox .lightbox__header .lightbox__btn-row {
  align-items: center;
  column-gap: 10px;
  display: flex;
  justify-content: center;
}
.lightbox .lightbox__header .lightbox__btn-row button {
  -webkit-appearance: none;
  background-color: #307186;
  border: 0;
  border-radius: 5px;
  height: 40px;
  padding: 5px;
  width: 40px;
}
.lightbox .lightbox__header .lightbox__btn-row button.lightbox__delete {
  background-color: #DC3545;
}
.lightbox .lightbox__header .lightbox__btn-row button.lightbox__delete img {
  height: 25px;
}
.lightbox .lightbox__header .lightbox__btn-row button.lightbox__close {
  align-items: center;
  color: white;
  display: flex;
  font-size: 1.5rem;
  font-weight: 100;
  justify-content: center;
}
.lightbox .lightbox__header .lightbox__btn-row button.lightbox__close span {
  position: relative;
  top: -2px;
}
.lightbox .lightbox__footer {
  border-top: 1px solid;
  bottom: 5px;
  padding: 5px 5px 0;
  position: absolute;
  width: 100%;
}
.lightbox .lightbox__footer .lightbox__btn-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.lightbox .lightbox__footer .lightbox__btn-row button {
  -webkit-appearance: none;
  background-color: #307186;
  border: 0;
  border-radius: 5px;
  color: white;
  height: 40px;
  padding: 5px;
  width: 40px;
}
.lightbox[aria-hidden=false] {
  display: flex;
}
.service-information__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service-information__container > button {
  margin-top: 10px;
  width: calc(50% - 5px);
}
.service-information__container .next-service {
  display: none;
  margin: 0.5rem 0;
  padding: 0.75rem;
  width: 100%;
}
.service-information__container .next-service h2 {
  font-size: 1.2rem;
}
.service-information__container .next-service #skip-next-service-btn {
  background-color: #FFC107;
  color: #212529;
  margin-top: 5px;
  width: 100%;
}
.extra-info-background h2 {
  background-color: yellow;
  width: 150px;
}
.validation-container {
  background: #d8000c;
  border-radius: 10px;
  color: #fff;
  margin: 10px 0;
}
.validation-container .form-errors {
  padding: 10px;
}
.validation-container .form-errors li {
  margin-bottom: 5px;
}
.form-tube-part {
  margin-bottom: 10px;
}
.form-tube-part .tube-part {
  animation: animate-in-tube 0.3s ease;
  margin-bottom: 10px;
  position: relative;
}
.form-tube-part .tube-part.animate-out {
  animation: animate-out-tube 0.3s ease;
}
.form-tube-part .tube-part .form-group {
  margin-bottom: 5px;
}
.form-tube-part .tube-part .form-group label {
  font-size: 14px;
  margin-bottom: 3px;
}
.form-tube-part .tube-part .form-check {
  width: 50%;
}
.form-tube-part .tube-part .form-check .form-check-input {
  transform: scale(1.5);
}
.form-tube-part .shifted-radio {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.form-tube-part .shifted-radio .form-check {
  margin-left: 20px;
  width: auto;
}
.form-tube-part .shifted-radio .form-check input {
  margin: 0 10px;
}
.form-tube-part .weight-checkboxes {
  display: flex;
}
.form-tube-part .weight-checkboxes .form-check {
  margin-left: 1rem;
  width: auto;
}
form {
  margin: 15px 0;
}
form#serviceform {
  display: flex;
  flex-direction: column;
}
form #show-service-history-btn,
form #show-next-service-btn {
  background-color: #fff;
  border-color: #307186;
  color: #307186;
}
form .misc-label {
  background-color: yellow;
  width: 115px;
}
form .filter-shift-input {
  margin: 15px 0 0;
  padding: 10px;
}
form .form-check {
  margin: 5px 0;
}
form .form-check .form-check-input {
  transform: scale(1.5);
}
form .checkboxes-second-part {
  margin-bottom: 10px;
}
form .checkbox-instructions {
  border-top: 1px solid #eee;
  display: block;
  margin: 15px 0 5px;
}
form .service-submit {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 2rem;
  width: 80%;
}
@keyframes animate-in-tube {
  from {
    max-height: 0;
    opacity: 0;
    transform: translate(-30%, 50%) scale(0.1);
  }
  to {
    max-height: 100%;
    opacity: 1;
    transform: translate(0) scale(1);
  }
}
@keyframes animate-out-tube {
  from {
    max-height: 100%;
    opacity: 1;
    transform: translate(0) scale(1);
  }
  to {
    max-height: 0;
    opacity: 0;
    transform: translate(-30%, 0%) scale(0.1);
  }
}
.confirm__dialog {
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  font-size: 1.25rem;
  inset: 0;
  justify-content: center;
  opacity: 0;
  position: fixed;
  transition: opacity 0.2s;
  visibility: hidden;
  z-index: 9999;
}
.confirm__dialog[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}
.dialog__msg {
  font-weight: 500;
  line-height: 1.2;
  margin: 10px auto;
  width: 80%;
}
.dialog__container {
  background: #fff;
  border-radius: 0.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-width: 350px;
  padding: 10px;
  text-align: center;
  width: 80%;
}
.dialog__btn-row {
  display: flex;
  gap: 1rem;
  margin-top: 20px;
}
.dialog__cancel,
.dialog__ok {
  border: 0;
  border-radius: 0.3rem;
  color: #fff;
  cursor: pointer;
  flex: 1 1 0;
  font-size: 1rem;
  height: 40px;
}
.dialog__cancel {
  background: #307186;
}
.dialog__ok {
  background: #DC3545;
}
.localisation-search-container {
  background-color: rgba(48, 113, 134, 0.8392156863);
  height: 100vh;
  left: 0;
  position: fixed;
  width: 100vw;
}
.localisation-search-container .localisation-search-wrapper {
  background: #fff;
  height: 150px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
}
.localisation-search-container .localisation-search-wrapper .close-btn {
  float: right;
  height: 30px;
  margin: 5px;
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
}
.localisation-search-container .localisation-search-wrapper .close-btn::before,
.localisation-search-container .localisation-search-wrapper .close-btn::after {
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 80%;
}
.localisation-search-container .localisation-search-wrapper .close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.localisation-search-container .localisation-search-wrapper .close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.localisation-search-container .localisation-search-wrapper .search-fields {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  margin: 0 auto;
  text-align: left;
  width: 90%;
}
.localisation-search-container .localisation-search-wrapper .search-results {
  background: #fff;
  border-radius: 0 0 10px 10px;
  border-top: 1px solid;
  max-height: 200px;
  overflow: auto;
  position: relative;
}
.localisation-search-container .localisation-search-wrapper .search-results .localisations-results {
  display: flex;
  flex-direction: column;
}
.localisation-search-container .localisation-search-wrapper .search-results .localisations-results.empty {
  color: #acacac;
}
.localisation-search-container .localisation-search-wrapper .search-results .localisations-results .localisation-result {
  border-bottom: 1px solid #eee;
  padding: 5px;
}
.localisation-search-container .localisation-search-wrapper .search-results .localisations-results .localisation-result:last-child {
  border-bottom: 0;
}
.localisation-search-container .localisation-search-wrapper .search-results .search-loader {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}
.localisation-search-container .localisation-search-wrapper .search-results .search-loader__spinner {
  display: inline-block;
  height: 40px;
  position: relative;
  width: 40px;
}
.localisation-search-container .localisation-search-wrapper .search-results .search-loader__spinner div {
  animation: search-loading 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border: 4px solid rgba(48, 113, 134, 0.8392156863);
  border-color: rgba(48, 113, 134, 0.8392156863) transparent transparent;
  border-radius: 50%;
  box-sizing: border-box;
  display: block;
  height: 32px;
  margin: 4px;
  position: absolute;
  width: 32px;
}
.localisation-search-container .localisation-search-wrapper .search-results .search-loader__spinner div:nth-child(1) {
  animation-delay: -0.45s;
}
.localisation-search-container .localisation-search-wrapper .search-results .search-loader__spinner div:nth-child(2) {
  animation-delay: -0.3s;
}
.localisation-search-container .localisation-search-wrapper .search-results .search-loader__spinner div:nth-child(3) {
  animation-delay: -0.15s;
}
.localisation-search-container .localisation-search-wrapper .search-results .search-loader__text {
  color: rgba(48, 113, 134, 0.8392156863);
  font-size: 14px;
  margin-top: 10px;
}
@keyframes search-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.app-content .form-check {
  align-items: center;
  display: flex;
  padding: 0;
}
.app-content .form-check input {
  margin: 0 10px 0 auto;
  position: initial;
}
form {
  display: block;
  margin: 15px 0;
}
form .form-check {
  margin: 5px 0;
}
form .form-check .form-check-input {
  transform: scale(1.5);
}
input[name=percent],
input[name=percent] + small,
input[name=percent] + * {
  display: none !important;
}
.form-group:has(input[name=percent]) {
  display: none !important;
}
#form-images {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0;
  width: 100%;
}
#form-images .remove-image-btn {
  background: #307186;
  border-radius: 50%;
  height: 28px;
  position: absolute;
  right: 0;
  top: 0;
  width: 28px;
}
#form-images > .single-image {
  align-self: center;
  box-sizing: border-box;
  margin: 5px;
  padding: 10px;
  position: relative;
  width: calc(50% - 10px);
}
#form-images > .single-image::before {
  border-bottom: 2px solid #fff;
  content: "";
  height: 20px;
  pointer-events: none;
  position: absolute;
  right: -2px;
  top: -2px;
  transform: rotate(45deg);
  width: 20px;
  z-index: 1;
}
#form-images > .single-image::after {
  border-bottom: 2px solid #fff;
  content: "";
  height: 20px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: -2px;
  transform: rotate(-45deg);
  width: 20px;
  z-index: 2;
}
#form-images > .single-image > img {
  width: 100%;
}
.installation-information .installation-header {
  position: absolute;
  top: 10px;
}
input[type=number] {
  max-width: 100px;
}
.validation-container {
  background: #d8000c;
  border-radius: 10px;
  color: #fff;
  margin: 10px 0;
}
.validation-container .form-errors {
  padding: 10px;
}
.validation-container .form-errors li {
  margin-bottom: 5px;
}
.table-headers {
  background-color: #307186;
  color: #fff;
  display: flex;
}
.table-headers .table-header {
  display: inline-block;
  margin-left: 10px;
  width: 50%;
}
.table-headers .table-header:last-child {
  width: 100%;
}
.tap-part {
  animation: animate-in-tap 0.4s ease;
  transition: padding 0.4s;
}
.tap-part.animate-out {
  animation: animate-out-tap 0.4s ease;
  max-height: 0;
  opacity: 0;
  padding: 0;
  transform: translateX(-100%);
}
@keyframes animate-in-tap {
  from {
    max-height: 0;
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    max-height: 200px;
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes animate-out-tap {
  from {
    max-height: 200px;
    opacity: 1;
    transform: translateX(0);
  }
  to {
    max-height: 0;
    opacity: 0;
    transform: translateX(-100%);
  }
}
.tap-part,
.accessories-part,
.add-tap-btn {
  padding: 5px;
}
.remove-tap-btn {
  margin: 5px;
}
.table-inputs {
  display: flex;
  flex-direction: column;
}
.table-inputs .table-row {
  border: 1px solid;
  border-top: 0;
  display: flex;
}
.table-inputs .table-row .pitcher {
  align-items: center;
  border-left: 1px solid;
  border-right: 1px solid;
  display: flex;
  justify-content: center;
}
.table-inputs .table-row > * {
  display: inline-block;
  width: 50%;
}
.table-inputs .table-row > *:last-child {
  width: 100%;
}
.table-inputs .table-row .form-group {
  margin: 0;
}
.table-inputs .table-row .form-group:nth-child(2) {
  border-left: 1px solid;
  border-right: 1px solid;
}
.table-inputs .table-row .form-group .form-control {
  border: 0;
}
.tap-part-table .table-headers > * {
  display: inline-block;
  width: 33%;
}
.tap-part-table .table-headers > *:last-child {
  width: 33%;
}
.tap-part-table .table-row > * {
  display: inline-block;
  width: 33%;
}
.tap-part-table .table-row > *:last-child {
  width: 33%;
}
.installation-submit {
  margin-bottom: 3rem;
}
.schedule-container {
  margin: 0 auto;
  width: calc(100% - 20px);
}
.schedule-container .schedule-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.schedule-container .fetch-full-schedule-btn {
  border: 2px solid #ffa500;
  margin: 1rem 0 3rem;
}
.schedule-container .fetch-full-schedule-btn.--is-fetching {
  opacity: 0.7;
}
.schedule-container .fetch-full-schedule-btn.--is-fetching .loader {
  --_g:
    no-repeat radial-gradient(
      farthest-side,
      #ffffff 94%,
      #fdfbfb00);
  animation: l23-0 1.5s linear infinite;
  background: var(--_g) 50% 0, var(--_g) 100% 0;
  background-size: 9px 9px;
  float: right;
  height: 28px;
  margin-left: 10px;
  position: relative;
  top: 9px;
  width: 40px;
}
.schedule-container .fetch-full-schedule-btn.--is-fetching .loader::before {
  animation: l23-1 1.5s linear infinite, l23-2 0.5s cubic-bezier(0, 200, 0.8, 200) infinite;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 50%;
  content: "";
  height: 9px;
  left: 0;
  position: absolute;
  top: 0;
}
.single-week.alarms {
  order: -1;
}
.single-week.alarms .alarm-created {
  display: block;
}
.single-week.alarms .single-alarm {
  border-radius: 0;
  margin-bottom: 15px;
  width: 100%;
}
.single-week.alarms .single-alarm:first-of-type {
  margin-top: 15px;
}
.single-week.alarms #all-alarms-button {
  background: #ffa500;
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin: 10px auto;
  text-transform: uppercase;
}
.single-week.late-services {
  border: 1px solid #307186;
  margin-top: 10px;
  order: -1;
}
.single-week.late-services .week-header {
  margin-top: 0;
}
.single-week .single-task,
.single-week .single-task-assignment {
  background-color: #fff;
  border: 0;
  border-top: 1px solid #307186;
  display: grid;
  margin: 0;
  outline: 0;
  padding: 5px 15px;
  position: relative;
  width: 100%;
}
.single-week .single-task .company-name,
.single-week .single-task-assignment .company-name {
  display: flex;
  justify-content: space-between;
  text-align: left;
}
.single-week .single-task .task-information,
.single-week .single-task-assignment .task-information {
  display: flex;
  font-size: 13px;
}
.single-week .single-task .task-information .divider,
.single-week .single-task-assignment .task-information .divider {
  margin: 0 10px;
}
.single-week .single-task .task-information .assignment-button-container,
.single-week .single-task-assignment .task-information .assignment-button-container {
  display: flex;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.single-week .single-task .extra-assignment,
.single-week .single-task-assignment .extra-assignment {
  color: #ffa500;
}
.single-week .single-task .assignment-info__prio,
.single-week .single-task-assignment .assignment-info__prio {
  color: #d8000c;
  display: block;
}
.single-week .assignment-alerts__container {
  font-weight: 700;
  grid-column: 2/span 3;
  grid-row: 1;
  text-align: right;
  text-transform: uppercase;
}
.single-week .week-header {
  background: #307186;
  color: #fff;
  display: block;
  margin-top: 10px;
  padding: 5px;
  text-align: center;
}
.single-week .day-container {
  border: 1px solid #307186;
  margin-bottom: 10px;
}
.single-week .day-container .day-header {
  font-weight: 700;
  margin-left: 10px;
}
.single-week .day-container .tasks .single-task-assignment {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  padding-right: 5px;
}
.single-week .day-container .tasks .single-task-assignment .company-name {
  grid-column: 1/span 2;
  grid-row: 1;
}
.single-week .day-container .tasks .single-task-assignment .task-information {
  grid-column: 1/span 2;
  grid-row: 3;
}
.single-week .day-container .tasks .single-task-assignment .extra-assignment {
  color: #ffa500;
  font-weight: 700;
  grid-column: 2/span 3;
  grid-row: 1;
  text-align: right;
  text-transform: uppercase;
}
.single-week .day-container .tasks .single-task-assignment .assignment-button-container {
  grid-column: 3;
  grid-row: 2/span 3;
}
.single-week .day-container .tasks .single-task-assignment .assignment-button-container .take-assignment-btn {
  background-color: #307186;
  border: 0;
  border-radius: 10px;
  color: #fff;
  height: 50px;
  outline: 0;
  transition: opacity 0.3s;
  width: 100%;
}
.single-week .day-container .tasks .single-task-assignment .assignment-button-container .take-assignment-btn:disabled {
  opacity: 0.5;
}
.assignment-info__icons {
  display: flex;
  grid-row: 3;
  width: 100%;
}
.assignment-info__icons.service-form .assignment-info__icon {
  background-color: #307186;
  border-radius: 5px;
  padding: 0.5rem;
}
.assignment-info__icons.service-form .assignment-info__icon img {
  filter: invert(1);
}
.assignment-info__icons .assignment-info__icon {
  display: inline-block;
  margin: 0.25rem;
}
.assignment-info__icons .assignment-info__icon img {
  height: 100%;
  max-height: 60px;
  object-fit: contain;
  width: 2rem;
}
@keyframes l23-0 {
  0%, 31% {
    background-position: 50% 0, 100% 0;
  }
  33% {
    background-position: 50% 40%, 100% 0;
  }
  43%, 64% {
    background-position: 50% 0, 100% 0;
  }
  66% {
    background-position: 50% 0, 100% 40%;
  }
  79% {
    background-position: 50% 0, 100% 0;
  }
  100% {
    transform: translateX(-33.3333333333%);
  }
}
@keyframes l23-1 {
  100% {
    left: calc(100% + 7px);
  }
}
@keyframes l23-2 {
  100% {
    top: -0.07px;
  }
}
#msg-container {
  bottom: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  height: auto;
  justify-content: center;
  left: 0;
  letter-spacing: 3px;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  text-align: center;
  touch-action: none;
  transition: height 0.5s;
  width: 100%;
  z-index: 999;
}
#msg-container > p {
  align-items: center;
  animation: animate-in-msg 0.3s ease;
  display: flex;
  height: 100%;
  justify-content: center;
  line-height: 18px;
  margin: 0;
  padding: 10px;
  width: 100%;
}
.error {
  background: #d8000c;
  color: #fff;
}
.warning {
  background: #ffa500;
  color: #fff;
}
.success {
  background: #008000;
  color: #fff;
}
@keyframes animate-in-msg {
  from {
    max-height: 0;
  }
  to {
    max-height: 100px;
  }
}
.send-report-modal {
  align-items: center;
  animation: animate-in-loading-modal 0.3s ease;
  background-color: rgba(48, 113, 134, 0.8392156863);
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 30px;
  height: 100vh;
  justify-content: center;
  left: 0;
  letter-spacing: 2px;
  position: fixed;
  text-transform: uppercase;
  top: 0;
  transition: opacity 0.3s;
  width: 100vw;
  z-index: 999;
}
.send-report-modal.animate-out {
  opacity: 0;
}
@keyframes animate-in-loading-modal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.lds-ring {
  display: inline-block;
  height: 80px;
  position: relative;
  width: 80px;
}
.lds-ring div {
  animation: loading 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border: 8px solid #fff;
  border-color: #fff transparent transparent;
  border-radius: 50%;
  box-sizing: border-box;
  display: block;
  height: 64px;
  margin: 8px;
  position: absolute;
  width: 64px;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.clear-cache-modal {
  animation: animate-in-modal-background 0.3s ease;
  background: rgba(48, 113, 134, 0.8392156863);
  height: 100vh;
  left: 0;
  opacity: 1;
  position: fixed;
  top: 0;
  transition: opacity 0.3s;
  width: 100vw;
  z-index: 999;
}
.clear-cache-modal.animate-out {
  opacity: 0;
}
.clear-cache-modal.animate-out .modal-content {
  transform: translate(0, 90%) scale(0.1);
}
.clear-cache-modal .modal-content {
  animation: animate-in-modal-content 0.3s ease;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2901960784);
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
  width: 80%;
}
.clear-cache-modal .modal-content .modal-information-text {
  padding: 1rem;
}
.clear-cache-modal .modal-content .modal-btns {
  border-top: 1px solid #e9ecef;
  display: flex;
  justify-content: center;
}
.clear-cache-modal .modal-content .modal-btns .btn {
  margin: 10px;
}
.clear-cache-modal .modal-content .modal-btns .btn.confirm {
  background-color: #d8000c;
}
@keyframes animate-in-modal-background {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes animate-in-modal-content {
  from {
    transform: translate(0, 90%) scale(0.1);
  }
  to {
    transform: translate(-50%, -50%) scale(1);
  }
}
.switch-user-modal {
  animation: animate-in-modal-background 0.3s ease;
  background: rgba(48, 113, 134, 0.8392156863);
  height: 100vh;
  left: 0;
  opacity: 1;
  position: fixed;
  top: 0;
  transition: opacity 0.3s;
  width: 100vw;
  z-index: 999;
}
.switch-user-modal.animate-out {
  opacity: 0;
}
.switch-user-modal.animate-out .modal-content {
  transform: translate(0, 90%) scale(0.1);
}
.switch-user-modal .modal-content {
  animation: animate-in-modal-content 0.3s ease;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2901960784);
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
  width: 80%;
  max-width: 400px;
}
.switch-user-modal .modal-content .modal-header {
  background-color: #307186;
  color: white;
  margin: 0;
  padding: 1rem;
  border-radius: 8px 8px 0 0;
  font-size: 1.125rem;
}
.switch-user-modal .modal-content .loading-container {
  padding: 2rem;
  text-align: center;
}
.switch-user-modal .modal-content .loading-container .lds-ring {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}
.switch-user-modal .modal-content .loading-container .lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 32px;
  height: 32px;
  margin: 4px;
  border: 4px solid #307186;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #307186 transparent transparent transparent;
}
.switch-user-modal .modal-content .loading-container .lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.switch-user-modal .modal-content .loading-container .lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.switch-user-modal .modal-content .loading-container .lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
.switch-user-modal .modal-content .user-selection-container {
  padding: 1rem;
}
.switch-user-modal .modal-content .user-selection-container label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #000;
}
.switch-user-modal .modal-content .user-selection-container select {
  width: 100%;
  margin-bottom: 1rem;
}
.switch-user-modal .modal-content .modal-btns {
  border-top: 1px solid #e9ecef;
  display: flex;
  justify-content: center;
  padding: 0.5rem;
}
.switch-user-modal .modal-content .modal-btns .btn {
  margin: 10px;
  min-width: 80px;
}
.switch-user-modal .modal-content .modal-btns .btn.confirm {
  background-color: #307186;
}
.switch-user-modal .modal-content .modal-btns .btn.confirm:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.switch-user-modal .modal-content .modal-btns .btn.dismiss {
  background-color: #acacac;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.localisation-info {
  padding: 10px;
}
.localisation-info .localisation-info-row {
  display: flex;
  justify-content: space-between;
}
.localisation-info .localisation-info-row span:first-child {
  font-weight: 700;
}
.localisation-info .localisation-info-row span:nth-child(2) {
  text-align: right;
}
.alarm-list .single-alarm {
  align-items: flex-start;
  margin-block: 10px;
  padding: 10px;
}
.alarm-list .single-alarm .company-name {
  font-size: 18px;
  font-weight: 700;
}
.alarm-list .single-alarm .alarm-card__message-container,
.alarm-list .single-alarm .assigned-alarm-info-text {
  border: 1px solid #307186;
  border-radius: 10px;
  color: #307186;
  font-size: 13px;
  margin-bottom: 10px;
  padding: 10px;
}
.alarm-list .single-alarm .alarm-card__message-container span,
.alarm-list .single-alarm .assigned-alarm-info-text span {
  font-size: 1rem;
}
.alarm-list .single-alarm .alarm-information {
  margin-bottom: 10px;
}
.alarm-list .single-alarm .alarm-information .alarm-created {
  display: block;
}
.page-container {
  display: flex;
  height: 100%;
  justify-content: center;
}
.page-container .page-wrapper {
  padding: 10px;
  width: 100%;
}
.button {
  -webkit-appearance: none;
  appearance: none;
  background: #307186;
  border: 0;
  border-radius: 10px;
  color: #fff;
  outline: 0;
  padding: 5px 15px;
}
.button.button-outlined {
  background: transparent;
  border: 1px solid #307186;
  color: #000;
}
.year-switch-btn {
  margin-right: 5px;
}
.year-switch-btn.active {
  background: orange;
}
.assignment__message {
  margin: 0.5rem 0;
  padding: 0.75rem;
}
.assignment__message h2 {
  font-size: 1.2rem;
}
.service-history-modal,
.single-history-information {
  display: none;
}
.service-history-modal .single-service-history-entry ul,
.single-history-information .single-service-history-entry ul {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
}
.service-history-modal .single-service-history-entry ul li,
.single-history-information .single-service-history-entry ul li {
  border-bottom: 1px solid #307186;
  padding-bottom: 0.25rem;
}
.service-history-modal .single-service-history-entry ul li:last-child,
.single-history-information .single-service-history-entry ul li:last-child {
  border-bottom: 0;
}
.service-history-modal .single-service-history-entry ul li span:first-child,
.single-history-information .single-service-history-entry ul li span:first-child {
  font-weight: 700;
}
.service-history-modal .single-service-history-entry ul li span:last-child,
.single-history-information .single-service-history-entry ul li span:last-child {
  float: right;
}
#show-service-history-btn,
#show-service-customer-info-btn {
  margin-top: 10px;
}
.service-history-modal {
  margin: 1rem 0;
  width: 100%;
}
.service-history-modal .service-history-list-entry::after {
  background-color: #307186;
  border-radius: 50%;
  color: #fff;
  content: "+";
  font-size: 1.9rem;
  font-weight: 400;
  height: 25px;
  line-height: 1.2rem;
  position: absolute;
  right: 1rem;
  text-align: center;
  top: 0.8rem;
  width: 25px;
}
.service-history-modal .service-history-list-entry.--is-showing::after {
  content: "\2212";
}
.customer-card,
.service-not-done-card {
  background: #fff;
  border: 1px solid;
  border-radius: 5px;
  display: none;
  height: 90%;
  left: 50%;
  overflow: scroll;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  z-index: 9;
}
.customer-card button,
.service-not-done-card button {
  display: block;
  margin: 0.25rem 0.25rem 0 auto;
}
.customer-card .customer-card__information-list,
.service-not-done-card .customer-card__information-list {
  list-style: none;
  padding: 1rem;
}
.customer-card .customer-card__information-list li > span:first-child,
.service-not-done-card .customer-card__information-list li > span:first-child {
  font-weight: 700;
}
.customer-card .customer-card__information-list li > span:last-child,
.service-not-done-card .customer-card__information-list li > span:last-child {
  float: right;
}
.customer-card .customer-card__information-list li .contact-name,
.service-not-done-card .customer-card__information-list li .contact-name {
  margin-right: 0.25rem;
}
.customer-card .customer-card__information-list li .contact-name::after,
.service-not-done-card .customer-card__information-list li .contact-name::after {
  content: ",";
}
.customer-card .customer-card__information-list li .contact-name:last-child,
.service-not-done-card .customer-card__information-list li .contact-name:last-child {
  margin-right: 0;
}
.customer-card .customer-card__information-list li .contact-name:last-child::after,
.service-not-done-card .customer-card__information-list li .contact-name:last-child::after {
  content: "";
}
.customer-card .customer-card__information-list li .customer-info__images,
.service-not-done-card .customer-card__information-list li .customer-info__images {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}
.customer-card .customer-card__information-list li .customer-info__images img,
.service-not-done-card .customer-card__information-list li .customer-info__images img {
  border: 1px solid #acacac;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
body {
  overscroll-behavior: contain;
}
body h3 {
  font-size: 1.125rem;
}
:root {
  --base-url: "https://watercompany.webbland.nu";
}
/*# sourceMappingURL=app.css.map */
