2023-01-30 00:02:42 +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%27");
|
|
|
|
/* Grid breakpoints */
|
|
|
|
.container--description {
|
|
|
|
margin-top: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.contentItem {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
gap: 32px;
|
|
|
|
margin-top: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.listContainer {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
border-bottom: 1px solid #bfbfbf;
|
|
|
|
}
|
|
|
|
|
|
|
|
.listItem {
|
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.listItem :global(.vtex-button) {
|
|
|
|
border: none;
|
|
|
|
background: transparent;
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 38px;
|
|
|
|
color: #bfbfbf;
|
|
|
|
text-transform: capitalize;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.listItemActive :global(.vtex-button) {
|
|
|
|
border: none;
|
|
|
|
background: transparent;
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 38px;
|
2023-02-01 13:20:54 +00:00
|
|
|
color: #000000;
|
|
|
|
border-bottom: 2px solid #000000;
|
2023-01-30 00:02:42 +00:00
|
|
|
border-radius: 0;
|
|
|
|
text-transform: capitalize;
|
|
|
|
}
|