.af-wc-daps-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
  
.af-wc-daps-switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.af-wc-daps-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.af-wc-daps-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .af-wc-daps-slider {
  background-color: #2196F3;
}

input:focus + .af-wc-daps-slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .af-wc-daps-slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.af-wc-daps-delivery-info-table select,
.af-wc-daps-delivery-info-table-checkout-page select{
  width: 100%;
  height: 25px;
}

/* Rounded sliders */
.af-wc-daps-slider.af-wc-daps-round {
  border-radius: 34px;
}

.af-wc-daps-slider.af-wc-daps-round:before {
  border-radius: 50%;
}


.af-wc-daps-title-label{
  margin-right:20px!important;
}

.af-wc-daps-delivery-info-table{
  width: 400px !important;
}


.af-wc-daps-expected-info-div,
.af-wc-daps-expected-info-div-checkout{
  align-items: center;
  background: #EFF3F5;
  padding: 10px 10px 10px 20px;
  border-radius: 3px;
  margin-bottom: 20px;
  display: flex;
  flex: 1;
}

.af-wc-daps-expected-info-icon{
  margin-right: 20px;
}

.af-wc-daps-expected-info-icon img{
  width: 42px;
}

dt.ui_tpicker_time_label,
dd.ui_tpicker_time{
    display: none;
}


.af-wc-daps-delivery-info-table-checkout-page tbody tr{
  display: grid;
  grid-template-columns: 50% 50%;
}




.delivery-info-container {
    display: grid;
    grid-template-columns: 49% 49%;
    grid-column-gap: 2%;
}



.half-width {
  flex: 1 1 48%; /* Takes half of the container's width */
  box-sizing: border-box;
}
