/**
 * DU Timeslots Public Styles
 */

/* Trigger Button */
.du-timeslots-trigger {
  padding: 12px 24px;
  background: rgb(249, 50, 0);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.du-timeslots-trigger:hover {
  background: #135e96;
  transform: translateY(-2px);
}

/* Modal */
.du-timeslots-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  z-index: 999999;
  overflow-y: auto;
}

.du-timeslots-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
}

.du-timeslots-modal-content {
  overflow: initial  !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #f3f3f3;
  border-radius: 40px;
  /* padding: 42px 48px; */
  max-width: 1078px;
  width: 90%;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  /* -ms-overflow-style: none;  
    scrollbar-width: none;  */
}
/* .du-timeslots-modal-content:-webkit-scrollbar{ 
    display: none; 
}
.du-timeslots-modal-content-nested:-webkit-scrollbar { 
    display: none;  
} */
.du-timeslots-modal-content-nested{
  overflow: hidden;
      max-height: 87vh;
}

.du-timeslots-modal-close {
  position: absolute;
  top: -15px;
  right: -25px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #999;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
}

.du-timeslots-modal-close:hover {
  color: #333;
}

body.du-timeslots-modal-open {
  overflow: hidden;
}

/* Steps */
.du-timeslots-step {
  display: none;
}

.du-timeslots-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.du-timeslots-step h2 {
  margin: 0 0 15px 0;
  color: #333;
  font-size: 24px;
}

.du-timeslots-step > p {
  color: #010913;
  margin-bottom: 25px;
}

/* Service Selection */
.du-timeslots-service-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.du-timeslots-service-btn {
  padding: 30px 20px;
  background: #f9f9f9;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid rgb(249, 50, 0);
  border-radius: 40px;
}

.du-timeslots-service-btn:hover {
  background: #fff;
  border-color: rgb(249, 50, 0);
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.du-timeslots-service-btn .dashicons {
  font-size: 48px;
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
  color: rgb(249, 50, 0);
}

.du-timeslots-service-btn .service-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #010913;
  margin-bottom: 8px;
}

.du-timeslots-service-btn .service-desc {
  display: block;
  font-size: 14px;
  color: #010913;
}

/* Zipcode Form */
.du-timeslots-zipcode-form {
  margin: auto;
  margin: 20px 0 25px 0;
  align-items: center;
}

#du-timeslots-zipcode {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-size: 16px;
}

#du-timeslots-zipcode:focus {
  outline: none;
  border-color: rgb(249, 50, 0);
}

.du-timeslots-zipcode-message p {
  padding: 12px 16px;
  border-radius: 4px;
  margin: 15px 0;
  text-align: center;
}

.du-timeslots-zipcode-message p.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.du-timeslots-zipcode-message p.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Back Button */
.du-timeslots-back-btn {
  background: transparent;
  border: none;
  color: rgb(249, 50, 0);
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 20px;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.du-timeslots-back-btn:hover {
  background: #f0f0f0;
  border-radius: 4px;
}

/* Calendar Wrapper */
.du-timeslots-calendar-wrapper {
  position: relative;
  overflow: auto;
  background: #fff;
    border-radius: 40px;
}

.du-timeslots-loading {
  position: relative;

  text-align: center;
}

.du-timeslots-loading .spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid rgb(249, 50, 0);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.du-timeslots-loading p {
  margin-top: 15px;
  color: #010913;
}

/* Remove background when loading is active */
.du-timeslots-isloading-active-grid {
  background: none !important;
}

/* Calendar Grid */
#du-timeslots-calendar-grid {
  /* background: #fff;
  border-radius: 40px; */
  padding-top: 30px;
  padding-bottom: 30px;
  padding: 5px 0 0 0px;
  overflow: auto;
}

.du-timeslots-calendar-table {
  display: grid;
  overflow: auto;
  padding: 0 53px;
  max-height: 480px;
  height: 100%;

}


