﻿/* colors */
/*
  media-query-breakpoints
320px - 480px mobile
481px - 768px ipads/tablet
769px - 1024px small screens/laptops
1025px - 1200px desktops/large screens
1200px >  extra large screens/ TV

*/
/* Search - input type="search"*/
#search-default {
  outline: none !important;
  outline-width: 0 !important;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

.select-component {
  width: 100%;
  border: solid lightgray 1px;
  padding-top: 0px;
  padding-bottom: 0px;
  /*word-break: break-all;*/
  min-width: 150px;
  display: inline-block;
  /*overflow: hidden;*/
  background-color: white;
}

/* Buttons */
.btn-select-component {
  width: 90%;
  text-align: left;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-right: 20px;
  word-break: break-all;
}

.btn-disable-shadow {
  outline: none !important;
  outline-width: 0 !important;
  box-shadow: none !important;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

.btn-disable {
  cursor: pointer !important;
  pointer-events: none !important;
  /*Button disabled - CSS color class*/
  color: #c0c0c0 !important;
  border-color: #c0c0c0 !important;
  background-color: #ffffff !important;
}

/*Blazored Modal*/
.blazored-modal {
  max-height: 90%;
  position: relative;
  padding: 0px 0px 58px 0px !important;
  border-radius: 6px !important;
  border: 0 !important;
}

.blazored-modal-focus-trap {
  display: flex;
  position: fixed;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.position-middle {
  align-items: center !important;
}

.blazored-modal dd {
  overflow-wrap: break-word;
}

.modal-content-default {
  height: 100%;
  overflow: hidden;
  padding: 0.1rem;
}

.virtualized-content-holder {
  display: flex;
  gap: 1em;
  align-items: center;
}

.text-line {
  float: left;
  clear: both;
}

.blazored-modal-buttons {
  display: flex;
  position: absolute;
  bottom: 0.5rem;
  column-gap: 0.25rem;
  padding-right: 1rem;
  width: 100%;
  right: 0;
}

div.blazored-modal-buttons > button:first-child {
  margin-left: auto;
}

.blazored-modal-small {
  width: 300px;
}

.blazored-modal-narrow {
  width: 350px;
}

.blazored-modal-auto {
  width: auto;
}

.blazored-modal-quarter {
  width: 500px;
}

.blazored-modal-600 {
  width: 600px;
}

.blazored-modal-moiety {
  width: 700px;
}

.blazored-modal-800 {
  width: 800px;
}

.blazored-modal-1000 {
  width: 1000px;
}

.blazored-modal-1100 {
  width: 1100px;
}

.blazored-modal-1200 {
  width: 1200px;
}

.blazored-modal-wide {
  width: 1100px;
}

.blazored-modal-1350 {
  width: 1350px;
}

.blazored-modal-1920 {
  width: 1920px;
}

.blazored-modal-60 {
  width: 60%;
}

.blazored-modal-70 {
  width: 70%;
}

.blazored-modal-80 {
  width: 80%;
}

.blazored-modal-100 {
  width: 100% !important;
}

.blazored-modal-extra-wide {
  width: 90% !important;
  font-size: 15px;
}

.blazored-modal-fixed-width-700 {
  width: 700px !important;
}

/*Blazored Toast*/
.blazored-toast-container {
  z-index: 110;
}

/**/
.pagination a {
  color: black;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.pagination a.active {
  background-color: dodgerblue;
  color: white;
}

.pagination a:hover:not(.active) {
  background-color: lightblue;
}

/*Loading Overlay*/
.loader {
  border-radius: 50%;
  width: 10em;
  height: 10em;
  animation: spin 1000ms linear infinite;
  position: relative;
}

.icon-center {
  position: absolute;
  margin-top: 25%;
  margin-left: 25%;
  width: 5em;
  height: 5em;
  object-fit: contain;
}

.loader-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.default-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;*/
/*position: relative;*/
/*display: inline-block;*/
/*}

.default-overlay {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}*/
#blocking-overlay {
  background: white;
  opacity: 0.5;
  z-index: 100;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Blazor Radzen */
.ui-datepicker-calendar {
  width: 100%;
}

/* Login */
.login-center {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.login-center:focus-visible {
  outline: none;
}

.login-form {
  width: 400px;
}

@media (min-width: 768px) {
  .login-form {
    width: 550px;
  }
}
.login-heading {
  display: flex;
  flex-flow: column;
  margin: 2em;
}

.login-heading div {
  text-align: center;
  font-size: 3rem;
  color: white;
}

.login-heading div img {
  background-color: white;
  border-radius: 0.75em;
  width: 30%;
}

.login-box {
    background: #f7f7f7;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    padding: 2em 5em;
    border-radius: 1.25em;
    z-index: 10;
    position: relative;
}

.login-box h2 {
  margin: 0 0 1em;
}

.login-box .form-control, .login-box .btn {
  min-height: 2.375em;
  border-radius: 2px;
  border-radius: 0.5em;
}

/*Drag and drop*/
.dropzone {
  border: 3px dashed steelblue;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eee;
  color: #444;
  font-size: 1.5rem;
  cursor: pointer;
  position: relative;
}

.dropzone:hover {
  background-color: #f3f3f3;
  color: #333;
}

.dropzone input[type=file] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.dropzone-drag {
  background-color: palegreen;
}

/* Background */
#bg {
  z-index: -1;
  position: fixed;
  width: 100%;
  height: 100%;
}

#bg img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  min-width: 50%;
  min-height: 50%;
}

.badge-team {
  max-width: 100px;
  overflow-x: hidden;
  font-size: x-small;
}

/* Landing Page specific */
.landing-page-content {
  background: url(/images/landing_background.jpg) no-repeat;
  height: 100vh;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding: 0;
}

.landing-btn {
  width: 133px;
  height: 38px;
  opacity: 1;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
  margin-top: 4.5rem;
  position: absolute;
  z-index: 1;
}

.btn-label {
  width: 56px;
}

#login-btn-background {
  background: rgb(34, 63, 102);
  color: rgb(237, 136, 14);
  right: 50px;
}

#sign-up-btn-border {
  color: white;
  border: none;
  right: 200px;
  /*border-color: rgba(237,136,14,1);*/
}

