Add buy-by-phone-form

This commit is contained in:
Roman Pyrih
2026-01-14 09:35:45 +01:00
parent 0751588e2e
commit b71ee93e55
77 changed files with 10442 additions and 27 deletions

View File

@@ -1070,7 +1070,7 @@ body#product {
display: flex;
flex-direction: column;
row-gap: 20px;
margin: 40px 0 0 0;
margin: 30px 0 0 0;
> div,
.product-delivery-tile {
@@ -4538,6 +4538,25 @@ section#checkout-payment-step {
}
}
#buy_by_phone_btn {
position: relative;
margin-top: 30px;
> .btn {
text-transform: initial;
font-size: 14px;
font-family: 'Inter', sans-serif;
font-weight: 500;
width: 100%;
margin: 0;
display: block;
&:hover {
background: #110e0c;
}
}
}
#buy-by-phone-popup {
position: fixed;
inset: 0;
@@ -4646,11 +4665,6 @@ section#checkout-payment-step {
display: flex;
align-items: center;
gap: 5px;
input[type='radio'] {
width: 20px;
height: 20px;
}
}
}
@@ -4662,6 +4676,7 @@ section#checkout-payment-step {
input#polityka {
width: fit-content;
padding: 0;
}
label {
@@ -4681,8 +4696,9 @@ section#checkout-payment-step {
.popup-body-top {
> p {
color: #e79332;
&.p1 {
color: #e79332;
}
> a {
color: #e79332;
text-decoration: underline;
@@ -4749,5 +4765,18 @@ section#checkout-payment-step {
}
}
}
input[type='text'],
input[type='tel'] {
border-radius: 3px;
background-color: #fff;
border: 1px solid #e6e5e5;
font-size: 14px;
&::placeholder {
font-size: 14px !important;
color: #262626 !important;
}
}
}
}