.du-timeslots-calendar-table::-webkit-scrollbar-thumb {
  background-color: #f93200;
}

.du-timeslot-cell .slot-icon {
  width: 24px;
  height: 24px;
}

.du-timeslot-cell .slot-label {
  font-size: 12px;
  color: #48d0ff;
  font-weight: 600;
}

.du-timeslots-table-header {
  display: grid;
  grid-template-columns: 105px repeat(7, 1fr);
  color: #010913;
  font-weight: 600;
  font-size: 16px;
}

.du-timeslots-day-header {
  padding: 12px 8px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.du-timeslots-day-header:last-child {
  border-right: none;
}

.du-timeslots-day-header .day-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.du-timeslots-day-header .day-date {
  font-size: 16px;
  color: #f93200;
}

.du-timeslots-table-row {
  display: grid;
  grid-template-columns: 105px repeat(7, 1fr);
  grid-column-gap: 12px;
  margin-bottom: 10px;
}

.du-timeslots-time-cell {
  font-weight: bold;
  font-size: 16px;
  color: #f93200;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.du-timeslot-cell {
  padding: 3px;
  border-radius: 14px;
  border: 1px solid #00bdff;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
}

.du-timeslot-cell.available:hover {
  background: #d0eef8;
}

/* 


.du-timeslot-cell.limited {
  background: #fff3cd;
}

.du-timeslot-cell.limited:hover {
  background: #ffe8a1;
} */

.du-timeslot-cell.unavailable {
  background: #f0f0f0;
  opacity: 0.5;
  cursor: not-allowed;
}

.du-timeslot-cell.selected {
  background: #9be5ff !important;
  color: #fff;
  transform: scale(1.05);
  z-index: 10;
}

.du-timeslot-cell.selected .slot-icon,
.du-timeslot-cell.selected .slot-label {
  color: #fff;
}

.du-timeslot-cell .slot-icon {
  font-size: 20px;
  font-weight: bold;
  color: rgb(249, 50, 0);
}

.du-timeslot-cell.unavailable .slot-icon {
  color: #999;
}

.du-timeslot-cell .slot-label {
  font-size: 12px;
  color: #48d0ff;
  font-weight: 600;
}

.du-timeslots-no-slots {
  padding: 40px;
  text-align: center;
  color: #999;
  font-size: 16px;
  grid-column: 1 / -1;
}

/* Remove old calendar styles that are no longer needed */
.du-timeslots-calendar {
  display: none;
}

.du-timeslot-day {
  display: none;
}

.du-timeslot-day-header {
  display: none;
}

.du-timeslot-slots {
  display: none;
}

.no-slots {
  display: none;
}

.slot-time {
  display: none;
}

.slot-status {
  display: none;
}

/* Selected Info */
.du-timeslots-selected-info {
  margin-top: 25px;
  padding: 10px 20px;
  background: #f7f9f8;
  border: 1px solid rgb(249, 50, 0);
  border-radius: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.du-timeslots-selected-details {
  color: #010913;
}

/* Success Screen */
.du-timeslots-success-icon {
  width: 80px;
  height: auto;
  margin: auto;
  margin-bottom: 8px;
}

.du-timeslots-step-success {
  text-align: center;
}

#du-timeslots-success-details {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 40px;
  margin: 20px 0;
  text-align: left;
}

#du-timeslots-success-details p {
  margin: 10px 0;
  color: #010913;
}

.du-timeslots-timer-warning {
    background: #D0EEF8;
    border: 1px solid #D0EEF8;
  padding: 15px;
  border-radius: 25px;
  margin: 20px 0;
  color: #F93200;
}

#du-timeslots-countdown {
  font-weight: bold;
  color: #F93200;
  font-size: 18px;
}

/* Error Messages */
.du-timeslots-error-message {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  padding: 15px;
  border-radius: 6px;
  margin-top: 20px;
}

