2023-02-09 13:45:27 +00:00
|
|
|
.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;
|
|
|
|
.listItem {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
:global(.vtex-button) {
|
|
|
|
background: white;
|
|
|
|
border: none;
|
|
|
|
border-radius: 0;
|
|
|
|
: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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.listItemActive {
|
|
|
|
:global(.vtex-button) {
|
|
|
|
background: white;
|
|
|
|
border-bottom: 2px solid #000000;
|
|
|
|
border-radius: 0;
|
|
|
|
: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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.contentItem {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
gap: 32px;
|
|
|
|
}
|
2023-02-10 00:34:14 +00:00
|
|
|
@media screen and (max-width: 1024px) and (min-width: 768px) {
|
|
|
|
.listContainer {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
.contentItem {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
border-bottom: 1px solid #b9b9b9;
|
|
|
|
padding-bottom: 16px;
|
|
|
|
}
|
|
|
|
.productDescriptionText {
|
|
|
|
text-align: justify;
|
|
|
|
}
|
|
|
|
}
|