.center {
  margin: auto;
  width: 70%;
  padding: 10px;
}

.button-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.virtualize-component-holder {
  margin: auto;
  height: 50rem;
  overflow-y: scroll;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-o-keyframes rotate {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadein {
  0% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadein {
  0% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
body {
  /*    -webkit-user-select: none;
  overflow: hidden;
  background: #2D2D2C;*/
}
body .vertical-centered-box {
  position: absolute;
  width: 100%;
  height: 90%;
  text-align: center;
  z-index: 1;
}
body .vertical-centered-box:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}
body .vertical-centered-box .content {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-animation: fadein 0.1s linear forwards;
  -moz-animation: fadein 0.1s linear forwards;
  -o-animation: fadein 0.1s linear forwards;
  animation: fadein 0.1s linear forwards;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  font-size: 0;
  opacity: 0;
}

.loader-line-mask {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 100px;
  margin-left: -50px;
  margin-top: -50px;
  overflow: hidden;
  -webkit-transform-origin: 50px 50px;
  -moz-transform-origin: 50px 50px;
  -ms-transform-origin: 50px 50px;
  -o-transform-origin: 50px 50px;
  transform-origin: 50px 50px;
  -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
  mix-blend-mode: hard-light;
  opacity: 0.8;
}
.loader-line-mask .loader-line {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.loader-line-mask.one {
  -webkit-animation: rotate 1s infinite linear;
  -moz-animation: rotate 1s infinite linear;
  -o-animation: rotate 1s infinite linear;
  animation: rotate 1s infinite linear;
}
.loader-line-mask.one .loader-line {
  box-shadow: inset 0 0 0 10px #003951;
}

.loader-line-mask.two {
  -webkit-animation: rotate 1.8s 0.5s infinite linear;
  -moz-animation: rotate 1.8s 0.5s infinite linear;
  -o-animation: rotate 1.8s 0.5s infinite linear;
  animation: rotate 1.8s 0.5s infinite linear;
}
.loader-line-mask.two .loader-line {
  box-shadow: inset 0 0 0 8px #F25F5C;
}

.loader-line-mask.three {
  -webkit-animation: rotate 1s 0.5s infinite linear;
  -moz-animation: rotate 1s 0.5s infinite linear;
  -o-animation: rotate 1s 0.5s infinite linear;
  animation: rotate 1s 0.5s infinite linear;
}
.loader-line-mask.three .loader-line {
  box-shadow: inset 0 0 0 10px #ED880E;
}

.loader-line-mask.four {
  -webkit-animation: rotate 1.8s 1.4s infinite linear;
  -moz-animation: rotate 1.8s 1.4s infinite linear;
  -o-animation: rotate 1.8s 1.4s infinite linear;
  animation: rotate 1.8s 1.4s infinite linear;
}
.loader-line-mask.four .loader-line {
  box-shadow: inset 0 0 0 8px #247BA0;
}

lesshat-selector {
  -lh-property: 0;
  -lh-property: 0;
}

[not-existing] {
  zoom: 1;
  zoom: 1;
}

.badge-count {
  position: absolute !important;
  right: 1px !important;
  top: 1px !important;
  font-size: 0.5rem;
}

.info-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  border: 1px solid #003951;
  color: #003951;
  border-radius: 50%;
  width: 2.3em;
  background: white;
}

.bg-disabled {
  background-color: #e9ecef;
}

.shake-animation {
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}
.pe-none {
  pointer-events: none;
}

.word-break-all {
  word-break: break-all;
}

.color-accent {
  color: #ED880E !important;
}

.color-primary {
  color: #003951;
}

.background-primary {
  background-color: #003951;
}

#floating-logo {
  position: absolute;
  left: 100px;
  top: 50px;
  height: 89px;
  width: 84px;
}

.w-100px {
  width: 100px;
}

/*OptionalField component*/
.optional-label {
  font-size: small;
  opacity: 0.5;
}

.dropdown-notif {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}

#dropdown-notif-width {
  max-width: 30rem;
  width: max-content;
}

#mark-read a {
  color: #ED880E;
}