/* Loading State */
button.loading {
  position: relative;
  color: transparent;
}

button.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

/* Reservation Display */
.du-timeslots-selected-slot {
  border: 2px solid #0073aa;
  border-radius: 40px;
  padding: 20px;
  margin: 15px 0;
  background: #f9f9f9;
}

.du-timeslots-selected-slot .slot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.du-timeslots-selected-slot .slot-title {
  margin: 0;
  color: #0073aa;
  display: flex;
  align-items: center;
}

.du-timeslots-selected-slot .slot-title .dashicons {
  margin-right: 8px;
  font-size: 20px;
}

.du-timeslots-selected-slot .slot-details {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  background: white;
  border-radius: 4px;
}

.du-timeslots-selected-slot .slot-details strong {
  color: #010913;
}

.du-timeslots-selected-slot .slot-details .service-name {
  font-weight: 500;
}

.du-timeslots-selected-slot .slot-details .date-display {
  font-weight: 500;
}

.du-timeslots-selected-slot .slot-details .time-display {
  font-weight: 500;
  color: #0073aa;
  font-size: 16px;
}

.du-timeslots-selected-slot .expiry-notice {
  margin-top: 12px;
  padding: 10px;
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 4px;
  font-size: 14px;
}

.du-timeslots-selected-slot .expiry-notice .dashicons {
  color: #856404;
  margin-right: 5px;
}

.du-timeslots-selected-slot .expiry-notice .countdown-text {
  color: #856404;
}

#reservation-countdown {
  font-weight: bold;
  color: #d63638;
}

/* Responsive adjustments for reservation display */
@media (max-width: 768px) {
  .du-timeslots-selected-slot .slot-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .du-timeslots-calendar-table{
    max-height: 320px;
  }
  .du-timeline-modal-content-wrapper{
    overflow: hidden !important;
  }

  .du-timeslots-selected-slot .slot-details {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .du-timeslots-selected-slot .slot-details strong {
    font-size: 14px;
  }

  #du-timeslots-change-modal .modal-container {
    margin: 20px;
    max-width: none;
  }
}

/* Modal visibility control based on reservation state */
.du-timeslots-has-reservation .du-timeslots-trigger {
  display: none !important;
}

.du-timeslots-no-reservation .du-timeslots-trigger {
  display: inline-block;
}

/* Simple Timeslot Display */
.du-timeslot-display {
  margin: 20px 0;
  padding: 20px;
  border: 1px solid #ddd;
  background: #f9f9f9;
}

.du-timeslot-display h3 {
  margin: 0 0 15px 0;
  font-size: 18px;
}

.du-timeslot-info p {
  margin: 5px 0;
}

/* Countdown */
.du-timeslot-countdown {
  margin: 15px 0;
  padding: 10px;
  background: #fff3cd;
  border: 1px solid #ffeaa7;
}

.du-timeslot-expired {
  margin: 10px 0;
  padding: 10px;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

/* Expiring Reservation Notice (WooCommerce notice styling) */
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-message {
  position: relative;
}

/* Make the expiring notice more prominent */
.woocommerce-notices-wrapper
  .woocommerce-info:has(strong:first-child:contains("⚠️")) {
  background: #fff3cd;
  border-left-color: #ffc107;
  color: #856404;
}

/* Alternative: Style all warning notices */
.du-timeslots-expiring-notice {
  background: #fff3cd !important;
  border-left: 4px solid #ffc107 !important;
  color: #856404 !important;
  padding: 15px 20px !important;
  margin: 20px 0 !important;
  font-size: 14px !important;
  animation: pulse-warning 2s infinite;
}

.du-timeslots-expiring-notice strong {
  color: #ff9800;
  font-size: 16px;
}

@keyframes pulse-warning {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
  }
}

