forked from M3-Academy/m3-academy-template-checkout
Merge pull request 'Feature/Responsividade' (#5) from Feature/Responsividade into develop
Reviewed-on: #5
This commit is contained in:
commit
8c147fefbe
@ -14,8 +14,14 @@ export default class Footer {
|
|||||||
this.createShelf();
|
this.createShelf();
|
||||||
this.shelfList = await waitElement(".footerCheckout__shelfList");
|
this.shelfList = await waitElement(".footerCheckout__shelfList");
|
||||||
this.shelfItens();
|
this.shelfItens();
|
||||||
// await this.shelfUpdate();
|
if (window.innerWidth > 1024){
|
||||||
this.addCarrossel();
|
this.addCarrossel();
|
||||||
|
}
|
||||||
|
if (window.innerWidth < 1024){
|
||||||
|
this.addCarrosselMobile();
|
||||||
|
}
|
||||||
|
this.prateleiraView();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async selectors() {
|
async selectors() {
|
||||||
@ -29,6 +35,7 @@ export default class Footer {
|
|||||||
timeout: 5000,
|
timeout: 5000,
|
||||||
interval: 1000,
|
interval: 1000,
|
||||||
});
|
});
|
||||||
|
this.pratWrapper = await waitElement(".footerCheckout")
|
||||||
}
|
}
|
||||||
|
|
||||||
onUpdate() {
|
onUpdate() {
|
||||||
@ -54,8 +61,17 @@ export default class Footer {
|
|||||||
infinite: false,
|
infinite: false,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
async addCarrosselMobile() {
|
||||||
|
const elemento = await waitElement(".footerCheckout__shelfList");
|
||||||
|
$(elemento).slick({
|
||||||
|
slidesToShow: 3,
|
||||||
|
slidesToScroll: 1,
|
||||||
|
arrows: true,
|
||||||
|
infinite: false,
|
||||||
|
});
|
||||||
|
}
|
||||||
addIconVtexAndM3() {
|
addIconVtexAndM3() {
|
||||||
if (this.iconsVtexAndM3 && window.innerWidth > 1024) {
|
if (this.iconsVtexAndM3) {
|
||||||
this.iconsVtexAndM3.innerHTML = `
|
this.iconsVtexAndM3.innerHTML = `
|
||||||
<li>
|
<li>
|
||||||
<a class="Link1" href="https://vtex.com/br-pt/">
|
<a class="Link1" href="https://vtex.com/br-pt/">
|
||||||
@ -75,7 +91,7 @@ export default class Footer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
addIconsCardAndVtxpci() {
|
addIconsCardAndVtxpci() {
|
||||||
if (this.iconesCartoesAndVtexpci && window.innerWidth > 1024) {
|
if (this.iconesCartoesAndVtexpci) {
|
||||||
this.iconesCartoesAndVtexpci.innerHTML = `
|
this.iconesCartoesAndVtexpci.innerHTML = `
|
||||||
<li>
|
<li>
|
||||||
<span class="footerCheckout__payments"><img class="footer-imgs-cards" src="https://agenciamagma.vteximg.com.br/arquivos/masterCardM3Academy.png" alt="Img bandeira Mastercard" />
|
<span class="footerCheckout__payments"><img class="footer-imgs-cards" src="https://agenciamagma.vteximg.com.br/arquivos/masterCardM3Academy.png" alt="Img bandeira Mastercard" />
|
||||||
@ -140,4 +156,64 @@ export default class Footer {
|
|||||||
return peçaBase;
|
return peçaBase;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async prateleiraView() {
|
||||||
|
if (this.prateleira) {
|
||||||
|
const FooterCheck = document.querySelectorAll(".footerCheckout");
|
||||||
|
FooterCheck.forEach((f) => {
|
||||||
|
const prat = f.children[0];
|
||||||
|
|
||||||
|
if (window.location.href === "https://m3academy.myvtex.com/checkout/#/cart") {
|
||||||
|
if (prat) {
|
||||||
|
prat.classList.add("view");
|
||||||
|
}
|
||||||
|
|
||||||
|
} else if (
|
||||||
|
window.location.href === "https://m3academy.myvtex.com/checkout/#/email" ||
|
||||||
|
window.location.href === "https://m3academy.myvtex.com/checkout/#/profile" ||
|
||||||
|
window.location.href == "https://m3academy.myvtex.com/checkout/#/shipping"
|
||||||
|
) {
|
||||||
|
if (prat) {
|
||||||
|
if (prat.classList.contains("view")) {
|
||||||
|
prat.classList.remove("view");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if (
|
||||||
|
window.location.href === "https://m3academy.myvtex.com/checkout/#/payment"
|
||||||
|
) {
|
||||||
|
if (prat) {
|
||||||
|
if (prat.classList.contains("view")) {
|
||||||
|
prat.classList.remove("view");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
window.addEventListener("hashchange", () => {
|
||||||
|
if (window.location.hash == "#/cart") {
|
||||||
|
if (prat) {
|
||||||
|
prat.classList.add("view");
|
||||||
|
}
|
||||||
|
|
||||||
|
} else if (
|
||||||
|
window.location.hash === "#/email" ||
|
||||||
|
window.location.hash === "#/profile" ||
|
||||||
|
window.location.hash === "#/shipping"
|
||||||
|
) {
|
||||||
|
if (prat) {
|
||||||
|
if (prat.classList.contains("view")) {
|
||||||
|
prat.classList.remove("view");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
} else if (window.location.hash == "#/payment") {
|
||||||
|
if (prat) {
|
||||||
|
if (prat.classList.contains("view")) {
|
||||||
|
prat.classList.remove("view");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,10 @@
|
|||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
padding-top: 8px;
|
padding-top: 8px;
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
padding-top: 11px;
|
||||||
|
}
|
||||||
|
|
||||||
.link-cart {
|
.link-cart {
|
||||||
a {
|
a {
|
||||||
color: $color-black2;
|
color: $color-black2;
|
||||||
@ -13,9 +17,14 @@
|
|||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
|
||||||
// &:hover {
|
@media screen and (max-width: 1024px) {
|
||||||
// color: lighen($color-black, 10);
|
margin-right: 16px;
|
||||||
// }
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 28px;
|
||||||
|
line-height: 33px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -29,6 +38,11 @@
|
|||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
margin-top: 7px;
|
margin-top: 7px;
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
margin-bottom: 38px;
|
||||||
|
margin-top: 49px;
|
||||||
|
}
|
||||||
|
|
||||||
span {
|
span {
|
||||||
color: $color-black2;
|
color: $color-black2;
|
||||||
font-family: $font-family-secundary;
|
font-family: $font-family-secundary;
|
||||||
@ -36,6 +50,16 @@
|
|||||||
line-height: 23px;
|
line-height: 23px;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 40px;
|
||||||
|
line-height: 47px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 16px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
small {
|
small {
|
||||||
@ -46,6 +70,16 @@
|
|||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 40px;
|
||||||
|
line-height: 47px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 16px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -56,6 +90,14 @@
|
|||||||
width: 57%;
|
width: 57%;
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
padding: 1px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 97%;
|
||||||
|
}
|
||||||
|
|
||||||
input {
|
input {
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
color: $color-black;
|
color: $color-black;
|
||||||
@ -67,6 +109,11 @@
|
|||||||
border-radius: 5px 0px 0px 5px;
|
border-radius: 5px 0px 0px 5px;
|
||||||
width: 77%;
|
width: 77%;
|
||||||
height: 52px;
|
height: 52px;
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 88%;
|
||||||
|
}
|
||||||
|
|
||||||
&::placeholder{
|
&::placeholder{
|
||||||
color: $color-black2;
|
color: $color-black2;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
@ -74,6 +121,11 @@
|
|||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 33px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 490px) {
|
@media (max-width: 490px) {
|
||||||
@ -109,6 +161,17 @@
|
|||||||
line-height: 19px;
|
line-height: 19px;
|
||||||
letter-spacing: 0.05em;
|
letter-spacing: 0.05em;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
color: $color-black2;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 28px;
|
||||||
|
line-height: 38px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
padding: 4px 18px;
|
||||||
|
height: 50px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
span.help.error {
|
span.help.error {
|
||||||
@ -119,6 +182,11 @@
|
|||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
left: 435px;
|
||||||
|
margin-top: 7px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -135,6 +203,11 @@
|
|||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
margin: 0 0 8px 0;
|
margin: 0 0 8px 0;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 33px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
@ -148,12 +221,21 @@
|
|||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
color: $color-black2;
|
color: $color-black2;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 33px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
i::before {
|
i::before {
|
||||||
color: $color-blue2;
|
color: $color-blue2;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -162,6 +244,10 @@
|
|||||||
color: $color-black;
|
color: $color-black;
|
||||||
font-size: 6rem;
|
font-size: 6rem;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 9.8rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -192,6 +278,15 @@
|
|||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
padding: 17px 17px 29px 17px;
|
padding: 17px 17px 29px 17px;
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
padding: 17px 17px 44px 17px;
|
||||||
|
margin-bottom: 17px;
|
||||||
|
.PaymentCardNumber input {
|
||||||
|
width: 97%;
|
||||||
|
height: 33px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
span{
|
span{
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
@ -376,6 +471,10 @@
|
|||||||
color: #303030;
|
color: #303030;
|
||||||
padding: 8px 12px;
|
padding: 8px 12px;
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
padding: 13px 12px;
|
||||||
|
}
|
||||||
|
|
||||||
svg path {
|
svg path {
|
||||||
fill: #d8c8ac;
|
fill: #d8c8ac;
|
||||||
}
|
}
|
||||||
@ -404,7 +503,14 @@
|
|||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
color: #303030;
|
color: #303030;
|
||||||
padding: 12px;
|
padding: 12px;
|
||||||
padding-top: 2px;
|
padding-top: 15px;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
span.street,
|
||||||
|
span.neighborhood{
|
||||||
|
padding-left: 31px;
|
||||||
|
}
|
||||||
|
|
||||||
&::before{
|
&::before{
|
||||||
content: "";
|
content: "";
|
||||||
width: 24px;
|
width: 24px;
|
||||||
@ -412,6 +518,9 @@
|
|||||||
background-image: url(https://agenciamagma.vteximg.com.br/arquivos/homeM3Academy.png);
|
background-image: url(https://agenciamagma.vteximg.com.br/arquivos/homeM3Academy.png);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 24px;
|
background-size: 24px;
|
||||||
|
position: absolute;
|
||||||
|
left: 11px;
|
||||||
|
top: 23px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
@ -471,11 +580,26 @@
|
|||||||
input#ship-complement.input-large,
|
input#ship-complement.input-large,
|
||||||
input#ship-receiverName.input-xlarge {
|
input#ship-receiverName.input-xlarge {
|
||||||
width: 95%;
|
width: 95%;
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 98.5%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.payment-group{
|
||||||
|
width: 32.7%;
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.steps-view{
|
.steps-view{
|
||||||
width: 57%;
|
width: 57%;
|
||||||
margin-top: 35px;
|
margin-top: 35px;
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 96.85%;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
span.payment-group-item-text{
|
span.payment-group-item-text{
|
||||||
background-image: none !important;
|
background-image: none !important;
|
||||||
@ -496,13 +620,20 @@
|
|||||||
line-height: 24px;
|
line-height: 24px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
letter-spacing: -0.01em;
|
letter-spacing: -0.01em;
|
||||||
|
margin-left: 0;
|
||||||
|
width: 76.8%;
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
margin-left: 0;
|
||||||
|
width: 94.6%;
|
||||||
|
}
|
||||||
|
|
||||||
&-text{
|
&-text{
|
||||||
padding: 5px 0 5px 0;
|
padding: 5px 0 5px 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.payment-group-item.active{
|
.payment-group-item.active{
|
||||||
margin-left: 5px;
|
margin-left: 0px;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
border-right: 1px solid $color-orange ;
|
border-right: 1px solid $color-orange ;
|
||||||
border: 1px solid $color-orange;
|
border: 1px solid $color-orange;
|
||||||
@ -510,6 +641,13 @@
|
|||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
background: rgba(220, 221, 227, 0.3);
|
background: rgba(220, 221, 227, 0.3);
|
||||||
|
width: 76.8%;
|
||||||
|
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
margin-left: 0;
|
||||||
|
width: 94.6%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
width: 64%;
|
width: 64%;
|
||||||
height: 25px;
|
height: 25px;
|
||||||
}
|
}
|
||||||
input#creditCardpayment-card-0Number.input.medium{
|
input#creditCardpayment-card-0Number.input.medium {
|
||||||
width: 64%;
|
width: 64%;
|
||||||
height: 25px;
|
height: 25px;
|
||||||
}
|
}
|
||||||
@ -26,6 +26,24 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
padding: 16px 16px 5px 16px;
|
padding: 16px 16px 5px 16px;
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
padding: 16px 0;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.table.cart-items {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
thead {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
tbody {
|
||||||
|
.shipping-date.empty,
|
||||||
|
.quantity-price {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
margin: 0px 0 25px 0;
|
margin: 0px 0 25px 0;
|
||||||
border-left: none;
|
border-left: none;
|
||||||
@ -41,7 +59,14 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
width: 99.5%;
|
width: 99.5%;
|
||||||
border: 1px solid $color-gray5;
|
border: 1px solid $color-gray5;
|
||||||
height: 397px !important;
|
height: 397px !important;
|
||||||
|
max-height: 397px !important;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
margin: 0;
|
||||||
|
padding-bottom: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
background: $color-white;
|
background: $color-white;
|
||||||
border: none;
|
border: none;
|
||||||
@ -65,10 +90,19 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
.cart {
|
.cart {
|
||||||
border: none;
|
border: none;
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
padding: 34px 16px 16px 16px;
|
||||||
|
}
|
||||||
|
|
||||||
ul li {
|
ul li {
|
||||||
border-top: none;
|
border-top: none;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
|
.hproduct.item.muted {
|
||||||
|
span.shipping-date.pull-left {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&:not(:first-child) {
|
&:not(:first-child) {
|
||||||
margin-top: 8px;
|
margin-top: 8px;
|
||||||
@ -117,14 +151,6 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
line-height: 19px;
|
line-height: 19px;
|
||||||
letter-spacing: 0.05em;
|
letter-spacing: 0.05em;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
|
||||||
// &:hover {
|
|
||||||
// background: lighten($color-black, 5);
|
|
||||||
// }
|
|
||||||
|
|
||||||
// &:active {
|
|
||||||
// background: darken($color-black, 5);
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -136,8 +162,13 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
.product-item {
|
.product-item {
|
||||||
padding: 16px 0;
|
padding: 16px 0;
|
||||||
|
|
||||||
.product-name{
|
.product-name {
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
position: absolute;
|
||||||
|
padding-top: 5px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -150,32 +181,47 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 28px;
|
||||||
|
line-height: 33px;
|
||||||
|
}
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
&.quantity-price,
|
&.quantity-price,
|
||||||
&.shipping-date {
|
&.shipping-date {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&.shipping-date{
|
&.shipping-date {
|
||||||
font-size: 0;
|
font-size: 0;
|
||||||
line-height: 0;
|
line-height: 0;
|
||||||
&::after{
|
&::after {
|
||||||
content: "Frete";
|
content: "Frete";
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
color: $color-black;
|
color: $color-black;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 28px;
|
||||||
|
line-height: 33px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&.product-price{
|
&.product-price {
|
||||||
font-size: 0;
|
font-size: 0;
|
||||||
line-height: 0;
|
line-height: 0;
|
||||||
&::after{
|
&::after {
|
||||||
content: "Unidade";
|
content: "Unidade";
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
color: $color-black;
|
color: $color-black;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 28px;
|
||||||
|
line-height: 33px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -185,6 +231,15 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
width: 60px;
|
width: 60px;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
width: 146px;
|
||||||
|
height: 156px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
padding: 0 16px;
|
||||||
|
}
|
||||||
|
|
||||||
@include mq(sm, max) {
|
@include mq(sm, max) {
|
||||||
width: 72px;
|
width: 72px;
|
||||||
}
|
}
|
||||||
@ -194,19 +249,28 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
height: 156px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
width: 146px;
|
||||||
|
// height: 156px;
|
||||||
|
}
|
||||||
|
|
||||||
@include mq(sm, max) {
|
@include mq(sm, max) {
|
||||||
height: 72px;
|
height: 72px;
|
||||||
width: auto;
|
width: auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.badge{
|
.badge {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
#hproduct-item-2616{
|
#hproduct-item-2616 {
|
||||||
width: 60px;
|
width: 60px;
|
||||||
}
|
}
|
||||||
.price{
|
.price {
|
||||||
padding-top: 15px;
|
padding-top: 15px;
|
||||||
}
|
}
|
||||||
.product-name {
|
.product-name {
|
||||||
@ -232,11 +296,16 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
transition: ease-in 0.22s all;
|
transition: ease-in 0.22s all;
|
||||||
|
|
||||||
&:hover {
|
@media screen and (min-width: 2500px) {
|
||||||
color: darken($color-blue, 10);
|
font-size: 24px;
|
||||||
text-decoration: none;
|
line-height: 28px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// &:hover {
|
||||||
|
// color: darken($color-blue, 10);
|
||||||
|
// text-decoration: none;
|
||||||
|
// }
|
||||||
|
|
||||||
@media (max-width: 490px) {
|
@media (max-width: 490px) {
|
||||||
margin-left: 23px;
|
margin-left: 23px;
|
||||||
}
|
}
|
||||||
@ -248,11 +317,25 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
td.quantity-price{
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
width: 188px;
|
||||||
|
}
|
||||||
|
}
|
||||||
td.shipping-date {
|
td.shipping-date {
|
||||||
color: $color-gray2;
|
color: $color-gray2;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 28px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
@ -274,6 +357,16 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
text-decoration-line: line-through;
|
text-decoration-line: line-through;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 28px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
padding-left: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
@include mq(sm, max) {
|
@include mq(sm, max) {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
@ -284,8 +377,20 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
td.product-price{
|
td.product-price {
|
||||||
padding: 10px 5px 0 5px;
|
padding: 10px 5px 0 5px;
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
float: right;
|
||||||
|
padding: 26px 16px 0 0;
|
||||||
|
height: 37px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
td.item-remove {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
position: absolute;
|
||||||
|
right: 10px;
|
||||||
|
top: 11px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
td.quantity {
|
td.quantity {
|
||||||
@ -301,6 +406,12 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
width: max-content !important;
|
width: max-content !important;
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
float: left;
|
||||||
|
height: 34px;
|
||||||
|
margin: 28px auto 0;
|
||||||
|
}
|
||||||
|
|
||||||
@media (max-width: 490px) {
|
@media (max-width: 490px) {
|
||||||
margin-left: 84px !important;
|
margin-left: 84px !important;
|
||||||
}
|
}
|
||||||
@ -318,6 +429,10 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
color: $color-gray2;
|
color: $color-gray2;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
padding: 0 3px;
|
||||||
|
}
|
||||||
|
|
||||||
@include mq(lg, max) {
|
@include mq(lg, max) {
|
||||||
width: 24px !important;
|
width: 24px !important;
|
||||||
}
|
}
|
||||||
@ -332,7 +447,7 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
// padding: 1px 12px;
|
// padding: 1px 12px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.item-quantity-change-decrement{
|
.item-quantity-change-decrement {
|
||||||
width: 16px;
|
width: 16px;
|
||||||
height: 16px;
|
height: 16px;
|
||||||
margin-left: 11px;
|
margin-left: 11px;
|
||||||
@ -347,7 +462,7 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
&:before {
|
&:before {
|
||||||
content: "-";
|
content: "-";
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
background-color: #00C8FF;
|
background-color: #00c8ff;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -393,10 +508,19 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
color: $color-black;
|
color: $color-black;
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 28px;
|
||||||
|
line-height: 33px;
|
||||||
|
}
|
||||||
|
|
||||||
&.total-selling-price{
|
&.total-selling-price {
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
line-height: 19px;
|
line-height: 19px;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 28px;
|
||||||
|
line-height: 38px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -408,13 +532,15 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
}
|
}
|
||||||
|
|
||||||
.item-remove {
|
.item-remove {
|
||||||
@media (max-width: 490px) {
|
|
||||||
top: 0;
|
|
||||||
}
|
|
||||||
.icon::before {
|
.icon::before {
|
||||||
color: $color-gray4;
|
color: $color-gray4;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
color: $color-gray8;
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
}
|
}
|
||||||
@ -446,6 +572,15 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
padding: 0 16px;
|
padding: 0 16px;
|
||||||
}
|
}
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 48px;
|
||||||
|
line-height: 65px;
|
||||||
|
max-width: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
padding: 0 0 0 16px;
|
||||||
|
}
|
||||||
|
|
||||||
.srp-main-title {
|
.srp-main-title {
|
||||||
margin: 33px 0 12px;
|
margin: 33px 0 12px;
|
||||||
@ -455,6 +590,11 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
line-height: 33px;
|
line-height: 33px;
|
||||||
color: $color-black2;
|
color: $color-black2;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 48px;
|
||||||
|
line-height: 65px;
|
||||||
|
}
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
@ -465,6 +605,16 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 18px;
|
line-height: 18px;
|
||||||
margin: 0 0 10px;
|
margin: 0 0 10px;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
max-width: 34.5rem;
|
||||||
|
font-size: 28px;
|
||||||
|
line-height: 36px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
max-width: 17.32rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
button.shp-open-options {
|
button.shp-open-options {
|
||||||
@ -482,6 +632,11 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 28px;
|
||||||
|
line-height: 38px;
|
||||||
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: lighten($color-gray5, 5);
|
background-color: lighten($color-gray5, 5);
|
||||||
}
|
}
|
||||||
@ -496,6 +651,10 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
width: 280px;
|
width: 280px;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 343px;
|
||||||
|
}
|
||||||
|
|
||||||
@include mq(cstm, max) {
|
@include mq(cstm, max) {
|
||||||
width: calc(100vw - 32px);
|
width: calc(100vw - 32px);
|
||||||
}
|
}
|
||||||
@ -522,14 +681,6 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 19px;
|
line-height: 19px;
|
||||||
letter-spacing: 0.05em;
|
letter-spacing: 0.05em;
|
||||||
|
|
||||||
// &:hover {
|
|
||||||
// background-color: lighten($color-black, 5);
|
|
||||||
// }
|
|
||||||
|
|
||||||
// &:active {
|
|
||||||
// background-color: darken($color-black, 5);
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -558,7 +709,7 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
.blue {
|
.blue {
|
||||||
color: $color-black2 !important;
|
color: $color-black2 !important;
|
||||||
}
|
}
|
||||||
.gray{
|
.gray {
|
||||||
color: $color-gray8;
|
color: $color-gray8;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -613,13 +764,10 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
width: 100px;
|
width: 100px;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
|
||||||
// &:hover {
|
@media screen and (max-width: 1024px) {
|
||||||
// background-color: lighten($color-black, 5);
|
right: -36px;
|
||||||
// }
|
top: 28px;
|
||||||
|
}
|
||||||
// &:active {
|
|
||||||
// background-color: darken($color-black, 5);
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
small a {
|
small a {
|
||||||
@ -631,13 +779,13 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
color: $color-black2;
|
color: $color-black2;
|
||||||
margin-top: 7px;
|
margin-top: 7px;
|
||||||
|
|
||||||
&::after{
|
&::after {
|
||||||
content: "Não sei meu código postal";
|
content: "Não sei meu código postal";
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
line-height: 12px;
|
line-height: 12px;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
|
|
||||||
:hover{
|
:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -718,6 +866,10 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
width: 346px;
|
width: 346px;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
width: 688px;
|
||||||
|
}
|
||||||
|
|
||||||
.coupon-data {
|
.coupon-data {
|
||||||
#cart-link-coupon-add {
|
#cart-link-coupon-add {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
@ -733,6 +885,11 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
color: $color-black2;
|
color: $color-black2;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 28px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -744,15 +901,16 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
.coupon-column {
|
.coupon-column {
|
||||||
.coupon {
|
.coupon {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.link-coupon-add {
|
.link-coupon-add {
|
||||||
color: #303030;
|
font-family: $font-family-secundary;
|
||||||
|
color: $color-black2;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
|
line-height: 14px;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
.coupon-label{
|
.coupon-label {
|
||||||
margin-bottom: 4px;
|
margin-bottom: 4px;
|
||||||
}
|
}
|
||||||
.coupon-label label {
|
.coupon-label label {
|
||||||
@ -765,6 +923,10 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
color: $color-gray2;
|
color: $color-gray2;
|
||||||
cursor: none;
|
cursor: none;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
margin: 48px 0 4px 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.coupon-fields {
|
.coupon-fields {
|
||||||
@ -795,6 +957,14 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
width: 51%;
|
width: 51%;
|
||||||
margin-right: 7.4px;
|
margin-right: 7.4px;
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
padding: 0 0 0 12px;
|
||||||
|
margin-right: 0;
|
||||||
|
max-width: none;
|
||||||
|
width: 84.5%;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
@include mq(sm, max) {
|
@include mq(sm, max) {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -821,14 +991,6 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
width: 138px;
|
width: 138px;
|
||||||
}
|
}
|
||||||
|
|
||||||
// &:hover {
|
|
||||||
// background-color: lighten($color-black, 5);
|
|
||||||
// }
|
|
||||||
|
|
||||||
// &:active {
|
|
||||||
// background-color: darken($color-black, 5);
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -850,6 +1012,15 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
color: $color-black;
|
color: $color-black;
|
||||||
padding: 12px 0;
|
padding: 12px 0;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 28px;
|
||||||
|
line-height: 33px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
padding: 10px 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.info {
|
&.info {
|
||||||
@ -859,6 +1030,10 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
|
|
||||||
&.monetary {
|
&.monetary {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
width: 188px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -871,51 +1046,68 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 19px;
|
line-height: 19px;
|
||||||
color: $color-black;
|
color: $color-black;
|
||||||
// padding-top: 30px;
|
|
||||||
float: none;
|
float: none;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 36px;
|
||||||
|
line-height: 49px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
td.info{
|
td.info {
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
line-height: 25px;
|
line-height: 25px;
|
||||||
// padding-left: 17px;
|
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 36px;
|
||||||
|
line-height: 49px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
padding: 14px 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
td.monetary{
|
td.monetary {
|
||||||
padding-right: 0px;
|
padding-right: 0px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.Items{
|
.Items {
|
||||||
// border-top: 1px solid;
|
// border-top: 1px solid;
|
||||||
border-bottom: 1px solid;
|
border-bottom: 1px solid;
|
||||||
.info{
|
.info {
|
||||||
padding: 20px 0 10px 0 ;
|
padding: 20px 0 10px 0;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
float: none;
|
float: none;
|
||||||
}
|
}
|
||||||
.monetary{
|
.monetary {
|
||||||
padding-right: 0px ;
|
padding-right: 0px;
|
||||||
float: none;
|
float: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.Discounts{
|
.Discounts {
|
||||||
border-bottom: 1px solid;
|
border-bottom: 1px solid;
|
||||||
.info{
|
.info {
|
||||||
padding: 20px 0 10px 0 ;
|
padding: 20px 0 10px 0;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
float: none;
|
float: none;
|
||||||
}
|
}
|
||||||
.monetary{
|
.monetary {
|
||||||
padding-right: 0px ;
|
padding-right: 0px;
|
||||||
float: none;
|
float: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.coupon-data{
|
.coupon-data {
|
||||||
display: block !important;
|
display: block !important;
|
||||||
margin-top: 33px;
|
margin-top: 33px;
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
margin-top: 48.35px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-links-bottom {
|
.cart-links-bottom {
|
||||||
@ -940,6 +1132,11 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
margin-bottom: 14px;
|
margin-bottom: 14px;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 28px;
|
||||||
|
}
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
margin-bottom: 0px;
|
margin-bottom: 0px;
|
||||||
}
|
}
|
||||||
@ -952,6 +1149,16 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
color: $color-black2;
|
color: $color-black2;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
||||||
|
&#cart-choose-more-products.more.link-choose-more-products {
|
||||||
|
margin-right: 0;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
height: 156px;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 28px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -965,10 +1172,6 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
transition: ease-in 0.22s all;
|
transition: ease-in 0.22s all;
|
||||||
padding: 12px 19px;
|
padding: 12px 19px;
|
||||||
|
|
||||||
// &:hover {
|
|
||||||
// background-color: darken($color-green, 5);
|
|
||||||
// }
|
|
||||||
|
|
||||||
&:after {
|
&:after {
|
||||||
content: "finalizar compra";
|
content: "finalizar compra";
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
@ -980,6 +1183,11 @@ input#creditCardpayment-card-0Number.input.medium{
|
|||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
line-height: 19px;
|
line-height: 19px;
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 28px;
|
||||||
|
line-height: 38px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,12 +4,22 @@ body .container-main.container-order-form .orderform-template.active {
|
|||||||
margin-left: unset;
|
margin-left: unset;
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
float: right;
|
float: right;
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 100%;
|
||||||
|
padding: 0 16px;
|
||||||
|
margin-bottom: 70px;
|
||||||
|
}
|
||||||
|
|
||||||
.payment-submit-wrap{
|
.payment-submit-wrap{
|
||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.orderform-template-holder {
|
.orderform-template-holder {
|
||||||
width: 66.1132%;
|
width: 66.1132%;
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -17,6 +17,9 @@
|
|||||||
margin: 170px 0 32px 0;
|
margin: 170px 0 32px 0;
|
||||||
font-size: 0px;
|
font-size: 0px;
|
||||||
line-height: 0px;
|
line-height: 0px;
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
margin: 170px 0 22px 0;
|
||||||
|
}
|
||||||
|
|
||||||
&::after{
|
&::after{
|
||||||
content: "SEU CARRINHO ESTÁ VAZIO";
|
content: "SEU CARRINHO ESTÁ VAZIO";
|
||||||
@ -25,6 +28,16 @@
|
|||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
line-height: 33px;
|
line-height: 33px;
|
||||||
color: $color-black2;
|
color: $color-black2;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 48px;
|
||||||
|
line-height: 65px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 25px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -47,9 +60,10 @@
|
|||||||
width: 31.74%;
|
width: 31.74%;
|
||||||
padding: 15px 0;
|
padding: 15px 0;
|
||||||
|
|
||||||
&:hover {
|
@media screen and (max-width: 1024px) {
|
||||||
background: lighten($color-white, 5);
|
width: 30.31%;
|
||||||
}
|
}
|
||||||
|
|
||||||
&::before{
|
&::before{
|
||||||
content: "Continuar comprando";
|
content: "Continuar comprando";
|
||||||
font-family: $font-family-secundary;
|
font-family: $font-family-secundary;
|
||||||
@ -60,6 +74,11 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
color: $color-black2;
|
color: $color-black2;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 28px;
|
||||||
|
line-height: 33px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -12,10 +12,17 @@ footer .footerCheckout__wrapper {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
margin: auto auto 0 auto;
|
margin: auto auto 0 auto;
|
||||||
border-top: 1px solid $color-black2;
|
border-top: 1px solid $color-black2;
|
||||||
.container{
|
|
||||||
|
.container {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
width: 94.9734%;
|
width: 94.9734%;
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: baseline;
|
||||||
|
width: 97%;
|
||||||
|
gap: 16px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
footer .footerCheckout__prateleira,
|
footer .footerCheckout__prateleira,
|
||||||
@ -23,14 +30,20 @@ header {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
header{
|
header {
|
||||||
border-bottom: 1px solid $color-black2;
|
border-bottom: 1px solid $color-black2;
|
||||||
padding: 29px 0;
|
padding: 29px 0;
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
padding: 16px 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.headerCheckout__safeBuy{
|
.headerCheckout__safeBuy {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 8px;
|
gap: 8px;
|
||||||
height: 15px;
|
height: 15px;
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
height: 33px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
@ -38,73 +51,103 @@ body {
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
min-height: 100% !important;
|
min-height: 100% !important;
|
||||||
padding-top: 0 !important;
|
padding-top: 0 !important;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
.PaymentCardNumber input {
|
.SecurityEnvironmentIcon {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.view {
|
||||||
|
display: block !important;
|
||||||
|
}
|
||||||
|
.vtex-omnishipping-1-x-leanShippingOptionActive {
|
||||||
|
background: $color-gray12 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
#creditCardpayment-card-0Number {
|
||||||
width: 64%;
|
width: 64%;
|
||||||
height: 25px;
|
height: 25px;
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 97%;
|
||||||
|
height: 33px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
p.PaymentCardHolderDocument.input.text.required.mask{
|
div.row-fluid.orderform-template.span12.active{
|
||||||
|
min-height: 580px;
|
||||||
|
}
|
||||||
|
p.PaymentCardHolderDocument.input.text.required.mask {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
.PaymentInstallments select{
|
.PaymentInstallments select {
|
||||||
width: 68%;
|
width: 68%;
|
||||||
}
|
}
|
||||||
input#creditCardpayment-card-0Name.input-medium{
|
input#creditCardpayment-card-0Name.input-medium {
|
||||||
width: 34%;
|
width: 34%;
|
||||||
height: 25px;
|
height: 25px;
|
||||||
}
|
}
|
||||||
.input#creditCardpayment-card-0Code.input-mini{
|
.input#creditCardpayment-card-0Code.input-mini {
|
||||||
width: 16%;
|
width: 16%;
|
||||||
height: 25px;
|
height: 25px;
|
||||||
}
|
}
|
||||||
#ship-postalCode{
|
#ship-postalCode {
|
||||||
border: 1px solid $color-gray8;
|
border: 1px solid $color-gray8;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#find-pickups-manualy-button-denied{
|
#find-pickups-manualy-button-denied {
|
||||||
color: $color-black2;
|
color: $color-black2;
|
||||||
outline: none;
|
outline: none;
|
||||||
&:hover{
|
&:hover {
|
||||||
background: $color-white;
|
background: $color-white;
|
||||||
color: $color-black2;
|
color: $color-black2;
|
||||||
}
|
}
|
||||||
&:active{
|
&:active {
|
||||||
background: $color-white;
|
background: $color-white;
|
||||||
color: $color-black2;
|
color: $color-black2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#payment-data-submit{
|
#payment-data-submit {
|
||||||
i.icon-lock{
|
i.icon-lock {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
tbody.totalizers-list{
|
p.input.ship-postalCode.required.text {
|
||||||
tr.srp-summary-result.hide{
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 75%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
tbody.totalizers-list {
|
||||||
|
tr.srp-summary-result.hide {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
div.cart-fixed.cart-fixed-transition.affix-top{
|
div.cart-fixed.cart-fixed-transition.affix-top {
|
||||||
.Items{
|
.Items {
|
||||||
border-top: 1px solid $color-gray10;
|
border-top: 1px solid $color-gray10;
|
||||||
border-bottom: 1px solid $color-gray10;
|
border-bottom: 1px solid $color-gray10;
|
||||||
.info{
|
.info {
|
||||||
padding: 26px 0 !important;
|
padding: 26px 0 !important;
|
||||||
padding-left: 17px !important;
|
padding-left: 17px !important;
|
||||||
float: none;
|
float: none;
|
||||||
}
|
}
|
||||||
.monetary{
|
.monetary {
|
||||||
padding-right: 17px !important;
|
padding-right: 17px !important;
|
||||||
float: none;
|
float: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.Discounts{
|
.Discounts {
|
||||||
border-bottom: 1px solid $color-gray10;
|
border-bottom: 1px solid $color-gray10;
|
||||||
.info{
|
.info {
|
||||||
padding: 26px 0 !important;
|
padding: 26px 0 !important;
|
||||||
padding-left: 17px !important;
|
padding-left: 17px !important;
|
||||||
float: none;
|
float: none;
|
||||||
}
|
}
|
||||||
.monetary{
|
.monetary {
|
||||||
padding-right: 17px !important;
|
padding-right: 17px !important;
|
||||||
float: none;
|
float: none;
|
||||||
}
|
}
|
||||||
@ -115,33 +158,33 @@ body {
|
|||||||
padding-top: 30px;
|
padding-top: 30px;
|
||||||
padding-bottom: 0px;
|
padding-bottom: 0px;
|
||||||
}
|
}
|
||||||
td.info{
|
td.info {
|
||||||
padding-left: 17px;
|
padding-left: 17px;
|
||||||
}
|
}
|
||||||
td.monetary{
|
td.monetary {
|
||||||
padding-right: 17px;
|
padding-right: 17px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
div.span5.totalizers.summary-totalizers.cart-totalizers.pull-right{
|
div.span5.totalizers.summary-totalizers.cart-totalizers.pull-right {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
button#payment-data-submit.submit.btn.btn-success.btn-large.btn-block{
|
}
|
||||||
margin-top: 47px;
|
button#payment-data-submit.submit.btn.btn-success.btn-large.btn-block {
|
||||||
}
|
margin-top: 47px;
|
||||||
}
|
}
|
||||||
div.step.accordion-group.client-profile-data {
|
div.step.accordion-group.client-profile-data {
|
||||||
.client-profile-email{
|
.client-profile-email {
|
||||||
margin-bottom: 6px;
|
margin-bottom: 6px;
|
||||||
}
|
}
|
||||||
.client-profile-summary{
|
.client-profile-summary {
|
||||||
span{
|
span {
|
||||||
margin-bottom: 6px;
|
margin-bottom: 6px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
span{
|
span {
|
||||||
font-size: 0;
|
font-size: 0;
|
||||||
line-height: 0;
|
line-height: 0;
|
||||||
&::after{
|
&::after {
|
||||||
content: "Identificação";
|
content: "Identificação";
|
||||||
font-family: $font-family-secundary;
|
font-family: $font-family-secundary;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
@ -155,14 +198,14 @@ body {
|
|||||||
span.email,
|
span.email,
|
||||||
span.name,
|
span.name,
|
||||||
span.tel,
|
span.tel,
|
||||||
span.newsletter-text{
|
span.newsletter-text {
|
||||||
&::after{
|
&::after {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
span.email,
|
span.email,
|
||||||
span.name,
|
span.name,
|
||||||
span.tel{
|
span.tel {
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
@ -170,7 +213,7 @@ body {
|
|||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
color: $color-gray2;
|
color: $color-gray2;
|
||||||
}
|
}
|
||||||
span.newsletter-text{
|
span.newsletter-text {
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
@ -179,27 +222,17 @@ body {
|
|||||||
color: $color-gray9;
|
color: $color-gray9;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// form.form-page.client-pre-email.anim-death.anim-current{
|
|
||||||
// span{
|
|
||||||
// div#client-profile-data.span6.client-profile-data span{
|
|
||||||
// font-size: 20px;
|
|
||||||
// line-height: 23px;
|
|
||||||
// }
|
|
||||||
// &::after{
|
|
||||||
// display: none;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
a#payment-group-creditCardPaymentGroup.payment-group-item,
|
a#payment-group-creditCardPaymentGroup.payment-group-item,
|
||||||
a#payment-group-bankInvoicePaymentGroup.payment-group-item {
|
a#payment-group-bankInvoicePaymentGroup.payment-group-item {
|
||||||
display: block;
|
display: block;
|
||||||
|
|
||||||
}
|
}
|
||||||
.payment-group-list-btn{
|
.payment-group-list-btn {
|
||||||
width: 105%;
|
width: 105%;
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
}
|
}
|
||||||
@ -226,10 +259,180 @@ body {
|
|||||||
.container-order-form,
|
.container-order-form,
|
||||||
.container-cart {
|
.container-cart {
|
||||||
width: 80%;
|
width: 80%;
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.row-fluid .full-cart.active,
|
||||||
|
.row-fluid .orderform-template.active {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.row-fluid {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
#client-profile-data {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 100%;
|
||||||
|
padding: 0 16px;
|
||||||
|
|
||||||
|
span.help.error {
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 14px;
|
||||||
|
&::after {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
p.client-email.input.text.required {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#client-email {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 98.5%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
p.client-first-name.input.pull-left.text.required {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 50%;
|
||||||
|
margin-right: 0.5%;
|
||||||
|
}
|
||||||
|
#client-first-name {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 95.7%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
p.client-last-name.input.pull-left.text.required {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 49.5%;
|
||||||
|
}
|
||||||
|
#client-last-name {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 96.9%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
p.client-document.input.pull-left.text.required.mask {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 50%;
|
||||||
|
margin-right: 0.5%;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
#client-document {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 95.7%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
p.client-phone.input.pull-left.text.required.mask {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 49.5%;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
#client-phone {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 96.9%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
p.newsletter {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#shipping-data {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 100%;
|
||||||
|
padding: 0 16px;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
div.accordion-inner.shipping-container {
|
||||||
|
div.box-step {
|
||||||
|
#postalCode-finished-loading {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 33%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
p.input.ship-postalCode.required.text {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
#ship-postalCode {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
max-width: 98.5%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
div.vtex-omnishipping-1-x-address {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
p.input.ship-number.required.text {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#payment-data {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 100%;
|
||||||
|
padding: 0 16px;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
div.step.accordion-group.store-country-BRA.active {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 96.4%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.container-cart {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.row-fluid .full-cart.active{
|
.row-fluid .full-cart.active {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
|
|
||||||
|
.row-fluid.summary {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.span5.totalizers.summary-totalizers.cart-totalizers.pull-right {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 100%;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0 16px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.clearfix.pull-right.cart-links.cart-links-bottom.hide {
|
||||||
|
width: 97%;
|
||||||
|
padding: 0 16px;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
width: 34.4%;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
margin-bottom: 25px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-success {
|
.btn-success {
|
||||||
@ -251,12 +454,17 @@ body {
|
|||||||
margin: 17px 0;
|
margin: 17px 0;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 48px;
|
||||||
|
line-height: 65px;
|
||||||
|
}
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
margin-left: 30px;
|
margin-left: 30px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#cart-title{
|
#cart-title {
|
||||||
display: block !important;
|
// display: block !important;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
line-height: 33px;
|
line-height: 33px;
|
||||||
@ -265,8 +473,16 @@ body {
|
|||||||
margin: 16px 0;
|
margin: 16px 0;
|
||||||
letter-spacing: 0.05em;
|
letter-spacing: 0.05em;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 48px;
|
||||||
|
line-height: 65px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#orderform-title {
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
margin: 16px 0 16px 16px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.dropdown {
|
.dropdown {
|
||||||
&__content {
|
&__content {
|
||||||
|
@ -20,6 +20,11 @@
|
|||||||
text-transform: capitalize;
|
text-transform: capitalize;
|
||||||
width: 33.33%;
|
width: 33.33%;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 27px;
|
||||||
|
}
|
||||||
|
|
||||||
&::after{
|
&::after{
|
||||||
content: ".";
|
content: ".";
|
||||||
}
|
}
|
||||||
@ -51,6 +56,10 @@
|
|||||||
width: 10.8%;
|
width: 10.8%;
|
||||||
margin-right: 0px
|
margin-right: 0px
|
||||||
}
|
}
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 11.8%;
|
||||||
|
margin-right: 1.6%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.footer-imgs-vtexpci{
|
.footer-imgs-vtexpci{
|
||||||
width: 84.4%;
|
width: 84.4%;
|
||||||
@ -73,6 +82,11 @@
|
|||||||
width: 33.33%;
|
width: 33.33%;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
justify-content: normal;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
.Link1{
|
.Link1{
|
||||||
justify-content: end;
|
justify-content: end;
|
||||||
|
|
||||||
@ -103,6 +117,11 @@
|
|||||||
line-height: 12px;
|
line-height: 12px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
span {
|
span {
|
||||||
margin-right: 8px;
|
margin-right: 8px;
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,9 @@
|
|||||||
.container {
|
.container {
|
||||||
width: 79.53125%;
|
width: 79.53125%;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 97%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
&__wrapper {
|
&__wrapper {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@ -16,9 +19,12 @@
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
grid-template-columns: 2fr 1fr 2fr;
|
grid-template-columns: 2fr 1fr 2fr;
|
||||||
width: 439px;
|
width: 439px;
|
||||||
/* border: 1px solid rgb(59, 51, 51); */
|
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
width: 1078px;
|
||||||
|
}
|
||||||
|
|
||||||
.li-volta-borda-1,
|
.li-volta-borda-1,
|
||||||
.li-volta-borda-2,
|
.li-volta-borda-2,
|
||||||
.li-volta-centro {
|
.li-volta-centro {
|
||||||
@ -34,6 +40,11 @@
|
|||||||
margin-bottom: 9px;
|
margin-bottom: 9px;
|
||||||
font-family: $font-family-secundary;
|
font-family: $font-family-secundary;
|
||||||
color: $color-black2;
|
color: $color-black2;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 28px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.p-bola1,
|
.p-bola1,
|
||||||
.p-bola2,
|
.p-bola2,
|
||||||
@ -43,6 +54,11 @@
|
|||||||
width: 10px;
|
width: 10px;
|
||||||
height: 10px;
|
height: 10px;
|
||||||
background-color: $color-white;
|
background-color: $color-white;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
width: 22px;
|
||||||
|
height: 22px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.div-itens{
|
.div-itens{
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -75,6 +91,12 @@
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
width: 97%;
|
width: 97%;
|
||||||
transform: translateY(-7px);
|
transform: translateY(-7px);
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
transform: translateY(-12px);
|
||||||
|
left: 21.6%;
|
||||||
|
width: 100.5%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.p-borda-2{
|
.p-borda-2{
|
||||||
border-top: 1.5px solid black;
|
border-top: 1.5px solid black;
|
||||||
@ -84,6 +106,12 @@
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
width: 100.8%;
|
width: 100.8%;
|
||||||
transform: translateY(-7px);
|
transform: translateY(-7px);
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
transform: translateY(-12px);
|
||||||
|
right: 17.8%;
|
||||||
|
width: 104.2%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.active{
|
.active{
|
||||||
background: $color-black2;
|
background: $color-black2;
|
||||||
@ -96,6 +124,11 @@
|
|||||||
img {
|
img {
|
||||||
height: 37.14px;
|
height: 37.14px;
|
||||||
width: auto;
|
width: auto;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
min-width: 382px;
|
||||||
|
height: 91.2px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -110,6 +143,11 @@
|
|||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
color: $color-black;
|
color: $color-black;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 33px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
i {
|
i {
|
||||||
|
@ -6,6 +6,13 @@
|
|||||||
.footerCheckout__prateleira{
|
.footerCheckout__prateleira{
|
||||||
width: 79.38%;
|
width: 79.38%;
|
||||||
margin-bottom: 54px;
|
margin-bottom: 54px;
|
||||||
|
display: none;
|
||||||
|
margin: 0 9.7% 54px auto;
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px) {
|
||||||
|
width: 96.5%;
|
||||||
|
margin: 0 1% 54px auto;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.footerCheckout__shelfList{
|
.footerCheckout__shelfList{
|
||||||
margin: 0;
|
margin: 0;
|
||||||
@ -29,6 +36,11 @@
|
|||||||
line-height: 38px;
|
line-height: 38px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: $color-black2;
|
color: $color-black2;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 48px;
|
||||||
|
line-height: 76px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.footerCheckout__shelfList-name{
|
.footerCheckout__shelfList-name{
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
@ -40,6 +52,10 @@
|
|||||||
color: $color-black2;
|
color: $color-black2;
|
||||||
margin: 20px 0;
|
margin: 20px 0;
|
||||||
width: 95%;
|
width: 95%;
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 26px;
|
||||||
|
line-height: 35px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.footerCheckout__shelfList-skus-wrapper{
|
.footerCheckout__shelfList-skus-wrapper{
|
||||||
.footerCheckout__shelfList-skus{
|
.footerCheckout__shelfList-skus{
|
||||||
@ -58,6 +74,11 @@
|
|||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
line-height: 18px;
|
line-height: 18px;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 26px;
|
||||||
|
line-height: 35px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
display: flex;
|
display: flex;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
@ -89,6 +110,11 @@
|
|||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
line-height: 18px;
|
line-height: 18px;
|
||||||
|
|
||||||
|
@media screen and (min-width: 2500px) {
|
||||||
|
font-size: 26px;
|
||||||
|
line-height: 35px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -26,6 +26,7 @@ $color-gray8: #C4C4C4;
|
|||||||
$color-gray9: #808080;
|
$color-gray9: #808080;
|
||||||
$color-gray10: #E0E0E0;
|
$color-gray10: #E0E0E0;
|
||||||
$color-gray11: #828282;
|
$color-gray11: #828282;
|
||||||
|
$color-gray12: #F2F2F2;
|
||||||
|
|
||||||
$color-blue: #4267b2;
|
$color-blue: #4267b2;
|
||||||
$color-blue2: #00C8FF;
|
$color-blue2: #00C8FF;
|
||||||
|
Loading…
Reference in New Issue
Block a user