/* node_modules/react-toastify/dist/ReactToastify.css */
:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light:
    linear-gradient(
      
      to right,
      #4cd964,
      #5ac8fa,
      #007aff,
      #34aadc,
      #5856d6,
      #ff2d55 );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}
.Toastify__toast-container {
  z-index: 9999;
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, 9999 px);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
  position: fixed;
  padding: 4px;
  width: 320px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}
@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left,
  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left,
  .Toastify__toast-container--bottom-center,
  .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: auto;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: 64px;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  max-height: 800px;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: sans-serif;
  font-family: var(--toastify-font-family);
  cursor: pointer;
  direction: ltr;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast-body {
  margin: auto 0;
  flex: 1 1 auto;
  padding: 6px;
  display: flex;
  align-items: center;
}
.Toastify__toast-body > div:last-child {
  flex: 1 1;
}
.Toastify__toast-icon {
  margin-inline-end: 10px;
  width: 20px;
  flex-shrink: 0;
  display: flex;
}
.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}
.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}
@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: #121212;
  background: var(--toastify-color-dark);
  color: #fff;
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: #fff;
  background: var(--toastify-color-light);
  color: #757575;
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: #fff;
  background: var(--toastify-color-light);
  color: #757575;
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: #fff;
  color: var(--toastify-text-color-info);
  background: #3498db;
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: #fff;
  color: var(--toastify-text-color-success);
  background: #07bc0c;
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: #fff;
  color: var(--toastify-text-color-warning);
  background: #f1c40f;
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: #fff;
  color: var(--toastify-text-color-error);
  background: #e74c3c;
  background: var(--toastify-color-error);
}
.Toastify__progress-bar-theme--light {
  background:
    linear-gradient(
      to right,
      #4cd964,
      #5ac8fa,
      #007aff,
      #34aadc,
      #5856d6,
      #ff2d55);
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: #bb86fc;
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: #3498db;
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: #07bc0c;
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: #f1c40f;
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: #e74c3c;
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: rgba(255, 255, 255, 0.7);
  background: var(--toastify-color-transparent);
}
.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  align-self: flex-start;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover,
.Toastify__close-button:focus {
  opacity: 1;
}
@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 9999;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: auto;
  left: initial;
  transform-origin: right;
}
.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: #e0e0e0;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: #616161;
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}
@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left,
.Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right,
.Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}
.Toastify__bounce-exit--top-left,
.Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right,
.Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}
@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}
.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}
@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}
.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}
@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left,
.Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right,
.Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}
.Toastify__slide-exit--top-left,
.Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right,
.Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}
@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* node_modules/tempusdominus-bootstrap-4/build/css/tempusdominus-bootstrap-4.min.css */
.sr-only,
.bootstrap-datetimepicker-widget .btn[data-action=incrementHours]::after,
.bootstrap-datetimepicker-widget .btn[data-action=incrementMinutes]::after,
.bootstrap-datetimepicker-widget .btn[data-action=decrementHours]::after,
.bootstrap-datetimepicker-widget .btn[data-action=decrementMinutes]::after,
.bootstrap-datetimepicker-widget .btn[data-action=showHours]::after,
.bootstrap-datetimepicker-widget .btn[data-action=showMinutes]::after,
.bootstrap-datetimepicker-widget .btn[data-action=togglePeriod]::after,
.bootstrap-datetimepicker-widget .btn[data-action=clear]::after,
.bootstrap-datetimepicker-widget .btn[data-action=today]::after,
.bootstrap-datetimepicker-widget .picker-switch::after,
.bootstrap-datetimepicker-widget table th.prev::after,
.bootstrap-datetimepicker-widget table th.next::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.bootstrap-datetimepicker-widget {
  list-style: none;
}
.bootstrap-datetimepicker-widget.dropdown-menu {
  display: block;
  margin: 2px 0;
  padding: 4px;
  width: 14rem;
}
@media (min-width: 576px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
@media (min-width: 768px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
@media (min-width: 992px) {
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}
.bootstrap-datetimepicker-widget.dropdown-menu:before,
.bootstrap-datetimepicker-widget.dropdown-menu:after {
  content: "";
  display: inline-block;
  position: absolute;
}
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  top: -7px;
  left: 7px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  top: -6px;
  left: 8px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #ccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  bottom: -7px;
  left: 6px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid white;
  bottom: -6px;
  left: 7px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.float-right:before {
  left: auto;
  right: 6px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.float-right:after {
  left: auto;
  right: 7px;
}
.bootstrap-datetimepicker-widget.dropdown-menu.wider {
  width: 16rem;
}
.bootstrap-datetimepicker-widget .list-unstyled {
  margin: 0;
}
.bootstrap-datetimepicker-widget a[data-action] {
  padding: 6px 0;
}
.bootstrap-datetimepicker-widget a[data-action]:active {
  box-shadow: none;
}
.bootstrap-datetimepicker-widget .timepicker-hour,
.bootstrap-datetimepicker-widget .timepicker-minute,
.bootstrap-datetimepicker-widget .timepicker-second {
  width: 54px;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0;
}
.bootstrap-datetimepicker-widget button[data-action] {
  padding: 6px;
}
.bootstrap-datetimepicker-widget .btn[data-action=incrementHours]::after {
  content: "Increment Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action=incrementMinutes]::after {
  content: "Increment Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action=decrementHours]::after {
  content: "Decrement Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action=decrementMinutes]::after {
  content: "Decrement Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action=showHours]::after {
  content: "Show Hours";
}
.bootstrap-datetimepicker-widget .btn[data-action=showMinutes]::after {
  content: "Show Minutes";
}
.bootstrap-datetimepicker-widget .btn[data-action=togglePeriod]::after {
  content: "Toggle AM/PM";
}
.bootstrap-datetimepicker-widget .btn[data-action=clear]::after {
  content: "Clear the picker";
}
.bootstrap-datetimepicker-widget .btn[data-action=today]::after {
  content: "Set the date to today";
}
.bootstrap-datetimepicker-widget .picker-switch {
  text-align: center;
}
.bootstrap-datetimepicker-widget .picker-switch::after {
  content: "Toggle Date and Time Screens";
}
.bootstrap-datetimepicker-widget .picker-switch td {
  padding: 0;
  margin: 0;
  height: auto;
  width: auto;
  line-height: inherit;
}
.bootstrap-datetimepicker-widget .picker-switch td span {
  line-height: 2.5;
  height: 2.5em;
  width: 100%;
}
.bootstrap-datetimepicker-widget table {
  width: 100%;
  margin: 0;
}
.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th {
  text-align: center;
  border-radius: 0.25rem;
}
.bootstrap-datetimepicker-widget table th {
  height: 20px;
  line-height: 20px;
  width: 20px;
}
.bootstrap-datetimepicker-widget table th.picker-switch {
  width: 145px;
}
.bootstrap-datetimepicker-widget table th.disabled,
.bootstrap-datetimepicker-widget table th.disabled:hover {
  background: none;
  color: #6c757d;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget table th.prev::after {
  content: "Previous Month";
}
.bootstrap-datetimepicker-widget table th.next::after {
  content: "Next Month";
}
.bootstrap-datetimepicker-widget table thead tr:first-child th {
  cursor: pointer;
}
.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
  background: #e9ecef;
}
.bootstrap-datetimepicker-widget table td {
  height: 54px;
  line-height: 54px;
  width: 54px;
}
.bootstrap-datetimepicker-widget table td.cw {
  font-size: .8em;
  height: 20px;
  line-height: 20px;
  color: #6c757d;
}
.bootstrap-datetimepicker-widget table td.day {
  height: 20px;
  line-height: 20px;
  width: 20px;
}
.bootstrap-datetimepicker-widget table td.day:hover,
.bootstrap-datetimepicker-widget table td.hour:hover,
.bootstrap-datetimepicker-widget table td.minute:hover,
.bootstrap-datetimepicker-widget table td.second:hover {
  background: #e9ecef;
  cursor: pointer;
}
.bootstrap-datetimepicker-widget table td.old,
.bootstrap-datetimepicker-widget table td.new {
  color: #6c757d;
}
.bootstrap-datetimepicker-widget table td.today {
  position: relative;
}
.bootstrap-datetimepicker-widget table td.today:before {
  content: "";
  display: inline-block;
  border: solid transparent;
  border-width: 0 0 7px 7px;
  border-bottom-color: #007bff;
  border-top-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 4px;
  right: 4px;
}
.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #007bff;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.bootstrap-datetimepicker-widget table td.active.today:before {
  border-bottom-color: #fff;
}
.bootstrap-datetimepicker-widget table td.disabled,
.bootstrap-datetimepicker-widget table td.disabled:hover {
  background: none;
  color: #6c757d;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget table td span {
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 54px;
  margin: 2px 1.5px;
  cursor: pointer;
  border-radius: 0.25rem;
}
.bootstrap-datetimepicker-widget table td span:hover {
  background: #e9ecef;
}
.bootstrap-datetimepicker-widget table td span.active {
  background-color: #007bff;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.bootstrap-datetimepicker-widget table td span.old {
  color: #6c757d;
}
.bootstrap-datetimepicker-widget table td span.disabled,
.bootstrap-datetimepicker-widget table td span.disabled:hover {
  background: none;
  color: #6c757d;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
  height: 27px;
  line-height: 27px;
}
.input-group [data-toggle=datetimepicker] {
  cursor: pointer;
}

/* app/javascript/popups/assets/styles/index.scss */
#popup-container .popup-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
#popup-container .popup-overlay .popup {
  background-color: #fff;
  border-radius: 10px;
  padding: 24px 46px;
  margin: 0 18px;
  position: relative;
  text-align: center;
}
#popup-container .popup-overlay .popup .title {
  font-size: 22px;
  line-height: 130%;
  margin-top: 20px;
}
#popup-container .popup-overlay .popup .popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