/* minicart countdown */
.du-timeslots-minicart-countdown {
  font-size:14px;
  line-height: 14px;
  display: block;
  text-align: center;
  margin-top: 3px;
}
.minicart-countdown-timer{
  font-size:12px;
  line-height: 12px;
  margin-right: 2px;
}

/* Reservation Display info */
.du-timeslots-selected-slot-compact {
  display: flex;
  padding: 0;
  gap: 10px;
  color: #f93200;
  align-items: center;
      
          min-width: 348px;
    margin: auto;
    justify-content: center;
}
.du-timeslots-selected-slot-compact span.du-timeslots-pickup-note-label {
    font-size: 12px;
}

.du-timeslots-selected-slot-compact .slot-icon {
  position: relative;
  display: flex;
  align-items: center;
}
.du-timeslots-selected-slot-compact .slot-info{
  font-size:14px;
  font-weight: 700;
  color: #010913;
  line-height: 14px;
  text-transform: uppercase;
  text-align: left;
}

.du-timeslots-selected-slot-compact .slot-icon img {
  width: 50px;
  height: auto;
}
.delivery_popup_btn_wrapper .slot-status-icon {
    position: absolute;
    top: 0;
    right: 0;
    display:none; 
}

.du-timeslots-modal-content .du-timeslots-step-header {
  text-align: center;
}

.du-timeslots-modal-content .du-timeslots-step-header h3 {
  font-size: 25px;
  line-height: 28px;
  margin-bottom: 5px;
}

.du-timeslots-modal-content .du-timeslots-icon img {
  margin: auto;
}

.du-timeslots-modal-content #du-timeslots-zipcode {
  border-radius: 40px !important;
  background-color: #f9f9f9 !important;
  border: none !important;
  border-color: transparent !important;
  height: 72px !important;
  margin: auto;
  max-width: 282px;
  display: block;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
}

.du-timeslots-cta-btn {
  padding: 1.5rem 3.3rem !important;
  font-weight: 500 !important;
  font-size: 16px !important;
}

.du-timeslots-modal-content #du-timeslots-zipcode:focus {
  box-shadow: 0 0 0 1px #f93200 !important;
  outline: none !important;
}

@media (min-width: 640px) {
  .du-timeslots-modal-content #du-timeslots-zipcode {
    padding-left: 19px !important;
  }
  
 
}

.du-timeslots-step-zipcode
  .du-timeslots-zipcode-form
  .du-timeslots-zipcode-input-group {
  background-image: url(../assets/map.jpg);
  min-height: 200px;
  height: 35vh;
  max-height: 417px;
  width: 100%;
  margin-bottom: 25px;
  display: flex;
     border-radius: 40px;
    border: 2px solid white;
}


#du-timeslots-verify-zipcode {
  display: block;
  margin: auto;
}

.du_timeslot-loading {
  background-color: transparent !important;
  color: transparent !important;
}

.du_timeslot-loading::after {
  border: 2px solid #f93200 !important;
  border-top-color: transparent !important;
}

.du-timeslots-cta-container {
  text-align: center;
  margin-top: 20px;
}


.du-timeslots-cta-container button {
  margin: 0 7px;
}

.du-timeslots-step-calendar.active > .du-timeslots-back-btn {
  display: none;
}
.du-timeslots-step-service.active {
  padding: 0 25px 5px 25px;
}
.du-timeline-modal-content-wrapper {
  position: relative;
  overflow:hidden;
    /* -webkit-overflow-scrolling: touch; */
  /* max-height: inherit; */
  overflow-x: hidden;
          clip-path: content-box;
      /* -ms-overflow-style: none;  
    scrollbar-width: none;   */
}
.du-timeline-modal-content-wrapper::-webkit-scrollbar-thumb {
  background-color: #f93200;
  /* display:none; */
}

