:root {
  --primary: hsl(214deg, 100%, 69%) !important;
}

:root:not([data-theme="light"]) nav a.navbar-brand img,
:root[data-theme="dark"] nav a.navbar-brand img {
  content: url("../images/logo_dark.png");
}
input[type="time"]:not(.has-value):not(.focus-visible) {
  color: #efeff0;
}
input[type="time"].has-value {
  color: var(--form-element-color);
}
mark {
  font-weight: 700;
}

.border {
  border: 1px solid rgba(107 147 200 / 13%);
}

.row p {
  white-space: pre;
}

/* theme switcher */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  border: 0;
}
.navbar-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-brand img {
  height: 80px;
}

.container-fluid:has(.navbar-brand) {
  margin-bottom: 2rem;
  padding-left: 0;
}

.nav-right {
  justify-content: flex-end;
}
.flex {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.flex select {
  margin-bottom: 0;
}
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}
.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  /* background-color: #fff;
  border-color: #dee2e6; */
}
/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 40px;
  width: 40px;
  left: 0px;
  bottom: 4px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: 0 0px 15px #2020203d;
  background: white url("https://i.ibb.co/FxzBYR9/night.png");
  background-repeat: no-repeat;
  background-position: center;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(24px);
  -ms-transform: translateX(24px);
  transform: translateX(24px);
  background: white url("https://i.ibb.co/7JfqXxB/sunny.png");
  background-repeat: no-repeat;
  background-position: center;
}

.required {
  color: #c62828;
}
.required::after {
  content: "*";
}
/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Profile photo */
.profile-photo {
  width: 150px;
  /* object-fit: fit; */
}

/* Nanny Badge */
.badge-holder {
  position: relative;
  width: 60px;
  height: 60px;
  justify-self: center;
  margin: auto;
}

.corner-badge {
  position: absolute;
  right: 0px;
  bottom: 0px;
  padding: 8px 8px;
}

.badge-caption-container {
  display: grid;
  grid-template-columns: 100%;
}

.badge-caption {
  position: absolute;
  right: 0px;
  bottom: 0px;
  top: 30px;
  padding: 5px 10px;
}
.link-photo {
  max-width: none;
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.rounded-circle {
  border-radius: 50% !important;
}

.link-caption {
  display: flex;
  justify-content: center;
  width: 75px;
  text-align: center;
  justify-self: center;
}
.status-badge {
  padding: 4px;
  border-radius: 0.25rem;
}
.user-container ul {
  margin-left: 1rem !important;
}
.align-item-start {
  align-items: start;
}
.user-status-container {
  display: flex;
  height: 6rem;
  width: 100%;
  overflow-x: scroll;
  gap: 2rem;
  margin-bottom: 4rem;
  margin-top: 5rem;
}
.user-status-container ul {
  display: flex;
  max-width: 40rem;
  min-height: 5rem;
  transition: order 1s;
  align-items: center;
}

.user-status-container ul li {
  list-style: none;
  padding: var(--nav-element-spacing-vertical) var(--nav-element-spacing-horizontal);
}
.user-status-container .user-fullname {
  height: 1.5rem;
}
.user-status-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 17rem;
}
.user-status-container ul li.job-count {
  min-width: 3rem;
}
.job-count-label {
  display: inline-block;
  height: 1.5rem;
}
.icon-job-count {
  fill: hsl(0deg, 0%, 34%, 1);
  /* stroke: hsl(195deg, 90%, 32%); */
}
.dot {
  width: 0.8rem;
  height: 0.8rem;
}
.status-online {
  background-color: rgb(75, 210, 143);
}
.status-offline {
  background-color: rgb(191, 191, 191);
}
.status-idle {
  background-color: rgb(255, 170, 0);
}
.status-available {
  background-color: rgb(75, 210, 143);
}
.status-unavailable {
  background-color: rgb(255, 77, 77);
}
.status-placed {
  background-color: rgb(255, 170, 0);
}
.status-refund {
  background-color: rgb(255, 77, 77);
}
.status-on_hold {
  background-color: rgb(183, 119, 215);
}
.status-trial {
  background-color: rgb(0, 149, 255);
}
.status-blacklist {
  background-color: rgb(0, 0, 0);
}
/* Nanny Badge */

