@import url(./bootstrap.css);
@font-face {
  font-family: Inter;
  src: url(../fonts/Inter.otf);
}

* {
  font-family: Inter, Arial, Helvetica, sans-serif, monospace;
}

/* Bootstrap overrides */
.form-control {
  height: 44px;
}
/* Bootstrap overrides */

body {
  background-color: #f9f9f9 !important;
}
.app-bg-dark {
  background-color: #252525;
}
.app-text-dark {
  color: #282828;
}
.app-bg-primary {
  background-color: #fce100;
}
.app-text-primary {
  color: #fce100;
}
.app-nav-active {
  position: absolute;
  width: 64px;
  height: 3px;
  background-color: #fce100;
  display: block;
  bottom: 0;
}
.cursor-pointer {
  cursor: pointer;
  user-select: none;
}
.avatar {
  vertical-align: middle;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.nav-drop-toggle {
  display: flex;
  align-items: center;
  user-select: none;
  cursor: pointer;
}

.nav-drop-menu {
  width: 250px;
  position: absolute;
  z-index: 2;
  background-color: #fff;
  border-radius: 16px;
  border: 1px solid rgb(000 000 000 / 5%);
  padding: 12px 0px;
  -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.05);
  display: none;
  top: 120px;
}
.nav-drop-menu.show-drop {
  display: block !important;
}
.nav-drop-heading {
  padding: 8px 16px;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
}
.nav-drop-item {
  color: #1d1d1d !important;
  font-size: 14px;
  padding: 6px;
  margin: 4px 0px;
  position: relative;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  display: block;
}
.nav-drop-item .nav-drop-menu {
  width: 250px;
  position: absolute;
  z-index: 3;
  background-color: #fff;
  border-radius: 16px;
  border: 1px solid rgb(000 000 000 / 5%);
  padding: 12px 0px;
  -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.05);
  top: 50px;
  display: none;
}
.nav-drop-hover {
  padding: 4px 10px;
  display: flex;
  align-items: center;
  transition: 300ms;
}
.nav-drop-item:hover > .nav-drop-hover {
  background-color: #f3f3f3;
}
.nav-drop-hover img {
  margin-right: 6px;
}
.nav-drop-hover span {
  color: #1d1d1d;
  font-size: 14px;
  font-weight: normal;
}
.hide-extra-text {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: pre-line;
  overflow: hidden;
  -webkit-line-clamp: 1;
  word-break: break-all;
}
.pac-container {
  z-index: 1060 !important;
}
.select-service-card {
  height: 130px;
  width: 130px;
  border-radius: 10px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(232, 232, 232, 1);
  -moz-box-shadow: 0px 0px 8px 0px rgba(232, 232, 232, 1);
  box-shadow: 0px 0px 8px 0px rgba(232, 232, 232, 1);
  text-align: center;
  padding: 12px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 300ms;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.select-service-card.selected {
  border: 1px solid var(--bs-primary);
}

.select-service-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: 300ms;
  margin-bottom: 6px;
}
.select-service-card.selected span {
  color: var(--bs-primary);
}