/* .du-timeline-modal-content-wrapper::-webkit-scrollbar { 
    display: none; 
} */
.du-timeslots-zipcode-message .error,
.du-timeslots-error-message {
  border-radius: 40px;
  text-align: center;
}
.du-timeslots-error-message p {
  margin-bottom: 0 !important;
}
.du-timeslots-step-header, .du-timeslots-step-header h2, .du-timeslots-step-header p, .du-timeslots-step-header h3{
  margin:auto;
}

.du-timeslots-step-zipcode-header h3{
 max-width: 349px;
}
.du-timeslots-step-zipcode-header p{
 max-width: 550px;
}
.du-timeslots-step-calendar-header h3{
  max-width: 500px;
}
.du-timeslots-step-calendar-header p{
  max-width: 530px;
}
/* Responsive */

@media (max-width: 1024px) {
  .du-timeline-modal-content-wrapper {
    padding: 20px;
  }
  .du-timeslots-modal-content {
    width: calc(100% - 32px);
    padding: 0;
    max-height: 95vh;
  }

  .du-timeslots-step-calendar.active .du-timeslots-back-btn {
    display: none;
  }

  .du-timeslots-step-calendar.active > .du-timeslots-back-btn,
  .du-timeslots-step-zipcode.active > .du-timeslots-back-btn {
    display: block;
    margin-bottom: 4px !important;
  }

  .du-timeslots-cta-container {
    margin-top: 16px;
  }

  .du-timeslots-zipcode-form {
    flex-direction: column;
  }

  .du-timeslots-selected-info {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .du-timeslots-legend {
    flex-direction: column;
    gap: 10px;
  }

  .du-timeslots-table-header,
  .du-timeslots-table-row {
    grid-template-columns: 45px repeat(7, 1fr);
  }

  .du-timeslots-time-cell {
    font-size: 14px;
    padding: 10px 5px;
    display: flex;
        flex-direction: column;
  }

  .du-timeslot-cell {
    padding: 10px 5px;
    font-size: 14px;
  }

  .du-timeslot-cell .slot-icon {
    font-size: 14px;
  }

  .du-timeslot-cell .slot-label {
    font-size: 14px;
  }

  .du-timeslots-day-header .day-name {
    font-size: 14px;
  }

  .du-timeslots-day-header .day-date {
    font-size: 14px;
  }

  .du-timeslots-calendar-table {
    padding: 0;
  }
  /* .du-timeslots-time-cell-time {
    position: sticky;
    left: 0;
    background-color: white;
    z-index: 1;
} */
  #du-timeslots-calendar-grid {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .du-timeslots-step-zipcode
    .du-timeslots-zipcode-form
    .du-timeslots-zipcode-input-group {
    height: 250px;
    min-height: 250px;
 
  }
}

@media (max-width: 640px) {
    .du-timeslots-table-header,
  .du-timeslots-table-row {
    grid-template-columns: 45px repeat(7, 1fr);
  }
  
  .du-timeslots-time-cell-time {
    font-size: 12px;
        line-height: 10px;
    padding: 3px 0;
            padding-left: 10px;
    /* make it sticky */
        position: sticky;
    left: 0;
    background-color: white;
    z-index: 30;
    display: block;
  }
  .du-timeslots-step-zipcode
    .du-timeslots-zipcode-form
    .du-timeslots-zipcode-input-group {
    height: 150px;
    min-height: 150px;
  }
  .du-timeslots-service-btn {
    width: 100%;
    max-width: 300px;
  }
  .du-timeslots-service-btn {
    padding: 4px 8px;
  }
  .du-timeslots-service-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .du-timeslots-service-btn .service-desc {
    padding-bottom: 4px;
  }

  .du-timeslots-cta-container {
    margin-top: 16px;
  }

  .du-timeslots-step-header h3 {
    font-size: 20px !important;
    line-height: 22px;
    margin-bottom: 2px;
    /* hard to keep it 30, its half the screen */
  }
  .du-timeslots-zipcode {
    height: 50px !important;
    max-width: 90%;
  }
  .du-timeslots-step-header p {
    font-size: 14px !important;
    line-height: normal;
  }

  .du-timeslots-table-header,
  .du-timeslots-table-row {
        padding: 0 3px;
        font-size: 12px;
        margin: 2px;
            grid-column-gap: 3px;
  }
  .du-timeslots-day-header{
        padding: 3px 2px;
  }

  
  .du-timeslots-time-column {
    font-size: 12px;
    padding: 0;
    line-height: 14px;
  }

  .du-timeslot-cell {
    padding: 0;
    width:73px;
  }

  .du-timeslot-cell .slot-label {
    display: none;
  }

  .du-timeslots-day-header .day-date {
    font-size: 9px;
  }
  
  .du-timeslots-selected-info {
    margin-top: 16px;
  }
  .du-timeslots-selected-info{
        padding: 6px 24px;
  }
  .du-timeslots-step-header, .du-timeslots-step-header h2, .du-timeslots-step-header p, .du-timeslots-step-header h3{
  max-width:100% !important;
  margin:auto !important;
  }
    .du-timeslots-day-header .day-name {
    font-size: 11px;
  }
   #du-timeslots-calendar-instructions{
    margin:16px auto !important;
  }
}
.du-timeslots-cta-success-container button {
    padding: 20px !important;
    max-width: calc(50% - 20px);
    width: 100%;
}