/* Top menu */
.active {
  font-weight: 500;
}

/* Top menu */

.grid fieldset legend + input {
  margin-left: 0;
}

#my-jobs-toggle {
  margin-left: 0;
}

.grid > input {
  margin-left: 15px;
}

/* Collapsible */
input.collapsible[type="checkbox"] {
  display: none;
}

.collapsible:checked + .lbl-collapsible::before {
  transform: rotate(90deg) translateX(-3px);
}
.collapsible + .lbl-collapsible::after {
  content: "\002B";
}
.collapsible:checked + .lbl-collapsible::after {
  content: "\2212";
}
.collapsible-content {
  margin-top: 0.6em;
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.25s ease-in-out;
}

.collapsible:checked + .lbl-collapsible + .collapsible-content {
  max-height: 100%;
  border-radius: 1rem;
  padding: 5px;
}
/* Collapsible */

/* Drag-Drop */
#jobs-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, 18rem);
  gap: 1rem;
  margin-bottom: 3.5em;
  margin-top: 2rem;
}
#nannies-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, 75px);
  gap: 3rem;
  margin-bottom: 3.5em;
  background-color: hsl(195deg 85% 96%);
  padding: 4em;
}

.box {
  width: 18rem;
}

.box.over {
  border: 3px dotted hsl(205deg, 14%, 68%);
}

[draggable] {
  user-select: none;
}

.drag-handle {
  cursor: move;
}

.circle {
  /* border: 3px solid hsl(205deg, 14%, 68%); */
  border-radius: 50%;
  /* background-color: #ddd; */
  /* padding: 10px; */
  cursor: move;
  /* width: 3.2em;
  height: 3.2em; */
  /* display: inline-block; */
}

.circle .card-link {
  right: 2px;
  bottom: 2px;
}
.circle-drop-area {
  min-height: 10em;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 50px;
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 20px;
}

article.job-card {
  /* height: 30rem; */
  margin: 0;
  /* padding-left: 0.5em;
  padding-right: 0.5em; */
}

article.job-card .card-body {
  min-height: 26rem;
  padding: 0.5em;

  /* margin: 0; */
  /* padding: 1em; */
}

article.job-card ul {
  margin: 0;
  padding: 0;
}

article.job-card ul li {
  list-style: none;
}

article.job-card ul li.flex {
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: stretch;
  gap: 1em;
  margin-bottom: 1em;
}
article.job-card header {
  padding: 0.5em;
  height: 2.5em;
  margin-bottom: 1em;
}
article.job-card footer {
  padding: 0.5em;
  background-color: hsl(180deg 100% 95%);
}

/* Drag-Drop */

/* Dashboard */
.grid-container {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 100%;
  gap: 2rem;
}

@media (min-width: 576px) {
  .grid-container {
    grid-template-columns: 100%;
    grid-template-columns: 80% auto;
  }
}
@media (min-width: 768px) {
  .grid-container {
    grid-template-columns: 80% auto;
  }
}
@media (min-width: 992px) {
  .grid-container {
    grid-template-columns: 80% auto;
  }
}
@media (min-width: 1200px) {
  .grid-container {
    grid-template-columns: 80% auto;
  }
}
@media (min-width: 1600px) {
  .grid-container {
    grid-template-columns: 80% auto;
  }
}
@media (min-width: 1920px) {
  .grid-container {
    grid-template-columns: 80% auto;
  }
}
@media (min-width: 2400px) {
  .grid-container {
    grid-template-columns: 80% auto;
  }
}
@media (min-width: 2600px) {
  .grid-container {
    grid-template-columns: 80% auto;
  }
}
@media (min-width: 3000px) {
  .calendar-grid {
    width: 117rem;
  }
  .grid-container {
    grid-template-columns: 80% auto;
  }
}

.primary {
  color: var(--primary);
}
.title-center {
  width: 360px;
  text-align: center;
}
.possible-match-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}
.icon-arrow {
  width: 150px;
  stroke-width: 50;
  /* height: 50px; */
  /* fill: hsl(195deg, 90%, 32%); */
}
.add-job {
  stroke-width: 5px;
}
.arrow {
  display: block;
  line-height: 1rem;
  font-size: 64px;
  font-family: Verdana, sans-serif, monospace;
  color: rgb(75, 210, 143);
  text-align: center;
}

