input[type="radio"] {
  margin: 0;
  margin-right: 5px;
}

.location-container {
  padding: 2px;
}

.drawer-location-container {
  padding: 2px;
  border-bottom: 1px solid #d9d9d9;
}

.location-AvailableHeading {
  margin: 0 0 0 0;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}

.multi_app_grid {
  gap: 5px;
}

.location-card-multiapp {
  border: 1px solid #E1E3E5;
  border-radius: 8px;
  padding: 4px;
  background-color: #fff;
}

.location-card-listview {
  padding: 4px;
}

.location-card-listview p {
  margin: 0 0 0 22px;
}

.location-card-listview-notfullfilment p {
  margin: 0 0 0 0;
}

.location-card-multiapp-notfullfilment p {
  margin: 0 0 0 0;
}

.location-card-multiapp-notfullfilment {
  border: 1px solid #E1E3E5;
  border-radius: 8px;
  padding: 4px;
}

.location-card-multiapp p {
  margin: 0 0 0 22px;
}

.location-card-multiapp label {
  margin: 0;
  cursor: pointer;
}

.not-fullfilment {
  margin: 0 0 0 0;
  cursor: unset;
}

.fullfilment-true {
  cursor: pointer;
}

.list-view {
  display: flex;
  flex-direction: column;
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.three-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.grid-view {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}

.grid-view-card {
  height: 100px;
  width: 100px;
  font-size: 13px;
}

.two-columns-label {
  display: inline-grid;
}

.three-columns-label {
  display: inline-grid;
}

.location-radio-and-label {
  display: flex;
  justify-content: space-between;
}

.multiloca-out-div {
  display: flex;
  align-items: center;
}

.location-radio-button {
  margin: 0 5px 0 5px;
}

.direction-link {
  margin: 0 0 0 22px;
}

.down-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  box-shadow: 0rem -0.0625rem 0rem 0rem #b5b5b5 inset, 0rem 0rem 0rem 0.0625rem rgba(0, 0, 0, 0.1) inset, 0rem 0.03125rem 0rem 0.09375rem #FFF inset;
  border-radius: 0.8rem;
  width: 22px;
  height: 22px;
  font-size: 16px;
  display: flex;
  justify-content: center;
}

.custom_drawer {
  display: none;
}

.custom_drawer__header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
}

.custom_drawer__close {
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='15px' height='16px' viewBox='0 0 15 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='2.-Menu' transform='translate(-15.000000, -13.000000)' stroke='%23000000'%3E%3Cg id='Group' transform='translate(15.000000, 13.521000)'%3E%3Cpath d='M0,0.479000129 L15,14.2971819' id='Path-3'%3E%3C/path%3E%3Cpath d='M0,14.7761821 L15,-1.24344979e-14' id='Path-3'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  width: 15px;
  height: 15px;
}

.custom_drawer__wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  max-width: 400px;
  z-index: 200;
  overflow: auto;
  transition: transform 0.3s;
  will-change: transform;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  -webkit-transform: translateX(103%);
  transform: translateX(103%);
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 2px 6px #777;
}

.custom_drawer__content {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
  flex-grow: 1;
  padding: 1.5rem;
}

.custom_drawer__content::-webkit-scrollbar {
  width: 12px;
}

.custom_drawer__content::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 8px;
}

.custom_drawer__content::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 8px;
  border: 2px solid #f1f1f1;
}

.custom_drawer__content::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.custom_drawer.is-active {
  display: block;
}

.custom_drawer.is-visible .custom_drawer__wrapper {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.custom_drawer.is-visible .custom_drawer__overlay {
  opacity: 0.5;
}

.custom_drawer__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  opacity: 0;
  transition: opacity 0.3s;
  will-change: opacity;
  background-color: #000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.drawer-trigger-button {
  margin-bottom: 1rem;
}

.location-footer-note {
  padding: 1.5rem;
  margin: 0 0 0 5px;
}

.location-notes {
  margin: 0 0 0 22px;
}

.location-notes-notfullfilment {
  margin: 0 0 0 0;
}

.geolocation-search-input {
  width: 100%;
  padding: 8px 35px;
  font-size: 12px;
}

.geolocation-search-input:focus-visible{
  border: none;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  left: 0;
  right: 0;
  width: 90%;
  top: 34px;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}

.autocomplete-items div:hover {
  background-color: #e9e9e9;
}

.autocomplete-active {
  background-color: DodgerBlue !important;
  color: #ffffff;
}

.geolocation-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 35px;
}

.search-icon {
  position: absolute;
  left: 10px;
  pointer-events: none;
  top: 7px;
}

.search-icon svg {
  fill: #888;
}

