2023-01-25 04:01:38 +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 */
|
|
|
|
/* Grid breakpoints */
|
|
|
|
.container--estrutura {
|
2023-01-25 21:59:38 +00:00
|
|
|
padding-left: 40px !important;
|
2023-01-25 04:01:38 +00:00
|
|
|
padding-right: 40px !important;
|
|
|
|
}
|
|
|
|
.container--estrutura .listContainer--Guias {
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: flex-start;
|
2023-01-25 21:59:38 +00:00
|
|
|
border-bottom: 1px solid #b9b9b9;
|
2023-01-25 04:01:38 +00:00
|
|
|
padding: 0px 64px;
|
|
|
|
margin-bottom: 36px;
|
|
|
|
}
|
2023-01-25 21:59:38 +00:00
|
|
|
@media (max-width: 1024px) {
|
|
|
|
.container--estrutura .listContainer--Guias {
|
|
|
|
flex-direction: column;
|
|
|
|
padding: 0px 0px;
|
|
|
|
}
|
|
|
|
}
|
2023-01-25 04:01:38 +00:00
|
|
|
.container--estrutura .listContainer--Guias .listItem--renderGuia {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.container--estrutura .listContainer--Guias .listItem--renderGuia :global(.vtex-button) {
|
|
|
|
font-family: "Open Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 38px;
|
2023-01-25 21:59:38 +00:00
|
|
|
color: #bfbfbf;
|
2023-01-26 21:21:01 +00:00
|
|
|
text-transform: capitalize;
|
2023-01-25 21:59:38 +00:00
|
|
|
}
|
|
|
|
@media (max-width: 1024px) {
|
|
|
|
.container--estrutura .listContainer--Guias .listItem--renderGuia :global(.vtex-button__label) {
|
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 48px;
|
|
|
|
}
|
2023-01-25 04:01:38 +00:00
|
|
|
}
|
|
|
|
.container--estrutura .listContainer--Guias .listItemActive--renderGuia {
|
|
|
|
border-bottom: 3px solid #000000;
|
|
|
|
background-color: white;
|
|
|
|
}
|
2023-01-25 21:59:38 +00:00
|
|
|
@media (max-width: 1024px) {
|
|
|
|
.container--estrutura .listContainer--Guias .listItemActive--renderGuia {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
}
|
2023-01-25 04:01:38 +00:00
|
|
|
.container--estrutura .listContainer--Guias .listItemActive--renderGuia :global(.vtex-button) {
|
|
|
|
font-family: "Open Sans";
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 38px;
|
|
|
|
color: black;
|
|
|
|
background-color: white !important;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
.container--estrutura .contentContainer--listRender {
|
|
|
|
margin-left: 32px;
|
2023-01-25 21:59:38 +00:00
|
|
|
padding-right: 52px;
|
|
|
|
}
|
|
|
|
@media (max-width: 1024px) {
|
|
|
|
.container--estrutura .contentContainer--listRender {
|
|
|
|
margin-left: 0px;
|
|
|
|
padding-right: 0px;
|
|
|
|
}
|
2023-01-25 04:01:38 +00:00
|
|
|
}
|