.relation-container {
  align-self: center;
}
.trial-card {
  padding: 10px 20px;
  border-radius: 0.45rem;
  /* max-width: 18rem; */
  margin-top: 40px;
  margin-bottom: 40px;
}
.trial-card > header {
  margin: 0;
  padding: 10px 0;
  font-weight: 600;
  text-align: center;
}
.trials-container {
  background-color: hsl(195deg 85% 96%);
  /* max-width: 20rem; */
  min-height: 20rem;
  padding: 1rem;
}
.earning {
  background-color: hsl(195deg 85% 96%);
  /* max-width: 20rem; */
  padding-left: 1rem;
  padding-bottom: 1rem;
}
.earning .title {
  font-weight: 700;
}

.message-sent-toggle {
  display: block;
  margin: auto;
}
.faded {
  opacity: 0.6 !important;
  -moz-opacity: 0.6 !important; /* Firefox and Mozilla browsers */
  -webkit-opacity: 0.6 !important; /* WebKit browser e.g. Safari */
}
#scheduled-events h4 {
  margin-left: 4rem;
}
.progress-bar-container {
  display: grid;
  grid-template-columns: 0.3fr 9.4fr 0.3fr;
  row-gap: 1rem;
  column-gap: 5rem;
  justify-items: center;
  align-items: center;
}
.progress-bar-container > span {
  grid-row: 1;
  grid-column: 2;
}
.progress-bar-container progress {
  --progress-color: #2dd47b;
  grid-row: 2;
  grid-column: 2;
}
.progress-bar-container .green {
  color: #2dd47b;
}

#event-containter {
  display: grid;
  grid-template-columns: 0.3fr 9.4fr 0.3fr;
  gap: 1rem;
  justify-items: center;
  align-items: center;
}

#event-containter .navigation-button {
  width: 3rem;
  height: 3rem;
  border-radius: 2rem;
  text-align: center;
  vertical-align: middle;
  padding: 0;
  border-width: 0.18rem;
  /* position: relative;
  top: calc(50%); */
}
#event-containter .navigation-button > svg {
  position: relative;
  top: calc(50% - 18px);
  stroke-width: 0.18rem;
}
.calendar-grid {
  padding-left: 2rem;
  padding-right: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(23rem, 1fr));
  gap: 2rem;
  scroll-behavior: smooth;
  overflow-x: auto;
  grid-auto-flow: column;
  grid-auto-columns: minmax(23rem, 1fr);
}
.calendar-grid article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.calendar-grid .scheduled-day.active {
  border: 0.18rem solid #2998ff;
}
.calendar-grid .scheduled-day header {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}
.calendar-grid .scheduled-day footer {
  margin-top: 2rem;
}
.schedule-card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 30rem;
  gap: 1rem;
}
.schedule-card-body > a {
  width: 100%;
}
.event-title {
  display: inline-block;
  font-weight: 700;
  width: 100%;
}
.event-time {
  display: inline-block;
  width: 100%;
}
.event-date-month {
  display: inline-block;
  width: 100%;
}
.event-date-day {
  display: inline-block;
  font-weight: 700;
  font-size: 3rem;
  width: 100%;
}
.event-date-weekday {
  display: inline-block;
  width: 100%;
}
.event-list-container > em {
  color: var(--muted-color);
  display: block;
  text-align: center;
}
.event-list-container .event-container:not(:first-child) {
  margin-top: 1rem;
}
.event-list-container .event-container:not(:last-child) {
  margin-bottom: 1rem;
}
.italic {
  font-style: italic;
  font-weight: 400;
}
article .input-container {
  display: grid;
  grid-template-columns: 4fr 1fr 1fr;
  justify-items: center;
  align-items: center;
}
input.event-title-edit {
  margin-bottom: 0 !important;
}