.dropdown-notif-header-footer {
  padding: 0px !important;
  font-size: small;
  text-align: center;
}

.notif-details-border {
  border: 1px solid #003951;
}

.font-26 {
  font-size: 26px;
}

.notif-details-button {
  font-size: 20px;
  width: 150px;
}

.vehicle-hover:hover {
  background: var(--b-bar-item-dark-hover-background, rgba(255, 255, 255, 0.3)) !important;
}

.badge-counter {
  position: absolute;
  top: 0.5em;
  right: 1.5em;
  font-size: 0.6em;
}

.add-items-wrapper {
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
}

.currency-selector {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border: 0;
  border-right: 1px solid #dee2e6 !important;
  outline: none;
  padding-left: 6px;
}

.currency-symbol {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5em;
  color: #ED880E;
  border: 0;
  border-left: 1px solid #dee2e6 !important;
}

.amount {
  border: 0;
  text-align: right;
}

.currency-addon {
  width: 4.1em;
  text-align: left;
  position: relative;
}

.input-group-border {
  border: 1.2px solid #ced4da;
  border-radius: 0.25rem;
}

.w-md-150 {
  width: 150px;
}

.column-gap-3 {
  column-gap: 1rem;
}

.column-gap-2 {
  column-gap: 0.5rem;
}

.column-gap-1 {
  column-gap: 0.25rem;
}

.workday-note-container {
  border: 1px solid #ced4da;
  overflow: auto;
  max-height: 4rem;
}

.word-break-keep {
  word-break: keep-all;
}

.width-fixed-150 {
  width: 150px;
}

.width-fixed-200 {
  width: 200px;
}

/* Main layout*/
.page {
  width: 100%;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 1rem;
}

.top-right-corner {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
}

.bottom-left-corner {
  position: absolute;
  bottom: 0.3rem;
  left: 0.3rem;
}

.table-badge {
  width: 170px;
  padding: 0.5em;
  font-size: 0.8rem;
}

.default-cursor {
  cursor: pointer;
}

.donut-chart-wt {
  position: absolute;
  right: 20px;
  bottom: -100px;
  width: 300px;
}

