:root {
  --primary: #DD1634;
  --primary-darken: #8E0E23;
  --bg-gradient-primary: linear-gradient(to right, var(--primary) 0%, var(--primary-darken) 30%, var(--primary-darken) 100%);
  --bg-gradient-sidebar: linear-gradient(to right, #fff 0%, #f0f0f0 30%, #f0f0f0 100%);
}

@font-face {
  font-family: "londonmm";
  src: url("../fonts/london/LondonMM.ttf") format("truetype");
}
@font-face {
  font-family: "londontwo";
  src: url("../fonts/london/LondonTwo.ttf") format("truetype");
}
@font-face {
  font-family: "librefranklin";
  font-weight: normal;
  src: url("../fonts/librefranklin/LibreFranklin-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "librefranklin";
  font-weight: bold;
  src: url("../fonts/librefranklin/LibreFranklin-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "librefranklin";
  font-weight: 300;
  src: url("../fonts/librefranklin/LibreFranklin-Light.ttf") format("truetype");
}
@font-face {
  font-family: "librefranklin";
  font-weight: 400;
  src: url("../fonts/librefranklin/LibreFranklin-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "librefranklin";
  font-weight: 500;
  src: url("../fonts/librefranklin/LibreFranklin-Medium.ttf") format("truetype");
}
body {
  font-family: "librefranklin", var(--bs-font-sans-serif), sans-serif;
  font-size: 14px;
}

.anonymous-layout {
  background-color: #f0f0f0;
  border-radius: 6px;
}
.anonymous-layout > .card {
  padding: 0 24px;
}

.loading-progress {
  top: 0;
  left: 0;
  position: absolute;
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
}
.loading-progress:before {
  top: 0;
  left: 0;
  position: absolute;
  display: block;
  width: 100vw;
  height: 100vh;
  background: url(../bg.jpg) no-repeat center center fixed;
  background-size: cover;
  opacity: var(--blazor-load-percentage, 0%);
  content: "";
}

.loading-progress-text {
  position: absolute;
  background-color: #fff;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  font-weight: bold;
  top: 45%;
  left: 40%;
  width: 20%;
}
.loading-progress-text:after {
  content: var(--blazor-load-percentage-text, "Chargement...");
}

.btn-primary {
  background: var(--bg-gradient-primary);
  color: #fff;
  border-color: var(--primary-darken);
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.tooltip-icon-button {
  display: inline-block;
}

.valid.modified:not([type=checkbox]) {
  outline: 1px solid #26b050;
}

.invalid {
  outline: 1px solid red;
}

.validation-message {
  color: red;
}

.btn-action-group .btn:hover {
  border: none !important;
}
.btn-action-group .btn.disabled {
  border: none;
}

code {
  color: #c02d76;
}

.form-label,
.form-check-label {
  font-size: small;
  font-weight: bold;
  margin-top: 9px;
}
.form-label.required:after,
.form-check-label.required:after {
  content: "*";
  color: red;
  margin-left: 3px;
}

.form-check-label {
  margin-top: 0;
}

.btn.btn-link {
  text-decoration: none;
}
.btn i {
  margin-right: 12px;
}
.btn.btn-icon-only i {
  margin-right: 0;
}

.cursor-default {
  cursor: default !important;
}

.mytfl-select {
  width: 100%;
}
.mytfl-select .selected-option input {
  background-color: #fff !important;
  cursor: pointer !important;
}
.mytfl-select .selected-option input:read-only {
  background-color: #e9ecef !important;
  opacity: 1 !important;
}
.mytfl-select .input-group-prepend {
  display: flex;
}
.mytfl-select .input-group-prepend .input-group-text {
  border-radius: 0 0.375rem 0.375rem 0px;
  height: 100% !important;
  padding: 0 0.75rem !important;
}
.mytfl-select .input-group-prepend:hover {
  cursor: pointer !important;
}
.mytfl-select.multi .form-control {
  justify-content: start;
  flex-wrap: wrap;
  height: auto;
  padding: 3px;
  min-height: 35px;
  cursor: pointer;
}

.options-container {
  border: solid 1px rgb(206, 212, 218);
  background-color: #fff;
}
.options-container .options-filter {
  max-width: calc(100% - 12px);
  margin: 6px;
  border: solid 1px rgb(206, 212, 218);
  border-radius: 0;
  outline: none;
}
.options-container .options-filter:focus, .options-container .options-filter:active {
  border: solid 1px #BFDEFF;
  border-radius: 0;
}
.options-container .options-list {
  list-style: none;
  padding: 0;
  max-height: 30vh;
  overflow-y: auto;
}
.options-container .options-list > li {
  padding: 6px;
  cursor: pointer;
}
.options-container .options-list > li:hover {
  background-color: #0094ff;
  font-weight: bold;
}
.options-container .show-more {
  display: block;
  margin: 6px;
  background-color: #fff;
  padding: 6px;
  border: solid 1px rgb(206, 212, 218);
  text-align: center;
  cursor: pointer;
  background-color: #0094ff;
  color: #fff;
}

.validation-message {
  color: red;
  font-size: small;
  font-weight: bold;
  margin-top: 6px;
}

.mytfl-file-chooser .drop-zone {
  border: dashed 1px #ccc;
  padding: 6px;
  margin: 6px 6px 6px 0;
  cursor: pointer;
}

.form-group .form-label {
  display: block;
  margin: 6px 0;
}

.mytfl-switch {
  cursor: pointer;
}
.mytfl-switch .form-check {
  margin-left: 6px;
  cursor: pointer;
  padding-left: 0;
}
.mytfl-switch .form-check-input {
  cursor: pointer;
}

.mytfl-imagepicker {
  display: flex;
  flex-direction: column;
}
.mytfl-imagepicker .picker-preview {
  flex: 1;
  margin: 0 auto;
}

.page {
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  overflow: hidden;
  display: flex;
  flex-flow: column;
}

.notifications-handle .dropdown-toggle:after {
  content: none;
}
.notifications-handle .dropdown-toggle:active, .notifications-handle .dropdown-toggle:focus {
  outline: none;
  box-shadow: none;
}
.notifications-handle .dropdown-menu {
  right: 0 !important;
  max-width: 450px;
  width: 450px;
}

.sidebar {
  background: #fff;
  box-shadow: 0 0.125rem 0.5rem 0 rgba(47, 43, 61, 0.12);
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  width: 250px;
}
.sidebar > .top-row {
  padding-top: 0;
}
.sidebar > .top-row > .sidebar-top {
  padding: 0;
  background: #fff;
  max-width: 300px;
  max-height: 64px;
  overflow-y: hidden;
  overflow-x: hidden;
}
.sidebar > .top-row > .sidebar-top .navbar-brand {
  background: #fff url("../logo.png?v=mo") left center no-repeat;
  background-size: contain;
  display: block;
  width: 169px;
  height: 60px;
  margin-right: 0;
  max-width: 240px;
  line-height: 48px;
  font-size: 32px;
  font-weight: bold;
}
.sidebar > .top-row > .sidebar-top .navbar-brand .logo-my {
  margin-left: 72px;
  font-family: "londonmm", "librefranklin", sans-serif;
}
.sidebar > .top-row > .sidebar-top .navbar-brand .logo-tfl {
  font-family: "londonmm", "librefranklin", sans-serif;
  color: var(--primary);
  margin-left: -6px;
}
.sidebar > .top-row > .sidebar-top .navbar-toggler {
  background: #fff;
  border: none;
}
.sidebar > .bottom-row {
  text-align: center;
  margin: 6px;
}
.sidebar.minified {
  width: 48px;
  overflow-x: hidden;
}
.sidebar.minified > .top-row > .sidebar-top .navbar-brand .logo-my {
  display: none;
}
.sidebar.minified > .top-row > .sidebar-top .navbar-brand .logo-tfl {
  display: none;
}
.sidebar.minified > .bottom-row {
  font-size: 0;
}
.sidebar.minified:hover {
  width: 250px;
}
.sidebar.minified:hover > .top-row > .sidebar-top .navbar-brand .logo-my {
  display: inline-block;
}
.sidebar.minified:hover > .top-row > .sidebar-top .navbar-brand .logo-tfl {
  display: inline-block;
}
.sidebar.minified:hover > .bottom-row {
  display: block;
}
.sidebar .main-menu {
  margin-top: 2rem;
}
.sidebar .main-menu.nav-scrollable:hover {
  overflow-y: auto;
  max-height: calc(100vh - 80px);
}
.sidebar .main-menu .nav-item {
  padding: 6px;
}
.sidebar .main-menu .nav-item a {
  color: var(--primary);
  white-space: nowrap;
  vertical-align: middle;
  font-family: "librefranklin", var(--bs-font-sans-serif), sans-serif;
  font-weight: 500;
}
.sidebar .main-menu .nav-item a i {
  margin: 0 12px 0 6px;
  font-size: 20px;
  border: solid 3px;
  padding: 9px 6px;
  box-sizing: border-box;
  border-radius: 6px;
  width: 2.2em;
  background-color: var(--primary);
  color: #fff;
}
.sidebar .main-menu .nav-item a i.nav-menu-toggle {
  border: none;
  background-color: transparent;
  color: var(--primary);
}
.sidebar .main-menu .nav-item a:hover {
  color: var(--primary-darken);
}
.sidebar .main-menu .nav-item a.active {
  background-color: var(--primary);
  color: #fff;
  padding: 6px 0;
}
.sidebar .main-menu .nav-item a.active i .nav-menu-toggle {
  border: none;
  background-color: transparent;
  color: #fff;
}
.sidebar .main-menu .nav-item .nav-item {
  padding-left: 18px;
  margin-left: 20px;
}
.sidebar .main-menu .nav-item .nav-item i {
  font-size: 10px;
  margin: 0;
  border: none;
  padding: 0 3px;
  background-color: transparent;
  color: var(--primary);
}
.sidebar .main-menu .nav-item .nav-item a.active {
  background-color: #fff;
  color: var(--primary);
  padding: 0;
  font-weight: bold;
}

.page-xs .sidebar,
.page-sm .sidebar,
.page-md .sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  z-index: 10;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.page-xs .sidebar.minified,
.page-sm .sidebar.minified,
.page-md .sidebar.minified {
  width: 64px;
  height: 48px;
  box-shadow: none;
}
.page-xs .sidebar.minified .navbar-brand,
.page-sm .sidebar.minified .navbar-brand,
.page-md .sidebar.minified .navbar-brand {
  display: none;
}
.page-xs .sidebar.minified .main-menu,
.page-sm .sidebar.minified .main-menu,
.page-md .sidebar.minified .main-menu {
  display: none;
}

main {
  display: flex;
  flex-flow: column;
  flex: 1;
  overflow: auto;
}
main > .content {
  flex: 1;
  overflow: auto;
  height: 100vh;
}
main .top-row {
  background-color: #fff;
  border-bottom: 1px solid #d6d5d5;
  justify-content: flex-end;
  height: 3.5rem;
  display: flex;
  align-items: center;
  box-shadow: 0 3px 3px rgba(47, 43, 61, 0.12);
  padding-right: 12px;
}
main .top-row .login-toggler .dropdown-toggle {
  background-color: #fff;
}
main .top-row .login-toggler .dropdown-toggle:active, main .top-row .login-toggler .dropdown-toggle:focus {
  outline: none;
  box-shadow: none;
}
main .top-row .login-toggler i {
  font-size: 24px;
  vertical-align: bottom;
  margin-right: 6px;
}
main .top-row .login-toggler > .dropdown-menu {
  border: none;
  width: 100%;
  box-shadow: 0 3px 3px rgba(47, 43, 61, 0.12);
  z-index: 2;
}
main .top-row .login-toggler > .dropdown-menu .show {
  display: flex;
}
main .top-row .login-toggler > .dropdown-menu .dropdown-item i {
  font-size: 12px;
  vertical-align: middle;
}

.page-header {
  background: var(--bg-gradient-primary);
  padding: 12px;
  border-radius: 10px;
  align-items: center;
  margin: 15px;
}
.page-header .page-header-right {
  margin-left: auto;
}
.page-header .page-header-icon {
  background-color: #fff;
  padding: 12px;
  border-radius: 10px;
}
.page-header .page-header-icon i {
  font-size: 48px;
}
.page-header .page-header-titles {
  color: #fff;
  font-size: 32px;
  margin-left: 36px;
  font-family: "londontwo", var(--bs-font-sans-serif), sans-serif;
}
.page-header .page-header-actions {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-left: auto;
}
.page-header .page-header-actions > button {
  flex: 1;
}
.page-header .page-header-breadcrumbs {
  position: relative;
}
.page-header .page-header-breadcrumbs ul {
  display: flex;
  list-style: none;
  flex-direction: row;
  text-align: right;
  margin-top: 12px !important;
}
.page-header .page-header-breadcrumbs ul li {
  display: inline-block;
  font-size: 12px;
}
.page-header .page-header-breadcrumbs ul li a {
  color: #fff;
}
.page-header .page-header-breadcrumbs ul li + li::before {
  color: #fff;
  content: " / ";
  padding-left: 6px;
}
.page-header .page-header-content {
  width: calc(100% + 30px);
  margin: 12px -15px 0 -15px;
  z-index: 0;
}
.page-header .page-header-content > .nav {
  margin-bottom: 0;
}
.page-header .page-header-content > .nav .nav-item .nav-link {
  color: #000;
  font-size: 15px;
}
.page-header .page-header-content > .nav .nav-item .nav-link.active {
  font-weight: bold;
  border-bottom: solid 3px var(--bs-link-color);
  color: var(--bs-link-color);
}

@media (min-width: 641px) {
  .page {
    flex-direction: row;
  }
  .top-row {
    position: sticky;
    top: 0;
    z-index: 1;
  }
  .top-row.auth a:first-child {
    flex: 1;
    text-align: right;
    width: 0;
  }
}
.page-content {
  margin: 0 15px;
}

.mytfl-table {
  --bs-table-color: #000;
  --bs-table-bg: var(--primary);
  --bs-table-border-color: #bacbe6;
  --bs-table-striped-bg: #c5d7f2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bacbe6;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfd1ec;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
  position: relative;
  padding-bottom: 12px;
  min-height: calc(100% - 12px);
  font-size: 14px;
}
.mytfl-table .filter-button {
  position: sticky;
  bottom: 12px;
  left: 100%;
  border-radius: 24px;
  font-size: 24px;
  text-align: center;
  vertical-align: middle;
  background-color: var(--bg-gradient-primary);
  color: #fff;
  padding: 6px 9px;
  box-shadow: 0px 0px 6px 3px rgba(147, 143, 161, 0.62);
}
.mytfl-table .table tr td {
  padding: 0.5rem;
  vertical-align: middle;
}
.mytfl-table .filter-widget {
  position: sticky;
  bottom: 72px;
  left: 100%;
  max-height: calc(100% - 60px);
  width: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1;
  background: #fff;
  padding: 12px 12px;
  box-shadow: 3px 3px 6px 3px rgba(147, 143, 161, 0.62);
  border-radius: 3px;
}
.mytfl-table .filter-widget.large {
  width: 600px;
}

.app-page-title + .mytfl-table {
  min-height: calc(100% - 130px);
}

.toast {
  z-index: 2500;
}

.btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-with-icon .card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-with-icon .card-body a {
  text-decoration: none;
  flex: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.card-with-icon .card-title {
  font-size: 24px;
  color: #000;
  text-decoration: none;
  margin-top: 12px;
}

.card-header {
  background: var(--bg-gradient-primary);
  color: #fff;
  backdrop-filter: blur(100px);
  position: relative;
}
.card-header .tooltip-icon-button {
  z-index: 1;
}
.card-header .tooltip-icon-button .btn {
  padding: 0;
  color: #fff;
}
.card-header .card-title {
  margin-bottom: 0;
  font-family: "londonmm", var(--bs-font-sans-serif), sans-serif;
}

.page-loading {
  height: 100%;
}

.document-info {
  font-size: smaller;
  font-style: italic;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.nav-justified {
  justify-content: stretch;
  align-items: stretch;
  margin-bottom: 35px;
  width: 100%;
}
.nav-justified .nav-item .nav-link {
  background-color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  border-bottom: solid 5px;
  border-color: var(--bs-gray-600);
  color: var(--bs-gray-600);
  border-radius: 0;
}
.nav-justified .nav-item .nav-link .badge {
  background-color: var(--bs-gray-600);
}
.nav-justified .nav-item .nav-link.active {
  border-color: var(--primary);
  color: var(--primary);
  font-weight: bold;
}
.nav-justified .nav-item .nav-link.active .badge {
  background-color: var(--primary);
}

.tabs.big-pills .nav {
  margin-bottom: 0;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  display: flex;
}
.tabs.big-pills .nav .nav-item {
  font-size: 24px;
  margin-right: 12px;
}
.tabs.big-pills .nav .nav-item .nav-link {
  color: var(--primary);
  border: solid 3px var(--primary);
}
.tabs.big-pills .nav .nav-item .nav-link i {
  margin-right: 9px;
}
.tabs.big-pills .nav .nav-item .nav-link.active {
  background-color: var(--primary);
  color: #fff;
}
.tabs.big-pills .tab-content {
  padding-top: 24px;
}

.list-group-item.active .list-group-item-content {
  margin-top: 0.9rem !important;
}

.list-group-item-right-column {
  z-index: 1;
}

.list-group-item-content {
  margin: 0 -14px;
}

.list-group-header {
  background: var(--bg-gradient-primary);
  color: #fff;
  position: relative;
}
.list-group-header .list-group-item-title:before {
  background: url(../bg.jpg);
  filter: grayscale(80%);
  background-size: cover;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}

.photos-grid,
.documents-grid {
  display: flex;
  grid-gap: 12px;
  margin: 12px;
  justify-items: center;
  align-items: stretch;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  min-height: calc(100vh - 350px);
}
.photos-grid > .card,
.documents-grid > .card {
  flex: 1;
  width: 18rem;
  max-width: 18rem;
  min-width: 18rem;
}
.photos-grid > .card > .photo-preview, .photos-grid > .card > .document-preview,
.documents-grid > .card > .photo-preview,
.documents-grid > .card > .document-preview {
  max-width: 18rem;
  min-width: 18rem;
  height: 10rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}
.photos-grid > .card > .document-preview,
.documents-grid > .card > .document-preview {
  height: 8rem;
}

.picture-slider {
  display: flex;
  min-height: calc(100vh - 220px);
  max-height: calc(100vh - 220px);
  margin: 12px;
  justify-items: stretch;
  align-items: stretch;
  align-content: stretch;
  justify-content: stretch;
  position: relative;
}
.picture-slider .picture-holder {
  width: 100%;
  display: flex;
  align-content: center;
  justify-items: center;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.picture-slider .picture-holder .picture-holder-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.picture-slider .picture-holder i {
  color: white;
}
.picture-slider .picture-holder:hover .prev-picture,
.picture-slider .picture-holder:hover .next-picture {
  display: block;
}
.picture-slider .picture-holder .prev-picture,
.picture-slider .picture-holder .next-picture {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 12px;
  cursor: pointer;
  border-radius: 12px;
  display: none;
  z-index: 1;
}

.pdf-viewer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px;
}
.pdf-viewer .pdf-signature-holder {
  display: flex;
  flex-direction: row;
  position: relative;
}
.pdf-viewer .pdf-signature-holder .pdf-left-bar {
  width: 20%;
  padding-top: 12px;
}
.pdf-viewer .pdf-signature-holder .pdf-left-bar .signature-button {
  margin-bottom: 12px;
}

.anonymous-layout-wrapper {
  width: 100vw;
  height: 100vh;
}
.anonymous-layout-wrapper:before {
  background: url(../bg.jpg);
  filter: grayscale(80%);
  background-size: cover;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}

h1:focus {
  outline: none;
}

a,
.btn-link {
  color: var(--primary);
}

.alert.alert-danger {
  border-radius: 0;
  color: var(--primary);
}
.alert.alert-danger h4 {
  font-size: 16px;
  font-weight: 600;
}

.pointer {
  cursor: pointer;
}

.modal {
  background-color: rgba(128, 128, 128, 0.5);
}

.modal .modal-dialog .modal-header {
  justify-content: space-between;
}
.modal .modal-dialog .modal-header .close {
  background-color: transparent;
  border: none;
}
.modal .modal-dialog.modal-xxl {
  width: 99vw;
  max-width: 99vw;
}

.pointer {
  cursor: pointer;
}

.mytfl-expandable .accordion-item {
  border: none !important;
}
.mytfl-expandable .accordion-button:not(.collapsed) {
  background-color: transparent !important;
  box-shadow: none !important;
  color: #000;
  font-weight: 500;
}
.mytfl-expandable .accordion-button:not(.collapsed):after {
  color: #000;
}

.app-page-title {
  position: relative;
}
.app-page-title:before {
  background: url(../bg.jpg);
  filter: grayscale(80%);
  background-size: cover;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}

#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}
#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}

.blazor-error-boundary {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
  padding: 1rem 1rem 1rem 3.7rem;
  color: white;
}

.blazor-error-boundary::after {
  content: "An error has occurred.";
}

.leaflet-sidebar {
  background-color: #fff;
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.65);
  border-radius: 4px;
  padding: 8px 24px;
  overflow-y: auto;
  overflow-y: hidden;
  max-height: 80%;
  max-width: 200px;
  width: 200px;
  margin: 6px;
}

.craftsman-home-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 3.5rem);
}
.craftsman-home-page .craftsman-home-header {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.customer-home-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 3.5rem);
}
.customer-home-page .customer-home-header {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.ad {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.ad.ad-banner {
  width: calc(100% - 30px);
  height: 150px;
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 3px;
  outline: none;
  text-decoration: none;
  box-shadow: 1px 1px 2px 2px #ddd;
  margin-bottom: 60px;
}
.ad.ad-banner > :first-child {
  width: 2%;
}
.ad.ad-banner .logo {
  height: 100%;
  width: 20%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.ad.ad-banner .ad-text {
  font-size: 32px;
  width: 80%;
  color: #fff;
  padding: 10px;
  background: linear-gradient(100deg, #fff 0%, #fff 10%, var(--primary-darken) 11%, var(--primary-darken));
  padding-left: 10%;
  display: flex;
  justify-content: space-evenly;
  align-content: center;
  align-items: center;
  flex-flow: column;
}
.ad.ad-interstitial {
  position: fixed;
  top: 1%;
  left: 1%;
  width: 98%;
  display: flex !important;
  overflow: hidden;
  max-height: 98%;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
}
.ad.ad-interstitial .ad-close-button {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.ad.ad-interstitial .ad-close-button i {
  color: #fff !important;
  font-size: 24px;
}
.ad.ad-interstitial .ad-close-button:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.policies-table thead {
  display: table;
  width: calc(100% - 1em);
  table-layout: fixed;
  /* even columns width , fix width of table too*/
}
.policies-table tbody {
  max-height: calc(100vh - 250px);
  overflow-y: auto;
  display: block;
}
.policies-table tbody tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.treeview {
  --spacing: 1.5rem;
  margin-left: 10px;
  padding-left: 0;
  font-size: medium;
}
.treeview .treenode-title {
  display: block;
  cursor: pointer;
  padding-left: 40px;
}
.treeview .treenode-title::marker, .treeview .treenode-title::-webkit-details-marker {
  display: none;
}
.treeview .treenode-title:focus {
  outline: none;
}
.treeview .treenode-title:focus-visible {
  outline: 1px dotted #000;
}
.treeview li {
  display: block;
  position: relative;
  padding-left: calc(2 * var(--spacing) - var(--radius) - 2px);
  border-left: 2px solid #ddd;
}
.treeview li:last-child {
  border-color: transparent;
}
.treeview li::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(var(--spacing) / -2);
  left: -2px;
  width: calc(var(--spacing) + 2px);
  height: calc(var(--spacing) + 1px);
  border: solid #ddd;
  border-width: 0 0 2px 2px;
}
.treeview .treenode-title::before {
  content: "\f07b";
  font-family: "Font Awesome 6 Pro";
  display: block;
  position: absolute;
  left: 10px;
  z-index: 1;
  width: 20px;
  background: #fff;
}
.treeview .treenode.open > .treenode-title::before {
  content: "\f07c";
}

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

.timeline {
  border-left: 1px solid hsl(0, 0%, 90%);
  position: relative;
  list-style: none;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.timeline .timeline-item {
  position: relative;
  display: flex;
  font-size: 0.8rem;
  flex-flow: column;
}
.timeline .timeline-item .timeline-icon {
  position: absolute;
  left: -48px;
  background-color: hsl(217, 88.2%, 90%);
  color: hsl(217, 88.8%, 35.1%);
  border-radius: 50%;
  height: 31px;
  width: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline .timeline-item .timeline-title {
  font-weight: 700 !important;
  font-size: 0.9rem;
}
.timeline .timeline-item .timeline-info {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.1rem;
  color: var(--mdb-secondary-color) !important;
}
.timeline .timeline-item .timeline-description {
  margin-bottom: 0.7rem;
  color: var(--mdb-secondary-color) !important;
}

.fab-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  user-select: none;
  position: absolute;
  bottom: 10px;
  right: 30px;
}
.fab-container:hover {
  height: 100%;
}
.fab-container:hover .sub-button:nth-child(2) {
  transform: translateY(-80px);
}
.fab-container:hover .sub-button:nth-child(3) {
  transform: translateY(-140px);
}
.fab-container:hover .sub-button:nth-child(4) {
  transform: translateY(-200px);
}
.fab-container:hover .sub-button:nth-child(5) {
  transform: translateY(-260px);
}
.fab-container:hover .sub-button:nth-child(6) {
  transform: translateY(-320px);
}
.fab-container .fab {
  position: relative;
  height: 70px;
  width: 70px;
  border: solid 2px var(--primary);
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  z-index: 2;
  cursor: pointer;
}
.fab-container .fab .fab-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  border-radius: 50%;
}
.fab-container .fab .fab-content i {
  color: var(--primary);
}
.fab-container .fab:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}
.fab-container .sub-button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 10px;
  right: 10px;
  height: 50px;
  width: 50px;
  background-color: var(--primary);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.fab-container .sub-button:hover {
  cursor: pointer;
}
.fab-container .sub-button i {
  color: white;
  padding-top: 6px;
}

.chat-widget .chat-messages {
  height: 100%;
  max-height: 100%;
  overflow-y: hidden;
  display: flex;
  flex-flow: column;
  align-items: stretch;
  justify-content: stretch;
}
.chat-widget .chat-messages > .card-title {
  max-height: 50px;
  flex: 1;
  overflow: hidden;
  margin-bottom: 12px;
}
.chat-widget .chat-messages > .messages-holder {
  flex: auto;
  overflow-y: auto;
}
.chat-widget .chat-messages > .new-message-holder {
  max-height: 100px;
}
.chat-widget .chat-messages > .new-message-holder textarea:focus {
  outline: none;
  box-shadow: none;
}
.chat-widget .messages-holder {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.chat-widget .messages-holder .message-bubble {
  max-width: 70%;
  padding: 6px 12px;
  border-radius: 12px;
  margin: 6px;
  display: inline-block;
  background-color: #f0f0f0;
  color: #000;
  flex-basis: 50px;
}
.chat-widget .messages-holder .message-bubble.its-me {
  background-color: var(--primary);
  color: #fff;
  align-self: flex-end;
}
.chat-widget .messages-holder .message-bubble.its-me .message-timestamp {
  color: #eee;
}
.chat-widget .messages-holder .message-bubble .message-author {
  font-weight: bold;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
}
.chat-widget .messages-holder .message-bubble .message-timestamp {
  font-size: smaller;
  opacity: 0.7;
  margin-left: 6px;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
}
.chat-widget .messages-holder .message-bubble .message-content {
  white-space: pre-wrap;
  display: block;
  unicode-bidi: embed;
}/*# sourceMappingURL=app.css.map */