.toggle-note {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.note-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  height: 25rem;
  overflow-y: scroll;
  margin-bottom: 1rem;
}
.note-item {
  list-style: none;
}
.note-content-container {
  display: grid;
  grid-template-columns: 1fr 8fr 1fr;
  align-items: center;
}
.note-content-container.done {
  text-decoration: line-through;
  opacity: 0.6 !important;
}
.note-content-container input[type="checkbox"]:focus,
.note-content-container input[type="checkbox"]:checked {
  --primary: #2dd47b;
  --form-element-active-border-color: #2dd47b;
}
.event-list-container {
  height: 10rem;
  overflow-y: scroll;
}
.event-container {
  display: grid;
  grid-template-columns: 9fr 1fr;
}
.event-container.passed {
  opacity: 0.5;
  pointer-events: none;
}
.inline-avatar {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  gap: 1rem;
  align-items: center;
  justify-content: stretch;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -webkit-justify-content: stretch;
}
.event-container .inline-avatar {
  margin-bottom: 1rem;
}
.event-container .card-link {
  display: inline-block;
  margin-left: 0.5rem;
}
/* Dashboard */

.icon-active {
  fill: hsl(195deg, 90%, 32%);
  stroke: hsl(195deg, 90%, 32%);
}

.icon-disabled {
  stroke: var(--form-element-disabled-border-color);
}

.icon-highlighted {
  stroke: hsl(195deg, 90%, 32%);
  stroke-width: 2.3px;
}
.icon-danger {
  stroke: #f47067;
  /* stroke-width: 2.3px; */
}
.icon-primary {
  stroke: var(--primary);
}
.icon-secondary {
  stroke: var(--secondary);
}

#results-container td a,
:hover,
:active {
  text-decoration: none;
}
.table-container {
  margin-bottom: 0;
}

/* Table */
table.table-sn {
  margin-bottom: 0;
}

table.table-sm th,
td {
  padding: calc(var(--spacing) / 4) calc(var(--spacing) / 4);
}
table thead th.align-center {
  text-align: center;
}
.button-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.button-container a {
  text-align: center;
  vertical-align: middle;
}
.button-container a.placeholder {
  cursor: default;
}
/* Table */

.display-none {
  display: none;
}

.detail-container {
  margin-left: 12rem;
}

section#history h5 {
  margin-left: 17rem;
  margin-bottom: 1rem;
}

#history .detail-container .grid {
  align-items: center;
}

/* Snackbar */
/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  min-width: 12rem; /* Set a default minimum width */
  height: 3rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center; /* Centered text */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 1; /* Add a z-index if needed */
  top: 50vh;
  left: calc(50vw - 4rem);
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 60px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 60px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 60px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 60px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
/* Snackbar */

/* .message-sending-container select#job option {
  background-color: cadetblue;
} */

/* Chip */
.chip-holder {
  position: relative;
  height: 54px;
  justify-self: center;
}
.chip-item {
  display: inline-block;
}
.chip-item img {
  width: 54px;
  height: 54px;
}
.chip-holder .chip-title {
  display: inline;
  margin: 0;
}
/* Chip */

details > ul > li:hover {
  background-color: var(--dropdown-hover-background-color);
}
/* #demo-job-summary .badge-holder {
  width: 54px;
  height: 54px;
}
#demo-job-ul > li {
  height: 60px;
} */

/* Whatsapp mockup */
.whatsapp-mockup {
  width: 350px;
  height: 650px;
  display: flex;
  align-items: center;
  justify-components: center;
  position: sticky;
  top: 20px;
  border: 1px solid #ddd;
  padding: 4px;
  border-radius: 8px;
}
.whatsapp-mockup .marvel-device.iphone {
  width: 100%;
  height: 100%;
}
.whatsapp-mockup .marvel-device .screen {
  text-align: left;
  height: 100%;
}
.whatsapp-mockup .screen-container,
.whatsapp-mockup .chat,
.whatsapp-mockup .chat-container {
  height: 100%;
}
.whatsapp-mockup .screen-container,
.whatsapp-mockup .chat,
.whatsapp-mockup .chat-container {
  height: 100%;
}
.whatsapp-mockup .screen-container,
.whatsapp-mockup .chat,
.whatsapp-mockup .chat-container {
  height: 100%;
}
.whatsapp-mockup .user-bar {
  height: 50px;
  background: #f6f6f6;
  color: #333;
  font-size: 24px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-components: flex-end;
  align-items: flex-end;
  padding-bottom: 4px !important;
  padding-right: 8px !important;
}
.whatsapp-mockup .user-bar .name {
  width: 200px;
  line-height: normal;
}
.whatsapp-mockup .user-bar > div {
  float: left;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-self: center;
}
.whatsapp-mockup .wa-icon-container {
  max-height: 25px;
  max-width: 25px;
  border-radius: inherit;
  display: inline-flex;
  height: inherit;
  width: inherit;
}

