2023-02-09 13:45:27 +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 */
|
|
|
|
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap");
|
|
|
|
/* Grid breakpoints */
|
|
|
|
.container {
|
2023-02-09 21:09:03 +00:00
|
|
|
padding: 0 40px 16px 40px;
|
2023-02-09 13:45:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.listContainer {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
border-bottom: 1px solid #b9b9b9;
|
|
|
|
margin-bottom: 32px;
|
|
|
|
}
|
|
|
|
.listContainer .listItem {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.listContainer .listItem :global(.vtex-button) {
|
|
|
|
background: white;
|
|
|
|
border: none;
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
.listContainer .listItem :global(.vtex-button) :global(.vtex-button__label) {
|
|
|
|
font-family: "Open Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 38px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
text-align: center;
|
|
|
|
color: #bfbfbf;
|
|
|
|
text-transform: initial;
|
|
|
|
}
|
|
|
|
.listContainer .listItemActive :global(.vtex-button) {
|
|
|
|
background: white;
|
|
|
|
border-bottom: 2px solid #000000;
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
.listContainer .listItemActive :global(.vtex-button) :global(.vtex-button__label) {
|
|
|
|
font-family: "Open Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 38px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
text-align: center;
|
|
|
|
color: #000000;
|
|
|
|
text-transform: initial;
|
|
|
|
}
|
|
|
|
|
2023-02-02 19:04:52 +00:00
|
|
|
.contentItem {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2023-02-09 13:45:27 +00:00
|
|
|
gap: 32px;
|
|
|
|
}
|