44 lines
617 B
CSS
44 lines
617 B
CSS
.payment-modal {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 250px;
|
|
gap: 25px;
|
|
color: #2f2e37;
|
|
}
|
|
|
|
.title {
|
|
font-weight: 700;
|
|
font-size: 20px;
|
|
line-height: 20px;
|
|
text-align: center;
|
|
margin: 0;
|
|
}
|
|
|
|
.sub-plan-description {
|
|
font-size: 12px;
|
|
text-align: center;
|
|
line-height: 150%;
|
|
}
|
|
|
|
.payment-method-container {
|
|
width: 100%;
|
|
}
|
|
|
|
.address {
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.payment-method {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 16px;
|
|
}
|
|
|
|
.address {
|
|
color: gray;
|
|
font-size: 10px;
|
|
} |