.whatsapp-mockup .avatar {
  margin-right: 8px;
}

.whatsapp-mockup .wa-avatar {
  height: 30px;
  min-width: 30px;
  width: 30px;
  align-items: center;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  line-height: normal;
  position: relative;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
}

.whatsapp-mockup .wa-image {
  background-image: url("../images/logo.png");
  background-position: center center;
  background-size: cover;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.whatsapp-mockup .wa-avatar .wa-responsive_content {
  border-radius: inherit;
  display: inline-flex;
  height: inherit;
  width: 128px;
  margin-left: -100%;
}
.whatsapp-mockup .caption {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  font-size: 0.813rem !important;
  font-weight: 520 !important;
  letter-spacing: 0 !important;
  line-height: 1.25rem;
  font-family: Roboto, sans-serif !important;
}
.whatsapp-mockup .actions {
  margin-left: auto;
}
.whatsapp-mockup .conversation {
  height: calc(100% - 50px);
  position: relative;
  z-index: 0;
  background: #f6f6f6;
}
.whatsapp-mockup .conversation .conversation-container {
  height: calc(100% - 50px);
  overflow-x: hidden;
  padding: 0 16px;
  background-image: url("https://cdn.respond.io/platform/web/assets/static/images/placeholders/whatsapp-bg.png");
  background-repeat: repeat;
}
.whatsapp-mockup .conversation-sticky-time {
  background: #daddec;
  text-align: center;
  min-width: 70px;
  max-width: 90px;
  border-radius: 10px;
  color: #4f4f50;
  margin-bottom: 8px !important;
  margin-top: 12px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}
.caption-sm {
  font-size: 0.75rem !important;
}
.template-message-layout .message.received[data-v-4e71a319] {
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 0 7px 7px;
  float: left;
}
.template-message-layout .message[data-v-4e71a319]:first-child {
  margin: 16px 0 2px;
  max-width: 85%;
  transform-origin: center bottom 0px;
}
.template-message-layout .message.received .metadata[data-v-4e71a319] {
  padding: 0 0 0 16px;
  display: inline-block;
  float: right;
  position: relative;
  bottom: -4px;
}
.template-message-layout .message[data-v-4e71a319] {
  color: #000;
  clear: both;
  line-height: 18px;
  font-size: 13px;
  padding: 8px;
  position: relative;
  margin: 8px 0;
  word-wrap: break-word;
}
.whatsapp-mockup .conversation-compose {
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
  height: 50px;
  width: 100%;
  z-index: 2;
}
.whatsapp-mockup .v-text-field--outlined {
  height: 25px;
  background: #fff;
}
.whatsapp-mockup .v-text-field--outlined .v-input__control {
  height: 100%;
}
.whatsapp-mockup .conversation-compose .photo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-components: center;
  justify-components: flex-end;
  margin-left: 12px !important;
  flex-grow: 1 !important;
  flex-shrink: 0 !important;
}
.whatsapp-mockup .conversation-compose .photo .camera {
}
.whatsapp-mockup .conversation-compose .photo .microphone {
  margin-left: 8px;
}
.v-icon.v-icon {
  align-items: center;
  display: inline-flex;
  font-feature-settings: "liga";
  font-size: 1.25rem;
  justify-content: center;
  letter-spacing: normal;
  line-height: 1;
  position: relative;
  text-indent: 0;
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), visibility 0s;
  vertical-align: middle;
  user-select: none;
}

.whatsapp-mockup .quick-replies-wrapper {
  max-width: 85%;
  transform-origin: center top 0px;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  flex-direction: row !important;
  display: flex !important;
  font-size: 0.75rem !important;
  width: 100%;
}

.whatsapp-mockup .quick-replies-container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-right: 12px !important;
  padding-left: 12px !important;
  margin-top: 0 !important;
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 auto;
  margin: -12px;
}

