34 lines
534 B
CSS
34 lines
534 B
CSS
|
.PayWithPix {
|
||
|
display: flex;
|
||
|
column-gap: 26px;
|
||
|
align-items: center;
|
||
|
margin: 16px 0 24px;
|
||
|
}
|
||
|
|
||
|
.PayWithPix__pixIcon {
|
||
|
width: 66px;
|
||
|
height: 24px;
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
.PayWithPix__wrapper {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
.PayWithPix__price {
|
||
|
font-family: "Open Sans", sans-serif;
|
||
|
font-weight: 700;
|
||
|
font-size: 18px;
|
||
|
line-height: 25px;
|
||
|
color: rgba(0, 0, 0, 0.58);
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
.PayWithPix__discount {
|
||
|
font-family: "Open Sans", sans-serif;
|
||
|
font-weight: 300;
|
||
|
font-size: 13px;
|
||
|
color: #929292;
|
||
|
}
|