forked from M3-Academy/m3-academy-template-checkout
feat(style) mudança da fonte do total
This commit is contained in:
parent
30555d9098
commit
456a50ac5f
@ -1,3 +1,4 @@
|
|||||||
|
/* eslint-disable prettier/prettier */
|
||||||
import { isSmallerThen768 } from "../helpers/MediasMatch";
|
import { isSmallerThen768 } from "../helpers/MediasMatch";
|
||||||
import { alterarTamanhoImagemSrcVtex } from "../helpers/vtexUtils";
|
import { alterarTamanhoImagemSrcVtex } from "../helpers/vtexUtils";
|
||||||
import waitForEl from "../helpers/waitForEl";
|
import waitForEl from "../helpers/waitForEl";
|
||||||
@ -32,6 +33,7 @@ export default class CheckoutUI {
|
|||||||
toggleFooterDropdown(event) {
|
toggleFooterDropdown(event) {
|
||||||
event.target.classList.toggle("closed");
|
event.target.classList.toggle("closed");
|
||||||
|
|
||||||
|
// eslint-disable-next-line prettier/prettier
|
||||||
event.target.nextElementSibling.classList.toggle(
|
event.target.nextElementSibling.classList.toggle(
|
||||||
"dropdown__content--closed"
|
"dropdown__content--closed"
|
||||||
);
|
);
|
||||||
@ -39,6 +41,7 @@ export default class CheckoutUI {
|
|||||||
|
|
||||||
init() {
|
init() {
|
||||||
this.configThumb();
|
this.configThumb();
|
||||||
|
this.removerTitulo();
|
||||||
waitForEl(".product-image img", this.resizeImages.bind(this));
|
waitForEl(".product-image img", this.resizeImages.bind(this));
|
||||||
$(window).on("orderFormUpdated.vtex", this.resizeImages.bind(this));
|
$(window).on("orderFormUpdated.vtex", this.resizeImages.bind(this));
|
||||||
}
|
}
|
||||||
@ -56,6 +59,7 @@ export default class CheckoutUI {
|
|||||||
resizeImages() {
|
resizeImages() {
|
||||||
$(".product-image img").each((i, el) => {
|
$(".product-image img").each((i, el) => {
|
||||||
const $el = $(el);
|
const $el = $(el);
|
||||||
|
// eslint-disable-next-line prettier/prettier
|
||||||
$el.attr(
|
$el.attr(
|
||||||
"src",
|
"src",
|
||||||
alterarTamanhoImagemSrcVtex(
|
alterarTamanhoImagemSrcVtex(
|
||||||
@ -66,4 +70,25 @@ export default class CheckoutUI {
|
|||||||
);
|
);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async removerTitulo(){
|
||||||
|
let orderForm = await window.vtexjs.Checkout.getOrderForm();
|
||||||
|
let items = orderForm.items.length;
|
||||||
|
let idCart = document.querySelector("#cart-title");
|
||||||
|
|
||||||
|
$(window).on("orderFormUpdated.vtex", (evt, of) => {
|
||||||
|
if(of.items.length <= 0){
|
||||||
|
idCart.style.display = "none";
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
idCart.style.display = "block";
|
||||||
|
}
|
||||||
|
if( window.location.hash === '#/shipping' || window.location.hash === '#/payment' ){
|
||||||
|
idCart.style.display = "none";
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if(items === 0){
|
||||||
|
idCart.style.display = "none";
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,40 +1,228 @@
|
|||||||
|
/* eslint-disable no-unused-vars */
|
||||||
|
/* eslint-disable prettier/prettier */
|
||||||
import { waitElement } from "m3-utils";
|
import { waitElement } from "m3-utils";
|
||||||
|
|
||||||
export default class Footer {
|
export default class Footer {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.init();
|
this.init();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
async init() {
|
async init() {
|
||||||
await this.selectors();
|
await this.selectors();
|
||||||
// this.onUpdate();
|
this.onUpdate();
|
||||||
|
this.mostraFooter();
|
||||||
|
this.addCarrossel();
|
||||||
|
this.titles();
|
||||||
|
this.events();
|
||||||
}
|
}
|
||||||
|
|
||||||
async selectors() {
|
async selectors() {
|
||||||
//Para verificar se o carrinho está vazio e remover a prateleira de produtos:
|
//Para verificar se o carrinho está vazio e remover a prateleira de produtos:
|
||||||
// vocês devem olhar a doc fornecida no Desafio para aprender a usar o waitElement
|
// vocês devem olhar a doc fornecida no Desafio para aprender a usar o waitElement
|
||||||
|
this.footerPratileira = await waitElement(".footerCheckout__prateleira");
|
||||||
|
this.footerAddress = await waitElement(".footerCheckout__address");
|
||||||
|
this.footerStamps = await waitElement(".footerCheckout__stamps");
|
||||||
|
this.footerDevelopedBy = await waitElement(".footerCheckout__developedBy");
|
||||||
this.checkoutVazio = await waitElement(".empty-cart-content");
|
this.checkoutVazio = await waitElement(".empty-cart-content");
|
||||||
|
this.cartTitulo = await waitElement("#cart-title");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
events() {
|
||||||
|
window.addEventListener("hashchange", () => {
|
||||||
|
this.onUpdate();
|
||||||
|
if (window.location.hash == "#/cart" && this.checkoutVazio.style.display == "none") {
|
||||||
|
this.mostraFooter.style.display = "flex";
|
||||||
|
|
||||||
|
}
|
||||||
|
if (window.location.hash != "#/cart") {
|
||||||
|
this.mostraFooter.style.display = "block";
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
onUpdate() {
|
onUpdate() {
|
||||||
//Função qeu fará a verificação se o carrinho está vazio para remover a prateleira de produtos:
|
//Função qeu fará a verificação se o carrinho está vazio para remover a prateleira de produtos:
|
||||||
// vocês devem olhar a doc fornecida no Desafio para aprender a usar a MutationObserver
|
// vocês devem olhar a doc fornecida no Desafio para aprender a usar a MutationObserver
|
||||||
// sempre que o carrinho estiver vazio o elemento chcekoutVazio fica display: none e isso pode ser usado como atributo para a MutationObserver
|
// sempre que o carrinho estiver vazio o elemento chcekoutVazio fica display: none e isso pode ser usado como atributo para a MutationObserver
|
||||||
let target = this.checkoutVazio;
|
let target = this.checkoutVazio;
|
||||||
|
let prateleiraItens = this.footerPratileira;
|
||||||
|
let titulo = this.cartTitulo;
|
||||||
|
if (target.style.display == "none" && window.location.hash == "#/cart") {
|
||||||
|
titulo.style.display = "block";
|
||||||
|
|
||||||
|
|
||||||
|
} else {
|
||||||
|
titulo.style.display = "none";
|
||||||
|
prateleiraItens.style.display = "none";
|
||||||
|
}
|
||||||
|
|
||||||
let config = { childList: true, attributes: true };
|
let config = { childList: true, attributes: true };
|
||||||
let observer = new MutationObserver((mutations) => {
|
let observer = new MutationObserver((mutations) => {
|
||||||
|
|
||||||
|
|
||||||
mutations.forEach(function (mutation) {
|
mutations.forEach(function (mutation) {
|
||||||
console.log(mutation.type);
|
|
||||||
|
if (target.style.display != "none") {
|
||||||
|
|
||||||
|
prateleiraItens.style.display = "none";
|
||||||
|
titulo.style.display = "none";
|
||||||
|
} else {
|
||||||
|
prateleiraItens.style.display = "flex";
|
||||||
|
|
||||||
|
titulo.style.display = "block";
|
||||||
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
observer.observe(target, config);
|
observer.observe(target, config);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
mostraFooter() {
|
||||||
|
let pratileira = this.footerPratileira;
|
||||||
|
pratileira.innerHTML = `
|
||||||
|
|
||||||
|
<h2 class="text-foot"> Você Também pode gosta:</h2>
|
||||||
|
<ul class=" container-carrossel-item"></ul>
|
||||||
|
|
||||||
|
`
|
||||||
|
|
||||||
|
fetch("https://m3academy.myvtex.com/api/catalog_system/pub/products/search/?fq=productClusterIds:319")
|
||||||
|
|
||||||
|
.then((Response) => Response.json())
|
||||||
|
.then(function (data) {
|
||||||
|
return data.map(function (produto) {
|
||||||
|
|
||||||
|
let li = document.createElement("li")
|
||||||
|
li.setAttribute("id", produto.productId)
|
||||||
|
li.innerHTML = `
|
||||||
|
|
||||||
|
|
||||||
|
<img class="color-img" src = " ${produto.items[0].images[0].imageUrl}" alt = Imagem "${produto.productName}" />
|
||||||
|
|
||||||
|
<p class="numeProduct" >${produto.productName}</p>
|
||||||
|
<div class ="container-tamanho-cores">
|
||||||
|
|
||||||
|
${produto.items.map((name) => {
|
||||||
|
return `<a name="tamanho" class="tamanho"> ${name.name}
|
||||||
|
|
||||||
|
</a>` }).join(" ")}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<button class="bottons"> ver produto</button>
|
||||||
|
|
||||||
|
|
||||||
|
`
|
||||||
|
pratileira.children[1].appendChild(li)
|
||||||
|
// console.log(pratileira)
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
}).then(() => { this.addCarrossel();});
|
||||||
|
|
||||||
|
|
||||||
|
this.footerStamps.innerHTML = `
|
||||||
|
|
||||||
|
<li class="footerCheckout__listImage ">
|
||||||
|
<img src =" https://agenciamagma.vteximg.com.br/arquivos/masterCardM3Academy.png">
|
||||||
|
</li>
|
||||||
|
<li class="footerCheckout__listImage">
|
||||||
|
<img src =" https://agenciamagma.vteximg.com.br/arquivos/visaM3Academy.png">
|
||||||
|
</li>
|
||||||
|
<li class="footerCheckout__listImage">
|
||||||
|
<img src =" https://agenciamagma.vteximg.com.br/arquivos/amexM3Academy.png">
|
||||||
|
</li>
|
||||||
|
<li class="footerCheckout__listImage">
|
||||||
|
<img src =" https://agenciamagma.vteximg.com.br/arquivos/eloM3Academy.png">
|
||||||
|
</li>
|
||||||
|
<li class="footerCheckout__listImage">
|
||||||
|
<img src =" https://agenciamagma.vteximg.com.br/arquivos/hiperCardM3Academy.png">
|
||||||
|
</li>
|
||||||
|
<li class="footerCheckout__listImage">
|
||||||
|
<img src =" https://agenciamagma.vteximg.com.br/arquivos/payPalM3Academy.png">
|
||||||
|
</li>
|
||||||
|
<li class="footerCheckout__listImage">
|
||||||
|
<img src =" https://agenciamagma.vteximg.com.br/arquivos/boletoM3Academy.png">
|
||||||
|
</li>
|
||||||
|
<li><span class=" footerCheckout__stamps__divider"></span></li>
|
||||||
|
<li class="footerCheckout__listImage">
|
||||||
|
<img src =" https://agenciamagma.vteximg.com.br/arquivos/vtexPCIM3Academy.png">
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
`;
|
||||||
|
|
||||||
|
|
||||||
|
this.footerDevelopedBy.innerHTML = `
|
||||||
|
|
||||||
|
<li class=" list ">
|
||||||
|
<span>Power By</span>
|
||||||
|
<img class="vtex-rigth1" src=" https://agenciamagma.vteximg.com.br/arquivos/logoVTEXM3Academy.png" />
|
||||||
|
|
||||||
|
<span>Developed By</span>
|
||||||
|
<img class="vtex-rigth2" src=" https://agenciamagma.vteximg.com.br/arquivos/logoM3M3Academy.png" />
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
|
||||||
|
titles(){
|
||||||
|
const test = document.querySelector(".empty-cart-title");
|
||||||
|
test.innerHTML = `
|
||||||
|
<h2> Seu Carrinho está vazio. </h2>`
|
||||||
|
|
||||||
|
const vv = document.getElementById("cart-choose-products");
|
||||||
|
vv.innerHTML = `
|
||||||
|
<h2 > Continuar comprando. </h2>`
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
async addCarrossel() {
|
async addCarrossel() {
|
||||||
const elemento = await waitElement("#my-element");
|
const elemento = await waitElement(".container-carrossel-item");
|
||||||
$(elemento).slick({
|
$(elemento).slick({
|
||||||
|
|
||||||
|
infinite: false,
|
||||||
|
arrows: true,
|
||||||
|
variabreWidth: true,
|
||||||
slidesToShow: 4,
|
slidesToShow: 4,
|
||||||
slidesToScroll: 1,
|
slidesToScroll: 1,
|
||||||
|
responsive: [
|
||||||
|
|
||||||
|
{
|
||||||
|
breakpoint: 1025,
|
||||||
|
settings:
|
||||||
|
{slidesToShow: 3,
|
||||||
|
slidesToScroll: 1,}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
breakpoint:376,
|
||||||
|
settings:
|
||||||
|
{slidesToShow: 2,
|
||||||
|
slidesToScroll: 1,}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,21 +1,219 @@
|
|||||||
// import waitForEl from "../helpers/waitForEl";
|
/* eslint-disable prettier/prettier */
|
||||||
import { waitElement } from "m3-utils";
|
import { waitElement } from "m3-utils";
|
||||||
|
|
||||||
export default class Header {
|
export default class Header {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.init();
|
this.init();
|
||||||
|
this.progressBarHTML();
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async init() {
|
async init() {
|
||||||
await this.selectors();
|
await this.selectors();
|
||||||
console.log(this.item);
|
this.progressBarHTML();
|
||||||
|
await this.progressBarProgress();
|
||||||
|
this.Carrinho();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async selectors() {
|
async selectors() {
|
||||||
this.item = await waitElement("#my-element", {
|
this.header = await waitElement(".headerCheckout");
|
||||||
//#my-element pode ser a class ou o id do elemento html qeu vocÊ quer pegar
|
console.log(this.header);
|
||||||
timeout: 5000, // vai esperar 5 segundos antes de rejeitar a promise
|
this.progressBar = await waitElement("#progressBar");
|
||||||
interval: 1000, // vai verificar a cada 1 segundo se o elemento existe
|
console.log(this.progressBar);
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
// Primeira parte para coloca o html na page
|
||||||
|
progressBarHTML() {
|
||||||
|
// eslint-disable-next-line no-empty
|
||||||
|
if (this.progressBar && window.innerWidth > 1024) {
|
||||||
|
this.progressBar.innerHTML = `
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li><div class="containerLi"><div><p class="progress-bar-text">Meu Carrinho</p><p id="progress-bar-circle-1" class="progress-bar-circle-1"></p><p class= "progress-bar-line-1"></p></div></div>
|
||||||
|
</li>
|
||||||
|
<li class="central"><div class="containerLi"><div><p class="progress-bar-text">Meus Dados</p><p id="progress-bar-circle-2" class="progress-bar-circle-2"></p></div></div>
|
||||||
|
</li>
|
||||||
|
<li><div class="containerLi"><div><p class="progress-bar-text">Pagamento</p><p id="progress-bar-circle-3" class="progress-bar-circle-3"></p><p class= "progress-bar-line-2"></p></div></div>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.progressBar && window.innerWidth <= 1024) {
|
||||||
|
this.progressBar.innerHTML = ``;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
circle1(li) {
|
||||||
|
if (li.children[0].children[0].children["progress-bar-circle-1"]) {
|
||||||
|
li.children[0].children[0].children["progress-bar-circle-1"].classList.add("active");
|
||||||
|
}
|
||||||
|
if (li.children[0].children[0].children["progress-bar-circle-2"]) {
|
||||||
|
if (
|
||||||
|
li.children[0].children[0].children["progress-bar-circle-2"].classList.contains(
|
||||||
|
"active"
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
li.children[0].children[0].children["progress-bar-circle-2"].classList.remove(
|
||||||
|
"active"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (li.children[0].children[0].children["progress-bar-circle-3"]) {
|
||||||
|
if (
|
||||||
|
li.children[0].children[0].children["progress-bar-circle-3"].classList.contains(
|
||||||
|
"active"
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
li.children[0].children[0].children["progress-bar-circle-3"].classList.remove(
|
||||||
|
"active"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
circle2(li) {
|
||||||
|
if (li.children[0].children[0].children["progress-bar-circle-1"]) {
|
||||||
|
if (
|
||||||
|
li.children[0].children[0].children["progress-bar-circle-1"].classList.contains(
|
||||||
|
"active"
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
li.children[0].children[0].children["progress-bar-circle-1"].classList.remove(
|
||||||
|
"active"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (li.children[0].children[0].children["progress-bar-circle-2"]) {
|
||||||
|
li.children[0].children[0].children["progress-bar-circle-2"].classList.add("active");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (li.children[0].children[0].children["progress-bar-circle-3"]) {
|
||||||
|
if (
|
||||||
|
li.children[0].children[0].children["progress-bar-circle-3"].classList.contains(
|
||||||
|
"active"
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
li.children[0].children[0].children["progress-bar-circle-3"].classList.remove(
|
||||||
|
"active"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
circle3(li) {
|
||||||
|
if (li.children[0].children[0].children["progress-bar-circle-1"]) {
|
||||||
|
if (
|
||||||
|
li.children[0].children[0].children["progress-bar-circle-1"].classList.contains(
|
||||||
|
"active"
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
li.children[0].children[0].children["progress-bar-circle-1"].classList.remove(
|
||||||
|
"active"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (li.children[0].children[0].children["progress-bar-circle-2"]) {
|
||||||
|
if (
|
||||||
|
li.children[0].children[0].children["progress-bar-circle-2"].classList.contains(
|
||||||
|
"active"
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
li.children[0].children[0].children["progress-bar-circle-2"].classList.remove(
|
||||||
|
"active"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (li.children[0].children[0].children["progress-bar-circle-3"]) {
|
||||||
|
li.children[0].children[0].children["progress-bar-circle-3"].classList.add("active");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async progressBarProgress() {
|
||||||
|
|
||||||
|
if (this.progressBar && window.innerWidth > 1024) {
|
||||||
|
const progressBarLista = document.querySelectorAll("#progressBar ul li");
|
||||||
|
progressBarLista.forEach((li) => {
|
||||||
|
|
||||||
|
if (window.location.href === "https://m3academy.myvtex.com/checkout/#/cart") {
|
||||||
|
this.circle1(li);
|
||||||
|
}
|
||||||
|
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"
|
||||||
|
) {
|
||||||
|
this.circle2(li);
|
||||||
|
}
|
||||||
|
else if (
|
||||||
|
window.location.href === "https://m3academy.myvtex.com/checkout/#/payment"
|
||||||
|
) {
|
||||||
|
this.circle3(li);
|
||||||
|
}
|
||||||
|
|
||||||
|
window.addEventListener("hashchange", () => {
|
||||||
|
if (window.location.hash == "#/cart") {
|
||||||
|
this.circle1(li);
|
||||||
|
}
|
||||||
|
else if (window.location.hash == "#/email" ||
|
||||||
|
window.location.hash == "#/profile" ||
|
||||||
|
window.location.hash == "#/shipping"){
|
||||||
|
this.circle2(li);
|
||||||
|
}
|
||||||
|
else if (window.location.hash == "#/payment"){
|
||||||
|
this.circle3(li);
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Carrinho(el){
|
||||||
|
|
||||||
|
|
||||||
|
const ggs = document.querySelector(".empty-cart-content")
|
||||||
|
|
||||||
|
if(el.children[0].children[0].children["empty-cart-content"] ){
|
||||||
|
|
||||||
|
document.getElementById("cart-title").style.display = 'block';
|
||||||
|
}{
|
||||||
|
document.getElementById("cart-title").style.display = 'none';
|
||||||
|
|
||||||
|
console.log("dhd", ggs)
|
||||||
|
}
|
||||||
|
// const cart = document.querySelectorAll(".checkout-container");
|
||||||
|
// cart.forEach((li) =>{
|
||||||
|
// if( li.children[0].children[0].children["empty-cart-content"].classList.contains ("none" ) ) {
|
||||||
|
// li.children[0].children[0].children["hide"].style.display = "block";
|
||||||
|
// console.log(sgsgsh)
|
||||||
|
|
||||||
|
// }
|
||||||
|
// {
|
||||||
|
// li.children[0].children[0].children["hide"].style.display = "none";
|
||||||
|
// }
|
||||||
|
|
||||||
|
// })
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
||||||
|
;
|
||||||
|
@ -3,3 +3,4 @@
|
|||||||
@import "./partials/header";
|
@import "./partials/header";
|
||||||
@import "./partials/footer";
|
@import "./partials/footer";
|
||||||
@import "./checkout/checkout.scss";
|
@import "./checkout/checkout.scss";
|
||||||
|
@import "./partials/prateleira";
|
||||||
|
@ -1,289 +1,560 @@
|
|||||||
.checkout-container {
|
.checkout-container {
|
||||||
.client-pre-email {
|
.client-pre-email {
|
||||||
border-color: $color-gray4;
|
border-color: $color-gray4;
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
padding-top: 8px;
|
padding-top: 8px;
|
||||||
|
|
||||||
.link-cart {
|
.link-cart {
|
||||||
a {
|
a {
|
||||||
color: $color-black;
|
color: $color-black;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: lighen($color-black, 10);
|
color: lighen($color-black, 10);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.pre-email {
|
.pre-email {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
margin-bottom: 16px;
|
margin-bottom: 16px;
|
||||||
|
|
||||||
span {
|
span {
|
||||||
color: #303030;
|
font-family: 'Tenor Sans';
|
||||||
font-size: 24px;
|
font-style: normal;
|
||||||
}
|
font-weight: 400;
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 23px;
|
||||||
|
text-align: center;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: $color-liPonto;
|
||||||
|
}
|
||||||
|
|
||||||
small {
|
small {
|
||||||
color: $color-gray4;
|
font-family: 'Tenor Sans';
|
||||||
}
|
font-style: normal;
|
||||||
}
|
font-weight: 400;
|
||||||
}
|
font-size: 20px;
|
||||||
|
line-height: 23px;
|
||||||
|
text-align: center;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: $color-liPonto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.client-email {
|
.client-email {
|
||||||
margin: 0 0 16px;
|
margin: 0 0 16px;
|
||||||
|
|
||||||
input {
|
input {
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
color: $color-black;
|
color: $color-black;
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
padding: 0 16px;
|
padding: 0 16px;
|
||||||
border: 2px solid $color-gray3;
|
border: 2px solid $color-gray3;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
|
|
||||||
@media (max-width: 490px) {
|
@media (max-width: 490px) {
|
||||||
width: auto;
|
width: auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
background-color: $color-black;
|
font-family: 'Open Sans';
|
||||||
border-radius: 5px;
|
font-style: normal;
|
||||||
border: none;
|
font-weight: 700;
|
||||||
font-family: $font-family;
|
font-size: 14px;
|
||||||
height: 54px;
|
background-color: $color-finalizar;
|
||||||
right: 0;
|
border-radius: 5px;
|
||||||
top: 0;
|
border: none;
|
||||||
|
// font-family: "Open Sans",sans-serif;
|
||||||
|
height: 54px;
|
||||||
|
right: 0;
|
||||||
|
top: 0;
|
||||||
|
|
||||||
@media (max-width: 490px) {
|
@media (max-width: 490px) {
|
||||||
height: 48px;
|
height: 48px;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
span.help.error {
|
span.help.error {
|
||||||
color: red;
|
color: red;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.emailInfo {
|
.emailInfo {
|
||||||
padding: 16px;
|
padding: 16px;
|
||||||
background-color: $color-white;
|
background-color: $color-white;
|
||||||
border: 1px solid $color-gray4;
|
border: 1px solid $color-gray4;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
color: #303030;
|
color: #303030;
|
||||||
margin: 0 0 8px 0;
|
margin: 0 0 8px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
||||||
li {
|
li {
|
||||||
span {
|
span {
|
||||||
color: $color-black;
|
font-family: 'Open Sans';
|
||||||
}
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 16px;
|
||||||
|
|
||||||
i::before {
|
align-items: center;
|
||||||
color: $color-black;
|
|
||||||
font-size: 1rem;
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
i::before {
|
color: $color-liPonto;
|
||||||
color: $color-black;
|
}
|
||||||
font-size: 6rem;
|
|
||||||
opacity: 0.5;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.shipping-data,
|
i::before {
|
||||||
.payment-data,
|
color: $color-finalizar;
|
||||||
.client-profile-data {
|
font-size: 1rem;
|
||||||
.accordion-group {
|
opacity: 1;
|
||||||
border-radius: 0;
|
}
|
||||||
border: 1px solid $color-gray4;
|
}
|
||||||
font-family: $font-family;
|
}
|
||||||
padding: 16px;
|
|
||||||
|
|
||||||
.accordion-heading {
|
i::before {
|
||||||
span {
|
color: $color-black;
|
||||||
color: #303030;
|
font-size: 6rem;
|
||||||
margin-bottom: 8px;
|
opacity: 0.5;
|
||||||
padding: 0;
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
i::before {
|
.shipping-data,
|
||||||
fill: #303030;
|
.payment-data,
|
||||||
}
|
.client-profile-data {
|
||||||
}
|
.accordion-group {
|
||||||
|
border-radius: 0;
|
||||||
|
border: 1px solid $color-gray3;
|
||||||
|
font-family: $font-family;
|
||||||
|
padding: 16px;
|
||||||
|
|
||||||
a {
|
|
||||||
align-items: center;
|
|
||||||
background-color: #303030;
|
|
||||||
border-radius: 8px;
|
|
||||||
border: none;
|
|
||||||
color: $color-white;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
padding: 6px 5px 6px 8px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.accordion-inner {
|
|
||||||
padding: 0;
|
|
||||||
|
|
||||||
/* General configurations */
|
|
||||||
|
|
||||||
.client-notice {
|
@media (max-width: 375px) {
|
||||||
color: $color-black;
|
margin: 28px 16px 17px 0px;
|
||||||
}
|
border: 1px solid #F0F0F0;
|
||||||
|
border-radius: 8px;
|
||||||
|
width: 87% !important;
|
||||||
|
|
||||||
p {
|
}
|
||||||
label {
|
|
||||||
color: $color-black;
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
|
|
||||||
select,
|
@media (max-width: 1024px) {
|
||||||
input {
|
width: 96%;
|
||||||
border-radius: 0;
|
}
|
||||||
border: 1px solid $color-gray4;
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.help.error {
|
|
||||||
color: red;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.box-client-info-pj {
|
|
||||||
.link a#is-corporate-client,
|
|
||||||
.link a#not-corporate-client {
|
|
||||||
color: $color-black;
|
|
||||||
font-weight: 500;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.state-inscription-box span {
|
.accordion-heading {
|
||||||
font-weight: 500;
|
.accordion-toggle-active{
|
||||||
}
|
i::after{
|
||||||
|
content: "";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
span {
|
||||||
|
|
||||||
button.submit {
|
margin-bottom: 8px;
|
||||||
border: none;
|
padding: 0;
|
||||||
border-radius: 5px;
|
font-family: 'Tenor Sans';
|
||||||
background: $color-black;
|
font-style: normal;
|
||||||
margin-top: 8px;
|
font-weight: 400;
|
||||||
outline: none;
|
font-size: 16px;
|
||||||
transition: all 0.2s linear;
|
line-height: 19px;
|
||||||
|
color: #292929;
|
||||||
|
|
||||||
&:hover {
|
i::before {
|
||||||
background: lighten($color-black, 5);
|
content: "";
|
||||||
}
|
// fill: #303030;
|
||||||
|
// display: none;
|
||||||
|
}
|
||||||
|
|
||||||
&:active {
|
i::after {
|
||||||
background: darken($color-black, 5);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Shipping configurations */
|
background-image: url("https://agenciamagma.vteximg.com.br/arquivos/lapisM3Academy.png") ;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-size: 100% 100%;
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
display: block;
|
||||||
|
content: "";
|
||||||
|
float: right;
|
||||||
|
|
||||||
.ship-postalCode small a {
|
}
|
||||||
color: #303030;
|
}
|
||||||
font-weight: 500;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
.vtex-omnishipping-1-x-deliveryGroup {
|
a {
|
||||||
p {
|
align-items: center;
|
||||||
color: #303030;
|
// background-color: #303030;
|
||||||
font-size: 14px;
|
border-radius: 8px;
|
||||||
font-weight: 500;
|
border: none;
|
||||||
}
|
color: $color-white;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 6px 5px 6px 8px;
|
||||||
|
opacity: 0;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.shp-lean {
|
.accordion-inner {
|
||||||
border: 1px solid $color-gray4;
|
// margin: 0 0 0 17px;
|
||||||
border-radius: 0;
|
padding: 0;
|
||||||
|
|
||||||
label {
|
/* General configurations */
|
||||||
background-color: $color-white;
|
|
||||||
box-shadow: none;
|
|
||||||
color: #303030;
|
|
||||||
padding: 8px 12px;
|
|
||||||
|
|
||||||
svg path {
|
.client-notice {
|
||||||
fill: #d8c8ac;
|
color: $color-black;
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.delivery-address-title {
|
@media (max-width: 1024px) {
|
||||||
color: #303030;
|
display: none;
|
||||||
font-size: 14px;
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
|
|
||||||
.shp-summary-group-info {
|
}
|
||||||
border-color: $color-gray4;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.address-summary {
|
.vtex-omnishipping-1-x-SummaryItemContent {
|
||||||
background: none;
|
display: block;
|
||||||
border-color: $color-gray4;
|
|
||||||
border-radius: 0;
|
|
||||||
color: #303030;
|
|
||||||
padding: 12px;
|
|
||||||
|
|
||||||
@include mq(md, max) {
|
}
|
||||||
background-position: 8px 9px;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
.vtex-omnishipping-1-x-SummaryItemInfo {
|
||||||
color: #303030;
|
border: none;
|
||||||
font-weight: 500;
|
}
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.shp-summary-group-price,
|
p {
|
||||||
.shp-summary-package {
|
label {
|
||||||
color: $color-gray4;
|
font-family: 'Open Sans';
|
||||||
}
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 16px;
|
||||||
|
color: $color-gray2;
|
||||||
|
margin-bottom: 3px;
|
||||||
|
|
||||||
.shp-summary-group-price {
|
}
|
||||||
padding-right: 16px;
|
|
||||||
}
|
select,
|
||||||
|
input {
|
||||||
|
width: 97%;
|
||||||
|
border-radius: 8px;
|
||||||
|
border: 1px solid #E0E0E0;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.help.error {
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.box-client-info-pj {
|
||||||
|
|
||||||
|
.link a#is-corporate-client,
|
||||||
|
.link a#not-corporate-client {
|
||||||
|
color: $color-gray2;
|
||||||
|
font-weight: 500;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.state-inscription-box span {
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
|
button.submit {
|
||||||
|
width: 100%;
|
||||||
|
border: none;
|
||||||
|
border-radius: 5px;
|
||||||
|
background: $color-finalizar;
|
||||||
|
margin-top: 8px;
|
||||||
|
outline: none;
|
||||||
|
transition: all 0.2s linear;
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
text-align: center;
|
||||||
|
letter-spacing: 0.05em;
|
||||||
|
text-transform: uppercase;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background: lighten($color-black, 5);
|
||||||
|
}
|
||||||
|
|
||||||
|
&:active {
|
||||||
|
background: darken($color-black, 5);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Shipping configurations */
|
||||||
|
|
||||||
|
.ship-postalCode small a {
|
||||||
|
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 16px;
|
||||||
|
text-decoration-line: underline;
|
||||||
|
color: #292929;
|
||||||
|
|
||||||
|
// color: #303030;
|
||||||
|
// font-weight: 500;
|
||||||
|
// text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vtex-omnishipping-1-x-deliveryGroup {
|
||||||
|
p {
|
||||||
|
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
color: $color-gray2;
|
||||||
|
margin-bottom: 11px;
|
||||||
|
// color: #303030;
|
||||||
|
// font-size: 14px;
|
||||||
|
// font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shp-lean {
|
||||||
|
|
||||||
|
border: 1px solid #E0E0E0;
|
||||||
|
border-radius: 8px;
|
||||||
|
// border: 1px solid $color-gray4;
|
||||||
|
// border-radius: 0;
|
||||||
|
|
||||||
|
label {
|
||||||
|
// background-color: $color-white;
|
||||||
|
// box-shadow: none;
|
||||||
|
// color: #303030;
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 16px;
|
||||||
|
|
||||||
|
/* Neutras/Cinza */
|
||||||
|
|
||||||
|
color: #7D7D7D;
|
||||||
|
padding: 8px 12px;
|
||||||
|
|
||||||
|
svg path {
|
||||||
|
fill: transparent;
|
||||||
|
// background-image: url("https://agenciamagma.vteximg.com.br/arquivos/icon-radios-input-Active-M3Academy.png");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.delivery-address-title {
|
||||||
|
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
color: $color-gray2;
|
||||||
|
padding: 11px;
|
||||||
|
// color: #303030;
|
||||||
|
// font-size: 14px;
|
||||||
|
// font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shp-summary-group-info {
|
||||||
|
border-color: $color-gray4;
|
||||||
|
}
|
||||||
|
|
||||||
|
.address-summary {
|
||||||
|
background: none;
|
||||||
|
border-color: $color-gray4;
|
||||||
|
color: #303030;
|
||||||
|
padding: 12px;
|
||||||
|
|
||||||
|
border-radius: 8px;
|
||||||
|
|
||||||
|
|
||||||
|
@include mq(md, max) {
|
||||||
|
background-position: 8px 9px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #303030;
|
||||||
|
font-weight: 500;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.shp-summary-group-price,
|
||||||
|
.shp-summary-package {
|
||||||
|
color: $color-gray4;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shp-summary-group-price {
|
||||||
|
padding-right: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shp-summary-package {
|
||||||
|
padding-left: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vtex-omnishipping-1-x-summaryChange {
|
||||||
|
border-color: #303030;
|
||||||
|
color: #303030;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vtex-omnishipping-1-x-deliveryChannelsToggle {
|
||||||
|
background: #FFFFFF;
|
||||||
|
|
||||||
|
// background-color: #d8c8ac;
|
||||||
|
// border: 1px solid #d8c8ac;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vtex-omnishipping-1-x-deliveryOptionActive {
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: $color-gray2;
|
||||||
|
|
||||||
|
// text-shadow: 1.3px 1px lighten($color-black, 50);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.shp-option-text-label {
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 16px;
|
||||||
|
letter-spacing: 0.05em;
|
||||||
|
color: $color-gray2;
|
||||||
|
}
|
||||||
|
|
||||||
.shp-summary-package {
|
|
||||||
padding-left: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.vtex-omnishipping-1-x-summaryChange {
|
|
||||||
border-color: #303030;
|
|
||||||
color: #303030;
|
|
||||||
}
|
|
||||||
|
|
||||||
.vtex-omnishipping-1-x-deliveryChannelsToggle {
|
|
||||||
background-color: #d8c8ac;
|
|
||||||
border: 1px solid #d8c8ac;
|
|
||||||
}
|
|
||||||
|
|
||||||
.vtex-omnishipping-1-x-deliveryOptionActive {
|
}
|
||||||
text-shadow: 1.3px 1px lighten($color-black, 50);
|
|
||||||
}
|
.street,
|
||||||
}
|
.city,
|
||||||
}
|
.state-delimiter,
|
||||||
}
|
.state {
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 16px;
|
||||||
|
color: $color-gray2;
|
||||||
|
}
|
||||||
|
|
||||||
|
.link-edit {
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 16px;
|
||||||
|
text-decoration: none;
|
||||||
|
color: #00C8FF;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vtex-omnishipping-1-x-leanShippingOptionActive {
|
||||||
|
.vtex-omnishipping-1-x-leanShippingTextLabe {
|
||||||
|
color: $color-gray2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.client-profile-data {
|
||||||
|
.accordion-group {
|
||||||
|
.accordion-heading {
|
||||||
|
.accordion-toggle {
|
||||||
|
&::after {
|
||||||
|
content: "Identificação";
|
||||||
|
font-size: 16px;
|
||||||
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
margin-left: 12px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
span {
|
||||||
|
color: #303030;
|
||||||
|
margin-bottom: 25px;
|
||||||
|
padding: 0;
|
||||||
|
font-size: 0 !important;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
i::before {
|
||||||
|
display: none;
|
||||||
|
fill: #303030
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// // a {
|
||||||
|
// // align-items: center;
|
||||||
|
// // background: transparent;
|
||||||
|
// // background-color: white;
|
||||||
|
// // border-radius: 8px;
|
||||||
|
// // border: none;
|
||||||
|
// // color: white;
|
||||||
|
// // display: flex;
|
||||||
|
// // justify-content: center;
|
||||||
|
// // padding: 0;
|
||||||
|
// // margin-top: 10px;
|
||||||
|
|
||||||
|
// // &::after {
|
||||||
|
// // background-image: url("https://agenciamagma.vteximg.com.br/arquivos/lapisM3Academy.png");
|
||||||
|
// // background-size: 20px;
|
||||||
|
// // width: 20px;
|
||||||
|
// // height: 20px;
|
||||||
|
// // content: "";
|
||||||
|
// // }
|
||||||
|
|
||||||
|
// // img {
|
||||||
|
// // width: 20px;
|
||||||
|
// // height: 20px;
|
||||||
|
// // }
|
||||||
|
// // }
|
||||||
|
|
||||||
|
// // }
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.row-fluid {
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
width: 99%;
|
||||||
|
margin-left: 5px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -6,18 +6,30 @@
|
|||||||
|
|
||||||
.cart-template {
|
.cart-template {
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
padding: 0 0;
|
padding: 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.item-unit-label {
|
.item-unit-label {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart {
|
.cart {
|
||||||
border: 3px solid $color-gray3;
|
border: 3px solid $color-gray3;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
padding: 16px;
|
padding: 16px;
|
||||||
|
|
||||||
|
@media (max-width: 375px) {
|
||||||
|
padding: 7px 16px;
|
||||||
|
|
||||||
|
.product-name {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
margin: 0px 0 25px 0;
|
margin: 0px 0 25px 0;
|
||||||
border-left: none;
|
border-left: none;
|
||||||
@ -25,18 +37,38 @@
|
|||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-fixed.affix {
|
.cart-fixed.affix {
|
||||||
position: relative !important;
|
position: relative !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cart-fixed {
|
.cart-fixed {
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
width: 100%;
|
width: 99%;
|
||||||
|
height: 397px !important;
|
||||||
|
border: 1px solid #E5E5E5;
|
||||||
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
width: 99%;
|
||||||
|
margin-left: 5px;
|
||||||
|
height: 397px !important;
|
||||||
|
margin-top: 17px;
|
||||||
|
border: 1px solid #E5E5E5;
|
||||||
|
border-radius: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
|
margin: 24px 0 0 17px;
|
||||||
|
text-align: start;
|
||||||
background: $color-white;
|
background: $color-white;
|
||||||
border: none;
|
border: none;
|
||||||
color: #303030;
|
font-style: normal;
|
||||||
font-size: 14px;
|
font-weight: 400;
|
||||||
font-weight: 500;
|
font-size: 16px;
|
||||||
|
line-height: 19px;
|
||||||
|
// color: #303030;
|
||||||
|
// font-size: 14px;
|
||||||
|
// font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
.item-unavailable {
|
.item-unavailable {
|
||||||
@ -49,8 +81,10 @@
|
|||||||
|
|
||||||
.cart {
|
.cart {
|
||||||
border: 1px solid $color-gray4;
|
border: 1px solid $color-gray4;
|
||||||
|
border: none;
|
||||||
|
|
||||||
ul li {
|
ul li {
|
||||||
|
margin: 0 0 0 7px;
|
||||||
border-top: none;
|
border-top: none;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
@ -63,7 +97,13 @@
|
|||||||
|
|
||||||
.shipping-date,
|
.shipping-date,
|
||||||
.price {
|
.price {
|
||||||
color: #7d7d7d;
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 16px;
|
||||||
|
text-align: right;
|
||||||
|
color: $color-liPonto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -71,26 +111,53 @@
|
|||||||
.summary-template-holder {
|
.summary-template-holder {
|
||||||
border-top: none;
|
border-top: none;
|
||||||
background: $color-white;
|
background: $color-white;
|
||||||
|
|
||||||
|
.accordion-inner {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0 0 0 5px;
|
||||||
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
margin: 19px -14px 0px 18px;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#go-to-cart-button a {
|
#go-to-cart-button a {
|
||||||
color: #303030;
|
font-family: "Open Sans";
|
||||||
text-decoration: underline;
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 16px;
|
||||||
|
text-align: right;
|
||||||
|
text-decoration-line: underline;
|
||||||
|
color: $color-liPonto;
|
||||||
|
margin: 0 17px 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.summary-totalizers {
|
.summary-totalizers {
|
||||||
td.info {
|
td.info {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
padding: 50px 5px 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#payment-data-submit {
|
#payment-data-submit {
|
||||||
background: $color-black;
|
background: #298541;
|
||||||
border: none;
|
border-radius: 8px;
|
||||||
border-radius: 0;
|
|
||||||
color: $color-white;
|
color: $color-white;
|
||||||
outline: none;
|
font-family: 'Open Sans';
|
||||||
transition: all 0.2s linear;
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
/* identical to box height */
|
||||||
|
|
||||||
|
text-align: center;
|
||||||
|
letter-spacing: 0.05em;
|
||||||
|
text-transform: uppercase;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background: lighten($color-black, 5);
|
background: lighten($color-black, 5);
|
||||||
}
|
}
|
||||||
@ -106,24 +173,61 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.cart-items {
|
.cart-items {
|
||||||
|
|
||||||
.product-item {
|
.product-item {
|
||||||
padding: 16px 0;
|
padding: 16px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
span,
|
||||||
|
.product-name,
|
||||||
|
.total-selling-price,
|
||||||
|
.old-product-price,
|
||||||
|
.new-product-price,
|
||||||
|
.new-product-price-label,
|
||||||
|
.best-price,
|
||||||
|
.quantity-price span,
|
||||||
|
.product-name a {
|
||||||
|
@media (min-width: 2500px) {
|
||||||
|
font-weight: 400 !important;
|
||||||
|
font-size: 24px !important;
|
||||||
|
line-height: 28px !important;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.quantity {}
|
||||||
|
|
||||||
th {
|
th {
|
||||||
color: $color-black;
|
color: $color-black;
|
||||||
padding: 0 0 16px;
|
padding: 0 0 30px 0;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
|
|
||||||
&.quantity-price,
|
&.quantity-price,
|
||||||
&.shipping-date {
|
&.shipping-date {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
display: none;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 2500px) {
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 28px;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.product-image {
|
.product-image {
|
||||||
@ -131,6 +235,11 @@
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
width: 60px;
|
width: 60px;
|
||||||
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
padding: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@include mq(sm, max) {
|
@include mq(sm, max) {
|
||||||
width: 72px;
|
width: 72px;
|
||||||
}
|
}
|
||||||
@ -140,6 +249,13 @@
|
|||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
width: auto;
|
width: auto;
|
||||||
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
height: 90px;
|
||||||
|
max-width: 100%;
|
||||||
|
width: 60px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
@include mq(sm, max) {
|
@include mq(sm, max) {
|
||||||
height: 72px;
|
height: 72px;
|
||||||
width: auto;
|
width: auto;
|
||||||
@ -148,16 +264,37 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.product-name {
|
.product-name {
|
||||||
|
width: 36.796%;
|
||||||
|
white-space: normal;
|
||||||
|
white-space: normal;
|
||||||
|
margin: 15px 0 0 7px;
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
|
font-family: "Tenor Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 14px;
|
||||||
|
|
||||||
|
color: #000000;
|
||||||
|
|
||||||
|
@media (max-width: 375px) {
|
||||||
|
margin: 0;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
display: block;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
@include mq(lg, max) {
|
@include mq(lg, max) {
|
||||||
width: 250px;
|
width: 250px;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: $color-blue;
|
color: black;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: normal;
|
font-weight: 400;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
transition: ease-in 0.22s all;
|
transition: ease-in 0.22s all;
|
||||||
@ -168,7 +305,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 490px) {
|
@media (max-width: 490px) {
|
||||||
margin-left: 23px;
|
margin-left: 16px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -190,11 +327,13 @@
|
|||||||
|
|
||||||
.product-price {
|
.product-price {
|
||||||
min-width: 100px;
|
min-width: 100px;
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
min-width: 78px;
|
min-width: 78px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 490px) {
|
@media (max-width: 490px) {
|
||||||
position: absolute;
|
// position: absolute;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
}
|
}
|
||||||
@ -204,6 +343,7 @@
|
|||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
text-decoration-line: line-through;
|
text-decoration-line: line-through;
|
||||||
|
|
||||||
@include mq(sm, max) {
|
@include mq(sm, max) {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
@ -227,14 +367,24 @@
|
|||||||
max-width: 118px;
|
max-width: 118px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
width: max-content !important;
|
width: max-content !important;
|
||||||
|
border: 1px solid #f0f0f0;
|
||||||
|
border-radius: 8px;
|
||||||
|
|
||||||
@media (max-width: 490px) {
|
@media (max-width: 490px) {
|
||||||
margin-left: 84px !important;
|
margin-left: 74px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
margin: 0 auto 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 2500px) {
|
||||||
|
margin-top: 35px;
|
||||||
}
|
}
|
||||||
|
|
||||||
input {
|
input {
|
||||||
background-color: $color-white;
|
background-color: $color-white;
|
||||||
border: 1px solid $color-gray3;
|
border: 1px solid transparent;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
border-width: 0 1px;
|
border-width: 0 1px;
|
||||||
display: block;
|
display: block;
|
||||||
@ -257,24 +407,35 @@
|
|||||||
display: block;
|
display: block;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
padding: 1px 12px;
|
padding: 1px 12px;
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon-minus-sign {
|
.icon-minus-sign {
|
||||||
&:before {
|
&:before {
|
||||||
content: "-";
|
// content: "-";
|
||||||
font-size: 16px;
|
|
||||||
|
font-size: 20px;
|
||||||
|
color: $color-finalizar;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon-plus-sign {
|
.icon-plus-sign {
|
||||||
&:before {
|
&:before {
|
||||||
content: "+";
|
// content: "+";
|
||||||
font-size: 14px;
|
|
||||||
|
font-size: 20px;
|
||||||
|
color: $color-finalizar;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.item-quantity-change {
|
.item-quantity-change {
|
||||||
|
|
||||||
|
// margin: 0 11px;
|
||||||
|
// background: #00C8FF;
|
||||||
|
// width: 16px;
|
||||||
|
// height: 16px;
|
||||||
|
// border-radius: 8px;
|
||||||
@media (max-width: 979px) and (min-width: 768px) {
|
@media (max-width: 979px) and (min-width: 768px) {
|
||||||
position: inherit;
|
position: inherit;
|
||||||
bottom: inherit;
|
bottom: inherit;
|
||||||
@ -295,12 +456,24 @@
|
|||||||
.icon-question-sign {
|
.icon-question-sign {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
span {
|
|
||||||
|
.total-selling-price {
|
||||||
|
font-family: 'Open Sans';
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: normal;
|
font-weight: 700;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
color: #292929;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
span {
|
||||||
|
font-family: 'Tenor Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
color: $color-black;
|
color: #292929;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -308,12 +481,18 @@
|
|||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (min-width: 2500px) {
|
||||||
|
padding-right: 20px;
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.item-remove {
|
.item-remove {
|
||||||
@media (max-width: 490px) {
|
@media (max-width: 490px) {
|
||||||
top: 0;
|
top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon::before {
|
.icon::before {
|
||||||
color: $color-gray4;
|
color: $color-gray4;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
@ -346,17 +525,33 @@
|
|||||||
.srp-container {
|
.srp-container {
|
||||||
padding: 0 0 0 10px;
|
padding: 0 0 0 10px;
|
||||||
|
|
||||||
|
@media (min-width: 375px) {
|
||||||
|
padding: 0 !important;
|
||||||
|
margin: 0 !important;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
padding: 0;
|
||||||
|
margin: 16px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
padding: 0 16px;
|
padding: 0 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.srp-main-title {
|
.srp-main-title {
|
||||||
margin: 32px 0 12px;
|
margin: 32px 0 12px;
|
||||||
|
font-family: "Open Sans";
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: normal;
|
font-weight: 400;
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
line-height: 28px;
|
line-height: 33px;
|
||||||
color: $color-gray2;
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
text-align: center;
|
||||||
|
color: $color-liPonto;
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
@ -375,10 +570,10 @@
|
|||||||
border: none;
|
border: none;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
color: $color-gray2;
|
color: $color-gray2;
|
||||||
font-size: 16px;
|
font-size: 14px;
|
||||||
letter-spacing: 0.05em;
|
letter-spacing: 0.05em;
|
||||||
line-height: 19px;
|
line-height: 18px;
|
||||||
font-weight: 500;
|
font-weight: 400;
|
||||||
outline: none;
|
outline: none;
|
||||||
padding: 12px 40px;
|
padding: 12px 40px;
|
||||||
transition: all 0.2s linear;
|
transition: all 0.2s linear;
|
||||||
@ -405,17 +600,18 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.srp-pickup-my-location__button {
|
.srp-pickup-my-location__button {
|
||||||
background-color: $color-black;
|
background-color: $color-finalizar;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
color: $color-white;
|
color: $color-white;
|
||||||
outline: none;
|
outline: none;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
|
font-family: "Open Sans";
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: 500;
|
font-weight: 700;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 16px;
|
line-height: 19px;
|
||||||
letter-spacing: 0.05em;
|
letter-spacing: 0.05em;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
@ -444,17 +640,37 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__current {
|
&__current {
|
||||||
border: 1px solid $color-blue;
|
border: 1px solid $color-liPonto;
|
||||||
border-radius: 100px;
|
border-radius: 100px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.blue {
|
.blue {
|
||||||
color: $color-blue;
|
ont-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
align-items: center;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: #000;
|
||||||
|
|
||||||
|
@media (min-width: 2500px) {
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 28px;
|
||||||
|
line-height: 38px;
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
label {
|
label {
|
||||||
width: 50%;
|
width: 50%;
|
||||||
|
|
||||||
|
@media (min-width: 2500px) {
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 28px;
|
||||||
|
line-height: 38px;
|
||||||
|
}
|
||||||
|
|
||||||
&:active {
|
&:active {
|
||||||
background-color: #f0f0f0;
|
background-color: #f0f0f0;
|
||||||
}
|
}
|
||||||
@ -466,11 +682,11 @@
|
|||||||
label {
|
label {
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: normal;
|
font-weight: 400;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 14px;
|
line-height: 16px;
|
||||||
color: $color-black;
|
|
||||||
margin-bottom: 12px;
|
color: $color-liPonto;
|
||||||
}
|
}
|
||||||
|
|
||||||
input {
|
input {
|
||||||
@ -484,8 +700,8 @@
|
|||||||
width: 172px;
|
width: 172px;
|
||||||
}
|
}
|
||||||
|
|
||||||
& ~ button {
|
&~button {
|
||||||
background-color: $color-black;
|
background-color: $color-finalizar;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
color: $color-white;
|
color: $color-white;
|
||||||
@ -498,6 +714,11 @@
|
|||||||
top: 36px;
|
top: 36px;
|
||||||
transition: all 0.2s linear;
|
transition: all 0.2s linear;
|
||||||
width: 96px;
|
width: 96px;
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
@ -531,6 +752,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.srp-result {
|
.srp-result {
|
||||||
|
|
||||||
strong,
|
strong,
|
||||||
.srp-items {
|
.srp-items {
|
||||||
color: #303030;
|
color: #303030;
|
||||||
@ -594,14 +816,25 @@
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
width: 346px;
|
width: 346px;
|
||||||
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 2500px) {
|
||||||
|
width: 688px;
|
||||||
|
}
|
||||||
|
|
||||||
.coupon-data {
|
.coupon-data {
|
||||||
#cart-link-coupon-add {
|
#cart-link-coupon-add {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
span {
|
span {
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
@ -630,6 +863,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.coupon-label label {
|
.coupon-label label {
|
||||||
|
display: flex;
|
||||||
margin-bottom: 12px;
|
margin-bottom: 12px;
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
@ -638,9 +872,16 @@
|
|||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
color: $color-gray2;
|
color: $color-gray2;
|
||||||
cursor: none;
|
cursor: none;
|
||||||
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
display: flex;
|
||||||
|
margin-left: 15px;
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.coupon-fields {
|
.coupon-fields {
|
||||||
|
display: flex;
|
||||||
margin-bottom: 32px;
|
margin-bottom: 32px;
|
||||||
|
|
||||||
@include mq(sm, max) {
|
@include mq(sm, max) {
|
||||||
@ -648,6 +889,7 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
|
||||||
i {
|
i {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 91px;
|
right: 91px;
|
||||||
@ -662,9 +904,14 @@
|
|||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
color: $color-gray4;
|
color: $color-gray4;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
height: 34px;
|
height: 32px;
|
||||||
padding: 0 12px;
|
width: 204px;
|
||||||
max-width: 160px;
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
width: 100%;
|
||||||
|
max-width: 853px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
@include mq(sm, max) {
|
@include mq(sm, max) {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
@ -673,26 +920,33 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
background: $color-black;
|
background: $color-finalizar;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
color: $color-white;
|
color: $color-liPonto;
|
||||||
font-size: 12px;
|
|
||||||
height: 36px;
|
height: 36px;
|
||||||
letter-spacing: 1px;
|
letter-spacing: 1px;
|
||||||
margin-left: 6px;
|
margin-left: 6px;
|
||||||
outline: none;
|
outline: none;
|
||||||
transition: all 0.2s linear;
|
transition: all 0.2s linear;
|
||||||
width: 94px;
|
// width: 94px;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
|
||||||
|
font-family: "Open Sans";
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 19px;
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
width: 138px;
|
width: 138px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
// &:hover {
|
||||||
background-color: lighten($color-black, 5);
|
// background-color: lighten($color-black, 5);
|
||||||
}
|
// }
|
||||||
|
|
||||||
&:active {
|
&:active {
|
||||||
background-color: darken($color-black, 5);
|
background-color: darken($color-black, 5);
|
||||||
@ -704,6 +958,7 @@
|
|||||||
.accordion-group {
|
.accordion-group {
|
||||||
tr {
|
tr {
|
||||||
border-color: #e5e5e5;
|
border-color: #e5e5e5;
|
||||||
|
// border-top: 1px solid;
|
||||||
|
|
||||||
td {
|
td {
|
||||||
&.empty {
|
&.empty {
|
||||||
@ -715,29 +970,62 @@
|
|||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 16px;
|
// border-bottom: 1px solid #f4f4f4;
|
||||||
color: $color-black;
|
// padding: 50px 5px 0 0;
|
||||||
padding: 12px 0;
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
padding: 0 17px 10px 16px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 375px) {
|
||||||
|
padding: 10px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 2500px) {
|
||||||
|
|
||||||
|
font-weight: 400 !important;
|
||||||
|
font-size: 28px !important;
|
||||||
|
line-height: 33px !important;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.info {
|
&.info {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
margin-top: 43px;
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.monetary {
|
&.monetary {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
|
|
||||||
|
@media (min-width: 2500px) {
|
||||||
|
width: 153px;
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
tfoot {
|
tfoot {
|
||||||
|
|
||||||
td.info,
|
td.info,
|
||||||
td.monetary {
|
td.monetary {
|
||||||
|
// padding: 0 17px 0 0;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: normal;
|
font-weight: 400;
|
||||||
font-size: 18px;
|
font-size: 14px;
|
||||||
line-height: 21px;
|
line-height: 19px;
|
||||||
color: $color-black;
|
color: $color-black;
|
||||||
|
font-family: "Open Sans";
|
||||||
|
// font-style: normal;
|
||||||
|
// font-weight: 700;
|
||||||
|
// font-size: 18px;
|
||||||
|
color: #292929;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -749,6 +1037,26 @@
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
width: 343px;
|
width: 343px;
|
||||||
|
|
||||||
|
@media only screen and (min-width: 375px) {
|
||||||
|
padding: 0 !important;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@media only screen and (max-width: 1024px) {
|
||||||
|
width: 97%;
|
||||||
|
padding-bottom: 0;
|
||||||
|
margin: 0 15px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 2500px) {
|
||||||
|
width: 688px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
padding: 0 16px;
|
padding: 0 16px;
|
||||||
width: calc(100% - 32px);
|
width: calc(100% - 32px);
|
||||||
@ -757,8 +1065,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@include mq(md, min) {
|
@include mq(md, min) {
|
||||||
margin: 0;
|
// margin: 0;
|
||||||
padding-bottom: 50px;
|
// padding-bottom: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.link-choose-more-products-wrapper {
|
.link-choose-more-products-wrapper {
|
||||||
@ -777,12 +1085,20 @@
|
|||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 14px;
|
line-height: 14px;
|
||||||
color: $color-blue;
|
color: $color-blue;
|
||||||
|
|
||||||
|
@media (min-width: 2500px) {
|
||||||
|
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 28px;
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-place-order-wrapper {
|
.btn-place-order-wrapper {
|
||||||
a {
|
a {
|
||||||
background: $color-green;
|
background: $color-finalizar;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
display: block;
|
display: block;
|
||||||
@ -790,6 +1106,9 @@
|
|||||||
transition: ease-in 0.22s all;
|
transition: ease-in 0.22s all;
|
||||||
padding: 12px 19px;
|
padding: 12px 19px;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: darken($color-green, 5);
|
background-color: darken($color-green, 5);
|
||||||
}
|
}
|
||||||
@ -797,16 +1116,112 @@
|
|||||||
&:after {
|
&:after {
|
||||||
content: "finalizar compra";
|
content: "finalizar compra";
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
font-weight: 500;
|
font-weight: 700;
|
||||||
font-size: 13px;
|
font-size: 14px;
|
||||||
letter-spacing: 0.05em;
|
letter-spacing: 0.05em;
|
||||||
color: $color-white;
|
color: $color-liPonto;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
line-height: 19px;
|
line-height: 19px;
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
|
|
||||||
|
@media (min-width: 2500px) {
|
||||||
|
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 28px;
|
||||||
|
line-height: 38px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.coupon-fieldset {
|
||||||
|
padding-top: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-remove {
|
||||||
|
|
||||||
|
display: block;
|
||||||
|
margin: -20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.coupon-data {
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.icon-lock {
|
||||||
|
&::before {
|
||||||
|
display: none;
|
||||||
|
content: "";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.ship-number,
|
||||||
|
.ship-complement,
|
||||||
|
.ship-receiverName {
|
||||||
|
width: 100%;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.vtex-shipping-preview-0-x-pc .ship-country {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.description {
|
||||||
|
|
||||||
|
span.pull-left {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.cart-items tbody td {
|
||||||
|
vertical-align: middle;
|
||||||
|
padding: 0px;
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vtex-omnishipping-1-x-svg {
|
||||||
|
// background-image: url("https://agenciamagma.vteximg.com.br/arquivos/icon-radios-input-Active-M3Academy.png");
|
||||||
|
border: 1px solid #C4C4C4;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vtex-omnishipping-1-x-leanShippingOptionActive {
|
||||||
|
background-image: url("https://agenciamagma.vteximg.com.br/arquivos/icon-radios-input-Active-M3Academy.png");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
p.client-document {
|
||||||
|
margin-right: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ship-postalCode {
|
||||||
|
display: contents;
|
||||||
|
}
|
||||||
|
|
||||||
|
.input-small {
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
width: 97% !important;
|
||||||
|
max-width: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.vtex-omnishipping-1-x-addressFormPart1 input {
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
width: 97% !important;
|
||||||
|
max-width: unset !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.srp-main-title {
|
||||||
|
@media (min-width: 2500px) {
|
||||||
|
font-size: 48px !important;
|
||||||
|
line-height: 65px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -4,8 +4,176 @@ 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 (max-width: 1024px) {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 375px) {
|
||||||
|
margin: 0 18px;
|
||||||
|
width: 95%;
|
||||||
|
border-bottom: 0;
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.orderform-template-holder {
|
.orderform-template-holder {
|
||||||
width: 66.1132%;
|
width: 66.1132%;
|
||||||
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 375px) {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
.link-gift-card{
|
||||||
|
#show-gift-card-group
|
||||||
|
{ display: none;}
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-body{
|
||||||
|
.accordion-inner{
|
||||||
|
.box-step{
|
||||||
|
display: flex;
|
||||||
|
|
||||||
|
.form-step{
|
||||||
|
display: flex;
|
||||||
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
display: block;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.payment-group{
|
||||||
|
|
||||||
|
.pg-deposito,
|
||||||
|
.pg-transferencia-bancaria,
|
||||||
|
.pg-money,
|
||||||
|
.pg-promisory---monica,
|
||||||
|
.pg-desconto-em-folha,
|
||||||
|
#payment-group-creditControlPaymentGroup,
|
||||||
|
#payment-group-creditDirectSalePaymentGroup,
|
||||||
|
#payment-group-promissoryPaymentGroup,
|
||||||
|
#payment-group-PSEPaymentGroup,
|
||||||
|
#payment-group-SPEIPaymentGroup,
|
||||||
|
|
||||||
|
[data-name= "Bancolombia Transfer"]{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
span{
|
||||||
|
background-image: none !important;
|
||||||
|
font-family: $font-family;
|
||||||
|
color: $color-liPonto;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 24px;
|
||||||
|
text-align: center;
|
||||||
|
padding: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a{
|
||||||
|
background: $color-gray3;
|
||||||
|
border: 1px solid $color-liPonto;
|
||||||
|
border-radius: 6px;
|
||||||
|
margin-bottom: 12px;
|
||||||
|
padding: 0;
|
||||||
|
width: 209px;
|
||||||
|
text-decoration: none;
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
width: 958px;
|
||||||
|
|
||||||
|
}
|
||||||
|
@media (max-width: 375px) {
|
||||||
|
width: 309px !important;
|
||||||
|
margin: 7px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.active{
|
||||||
|
border: 1px solid #F15A31;
|
||||||
|
background: rgba(220, 221, 227, 0.3);
|
||||||
|
margin-left: 5px;
|
||||||
|
span{
|
||||||
|
color:#F15A31 ;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.row-fluid {
|
||||||
|
.span6 {
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.steps-view{
|
||||||
|
width: 397px !important;
|
||||||
|
margin-left: 115px;
|
||||||
|
margin-top: 34px;
|
||||||
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
width: 934px !important;
|
||||||
|
margin: 7px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 375px) {
|
||||||
|
width: 286px !important;
|
||||||
|
margin-left: 6px !important;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.box-step-content{
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
margin-left: -10px;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.shipping-data
|
||||||
|
{
|
||||||
|
width: 330px;
|
||||||
|
}
|
||||||
|
.container-order-form{
|
||||||
|
width: 88%;}
|
||||||
|
.PaymentCardHolderDocument{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.client-first-name,
|
||||||
|
.client-last-name{
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
width: 471px;
|
||||||
|
margin-top: 17px;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#client-document,
|
||||||
|
#client-phone{
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
width: 460px;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@ -3,21 +3,36 @@
|
|||||||
&-content {
|
&-content {
|
||||||
color: $color-black;
|
color: $color-black;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
margin-top: 266px;
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
padding: 0 16px;
|
padding: 0 16px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&-message{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
&-title {
|
&-title {
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 33px;
|
||||||
|
text-align: center;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
&-links {
|
&-links {
|
||||||
.link-choose-products {
|
.link-choose-products {
|
||||||
background: $color-black;
|
width: 400px;
|
||||||
border: none;
|
background: $color-white;
|
||||||
border-radius: 5px;
|
border-radius: 0px;
|
||||||
|
border: 1px solid;
|
||||||
|
// border-radius: 5px;
|
||||||
transition: ease-in 0.22s all;
|
transition: ease-in 0.22s all;
|
||||||
outline: none;
|
outline: none;
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
@ -27,12 +42,30 @@
|
|||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
letter-spacing: 0.05em;
|
letter-spacing: 0.05em;
|
||||||
color: $color-white;
|
color: $color-liPonto;
|
||||||
|
text-transform: uppercase;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
// &:hover {
|
||||||
|
// background: lighten($color-black, 5);
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
h2 {
|
||||||
|
font-family: $font-family;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 16px;
|
||||||
|
text-align: center;
|
||||||
|
letter-spacing: 0.05em;
|
||||||
|
color: $color-liPonto;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
|
||||||
&:hover {
|
}
|
||||||
background: lighten($color-black, 5);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -3,19 +3,21 @@
|
|||||||
@import "./checkout-pagamento";
|
@import "./checkout-pagamento";
|
||||||
@import "./checkout-autenticacao";
|
@import "./checkout-autenticacao";
|
||||||
|
|
||||||
|
|
||||||
html {
|
html {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
min-height: 100%;
|
min-height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer .footerCheckout__wrapper {
|
footer .footerCheckout__wrapper {
|
||||||
width: 94.9734%;
|
width: 100%;
|
||||||
margin: auto auto 0 auto;
|
// margin: auto auto 0 auto;
|
||||||
}
|
}
|
||||||
footer .footerCheckout__prateleira,
|
footer .footerCheckout__prateleira,
|
||||||
header {
|
header {
|
||||||
width: 79.53125%;
|
// width: 79.53125%;
|
||||||
margin: 0 auto;
|
// margin: 0 auto;
|
||||||
|
border-bottom: 1px solid;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
@ -49,7 +51,32 @@ body {
|
|||||||
}
|
}
|
||||||
.container-order-form,
|
.container-order-form,
|
||||||
.container-cart {
|
.container-cart {
|
||||||
width: 80%;
|
width: 88%;
|
||||||
|
|
||||||
|
@media (max-width: 375px) {
|
||||||
|
width: 100%;
|
||||||
|
.full-cart .cart table tbody tr{
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
width: 100%;
|
||||||
|
margin: 0;
|
||||||
|
|
||||||
|
.product,
|
||||||
|
.product-price,
|
||||||
|
// .quantity-price,
|
||||||
|
.shipping-date{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -57,9 +84,9 @@ body {
|
|||||||
background: $color-black;
|
background: $color-black;
|
||||||
text-shadow: none;
|
text-shadow: none;
|
||||||
|
|
||||||
&:hover {
|
// &:hover {
|
||||||
background: lighten($color-black, 15%);
|
// background: lighten($color-black, 15%);
|
||||||
}
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
.emailInfo h3 {
|
.emailInfo h3 {
|
||||||
@ -68,15 +95,27 @@ body {
|
|||||||
|
|
||||||
#cart-title,
|
#cart-title,
|
||||||
#orderform-title {
|
#orderform-title {
|
||||||
color: $color-gray2;
|
font-family: 'Open Sans';
|
||||||
font-family: $font-family;
|
font-style: normal;
|
||||||
font-weight: 500;
|
font-weight: 700;
|
||||||
font-size: 36px;
|
font-size: 24px;
|
||||||
line-height: 42px;
|
line-height: 33px;
|
||||||
margin: 40px 0 30px;
|
|
||||||
letter-spacing: 0.1em;
|
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
|
||||||
|
color: $color-liPonto;
|
||||||
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
|
||||||
|
margin-left: 16px;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 375px) {
|
||||||
|
margin-left: 15px;
|
||||||
|
|
||||||
|
}
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
margin-left: 30px;
|
margin-left: 30px;
|
||||||
}
|
}
|
||||||
@ -124,3 +163,4 @@ body {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
/* Slider */
|
/* Slider */
|
||||||
|
|
||||||
.slick-slider {
|
.slick-slider {
|
||||||
|
|
||||||
position: relative;
|
position: relative;
|
||||||
display: block;
|
display: block;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
@ -62,6 +63,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
.slick-slide {
|
.slick-slide {
|
||||||
|
|
||||||
float: left;
|
float: left;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
min-height: 1px;
|
min-height: 1px;
|
||||||
@ -103,12 +105,21 @@
|
|||||||
.slick-prev {
|
.slick-prev {
|
||||||
background: url("https://agenciamagma.vteximg.com.br/arquivos/arrow-left-mini-M3Academy.svg")
|
background: url("https://agenciamagma.vteximg.com.br/arquivos/arrow-left-mini-M3Academy.svg")
|
||||||
no-repeat center center;
|
no-repeat center center;
|
||||||
|
border: none;
|
||||||
|
background-color: transparent;
|
||||||
|
top: 38%;
|
||||||
z-index: 4;
|
z-index: 4;
|
||||||
left: 10px;
|
left: 6px;
|
||||||
}
|
}
|
||||||
.slick-next {
|
.slick-next {
|
||||||
|
background: url("https://agenciamagma.vteximg.com.br/arquivos/arrow-right-mini-M3Academy.svg")
|
||||||
|
no-repeat center center;
|
||||||
|
border: none;
|
||||||
|
background-color: transparent;
|
||||||
|
bottom: 57%;
|
||||||
|
right: 22px;
|
||||||
z-index: 4;
|
z-index: 4;
|
||||||
right: 10px;
|
|
||||||
}
|
}
|
||||||
.slick-arrow.slick-hidden {
|
.slick-arrow.slick-hidden {
|
||||||
display: none;
|
display: none;
|
||||||
@ -133,4 +144,9 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -2,14 +2,52 @@
|
|||||||
.footerCheckout {
|
.footerCheckout {
|
||||||
border-top: none;
|
border-top: none;
|
||||||
color: $color-gray2;
|
color: $color-gray2;
|
||||||
|
margin-top: auto;
|
||||||
|
|
||||||
&__wrapper {
|
&__wrapper {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
border-top: 1px solid black;
|
||||||
|
// justify-content: space-between;
|
||||||
|
// position: fixed;
|
||||||
|
// bottom: 0;
|
||||||
|
// left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
margin: 0;
|
||||||
|
justify-content: space-between;
|
||||||
|
|
||||||
|
@media (min-width: 1200px) {
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
margin: 0 0 0 9px;
|
||||||
|
display: grid;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.color-img {
|
||||||
|
background-color: rgb(238, 238, 238);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
&__listImage {
|
||||||
|
// margin: 0 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
&__address {
|
&__address {
|
||||||
|
margin: 27px 0 24px 0;
|
||||||
|
width: 269px;
|
||||||
color: $color-gray2;
|
color: $color-gray2;
|
||||||
font-family: $font-family;
|
font-family: $font-family;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
@ -17,15 +55,45 @@
|
|||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
line-height: 12px;
|
line-height: 12px;
|
||||||
text-transform: capitalize;
|
text-transform: capitalize;
|
||||||
max-width: 40%;
|
// max-width: 40%;
|
||||||
|
|
||||||
@include mq(md, max) {
|
@include mq(md, max) {
|
||||||
margin-bottom: 24px;
|
margin-bottom: 24px;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@media (min-width: 2500px) {
|
||||||
|
width: 537px;
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 27px;
|
||||||
|
text-transform: capitalize;
|
||||||
|
color: #292929;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
margin: 0px 0 16px 7px;
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 10px;
|
||||||
|
line-height: 14px;
|
||||||
|
text-transform: capitalize;
|
||||||
|
color: #292929;
|
||||||
|
width: 269px;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__stamps {
|
&__stamps {
|
||||||
|
width: 404px;
|
||||||
|
margin: 16px 189px 16px 137px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-self: center;
|
justify-self: center;
|
||||||
@ -43,18 +111,67 @@
|
|||||||
margin: 0 8px;
|
margin: 0 8px;
|
||||||
width: 1px;
|
width: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (min-width: 2500px) {
|
||||||
|
width: 690px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
width: 342px;
|
||||||
|
margin: 16px 0 16px 0;
|
||||||
|
order: -1;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&__developedBy {
|
&__developedBy {
|
||||||
|
width: 217px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
display: flex;
|
display: flex;
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
||||||
li:last-child {
|
li:last-child {
|
||||||
margin-left: 16px;
|
// margin-left: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.vtex-rigth1 {
|
||||||
|
width: 15%;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.vtex-rigth2 {
|
||||||
|
width: 8%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.list {
|
||||||
|
@media (min-width: 2500px) {
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: 25px;
|
||||||
|
width: 388px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
margin: 0 0 16px 7px;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// color: #292929;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
a {
|
a {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
color: $color-gray2;
|
color: $color-gray2;
|
||||||
@ -69,6 +186,13 @@
|
|||||||
span {
|
span {
|
||||||
margin-right: 8px;
|
margin-right: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.desativaSlick{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
@ -1,8 +1,163 @@
|
|||||||
/* _header.scss */
|
/* _header.scss */
|
||||||
.headerCheckout {
|
.headerCheckout {
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
width: auto !important;
|
// width: auto !important;
|
||||||
|
width: 79.53125%;
|
||||||
|
margin: 30px auto;
|
||||||
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
width: 97%;
|
||||||
|
// margin: 30px 16px;
|
||||||
|
margin: 16px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 375px) {
|
||||||
|
margin: 16px;
|
||||||
|
width: 92%;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#progressBar {
|
||||||
|
width: 439px;
|
||||||
|
|
||||||
|
@media (min-width: 2500px) {
|
||||||
|
width: 1078px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 375px) {
|
||||||
|
width: 68px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
ul {
|
||||||
|
list-style-type: none;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
margin: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
li .containerLi {
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: flex-start;
|
||||||
|
justify-content: center;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
li.central .containerLi {
|
||||||
|
align-items: center;
|
||||||
|
margin-left: 7px;
|
||||||
|
}
|
||||||
|
|
||||||
|
li:last-child .containerLi {
|
||||||
|
align-items: flex-end;
|
||||||
|
}
|
||||||
|
|
||||||
|
li .containerLi div {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
li {
|
||||||
|
width: 40%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
font-family: "Tenor Sans", sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 28px;
|
||||||
|
color: $color-liPonto;
|
||||||
|
|
||||||
|
@media (min-width: 2500px) {
|
||||||
|
font-size: 24px;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
li.central {
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
li #progress-bar-circle-1,
|
||||||
|
li #progress-bar-circle-2,
|
||||||
|
li #progress-bar-circle-3 {
|
||||||
|
|
||||||
|
width: 12px;
|
||||||
|
height: 12px;
|
||||||
|
border: 1px solid $color-liPonto;
|
||||||
|
border-radius: 50%;
|
||||||
|
|
||||||
|
@media (min-width: 2500px) {
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
li #progress-bar-circle-1.active,
|
||||||
|
li #progress-bar-circle-2.active,
|
||||||
|
li #progress-bar-circle-3.active {
|
||||||
|
// border: none;
|
||||||
|
background-color: $color-liPonto;
|
||||||
|
}
|
||||||
|
|
||||||
|
li .progress-bar-line-1 {
|
||||||
|
|
||||||
|
position: absolute;
|
||||||
|
left: 26%;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
bottom: 4px;
|
||||||
|
width: 98%;
|
||||||
|
height: 1px;
|
||||||
|
border-top: 1px solid $color-liPonto;
|
||||||
|
|
||||||
|
@media (min-width: 2500px) {
|
||||||
|
left: 21%;
|
||||||
|
bottom: 9px;
|
||||||
|
width: 102%;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
li .progress-bar-line-2 {
|
||||||
|
position: absolute;
|
||||||
|
right: 22%;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
bottom: 4px;
|
||||||
|
width: 98%;
|
||||||
|
height: 1px;
|
||||||
|
border-top: 1px solid $color-liPonto;
|
||||||
|
|
||||||
|
@media (min-width: 2500px) {
|
||||||
|
right: 18%;
|
||||||
|
bottom: 10px;
|
||||||
|
width: 103%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&__wrapper {
|
&__wrapper {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -13,11 +168,32 @@
|
|||||||
img {
|
img {
|
||||||
height: 52px;
|
height: 52px;
|
||||||
width: auto;
|
width: auto;
|
||||||
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
width: 50%;
|
||||||
|
height: auto;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 375px) {
|
||||||
|
// margin: 16px;
|
||||||
|
width: 155px;
|
||||||
|
height: auto;
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__safeBuy {
|
&__safeBuy {
|
||||||
|
display: flex;
|
||||||
|
img{
|
||||||
|
width: 12px;
|
||||||
|
height: 15px;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
span {
|
span {
|
||||||
|
padding-left: 8px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
display: flex;
|
display: flex;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
@ -32,5 +208,21 @@
|
|||||||
i {
|
i {
|
||||||
margin-right: 8px;
|
margin-right: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
width: 18%;
|
||||||
|
|
||||||
|
}
|
||||||
|
@media (max-width: 375px) {
|
||||||
|
width: 10.05%;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.ship-country{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
@ -1 +1,182 @@
|
|||||||
/* _prateleira.scss */
|
/* _prateleira.scss */
|
||||||
|
|
||||||
|
.footerCheckout{
|
||||||
|
|
||||||
|
.container-carrossel-item{
|
||||||
|
margin: 0 132px;
|
||||||
|
|
||||||
|
@media (max-width: 1024px) {
|
||||||
|
margin: 0 16px;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.slick-slide{
|
||||||
|
width: 242px;
|
||||||
|
margin: 0 16px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-foot{
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
margin: 0 0 20px 0;
|
||||||
|
font-family: 'Tenor Sans';
|
||||||
|
font-family: 'Tenor Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 24px;
|
||||||
|
line-height: 38px;
|
||||||
|
/* identical to box height, or 158% */
|
||||||
|
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
color: #000000;
|
||||||
|
|
||||||
|
@media (min-width: 2500px) {
|
||||||
|
|
||||||
|
font-family: 'Tenor Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 48px;
|
||||||
|
line-height: 76px;
|
||||||
|
/* identical to box height, or 158% */
|
||||||
|
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
color: #000000;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 375px){
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 28px
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.container-tamanho-cores{
|
||||||
|
margin-bottom: 20px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
@media (max-width: 375px) {
|
||||||
|
flex-wrap: wrap
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.tamanho{
|
||||||
|
// width: 26px;
|
||||||
|
// background: #00C8FF;
|
||||||
|
// border-radius: 8px;
|
||||||
|
margin-left: 5px;
|
||||||
|
background: #00C8FF;
|
||||||
|
border-radius: 8px;
|
||||||
|
min-width: 9.3%;
|
||||||
|
padding: 4px;
|
||||||
|
justify-content: center;
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 18px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
text-align: center;
|
||||||
|
letter-spacing: 0.05em;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: #FFFFFF;
|
||||||
|
text-decoration: none;
|
||||||
|
|
||||||
|
@media (min-width: 2500px) {
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 26px;
|
||||||
|
line-height: 35px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
text-align: center;
|
||||||
|
letter-spacing: 0.05em;
|
||||||
|
text-transform: uppercase;
|
||||||
|
|
||||||
|
color: #FFFFFF;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 375px){
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.numeProduct{
|
||||||
|
margin: 20px 0;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
@media (min-width: 2500px) {
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 26px;
|
||||||
|
line-height: 35px;
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 375px) {
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 18px;
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.bottons {
|
||||||
|
margin-bottom: 56px;
|
||||||
|
// display: flex;
|
||||||
|
// justify-content: center;
|
||||||
|
width: 100%;
|
||||||
|
height: 42px;
|
||||||
|
background: #00c8ff;
|
||||||
|
border: none;
|
||||||
|
border-radius: 8px;
|
||||||
|
font-family: 'Open Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 18px;
|
||||||
|
align-items: center;
|
||||||
|
text-align: center;
|
||||||
|
letter-spacing: 0.05em;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: #FFFFFF;
|
||||||
|
|
||||||
|
@media (min-width: 2500px) {font-family: 'Open Sans';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 26px;
|
||||||
|
line-height: 35px;
|
||||||
|
|
||||||
|
align-items: center;
|
||||||
|
text-align: center;
|
||||||
|
letter-spacing: 0.05em;
|
||||||
|
text-transform: uppercase;
|
||||||
|
|
||||||
|
color: #FFFFFF;}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -6,6 +6,7 @@ $font-family-secundary:"Tenor Sans", sans-serif;
|
|||||||
|
|
||||||
/* Colors */
|
/* Colors */
|
||||||
$color-black: #292929;
|
$color-black: #292929;
|
||||||
|
$color-liPonto: #000000;
|
||||||
|
|
||||||
$color-white: #fff;
|
$color-white: #fff;
|
||||||
|
|
||||||
@ -16,6 +17,7 @@ $color-gray4: #8d8d8d;
|
|||||||
$color-gray5: #e5e5e5;
|
$color-gray5: #e5e5e5;
|
||||||
|
|
||||||
$color-blue: #4267b2;
|
$color-blue: #4267b2;
|
||||||
|
$color-finalizar: #00C8FF;
|
||||||
|
|
||||||
$color-green: #4caf50;
|
$color-green: #4caf50;
|
||||||
|
|
||||||
|
2
package-lock.json
generated
2
package-lock.json
generated
@ -45,6 +45,7 @@
|
|||||||
"jquery": "^3.6.0",
|
"jquery": "^3.6.0",
|
||||||
"m3-utils": "^0.1.0",
|
"m3-utils": "^0.1.0",
|
||||||
"sass": "^1.38.1",
|
"sass": "^1.38.1",
|
||||||
|
"slick-carousel": "^1.8.1",
|
||||||
"terser-webpack-plugin": "^5.1.4"
|
"terser-webpack-plugin": "^5.1.4"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
@ -19345,6 +19346,7 @@
|
|||||||
"m3-utils": "^0.1.0",
|
"m3-utils": "^0.1.0",
|
||||||
"prettier": "^2.3.2",
|
"prettier": "^2.3.2",
|
||||||
"sass": "^1.38.1",
|
"sass": "^1.38.1",
|
||||||
|
"slick-carousel": "^1.8.1",
|
||||||
"terser-webpack-plugin": "^5.1.4",
|
"terser-webpack-plugin": "^5.1.4",
|
||||||
"webpack": "^5.51.1",
|
"webpack": "^5.51.1",
|
||||||
"webpack-merge": "^5.8.0"
|
"webpack-merge": "^5.8.0"
|
||||||
|
Loading…
Reference in New Issue
Block a user