83 lines
1.2 KiB
SCSS
83 lines
1.2 KiB
SCSS
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
-webkit-box-align: center;
|
|
align-items: center;
|
|
position: relative;
|
|
border-radius: 16px;
|
|
width: 100%;
|
|
|
|
& > .title {
|
|
font-size: 18px;
|
|
line-height: 135%;
|
|
margin-bottom: 16px;
|
|
margin-top: 0;
|
|
}
|
|
}
|
|
|
|
.header {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin-bottom: 12px;
|
|
|
|
& > .textContainer {
|
|
& > .title {
|
|
color: #1b6acb;
|
|
line-height: 125%;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
& > .text {
|
|
font-size: 13px;
|
|
line-height: 125%;
|
|
}
|
|
}
|
|
|
|
& > img {
|
|
height: 100px;
|
|
}
|
|
}
|
|
|
|
.line {
|
|
width: 100%;
|
|
height: 1px;
|
|
background: rgb(203, 203, 203);
|
|
}
|
|
|
|
.footer {
|
|
margin-top: 16px;
|
|
width: 100%;
|
|
|
|
& > .oneTimePrice {
|
|
line-height: 24px;
|
|
}
|
|
|
|
& > .oldPrice {
|
|
line-height: 24px;
|
|
margin-bottom: 16px;
|
|
|
|
& > .save {
|
|
color: #1b6acb;
|
|
}
|
|
}
|
|
}
|
|
|
|
.chooseContainer {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: 8px;
|
|
margin-top: 16px;
|
|
|
|
& > .chooseText {
|
|
color: #066fdf;
|
|
line-height: 125%;
|
|
}
|
|
}
|