/* app/javascript/components/NotificationModal/index.scss */
.Toastify__toast {
  color: #0a385a !important;
  border-radius: 15px !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
}
@media (min-width: 1950px) {
  .Toastify__toast {
    margin-bottom: 1vw !important;
    padding: 0.4vw !important;
    font-size: 0.6vw !important;
    border-radius: 0.75vw !important;
    width: 15.5vw;
    min-height: 3.25vw;
  }
}
.Toastify__toast button:focus {
  outline: none;
}
@media (min-width: 1950px) {
  .Toastify__toast .Toastify__progress-bar {
    height: 0.25vw;
  }
}
@media (min-width: 1950px) {
  .Toastify__toast .Toastify__close-button svg {
    width: 0.75vw;
    height: 0.75vw;
    font-size: 1vw;
  }
}
@media (min-width: 1950px) {
  .Toastify__toast .Toastify__toast-icon {
    margin-right: 0.5vw;
    width: 1vw;
    height: 1vw;
  }
}
.Toastify__toast .list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1950px) {
  .Toastify__toast .list {
    gap: 0.5vw;
  }
}
.Toastify__toast .list-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 1950px) {
  .Toastify__toast .list-item {
    gap: 0.4vw;
  }
}
.Toastify__toast .list-item svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
}
@media (min-width: 1950px) {
  .Toastify__toast .list-item svg {
    width: 18px !important;
    height: 18px !important;
  }
}
.Toastify__toast .custom-progress-bar {
  background: #76b133 !important;
}
.Toastify__toast-container--top-center {
  left: 50% !important;
  right: 50% !important;
}
@media (min-width: 1950px) {
  .Toastify__toast-container--top-center {
    width: 15.5vw;
  }
}
@media (max-width: 450px) {
  .notification-modal {
    height: 90%;
  }
}
@media (max-width: 450px) {
  .notification-modal .modal-content {
    height: 100%;
  }
}
.notification-modal .notification-modal-scroll-hint {
  display: none;
  width: 100%;
  background: #ebebf0;
  margin: 0;
  text-align: center;
  font-size: 14px;
  color: #bebec2;
  z-index: 10;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (min-width: 1950px) {
  .notification-modal .notification-modal-scroll-hint {
    font-size: 0.7vw;
  }
}
@media (max-width: 450px) {
  .notification-modal .notification-modal-scroll-hint {
    display: block;
  }
}
.notification-modal .notification-modal-scroll-hint.hidden {
  opacity: 0;
  visibility: hidden;
}
.notification-modal .modal-body {
  padding: 24px 30px 12px 30px !important;
}
@media (min-width: 1950px) {
  .notification-modal .modal-body {
    padding: 1.2vw 1.5vw 0.6vw 1.5vw !important;
  }
}
@media (max-width: 450px) {
  .notification-modal .modal-body {
    overflow-y: scroll;
  }
}
.notification-modal .notification-modal-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: #0a385a;
}
@media (min-width: 1950px) {
  .notification-modal .notification-modal-title {
    font-size: 1vw;
  }
}
.notification-modal .notification-modal-description-wrap {
  font-size: 16px;
  position: relative;
  line-height: 1.5;
}
@media (min-width: 1950px) {
  .notification-modal .notification-modal-description-wrap {
    font-size: 0.8vw;
  }
}
.notification-modal .notification-modal-description {
  padding-right: 10px;
  line-height: 1.5;
  color: #0a385a;
  word-break: break-word;
  max-height: 152px;
  overflow-y: scroll;
}
@media (min-width: 1950px) {
  .notification-modal .notification-modal-description {
    max-height: 7.51vw;
    padding-right: 0.5vw;
  }
}
@media (max-width: 450px) {
  .notification-modal .notification-modal-description {
    overflow: visible;
    max-height: 100%;
  }
}
.notification-modal .notification-modal-description p {
  margin: 0 0 1em 0;
}
.notification-modal .notification-modal-description p:last-child {
  margin-bottom: 0;
}
.notification-modal .notification-modal-description::-webkit-scrollbar {
  width: 4px;
  display: block;
}
.notification-modal .notification-modal-description::-webkit-scrollbar-thumb {
  background: #76b133;
  min-height: 4px;
  border-radius: 4px;
}
.notification-modal .notification-modal-description::-webkit-scrollbar-track {
  background: transparent;
  background: var(--scrollbar-track-color, transparent);
  border-radius: 4px;
}
.notification-modal .form-check-label {
  color: #0a385a;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1950px) {
  .notification-modal .form-check-label {
    font-size: 0.7vw;
  }
}
.notification-modal .notification-modal-signature-wrap label {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
@media (min-width: 1950px) {
  .notification-modal .notification-modal-signature-wrap label {
    font-size: 0.7vw;
  }
}
.notification-modal .notification-modal-signature-wrap .clear-btn {
  color: #76b133;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  float: right;
  background: transparent;
  border: none;
  cursor: pointer;
}
@media (min-width: 1950px) {
  .notification-modal .notification-modal-signature-wrap .clear-btn {
    font-size: 0.7vw;
  }
}
.notification-modal .notification-modal-signature-wrap .clear-btn:focus {
  outline: none;
  box-shadow: none;
}
.notification-modal .notification-modal-signature-wrap .clear-btn:disabled {
  color: #bebec2;
  cursor: not-allowed;
}
.notification-modal .modal-footer .btn-extend:disabled {
  background: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
  color: #6c757d !important;
  cursor: no-drop;
}
.notification-modal .modal-footer .btn-extend:disabled:hover {
  background: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
  color: #6c757d !important;
}

/* app/javascript/session_notes/assets/styles/index.scss */
.button-companion-text {
  font-size: 20px;
  line-height: 140%;
  color: #01295c;
}
@media (min-width: 1950px) {
  .button-companion-text {
    font-size: 1vw;
  }
}
.session-notes-text-edit-container {
  border-radius: 20px;
}
@media (min-width: 1950px) {
  .session-notes-text-edit-container {
    border-radius: 1vw;
  }
}
textarea.session-notes-textarea,
pre.session-notes-textarea {
  min-height: 84px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  font-family: inherit;
  white-space: pre-wrap;
  resize: none;
  margin-bottom: 0;
}
@media (min-width: 1950px) {
  textarea.session-notes-textarea,
  pre.session-notes-textarea {
    font-size: 0.8vw;
    min-height: 4.2vw;
    border-radius: 1vw;
  }
}
textarea.session-notes-textarea.is-hidden,
pre.session-notes-textarea.is-hidden {
  display: none;
}
textarea.session-notes-textarea:focus,
pre.session-notes-textarea:focus {
  outline: none;
  border: 1px solid #76b133;
  box-shadow: 0 0 0 1px #76b133;
}
@media (min-width: 1950px) {
  textarea.session-notes-textarea:focus,
  pre.session-notes-textarea:focus {
    box-shadow: 0 0 0 0.05vw #76b133;
    border-radius: 0.5vw;
  }
}
textarea.session-notes-textarea:disabled,
pre.session-notes-textarea:disabled {
  background-color: white;
  opacity: 0.5;
}
.session-notes-form-group {
  position: relative;
}
.session-notes-form-group button {
  position: absolute;
  right: 10px;
  bottom: 10px;
}
@media (min-width: 1950px) {
  .session-notes-form-group button {
    right: 0.5vw;
    bottom: 0.5vw;
  }
}
.session-notes-form-group .form-control.session-notes-textarea.is-invalid {
  border-color: #ff6867;
}
.session-notes-form-group .error-message {
  color: #ff6867;
  font-size: 80%;
}
.session-notes-voice-cursor {
  padding: 1px;
  background-color: #76b133;
}
@media (min-width: 1950px) {
  .session-notes-voice-cursor {
    padding: 0.05vw;
  }
}
.session-notes-realtime-pending {
  background:
    linear-gradient(
      to right,
      rgba(118, 177, 51, 0.1) 8%,
      rgba(255, 255, 255, 0.1) 38%,
      rgba(118, 177, 51, 0.1) 54%);
  background-size: 1000px 640px;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: sessionNotesShimmer;
  animation-timing-function: linear;
  padding: 2px 5px;
  color: #76b133;
}
@media (min-width: 1950px) {
  .session-notes-realtime-pending {
    padding: 0.1vw 0.25vw;
  }
}
@keyframes sessionNotesShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
.session-notes-control-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
@media (min-width: 1950px) {
  .session-notes-control-row {
    gap: 2vw;
  }
}
@media only screen and (max-width: 500px) {
  .session-notes-control-row {
    gap: 0;
  }
}

/* app/javascript/components/Button.scss */
.button {
  box-sizing: border-box;
  padding: 5px 16px;
  color: #76b133;
  border: 2px solid #76b133;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (min-width: 1950px) {
  .button {
    padding: 0.25vw 0.8vw;
    font-size: 0.8vw;
    border-radius: 1.5vw;
    gap: 0.8vw;
  }
}
.button:focus {
  outline: none;
  box-shadow: none;
}
.button .icon-microphone {
  width: 29px;
  height: 27px;
}
@media (min-width: 1950px) {
  .button .icon-microphone {
    width: 1.45vw;
    height: 1.35vw;
  }
}
.button.variant-primary.is-filled {
  background-color: #76b133;
  color: #fff;
}
.button.variant-primary.is-filled[disabled] {
  background-color: #9d9c9c;
  border-color: #9d9c9c;
}
.button.variant-secondary.is-filled {
  background-color: rgba(118, 177, 51, 0.1);
}
.button.variant-secondary.is-filled[disabled] {
  background-color: rgba(157, 156, 156, 0.1);
  border-color: rgba(157, 156, 156, 0.1);
  color: #9d9c9c;
}
.button.variant-secondary.is-filled[disabled] svg {
  filter: grayscale(1);
}
.button.variant-secondary.is-loading {
  background:
    linear-gradient(
      to right,
      rgba(157, 156, 156, 0.1) 8%,
      rgba(255, 255, 255, 0.1) 38%,
      rgba(157, 156, 156, 0.1) 54%);
  background-size: 1000px 640px;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: sessionNotesShimmer;
  animation-timing-function: linear;
}
.button.variant-secondary:hover:not(:disabled) {
  background-color: #76b133;
  color: white;
}
@media (min-width: 1950px) {
  .button.variant-secondary svg {
    width: 1.5vw;
    height: 1.5vw;
  }
}
.button.variant-tertiary.is-filled {
  color: #01295c;
  background-color: rgba(1, 41, 92, 0.1);
  border: 0;
}
.button.variant-text {
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  color: #01295c;
  fill: #01295c;
  stroke: #01295c;
  transition: background-color 0.2s ease-in-out;
}
.button.variant-text[disabled] {
  color: #939c9c;
  fill: #939c9c;
  stroke: #939c9c;
}
.button.variant-text.is-circular:hover:not(:disabled) {
  background-color: rgba(1, 41, 92, 0.1);
}
.button.is-circular {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 0;
}
@media (min-width: 1950px) {
  .button.is-circular {
    width: 2vw;
    height: 2vw;
  }
  .button.is-circular svg {
    width: 1.5vw;
    height: 1.5vw;
  }
  .button.is-circular.variant-text svg {
    width: 1vw;
    height: 1vw;
  }
}
.button.is-circular img {
  height: 100%;
}

/* app/javascript/components/layout/Stack.scss */
.stack {
  display: flex;
}
.stack.direction-vertical {
  flex-direction: column;
}
.stack.direction-horizontal {
  flex-direction: row;
  height: 100%;
}
.stack.align-items-center {
  align-items: center;
}
.stack.justify-content-space-between {
  justify-content: space-between;
}
/*! Bundled license information:

tempusdominus-bootstrap-4/build/css/tempusdominus-bootstrap-4.min.css:
  (*@preserve
   * Tempus Dominus Bootstrap4 v5.1.2 (https://tempusdominus.github.io/bootstrap-4/)
   * Copyright 2016-2018 Jonathan Peterson
   * Licensed under MIT (https://github.com/tempusdominus/bootstrap-3/blob/master/LICENSE)
   *)
*/
/*# sourceMappingURL=/assets/app_mounter.css.map */