.whatsapp-mockup .quick-reply {
  padding: 0 !important;
  flex: 0 0 50%;
  max-width: 50%;
}

.whatsapp-mockup .quick-reply-content {
  margin-top: 3px !important;
  margin-bottom: 3px !important;
  flex: 1 0 auto;
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 7px;
  padding: 5px;
  text-align: center;
  display: block;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  box-shadow: 0 2px 1px -1px #0003, 0 1px 1px #00000024, 0 1px 3px #0000001f !important;
  color: #448aff;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  font-size: 0.75rem !important;
}
/* Whatsapp mockup */

.caution-container {
  padding-top: 1rem;
  padding-left: 1rem;
}
#caution {
  text-indent: 1rem;
}

#sendMessage {
  margin-top: 1rem;
}
#error-message {
  color: #f47067;
}

/* Analytics */
.metric-card footer {
  border: none;
  background-color: var(--background-color);
}
.metric-card .metric-value {
  font-size: 2rem;
  font-weight: 700;
}
.metric-card .metric-diff {
  margin-left: 1rem;
  font-weight: 700;
}
.metric-card .metric-diff.up {
  color: #448aff;
}
.metric-card .metric-diff.down {
  color: #f47067;
}
/* Analytics */

/* Google login */
.login-with-google-btn {
  transition: background-color 0.3s, box-shadow 0.3s;

  padding: 12px 16px 12px 42px;
  border: none;
  border-radius: 3px;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.25);

  color: #757575;
  font-size: 14px;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans",
    "Droid Sans", "Helvetica Neue", sans-serif;

  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTcuNiA5LjJsLS4xLTEuOEg5djMuNGg0LjhDMTMuNiAxMiAxMyAxMyAxMiAxMy42djIuMmgzYTguOCA4LjggMCAwIDAgMi42LTYuNnoiIGZpbGw9IiM0Mjg1RjQiIGZpbGwtcnVsZT0ibm9uemVybyIvPjxwYXRoIGQ9Ik05IDE4YzIuNCAwIDQuNS0uOCA2LTIuMmwtMy0yLjJhNS40IDUuNCAwIDAgMS04LTIuOUgxVjEzYTkgOSAwIDAgMCA4IDV6IiBmaWxsPSIjMzRBODUzIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNNCAxMC43YTUuNCA1LjQgMCAwIDEgMC0zLjRWNUgxYTkgOSAwIDAgMCAwIDhsMy0yLjN6IiBmaWxsPSIjRkJCQzA1IiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNOSAzLjZjMS4zIDAgMi41LjQgMy40IDEuM0wxNSAyLjNBOSA5IDAgMCAwIDEgNWwzIDIuNGE1LjQgNS40IDAgMCAxIDUtMy43eiIgZmlsbD0iI0VBNDMzNSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PHBhdGggZD0iTTAgMGgxOHYxOEgweiIvPjwvZz48L3N2Zz4=);
  background-color: white;
  background-repeat: no-repeat;
  background-position: 12px 11px;
}
.login-with-google-btn:hover {
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.25);
}
.login-with-google-btn:active {
  background-color: #eeeeee;
}
.login-with-google-btn:focus {
  outline: none;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.25), 0 0 0 3px #c8dafc;
}
.logout-form {
  margin: 0px;
}
/* Google login */

/* Calendly */
.calendly-badge-widget {
  left: 50% !important;
  margin-left: -100px !important;
}
/* Calendly */

/* Scheduled events */
.day-container {
  margin-top: 3rem;
}
.day-container > h6 {
  margin-bottom: 0;
}
.day-container > article {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 999;
}
.event-filter {
  min-width: 8rem;
  max-width: 14rem;
}

input.event-filter {
  --color: var(--primary);
  --border-color: var(--primary);
}
input.event-filter.secondary {
  --color: var(--secondary);
  --border-color: var(--secondary);
}

