:root {
  --container_width: 1280px;
  --container_padding: 30px;
}
@media (max-width: 767px) {
  :root {
    --container_padding: 20px;
  }
}

.popup-block__wrap.popup-block-choose-position {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  grid-gap: 45px;
}
@media (max-width: 380px) {
  .popup-block__wrap.popup-block-choose-position {
    grid-gap: 35px;
  }
}
.popup-block__wrap.popup-block-choose-position .choose-block {
  cursor: pointer;
}
.popup-block__wrap.popup-block-check-position {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.popup-block .choose-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.popup-block .choose-block:hover .choose-block__image, .popup-block .choose-block.active .choose-block__image {
  border-color: white;
  background-color: #c01a2c;
  box-shadow: 0 0 13px 0 rgba(238, 238, 238, 0.33);
}
.popup-block .choose-block:hover .choose-block__image svg path, .popup-block .choose-block.active .choose-block__image svg path {
  fill: white;
}
.popup-block .choose-block:hover .choose-block__title, .popup-block .choose-block.active .choose-block__title {
  color: black;
}
.popup-block .choose-block:hover .choose-block__title::before, .popup-block .choose-block.active .choose-block__title::before {
  opacity: 1;
  width: 100%;
}
.popup-block .choose-block__image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid white;
  box-shadow: 0 0 13px 0 rgba(238, 238, 238, 0);
  transition: 0.3s;
}
@media (max-width: 380px) {
  .popup-block .choose-block__image {
    width: 50px;
    height: 50px;
  }
}
.popup-block .choose-block__title {
  margin-top: 10px;
  font-size: 1.4rem;
  line-height: 1.8rem;
  font-weight: 600;
  padding-bottom: 2px;
  position: relative;
  display: inline-block;
  transition: 0.3s;
  white-space: nowrap;
  text-transform: uppercase;
}
.popup-block .choose-block__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #c01a2c;
  opacity: 0;
  transition: 0.3s;
}
.popup-block__field {
  width: 100%;
}
.popup-block__field input {
  max-width: 100%;
}
.popup-block__label {
  margin-bottom: 2px;
  font-weight: 500;
}
.popup-block__field-wrap .input-select input {
  width: 100%;
  background-color: #fff;
  border: 1px solid hsla(0deg, 0%, 7%, 0.8);
  border-radius: 4px;
  box-sizing: border-box;
  color: #2b2d2f;
  font-family: inherit;
  font-size: 1.6rem;
  line-height: 2rem;
  margin: 0;
  min-height: 0;
  padding: 5px 10px;
}
.popup-block__field-wrap .input-select input::placeholder {
  font-size: 1.6rem;
  line-height: 2rem;
}

.jsChangeDelivery {
  color: #c01a2c;
  text-decoration: dotted;
  display: inline-block;
  transition: 0.3s;
  cursor: pointer;
}
.jsChangeDelivery:hover {
  text-decoration: underline;
}

.woocommerce-checkout #billing_postcode_field, .woocommerce-checkout #billing_city_field {
  display: none !important;
}

.delivery-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
}

.delivery-progressbar__text {
  margin-bottom: 12px;
  text-align: center;
}
.delivery-progressbar .progress-line {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 32px;
}
.delivery-progressbar .progress-line__line {
  border-radius: 9999px;
  background-color: #eeeeee;
  height: 6px;
}
.delivery-progressbar .progress-line__active-line {
  background-color: #c01a2c;
  border-radius: 9999px;
  height: 100%;
  position: relative;
  transition-property: width;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.delivery-progressbar .progress-line__dot {
  position: absolute;
  width: 32px;
  height: 32px;
  padding: 6px;
  background-color: #c01a2c;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
  top: 50%;
  right: -32px;
}

.delivery-list-section .delivery-block {
  align-items: flex-start;
  padding-top: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.delivery-list-section .delivery-block:first-child {
  font-weight: bold;
}
.delivery-list-section .delivery-block:not(:last-child) {
  padding-bottom: 15px;
  border-bottom: 1px solid #c01a2c;
}

.jsAcceptDeliveryTypeLocal {
  color: #c01a2c;
  display: inline-block;
  transition: 0.3s;
  cursor: pointer;
  text-align: center;
}
.jsAcceptDeliveryTypeLocal:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=sct-delivery-frontend.css.map */