@media (max-width: 500px) {
 button.du-timeslots-change-btn.du-timeslots-change-btn-icon{
    margin:auto;
    padding: 0;
  }
  .du-timeslots-selected-slot-compact{
    padding:4px 0;
  }
  .du-timeslots-cta-success-container button, #du-timeslots-confirm-btn, #du-timeslots-verify-zipcode, #du-timeslots-zipcode {
    padding: 10px !important;
    max-width: calc(100% - 10px) !important;
    width: 100%;
  }
  #du-timeslots-zipcode{
    height: auto !important;
  }
  .du-timeslots-cta-success-container button:first-child {
    margin-bottom: 10px;
  }
  #du-timeslots-success-details{
    padding: 1px 20px;
        margin: 10px 0;

  }
  .du-timeslots-modal-content .du-timeslots-step-header h3{
        line-height: 22px;
  }
  .du-timeline-modal-content-wrapper{
    padding: 0px;
  }
  .du-timeslots-calendar-wrapper {
    margin-top: 5px;
}
span.du-timeslots-time-separator {
    line-height: 5px;
    font-size: 10px;
    height: 5px;
    display: block;
}

}


.woocommerce-checkout .du-timeslots-change-btn{
  pointer-events: none;

}
.du-timeslots-modal-content-nested{
    overflow: auto;
    /* max-height: 95vh; */
    margin: 21px 24px;
    /* padding: 21px 24px; */
     -webkit-overflow-scrolling: touch;
}

.du-timeslots-modal-content-nested::-webkit-scrollbar-thumb {
  background-color: #f93200;
}
.du-timeslots-cta-container {
    padding-bottom: 5px;
} 
.du-timeslots-calendar-table{
  overflow: visible;
}
.du-timeslots-calendar-table::-webkit-scrollbar, .du-timeslots-modal-content-nested::-webkit-scrollbar {
    width:2px;
    height: 2px;
}
.du-timeslots-calendar-table::-webkit-scrollbar-thumb {
  background-color: #f93200;
}
#du-timeslots-calendar-grid::-webkit-scrollbar-thumb {
  background-color: #f93200;
}
.du-timeslots-loading {
    padding: 20px;
}
.du-timeslots-step{
  padding: 10px;
}
.du-timeslot-cell.unavailable {
    filter: grayscale(1);
}
.du-timeslots-step.du-timeslots-step-success.active h4 {
    font-family: 'omnes-greek';
    font-weight: 800;
}
#du-timeslots-empty-cart-btn{
    margin-top: 10px;
}