.events-container {
  max-height: 50vh;
}
/* Scheduled events */
.terms {
  overflow-y: scroll;
  height: 350px;
  width: 100%;
  border: 1px solid #ddd;
  padding: 1px;
  font-size: 0.7em;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  min-width: 260px;
  background-color: white;
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  display: block;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.error {
  color: #c62828ff;
}

.error-message {
  color: #c62828ff;
  font-style: italic;
  font-size: 0.8em;
}

.small-text {
  font-size: 0.7em;
}

.language-item {
  display: grid;
  grid-template-columns: 7fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 1rem;
}
.languages {
  margin: 0;
}

.star-rating-container {
  -webkit-text-stroke: 2px black;
}

.star-rating-container .star {
  color: #fff;
}
.star-rating-container .star.checked {
  color: gold;
}
/* this code is lifted from InHuOfficial */
.hide-visually,
.star-rating > label > input {
  border: 0;
  padding: 0;
  margin: 0;
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 - a 0 height clip, off to the bottom right of the visible 1px box */
  clip: rect(1px, 1px, 1px, 1px); /*maybe deprecated but we need to support legacy browsers */
  clip-path: inset(50%); /*modern browsers, clip-path works inwards from each corner*/
  white-space: nowrap; /* added line to stop words getting smushed together (as they go onto seperate lines and some screen readers do not understand line feeds as a space */
}

.star-rating {
  font-size: 40px;
  display: inline-flex;
  padding: 0;
}

.star-rating:focus-within {
  outline: 3px solid #add8e6;
}

.star-rating label {
  cursor: pointer;
  line-height: 1em;
  text-align: center;
}

.star-rating label .star {
  height: 1em;
  width: 1em;
  display: inline-block;
}

.star-rating > label {
  -webkit-text-stroke: 2px black;
}

.star-rating > label:has(> input:checked) ~ label span.star,
.star-rating > label:hover:has(> input) ~ label > input + span + span.star {
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.star-rating span.star,
.star-rating:hover > label > input + span + span.star,
.star-rating > label:has(> input:checked) span.star,
.star-rating > label:hover span.star {
  color: gold;
  -webkit-text-fill-color: gold;
}

.star-rating > label:hover > input + span + span.star {
  color: orange;
  -webkit-text-fill-color: orange;
}

.strong {
  font-weight: bold;
}

/* spinner */
/* .overlay */
.spinner-container {
  --color-spinner: rgba(96, 164, 255);
  /* --color-spinner: 151, 159, 208; */
  --color-spinner-light: rgba(96, 164, 255, 0.3);
}
.donut {
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: calc(50vh - 1rem);
  left: calc(50vw - 1rem);
  margin: 2rem;
  border-radius: 50%;
  border: 0.5rem solid var(--color-spinner-light);
  border-top-color: var(--color-spinner);
  animation: 1.5s spin infinite linear;
}
.donut.multi {
  border-bottom-color: var(--color-spinner);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* spinner */

.grid:has(.pie-chart-container) {
  margin-bottom: 3rem;
  gap: 1.2px;
  background-color: #f3f3f4;
}
.pie-chart-container {
  padding: 2rem;
  height: 24rem;
  margin: auto;
}
.pie-chart-container > canvas {
  height: 20rem;
}
div:has(> .pie-chart-container) {
  background-color: var(--background-color);
  padding: 2rem;
}

.chart-toggle-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  text-align: center;
  border-top: 1px solid #f3f3f4;
  padding-right: 3rem;
}

.bar-chart-container {
  height: 10rem;
  margin: auto;
}
@media (min-width: 1200px) {
  .bar-chart-container {
    padding: 2rem;
    width: 80%;
    height: 24rem;
    margin: auto;
  }
}
.chart-toggle-container.left {
  justify-content: flex-start;
}
.chart-toggle-container a {
  margin: 1rem;
  color: var(--muted-color);
}
.chart-toggle-container a.active {
  color: var(--color);
}

.assignee-checkboxes label {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.assignee-checkboxes label input[type="checkbox"] {
  margin-top: 0;
}
.checkbox-label {
  margin-left: 0.5rem;
}
.badge-holder.checkbox-label {
  width: 2rem;
  height: 2rem;
}
.chart-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  width: 84%;
  align-items: baseline;
}
.chart-control {
  display: flex;
  gap: 0.5rem;
  /* width: 6.5rem; */
}
.chart-control button {
  width: 62px;
  background-color: unset;
  border-color: #595b62;
  color: #595b62;
  font-weight: bold;
}
#completed-earning {
  font-weight: bold;
}