.flex-vertical-center {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Media queries */
@media screen and (max-width: 768px) {
    h3 {
        font-size: 1rem; /* smaller for mobile */
    }

    h4, h5 {
        font-size: 0.9rem;
    }

    .login-form input.form-control {
        font-size: 0.9rem;
        padding: 10px;
    }

    .btn {
        font-size: 0.9rem;
        padding: 10px 16px;
    }

    .login-center {
        padding: 10px;
    }

    .login-box {
        width: 100%;
        max-width: 90%; /* shrink box on mobile */
        margin: auto;
        padding: 3em 3em;
    }

    .rz-calendar .rz-inputtext {
        padding: 12px 8px;
        font-size: 0.9rem;
    }
}

@media (max-width: 1101px) {
  .blazored-modal {
    width: 700px !important;
  }
  .donut-chart-wt {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .tablet-d-none {
    display: none;
  }
}
@media (max-width: 701px) {
  .blazored-modal {
    width: 600px !important;
  }
}
@media (max-width: 601px) {
  .blazored-modal {
    width: 500px !important;
  }
}
@media (max-width: 501px) {
  .blazored-modal {
    width: 400px !important;
  }
}
@media only screen and (max-width: 480px) {
  .mobile-d-none {
    display: none;
  }
}
@media only screen and (max-width: 460px) {
  .rz-tick-text {
    font-size: 6.8px;
  }
}
@media (max-width: 401px) {
  .blazored-modal {
    width: 300px !important;
  }
}
@media (max-width: 301px) {
  .blazored-modal {
    width: 100%;
  }
}
thead {
  background-color: #003951 !important;
  color: white !important;
}

.min-width-180 {
  min-width: 180px;
}

.min-width-100 {
  min-width: 100px;
}

.small-image {
  width: 2.5em !important;
}

.wd-signature {
  width: 6.25rem;
  margin-left: 0.5rem;
}

.min-width-180 {
  min-width: 180px;
}

.min-width-150 {
  min-width: 150px;
}

.min-width-100 {
  min-width: 100px;
}

.min-width-180 {
  min-width: 180px;
}

.company-logo-thumbnail {
  border-radius: 0.5rem;
  height: 2.3rem;
  width: 2.3rem;
}

.thumbnail-md {
  height: 3rem;
  width: 3rem;
}

.thumbnail-lg {
  height: 5rem;
  width: 5rem;
}

.badge-sm {
  font-size: 0.55rem;
}

/*.bg-primary {
    color: white !important;
    background-color: $primary-color !important;
}*/
.font-sm {
  font-size: 0.8rem;
}

.margin-right-2px {
  margin-right: 2px;
}

.font-awesome {
  font-family: "FontAwesome";
}

.dropdown-menu-with-icon {
  display: inline-flex;
  gap: 1em;
}
.dropdown-menu-with-icon span:first-child {
  flex: 1;
}
.dropdown-menu-with-icon span:last-child {
  flex: 6;
}

.text-neon-green {
  color: #49FB35;
}

.text-neon-red {
  color: #F72119;
}

.text-neon-orange {
  color: #FFAD00;
}

.page-wrapper {
  max-height: 90vh;
  overflow: auto;
  padding: 2rem;
  border-radius: 5px;
}

/*Multilne display of text*/
.multiline {
  white-space: pre-wrap;
}

/* Input fields hide arrows - Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
  display: none !important;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield !important;
}

.copy-icon {
  filter: brightness(0) saturate(100%) invert(55%) sepia(12%) saturate(6120%) hue-rotate(199deg) brightness(100%) contrast(102%);
  cursor: pointer;
}

/* CompanyOwner/Admin Dashboard */
.chart-button {
  float: right;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5em;
  border: 0;
}

.arrow-right-x3 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-single-chart-info {
  position: absolute;
  left: 40%;
  bottom: 5%;
  font-size: 0.9rem;
  font-weight: bold;
}

.dashboard-double-chart-info {
  position: absolute;
  left: 30%;
  bottom: 5%;
  font-size: 0.9rem;
  font-weight: bold;
}

@media (max-width: 1919px) {
  .dashboard-double-chart-info {
    bottom: 0;
  }
  .dashboard-single-chart-info {
    bottom: 0;
  }
}
.elipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/*Refuel Stuff*/
.refuel-card-grid {
  display: grid;
  display: -moz-grid;
  grid-template-columns: 1fr 1fr;
}

.refuel-card-grid-rows-border-right {
  display: grid;
  display: -moz-grid;
  grid-template-rows: 1fr 1fr;
  border-right: 1px solid gray;
}

.refuel-card-grid-rows-border-left {
  display: grid;
  display: -moz-grid;
  grid-template-rows: 1fr 1fr;
  border-left: 1px solid gray;
}

.clear-button-x {
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.clear-button-x:hover {
  transform: scale(1.1);
  transform-origin: center;
}

.centered-validation-message {
  width: fit-content;
  margin: auto;
  text-align: center;
}

.picker-div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.picker-search {
  margin: 5px 20px;
}

.picker-x-icon:hover {
  transition: transform 0.25s ease-in;
  transform: scale(1.1);
}

.picker-main-picker-icon-class {
  border: 1px solid rgba(128, 128, 128, 0.1803921569);
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2705882353);
  background: rgba(128, 128, 128, 0.0588235294);
}

.picker-icon-class {
  display: flex;
  width: 20px;
  justify-content: center;
}

.picker-items-container {
  min-height: 200px;
  max-height: calc(100vh - 470px);
}

.picker-items-container-multiple {
  min-height: 200px;
  max-height: calc(100vh - 545px);
}

.picker-container {
  overflow: scroll;
  animation: fade-in 0.2s forwards;
  border-top: 1px solid lightgray;
  border-bottom: 1px solid lightgray;
  border-radius: 5px;
  background-color: #f5f5f5;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.2);
}

.picker-no-data-message {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.picker-select-btn {
  display: flex;
  position: relative;
  align-items: center;
  gap: 1rem;
  border: 1px solid lightgray;
  border-radius: 10px;
  cursor: pointer;
  padding: 1.5rem;
  font-size: 14px;
  background-color: white;
  transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.5s ease;
  opacity: 1;
  animation: fade-in 0.5s forwards;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.15);
}

.picker-select-btn:hover {
  background-color: rgba(0, 255, 127, 0.1);
  border-color: rgba(0, 255, 127, 0.5);
}

.picker-select-btn.selected {
  border-color: dodgerblue;
  background-color: rgba(30, 144, 255, 0.3);
}

.picker-select-btn:focus {
  outline: none;
}

.picker-photo-class {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid lightgray;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2705882353);
}

.picker-multiple-photo-class {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid lightgray;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2705882353);
}