.use-my-location {
  position: absolute;
  pointer-events: none;
  top: 5px;
  right: 0px;
}

.use-my-location svg {
  margin-right: 2px;
  fill: #000000;
}

.google-rating {
  margin: 0 0 0 22px;
}

.star {
  color: #f0f0f0;
}

.star.filled {
  color: gold;
}

.google-timings {
  margin: 0 0 0 22px;
}

.toggle-down-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 22px;
  height: 22px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  color: #000 !important;
}

.location-dropdown {
  padding: 8px 8px;
  font-size: 12px;
  margin: 5px 5px;
}

.location-dropdown-geolocation {
  padding: 8px 35px;
  font-size: 12px;
  margin: 5px 5px;
}

.search-icon-header {
  position: absolute;
  margin: 12px 12px;
}

.custom_popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0000004d;
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.custom_popup-content {
  background: #fff;
  padding: 20px;
  max-width: 405px;
  border-radius: 10px;
  position: relative;
  overflow-y: auto;
  height: auto;
  max-height: 335px;
}

.custom_popup__close {
  font-size: 18px;
  cursor: pointer;
}

.custom_popup-overlay.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom_popup__header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 5px;
}

.custom_popup__wrapper {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 8px 8px rgb(0 0 0 / 37%);
  max-height: 80%;
}

#multiloca-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .4);
  z-index: 9999;
}

#multiloca-locationPopup {
  display: none;
  position: fixed;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -60%);
  background-color: white;
  border-radius: 1rem;
  z-index: 10000;
  overflow-y: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 30%;
}

@media (max-width: 768px) {
  #multiloca-locationPopup {
    width: 90%;
  }
}

.multiloca-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d9d9d9;
  font-weight: bold;
  padding: .5em 0 1em 1em;
}

.multiloca-popup-content {
  padding: .5em 0 1em 1em;
  padding-right: 1em;
}

#multiloca-closePopup {
  padding: 5px 10px;
  line-height: 0;
  cursor: pointer;
  margin-left: auto;
}

.multiloca-popup-location-item {
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.multiloca-popup-location-item:hover {
  border-color: rgb(var(--color-foreground));
  background-color: rgba(var(--color-foreground), 0.05);
}

.multiloca-popup-location-item.selected {
  border-color: rgb(var(--color-foreground));
  background-color: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
}

.multiloca-popup-location-dropdown-popup {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
  font-size: 12px;
}

.multiloca-popup-location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}

.multiloca-popup-location-grid .multiloca-popup-location-item {
  padding: 8px 12px;
  white-space: nowrap;
  display: inline-block;
  border: 1px solid #e0e0e0;
}

.multiloca-popup-location-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
  max-height: 400px;
  overflow-y: auto;
}

.vertical-list-popup {
  top: 50% !important;
}

.multiloca-popup-location-list .multiloca-popup-location-item {
  border: 1px solid #e0e0e0;
  padding: 8px;
  display: flex;
  flex-direction: column;
}

.multiloca-popup-location-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
  max-width: 100%;
}

.multiloca-popup-location-inline .multiloca-popup-location-item {
  padding: 8px 12px;
  white-space: nowrap;
  display: inline-block;
}

.multiloca-popup-location-name {
  font-weight: bold;
  margin-bottom: 5px;
}

.multiloca-popup-location-details {
  font-size: 0.9em;
  color: #666;
}

.multiloca-popup-location-item.selected .multiloca-popup-location-details {
  color: rgb(var(--color-background));
  opacity: 0.9;
}

@media (max-width: 600px) {
  .multiloca-popup-location-grid .multiloca-popup-location-item {
    width: calc(50% - 10px);
  }
}

@keyframes slideup-location-popup {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -60%);
  }
}

.multiloca_variant-name {
  padding: 1.5rem;
  padding-top: 0;
  margin: 0 0 0 5px;
  width: 70%;
}

.multiloca_variant-name-popup {
  padding: 1.5rem;
  border-bottom: 1px solid #ddd;
  width: 400px;
  padding-top: 0;
  margin: 0 0 0 5px;
}

.multiloca-change-location {
  margin: 0 0 0 22px;
  width: 30%;
  padding: 1.5rem 1.5rem 1.5rem 0;
  border-bottom: 1px solid #ddd;
  font-weight: normal;
  font-size: initial;
  color: rgba(var(--color-foreground));
}

.multiloca-change-location-outside {
  background-color: transparent;
  text-align: left;
  text-decoration: underline;
  font-weight: normal;
  font-size: initial;
  color: rgba(var(--color-foreground));
}

