w-aura/src/components/pages/ABDesign/v1/pages/TrialChoice/styles.module.scss
Daniil Chemerkin dfac0e4d5b Develop
2024-08-29 21:30:04 +00:00

205 lines
3.1 KiB
SCSS

.page {
display: flex;
flex-direction: column;
gap: 10px;
min-height: 100dvh;
height: fit-content;
background-color: #fff0f0;
padding: 0 42px 126px;
width: 100%;
max-width: 500px;
}
.background-top-blob {
position: absolute;
top: 0;
left: 0;
scale: 1.4;
}
.header {
z-index: 1;
width: calc(100% + 36px) !important;
}
.text {
font-size: 15px;
line-height: 125%;
font-weight: 300;
text-align: center;
}
.text.bold {
font-weight: 600;
}
.blue {
color: #1c38ea;
}
.auxiliary-text {
font-size: 12px;
line-height: 16px;
color: rgb(52, 52, 52);
width: 100%;
text-align: center;
position: sticky;
bottom: 8px;
}
.price-container {
position: relative;
width: 100%;
margin-top: 10px;
display: flex;
flex-direction: column;
gap: 20px;
}
.price-item {
background: #fff;
color: rgb(51, 51, 51);
box-shadow: rgba(84, 60, 151, 0.25) 2px 2px 6px;
border-radius: 12px;
display: flex;
-webkit-box-align: center;
align-items: center;
-webkit-box-pack: center;
justify-content: center;
font-weight: 600;
width: calc((100% - 30px) / 4);
max-width: 72px;
max-height: 72px;
height: auto;
aspect-ratio: 1 / 1;
position: relative;
z-index: 1;
}
.price-item-active {
color: rgb(251, 251, 255);
}
.price-item-active.male {
background-color: #85b6ff;
}
.price-item-active.female {
background-color: #d1acf2;
}
.arrow-image {
position: absolute;
width: 26px;
height: 33px;
top: 76px;
right: 32px;
}
.emails-list-container {
width: 100%;
margin-top: 20px;
}
.emails-container.female {
background-color: #d6bbee;
}
.emails-container.male {
background-color: #85b6ff;
}
.emails-title {
font-weight: 500;
line-height: 125%;
font-size: 15px;
color: #fff;
margin-bottom: 6px;
text-align: center;
}
.email-item {
background: rgb(251, 251, 255);
border-radius: 4px;
padding: 5px 7px;
font-size: 12px;
line-height: 130%;
display: flex;
width: max-content;
color: rgb(79, 79, 79);
}
.button {
font-size: 18px;
min-height: 0;
height: 50px;
position: fixed;
bottom: calc(0dvh + 16px);
width: calc(100% - 84px);
z-index: 10;
}
.blur {
position: fixed !important;
height: unset !important;
bottom: calc(0dvh + 16px);
width: calc(100% - 84px) !important;
max-width: 396px;
}
.gradient-blur {
top: -74px !important;
}
.button.disabled {
opacity: 0.3;
}
.toast-container {
position: fixed;
bottom: calc(0dvh + 82px);
width: calc(100% - 84px);
max-width: 400px;
}
.email {
font-weight: 500;
word-break: break-all;
white-space: normal;
line-height: 1.3;
text-align: center;
}
.loader {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.personal-video {
position: fixed !important;
top: 0dvh;
z-index: 30;
margin-top: 0 !important;
border-radius: 0 !important;
}
.discount-expires {
flex-direction: row !important;
gap: 12px;
font-size: 1.5rem;
& > h6 {
font-size: 17px;
}
& > div > p,
& > div > div > span:first-child {
font-size: 20px;
}
& > div > div > span:last-child {
font-size: 10px;
}
}