.ShippingProgressBlock {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 30px;
  padding-bottom: 15px;
  margin: 20px 0 20px;
  border-bottom: 1px solid var(--border-color);
}

.ShippingProgressBlock .ShippingProgressMessage {
  margin: 0;
  line-height: 110%;
  font-size: 18px;
  /*color: #3399cc;*/
  font-weight: 400;
  max-width: calc(100% - 80px);
  text-align: left;
  color: rgb(82, 82, 82);
}
.ShippingProgressBlock .ShippingProgressMessage span {
  font-weight: 700;
  color: #000;
}

.ShippingProgressBlock .progress {
  width: 100%;
  height: 7px;
  background-color: var(--border-color);
  display: flex;
  align-items: center;
  position: relative;
}

.ShippingProgressBlock .progress svg,
.ShippingProgressBlock .progress img {
  max-width: 60px;
  width: 100%;
  max-height: initial;
  height: auto;
  position: absolute;
  right: 5px;
  bottom: 100%;
  transform: translatey(3px);
}

.ShippingProgressBlock .progress-bar {
  max-width: 100%;
  height: 100%;
  background-color: var(--color-accent);
  background-size: 15px 15px;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
  animation: progress-stripes 1s linear infinite;
}

@keyframes progress-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 15px 0;
  }
}

/*# sourceMappingURL=shipping-plugin.css.map */