/* .select-service-card.selected img {
  filter: invert(75%) sepia(97%) saturate(964%) hue-rotate(3deg)
    brightness(102%) contrast(103%);
} */
.select-category-chip-container::-webkit-scrollbar {
  display: none;
}
.select-category-chip-container {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.select-category-chip {
  padding: 6px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  border-color: #e8e8eb;
  width: auto;
  font-size: 16px;
  color: #060615;
  cursor: pointer;
  transition: 300ms;
}
.select-category-chip.selected {
  /* color: #fff; */
  border-color: #fce100 !important;
  background-color: #fce100;
}
.service-laundry-item-card {
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  padding: 25px 15px;
  width: 100%;
}
.service-laundry-item-card > .inner {
  display: none;
  align-items: center;
  justify-content: space-between;
}
.service-laundry-item-card > .inner-mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-laundry-item-details {
  display: flex;
  align-items: center;
}
.inner-mobile .service-laundry-item-details {
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.service-laundry-item-details img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  margin-right: 10px;
}
/* .service-laundry-item-details > .inner {
    height: 50px;
  } */
.service-laundry-item-details > .inner .name {
  font-size: 16px;
  /* margin-bottom: /7px; */
  display: block;
}
.service-laundry-item-details > .inner .price {
  font-size: 20px;
  font-weight: bold;
  display: block;
}
.service-laundry-item-details > .inner del.price {
  font-size: 16px;
  font-weight: bold;
  display: block;
}
.service-btn {
  cursor: pointer;
  padding: 8px 21px;
  text-decoration: none !important;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
}
.service-btn.next {
  background-color: #fce100;
  border-color: #fce100;
  color: #282828;
}
.service-btn.danger {
  background-color: #ff2020;
  border-color: #ff394d;
  color: #fff;
}
.service-btn.cart {
  background-color: transparent;
  border-color: #89969f;
  color: #89969f;
}
.counter {
}
.counter-btn {
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  background-color: transparent;
  transition: 300ms;
  color: var(--bs-body-color);
}

.counter-btn.add {
  width: 26px;
  height: 26px;
  background-color: #fce100;
}
.login-btn {
  padding: 12px;
  border-radius: 4px;
  background-color: #282828;
  color: #fce100;
  width: 100%;
  border: 1px solid #e6e8e7;
  outline: none;
}

.otp-input-container {
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding: 18px 0px;
}
.otp-input {
  height: 40px;
  width: 40px;
  border: 2px #ddd solid;
  border-radius: 8px;
  background-color: #f9f9f9;
  text-align: center;
  color: #282828;
  font-size: large;
  font-weight: 700;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(221, 221, 221, 1);
  -moz-box-shadow: 0px 0px 5px 0px rgba(221, 221, 221, 1);
  box-shadow: 0px 0px 5px 0px rgba(221, 221, 221, 1);
}

.otp-input::-webkit-outer-spin-button,
.otp-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.otp-input[type="number"] {
  -moz-appearance: textfield;
}

ul.app-timeline {
  list-style-type: none;
  position: relative;
}
ul.app-timeline:before {
  content: " ";
  background: #d4d9df;
  display: inline-block;
  position: absolute;
  left: 29px;
  width: 2px;
  height: 100%;
  z-index: 400;
}
ul.app-timeline > li {
  margin: 20px 0;
  padding-left: 20px;
}
ul.app-timeline > li:before {
  content: " ";
  background: white;
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  border: 3px solid #22c0e8;
  left: 20px;
  width: 20px;
  height: 20px;
  z-index: 400;
}
/* d-flex justify-content-between align-items-center flex-wrap */
.place-order-container {
  display: flex;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
.order-type-container {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  column-gap: 7.5px;
  overflow: auto;
  padding-bottom: 10px;
}
.order-type-container::-webkit-scrollbar {
  background: var(--bs-primary);
}
.order-type-container::-webkit-scrollbar-thumb {
  background-color: var(--bs-white);
}
.order-type-card {
  background-color: #fff;
  display: flex;
  min-width: 250px;
  /* height: 250px; */
  /* max-width: 320px; */
  width: 70vw;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(255, 199, 0, 0.8);
  /* height: 247px; */
  border-radius: 8px;
  padding: 17px;
}
.order-type-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.order-type-card-inner span {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
  -webkit-line-clamp: 2;
  text-align: center;
}
.place-order-hero-img {
  height: 100%;
  width: auto;
}
.download-app-text-container {
  padding: 0px 30px;
}
.footer-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.app-nav-container {
  padding: 20px 15px;
}
/* col-12 d-flex flex-wrap align-items-center justify-content-between px-4 border border-gray rounded position-relative mt-4 */
.app-dates-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.app-dates-delivery-label {
  top: 85px;
  left: 22px;
}
.app-dates-delivery-label.alt {
  top: 62px;
}
.sign-up-form input {
  height: 44px !important;
}

@media only screen and (min-width: 576px) {
  .some-random-buttons .next {
    order: 3 !important;
  }
  .some-random-buttons .danger {
    order: 1 !important;
  }
  .service-laundry-item-card {
    padding: 25px !important;
  }
  .service-laundry-item-details img {
    width: 44px;
    height: 44px;
    margin-right: 17px;
  }
  .service-laundry-item-card > .inner {
    display: flex;
    /* height: 85px; */
  }
  .service-laundry-item-card > .inner-mobile {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .download-app-text-container {
    padding: 0px 145px 0px 55px;
  }
  .footer-logo-container {
    padding-left: 53px;
    justify-content: start;
  }
  .footer-text-container {
    padding-right: 53px;
  }
  .upper-nav-text-start {
    padding-left: 33px;
  }
  .upper-nav-text-end {
    padding-right: 33px;
  }
  .app-nav-container {
    padding: 20px 33px;
  }
  .service-laundry-item-card {
    width: 48%;
  }
  .nav-drop {
    font-size: 14px !important;
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
  .nav-drop-menu {
    top: 77px;
  }
  .nav-drop-item .nav-drop-menu {
    top: 0;
    left: -262px;
  }
  .app-dates-delivery-label,
  .app-dates-delivery-label.alt {
    top: -12px;
    left: auto;
  }
}

@media only screen and (min-width: 1200px) {
  .place-order-container {
    padding: 16px;
  }
}
@media only screen and (min-width: 1400px) {
  .place-order-container {
    padding: 56px;
  }
}

.gm-svpc {
  display: none !important;
}
.config-loading {
  position: absolute;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999999999999999999999999999999999999999999999999999;
  background-color: #fff;
}
.p-rating-item {
  color: #fce100;
  margin: 0px 8px;
}
.p-icon.p-rating-icon {
  height: 36px;
  width: 36px;
}

.history-order-card-delivery-type-badge {
  border-radius: 4px;
  padding: 2px 10px;
  text-transform: uppercase;
  background-color: #c5e5c9;
  color: #7cba78;
}
.history-order-card-delivery-type-badge.blue {
  background-color: #5f9cff;
  color: #fff;
}
.ReactCollapse--collapse {
  transition: height 500ms;
}
.selected-payment-method {
  filter: invert(75%) sepia(97%) saturate(964%) hue-rotate(3deg)
    brightness(102%) contrast(103%);
}

.some-random-buttons .next {
  order: 1;
}
.some-random-buttons .cart {
  order: 2;
}
.some-random-buttons .danger {
  order: 3;
}
.site-footer__social {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
}
.site-footer__social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--bs-dark);
  font-size: 15px;
  background-color: var(--bs-primary);
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
  text-decoration: none;
}

.fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 24px;
  z-index: 1000;
}
.roles-count {
  border: 1px solid #b4b4b4;
  /* width: 25px; */
  /* height: 25px; */
  display: inline-block;
  /* justify-content: center;
  align-items: center; */
  color: #858d9d;
  font-weight: 400;
  border-radius: 4px;
  margin-left: 8px;
  font-size: 14px;
  padding: 4px;
}

.action-td span {
  font-size: 18px;
  margin: 0px 2px;
  color: #222;
  cursor: pointer;
}
.table .thead-light th {
  color: #677788;
  background-color: #f7f7f7;
  border-color: rgba(231, 234, 243, 0.7);
}
.table thead th {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
}
.table td,
.table th {
  padding: 0.75rem;
}
table {
  color: #677788;
}
.cvalw {
  overflow-x: auto;
}
.cvalw::-webkit-scrollbar {
  display: none;
}
.cvalw {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.cwb {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 10px !important;
}
::-webkit-scrollbar {
  background: var(--bs-light);
  width: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 8px;
  width: 8px !important;
  height: 8px !important;
}

::-webkit-scrollbar-thumb {
  height: 56px;
  border-radius: 8px;
  background-clip: content-box;
  background-color: var(--bs-primary);
}