.picker-state-icon {
  position: absolute;
  top: 5px;
  right: 8px;
  border-radius: 5px;
  font-size: 10px;
  padding: 0.3rem;
}

/* Fade-out animation */
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* Fade-in animation */
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.create-form > div {
  display: grid;
  grid-template-columns: 1.5fr 5fr;
  align-items: center;
  padding: 1em 0;
}

.create-form-div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.create-form > div label {
  text-align: center;
  margin: 0;
}

.div-children {
  width: 25%;
  margin: auto;
}

.div-children > div {
  padding: 0.5em 0;
}

/* Picker Components */
.picker-component-holder > div {
  display: flex;
  gap: 1em;
  align-items: center;
  border: 1px solid #003951; /* @Constants.ColorPrimary -> blue */
  margin: 0.5em 0;
  border-radius: 0.5em;
}

.picker-component-holder > div:hover {
  background-color: hsl(200, 50%, 20%);
}

.picker-component-holder div > button {
  width: 100%;
  padding: 0.5em 1em;
}

.picker-component-holder div > button:focus {
  box-shadow: 0 0;
}

.picker-component-holder div button > div {
  padding: 0 1em;
  text-align: left;
  color: #003951; /* @Constants.ColorPrimary -> blue */
}

.picker-component-holder div:hover button > div {
  color: #FFFFFF; /* @Constants.ColorWhite -> white */
}

.picker-component-no-results-found {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #003951; /* @Constants.ColorPrimary -> blue */
  border-radius: 0.5em;
  padding: 1em;
  margin: 0.5em 0;
  width: 100%;
  pointer-events: none;
}

.picker-component-no-results-found:hover {
  background-color: transparent !important;
}

.modal-sticky-search-bar {
  padding-bottom: 4.5em;
}

.modal-sticky-search-bar > div {
  display: flex;
  position: absolute;
  z-index: 1;
  left: 0;
  width: 98%;
  background-color: white;
  padding: 1em;
}

.work-tracking-checkbox-holder {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.text-start {
  text-align: start !important;
}

.flex {
  display: flex;
}

.long-lat-div {
  border: 1px solid lightgray;
  border-radius: 5px;
  padding: 7px;
  min-width: 190px;
  text-align: center;
}

.toggle-password-btn {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  box-shadow: none !important;
}

.language-picker {
  display: flex;
  justify-content: flex-end;
  margin: 1em;
}

.stas-primary-no-hover {
  color: #003951;
}

.stas-primary {
  color: #003951;
  border-color: #003951;
}

.stas-primary:hover {
  color: #FFFFFF;
  background-color: #003951;
}

.stas-primary-bordered {
  color: #003951;
  border: 1px solid #003951;
  border-radius: 0.25em;
}

.stas-primary-bordered:hover {
  color: #FFFFFF;
  background-color: #003951;
}

.logistics-primary-no-hover {
  color: #003951;
}

.logistics-primary {
  color: #003951;
  border-color: #003951;
}

.logistics-primary:hover {
  color: #FFFFFF;
  background-color: #003951;
}

.logistics-primary-bordered {
  color: #003951;
  border: 1px solid #003951;
  border-radius: 0.25em;
}

.logistics-primary-bordered:hover {
  color: #FFFFFF;
  background-color: #003951;
}

.hospital-primary-no-hover {
  color: #003665;
}

.hospital-primary {
  color: #003665;
  border-color: #003665;
}

.hospital-primary:hover {
  color: #FFFFFF;
  background-color: #003665;
}

.hospital-primary-bordered {
  color: #003665;
  border: 1px solid #003665;
  border-radius: 0.25em;
}

.hospital-primary-bordered:hover {
  color: #FFFFFF;
  background-color: #003665;
}
