.tundran-delivery-container {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  margin-right: 10px;
}

.tundran-delivery-container .tundran-delivery-popup-button {
  background: transparent;
  color: black;
  display: flex;
  border: none;
  padding: 0;
  gap: 1rem;
  cursor: pointer;
  outline: none;
}

.tundran-delivery-container .tundran-delivery-popup-button p {
  margin: 0;
  text-align: left;
  font-weight: normal;
  line-height: 1;
}

.tundran-delivery-container .tundran-delivery-popup-button .markup-container {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: .4rem;
}

.tundran-delivery-container .tundran-delivery-popup-button .markup-container>div {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.tundran-delivery-container .tundran-delivery-popup-button .markup-container>div i {
  display: flex;
}

.tundran-delivery-container .tundran-delivery-popup-button .markup-container-mobile {
  display: none;
  width: 30px;
}

.tundran-delivery-container .tundran-delivery-popup-button .markup-container-mobile svg {
  width: 30px;
  height: 30px;
  margin-right: -5px;
  margin-bottom: -3px;
}

.tundran-not-available {
  margin: 2rem 0;
}


/* Popup Overlay */
.tundran-popup-overlay {
  display: none;
  position: fixed;
  top: 128px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: center;
}

@media (max-width: 1024px) {
  .tundran-popup-overlay {
    top: 69px;
  }
}

/* Popup Content */
.tundran-popup-overlay .tundran-popup-content {
  background: white;
  width: 90%;
  max-width: 500px;
  margin-top: 5.5rem;
  height: fit-content;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  text-align: center;
}


/* Close Button */
.tundran-popup-overlay .popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
  line-height: 1;
  color: inherit;
}

.tundran-popup-overlay .popup-close:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.tundran-popup-overlay .tundran-popup-content h2 {
  text-align: left;
}

/* Popup Fields */
.tundran-popup-overlay .popup-field {
  margin: 15px 0;
  text-align: left;
}

/* Labels */
.tundran-popup-overlay .popup-field label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

/* Inputs & Select Fields */
.tundran-popup-overlay .popup-field input,
.tundran-popup-overlay .popup-field select {
  width: 100%;
  padding: 10px !important;
  font-size: 16px;
  border: 1px solid #ddd !important;
  border-radius: 5px;
  cursor: pointer;
  line-height: 1;
}

.tundran-popup-overlay .action-container {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.tundran-popup-overlay .action-container #save-delivery-choice,
.tundran-popup-overlay .action-container #clear-delivery-session {
  cursor: pointer;
  width: 100%;
  padding: 10px;
}

.tundran-popup-overlay .action-container #clear-delivery-session {
  background-color: #EEEEEE;
  color: black;
}

.noscroll {
  overflow: hidden;
}

/* Loader Overlay */
.loader-overlay {
  display: none;
  /* Hidden by default */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  align-items: center;
  justify-content: center;
  z-index: 1000;
  border-radius: 5px;
}

/* Spinning Loader */
.loader {
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top: 4px solid #93abae;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .tundran-popup-content {
    width: 95%;
  }

  .tundran-delivery-container .tundran-delivery-popup-button .markup-container {
    display: none;
  }

  .tundran-delivery-container .tundran-delivery-popup-button .markup-container-mobile {
    display: block;
  }
}