.vertical-section {
    padding: 0px;
    border: 0px;
    border-radius: 0px;
}
@media (max-width: 1151px) {
  .vertical-section {
    padding: 10px 10px;
    border: 0px solid gray;
    border-radius: .75rem;
    background-color: #fff;
    margin-top: 20px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.06);
  }
}

.input-wrapper {
    position: relative;
}

.input-wrapper.filled input {
    background-color: #f7fff7;
}

/* Базовый псевдо-элемент справа от инпута */
.input-wrapper::after{
  content:'';
  display:none;
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  width:16px;
  height:16px;
  background-repeat:no-repeat;
  background-size:contain;
  z-index:1;
}

/* Активируем при .filled и рисуем SVG-галочку */
.input-wrapper.filled::after{
  display:block;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12' fill='none' stroke='%2316a34a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* зелёный фон уже есть у тебя, оставляем */
.input-wrapper.filled input{ background-color:#f7fff7; }


.upLabel {
    position: absolute;
    color: #666666;
    font-weight: normal;
    font-style: normal;
    font-size: 15px;
    top: 13px;
    left: 10px;
    transition: .1s;
    pointer-events: none;
}

.upInputs input {
    box-shadow: none;
    box-sizing: border-box;
    width: 100%;
    display: block;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    color: #000000;
    font-weight: normal;
    font-style: normal;
    font-size: 15px;
    padding: 19px 10px 9px 10px;
    margin-bottom: 13px;
    outline: none;
    background-color: #fff;
}
@media (max-width: 1151px) {
  .upInputs input {
    border: 1px solid #d4d4d4;
    border-radius: 5px;
  }
}

.upInputs input:focus {
    border-color: #b9b9b9;
}


.upInputs input:focus~.upLabel,
.upInputs input:not(:placeholder-shown)~.upLabel {
    top: 1px;
    color: #a7a7a7;
    font-weight: 300;
    /* background-color: #fff; */
    font-size: 12px;
    padding-left: 1px;
    padding-right: 5px;
    border: none;
}


.upLabel {
    z-index: 25;
}


.radio-felivery-flexbox {
  display: flex;
  gap: 10px;
  flex-direction: row;
}
@media (max-width: 1151px) {
  .radio-felivery-flexbox  {
    flex-direction: column;
  }
}

.delivery-radio-box {
  display: flex;
  position: relative;
  flex-direction: column;
  border: 1px solid #e6e7eb;
  background-color: #fcfdfd;
  border-radius: 7px;
  padding: 10px 10px 10px 30px; /* слева оставляем место под кружок */
  width: 50%;
  /* transition: border 0.2s ease, background-color 0.2s ease; */
  cursor: pointer;
}
@media (max-width: 1151px) {
  .delivery-radio-box {
    width: 100%;
    box-sizing: border-box; /* чтобы не выходил за паддинги */
  }
}

.delivery-radio-box input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Кастомный radio */
.custom-radio {
  width: 15px;
  height: 15px;
  border: 1px solid #e6e7eb;
  border-radius: 50%;
  position: absolute;
  left: 7px; /* отступ от левого края */
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  /* transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease; */
}


.delivery-radio-box input[type="radio"]:checked + .custom-radio {
  border: 2px solid #41c3d0;
  background-color: #41c3d0;
  box-shadow: inset 0 0 0 4px white;
}

/* При выборе — меняем border и фон */
.delivery-radio-box input[type="radio"]:checked ~ .radio-delivery-2col {
  background-color: #f0f9ff;
}

.delivery-radio-box:has(input[type="radio"]:checked) {
  border-color: #41c3d0;
  background-color: #f0f9ff;
}

.radio-delivery-2col {
  display: flex;
  justify-content: space-between;
}

.delivery-radio-price {
  display: flex;
  align-items: center;
}

.delivery-radio-firstline {
  margin-bottom: 4px;
  font-weight: bold;
  font-size: .90rem;
}

.delivery-radio-price {
  color: #2a2a2a;
  font-size: .85rem;
  line-height: 1rem;
  font-weight: 400;
  font-family: Helvetica, sans-serif;
}
.radio-delivery-price {
    display: flex;
    align-items: center;
}


.error-message-phone-mail {
    margin-top: -15px;
    margin-bottom: 13px;
    color: white;
    background-color: #ff574f;
    border-radius: 0px 0px 4px 4px;
    padding: 1px 5px 2px 5px;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
    display: block;
}


.fa-credit-card {
  font-size: 10px;
  vertical-align: middle;
}

/* Выпадающее меню Google всегда над всем */
.pac-container {
  z-index: 100000 !important;
}

/* Ничего не обрезаем вокруг инпутов адреса */
.vertical-section,
.address-fields,
.upInputs,
.input-wrapper {
  overflow: visible;
}






