/**
 * ASD Delivery Info - front office
 * Ali Software Development
 */
.asd-delivery-info {
  display: flex;
  align-items: center;
  flex: 0 0 100%;
  align-self: stretch;
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  min-height: 66px;
  margin: 14px 0 18px;
  padding: 13px 15px;
  clear: both;
  box-sizing: border-box;
  color: var(--asd-di-text, #292929);
  background: var(--asd-di-bg, #fff);
  border: 1px solid var(--asd-di-border, #e4e4e4);
  border-radius: var(--asd-di-radius, 6px);
  box-shadow: var(--asd-di-shadow, 0 2px 8px rgba(0, 0, 0, 0.035));
  font-family: inherit;
  font-size: var(--asd-di-font-size, 15px);
  font-style: normal;
  line-height: 1.45;
  text-align: left;
  text-transform: none;
  letter-spacing: normal;
  position: relative;
  z-index: 1;
}

.asd-delivery-info__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 var(--asd-di-icon-size, 40px);
  width: var(--asd-di-icon-size, 40px);
  height: var(--asd-di-icon-size, 40px);
  margin: 0 14px 0 0;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
  color: var(--asd-di-icon, #171717);
  background: var(--asd-di-icon-bg, #f7f7f7);
  border: 1px solid rgba(0, 0, 0, 0.035);
  border-radius: 50%;
}

.asd-delivery-info__svg {
  display: block;
  width: 23px;
  height: 23px;
  max-width: 58%;
  max-height: 58%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.asd-delivery-info__custom-icon {
  display: block;
  width: 58%;
  height: 58%;
  max-width: 28px;
  max-height: 28px;
  object-fit: contain;
}

.asd-delivery-info__content {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  color: var(--asd-di-text, #292929);
  overflow-wrap: anywhere;
}

.asd-delivery-info__title {
  display: inline;
  margin: 0;
  padding: 0;
  color: var(--asd-di-title, #1b1b1b);
  font: inherit;
  font-weight: 700;
}

.asd-delivery-info__text {
  display: inline;
  margin: 0;
  padding: 0;
  color: var(--asd-di-text, #292929);
  font: inherit;
  font-weight: 400;
}


.asd-delivery-info--service-sibling {
  margin-top: 12px;
  margin-bottom: 18px;
}

.asd-delivery-info--payment-fallback {
  margin-top: 12px;
  margin-bottom: 18px;
}

.asd-delivery-info--cart,
.asd-delivery-info--checkout {
  margin-top: 16px;
  margin-bottom: 16px;
}

@media (max-width: 767.98px) {
  .asd-delivery-info {
    min-height: 70px;
    margin: 13px 0 16px;
    padding: 13px 13px;
    font-size: var(--asd-di-mobile-font-size, 15px);
    line-height: 1.46;
  }

  .asd-delivery-info__icon {
    margin-right: 12px;
  }
}

@media (max-width: 374px) {
  .asd-delivery-info {
    padding-left: 11px;
    padding-right: 11px;
  }

  .asd-delivery-info__icon {
    margin-right: 10px;
  }
}

@media print {
  .asd-delivery-info {
    box-shadow: none;
  }
}
