2023-01-12 16:56:35 +00:00
|
|
|
/*
|
|
|
|
0 - 600PX: Phone
|
|
|
|
600 - 900px: Table portrait
|
|
|
|
900 - 1200px: Tablet landscape
|
|
|
|
[1200 - 1800] is where our nortal styles apply
|
|
|
|
1800px + : Big desktop
|
|
|
|
*/
|
|
|
|
/* Media Query M3 */
|
2023-02-02 14:00:37 +00:00
|
|
|
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;700&display=swap");
|
|
|
|
/*font*/
|
|
|
|
/*colors*/
|
2023-01-12 16:56:35 +00:00
|
|
|
/* Grid breakpoints */
|
|
|
|
.newsletter {
|
2023-01-27 14:41:29 +00:00
|
|
|
background: black;
|
|
|
|
border-bottom: 1px solid #FFFFFF;
|
|
|
|
margin: 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container {
|
2023-01-31 20:29:57 +00:00
|
|
|
max-width: 100%;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2023-01-27 14:41:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.label {
|
|
|
|
font-family: "Open Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 24px;
|
|
|
|
line-height: 38px;
|
|
|
|
text-align: center;
|
|
|
|
color: #FFFFFF;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.label::after {
|
|
|
|
content: "Receba ofertas e novidades por e-mail";
|
2023-02-02 14:00:37 +00:00
|
|
|
font-family: sans-serif;
|
2023-01-27 14:41:29 +00:00
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 25px;
|
|
|
|
text-align: center;
|
|
|
|
color: #929292;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 16px;
|
|
|
|
margin-top: 16px;
|
2023-01-25 21:18:34 +00:00
|
|
|
}
|
|
|
|
|
2023-01-31 20:29:57 +00:00
|
|
|
.productDescriptionTitle {
|
2023-02-02 14:00:37 +00:00
|
|
|
font-family: sans-serif;
|
2023-01-31 20:29:57 +00:00
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 24px;
|
|
|
|
line-height: 32px;
|
|
|
|
color: #575757;
|
|
|
|
margin-bottom: 8px;
|
2023-01-27 14:41:29 +00:00
|
|
|
}
|
|
|
|
|
2023-01-31 20:29:57 +00:00
|
|
|
.productDescriptionText {
|
|
|
|
text-align: left;
|
2023-02-02 14:00:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.thumbImg {
|
|
|
|
width: 86%;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.productImagesThumb {
|
|
|
|
width: 15%;
|
2023-02-03 19:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.shippingTableHead {
|
|
|
|
display: grid;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shippingTableHeadDeliveryName {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shippingTableHeadDeliveryEstimate {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shippingTableHeadDeliveryPrice {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shippingTableRow {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 110px 110px 130px;
|
|
|
|
grid-template-areas: "t p d ";
|
|
|
|
}
|
|
|
|
|
|
|
|
.shippingTableHead {
|
|
|
|
display: flex;
|
|
|
|
gap: 60px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shippingTableRadioBtn {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shippingTableCellDeliveryName {
|
|
|
|
grid-area: t;
|
|
|
|
padding: 0;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shippingTableCellDeliveryEstimate {
|
|
|
|
grid-area: d;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shippingTableCellDeliveryPrice {
|
|
|
|
grid-area: p;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shareContainer {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shippingContainer :global(.vtex-button) {
|
|
|
|
width: 49px;
|
|
|
|
height: 49px;
|
|
|
|
background-color: black;
|
|
|
|
}
|
|
|
|
.shippingContainer :global(.vtex-button) :global(.vtex-button__label) {
|
|
|
|
font-size: 0;
|
|
|
|
}
|
|
|
|
.shippingContainer :global(.vtex-button) :global(.vtex-button__label)::after {
|
|
|
|
content: "Ok";
|
|
|
|
color: white;
|
|
|
|
font-size: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shippingContainer :global(.vtex-input) :global(.vtex-input__label) {
|
|
|
|
font-size: 0;
|
|
|
|
}
|
|
|
|
.shippingContainer :global(.vtex-input) :global(.vtex-input__label)::after {
|
|
|
|
content: "CALCULAR FRETE:";
|
|
|
|
font-family: "Open Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 19px;
|
|
|
|
color: #929292;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shippingContainer :global(.vtex-input-prefix__group) {
|
|
|
|
width: 280px;
|
|
|
|
position: relative;
|
|
|
|
height: 49px;
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shippingContainer :global(.vtex-button) {
|
|
|
|
position: absolute;
|
|
|
|
top: 731.1px;
|
|
|
|
right: 563px;
|
2023-01-12 16:56:35 +00:00
|
|
|
}
|