.multiloca-inventory-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.multiloca-inventory-popup-title{
  font-size: 14px !important;
  font-weight: bold;
  margin: 0px;
}
.multiloca-inventory-popup-content {
  background-color: #fff;
  padding: 5px;
  border-radius: 8px;
  max-height: 80%;
  overflow-y: auto;
  position: relative;
}

.multiloca-close-popup-button {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 4px;
}

#inventoryDrawerOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
}

@keyframes slideup-location-drawer {
  0% {
    opacity: 0;
    transform: translate(50%, 0%);
  }

  100% {
    opacity: 1;
    transform: translate(0%, 0%);
  }
}

@keyframes slidedown-location-drawer {
  0% {
    opacity: 1;
    transform: translate(0%, 0%);
  }

  100% {
    opacity: 0;
    transform: translate(50%, 0%);
  }
}

#inventoryDrawerContent {
  background-color: #fff;
  width: 400px;
  max-width: 90%;
  height: 100%;
  overflow-y: auto;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  position: relative;
}
#inventoryDrawerTitle{
  margin: 0px;
}

#closeDrawerButton {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 4px;
}

#drawerLocationsContainer {
  padding: 20px;
}

#drawerLocationsContainer .location-container {
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

#drawerLocationsContainer .location-container:last-child {
  border-bottom: none;
}

#drawerLocationsContainer .location-radio-button {
  margin-right: 10px;
}

#drawerLocationsContainer .location-address,
#drawerLocationsContainer .location-phone {
  font-size: 14px;
  color: #555;
}

#drawerLocationsContainer .direction-link {
  color: #007bff;
  text-decoration: none;
  font-size: 14px;
}

#drawerLocationsContainer .direction-link:hover {
  text-decoration: underline;
}

.location-popup-header {
  padding: 8px 8px;
  font-size: 12px;
  margin: 5px 5px;
  width: fit-content;
  border: 1px solid #6a6a6a;
  cursor: pointer;
}

.location-card-drawer-list-view {
  align-items: center;
  border: 0;
  outline: 0;
  background: none;
  padding-inline-start: 1.5rem;
  padding-inline-end: 1.5rem;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  -webkit-user-select: text;
  user-select: text;
  padding-block-start: 0.75rem;
  padding-block-end: 0.75rem;
  border-radius: 4px;
  background-color: #fff;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.location-card-drawer-list-view-name {
  font-weight: bold;
}

.location-card-drawer-list-view-selected {
  align-items: center;
  border: 0;
  outline: 0;
  background: none;
  padding-inline-start: 1.5rem;
  padding-inline-end: 1.5rem;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  -webkit-user-select: text;
  user-select: text;
  padding-block-start: 0.75rem;
  padding-block-end: 0.75rem;
  border-radius: 4px;
  background-color: #fff;
  margin-bottom: 1rem;
  border: 1px solid #b5b5b5;
  margin-top: 1rem;
}

.incoming-stock-label {
  margin: 0 0 0 22px;
}

.incoming-stock-label-notfullfilment {
  margin: 0 0 0 5px;
}

.multiloca-variant-list {
  padding: 1rem;
  margin: 0 10px 0 10px;
  border-radius: 6px;
  font-size: unset;
  background: none;
  width: fit-content;
}

.variant-container {
  display: flex;
  justify-content: space-between;
  align-items: end;
  width: 100%;
  border-bottom: 1px solid #ddd;
  font-size: 12px;
}

.multiloca-online-location-card {
  border-radius: 5px;
}

.multiloca-online-location-label {
  font-weight: bold;
  margin: 0;
}

.multiloca-online-location-info {
  padding: 10px;
  margin: 0;
}

.multiloca-physical-location-label {
  font-weight: bold;
  margin: 0;
}

.multiloca-toast-popup {
  position: fixed;
  max-width: 50%;
  padding: 10px 20px;
  border-radius: 5px;
  z-index: 9999;
  font-family: sans-serif;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

#multiloca-toast-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.multiloca-toast-header {
  border-bottom: 1px solid #e0e0e0;
  padding: 5px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.multiloca-toast-title {
  font-weight: bold;
  font-size: 16px;
  color: #333;
}

.multiloca-close-toast-button {
  cursor: pointer;
  font-size: 18px;
  color: #666;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
  transition: color 0.2s ease;
}

.toastList{
  padding-left: 15px;
  font-size: 1.2rem;
}

.multiloca-close-toast-button:hover {
  color: #333;
}

.multiloca-toast-body {
  padding: 5px 8px;
  color: #555;
  line-height: 1.5;
}

.toast-btn {
  padding: 5px 8px;
  border-radius: 7px;
  border: 1px solid #000;
  background-color: transparent;
  cursor: pointer;
}

.multiloca-container-bottom-margin {
  margin-bottom: 5px;
}