.preloader, #stepperForm, .card {
display: none;
}
.preloader {
justify-content: center;
align-items: center;
.preloader__img {
width: 64px;
height: 64px;
}
}
#configurator {
--content-spacing: 1.5em;
.initial-section__title {
color: var(--e-global-color-95d5043);
font-family: "Roboto", Sans-serif;
font-size: 70px;
font-weight: 600;
line-height: 1.3em;
}
.initial-section__btn {
font-size: 20px;
border-radius: 8px;
padding: 10px 116px;
border: none;
color: #fff;
cursor: pointer;
}
.initial-section__btn:hover {
opacity: 0.9;
}
.initial-section__btn--blue {
background-color: #3531FF;
}
.initial-section__btn--blue:hover {
background-color: #2623D6;
}
.stepper-form-container {
width: 400px;
border-radius: 18px;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
padding: 30px;
padding-bottom: 75px;
position: relative;
}
.card__header {
display: flex;
justify-content: center;
align-items: center;
gap: 6px;
margin-bottom: 30px;
}
.card__title {
text-align: center;
font-size: 1.4rem;
font-weight: 700;
margin-bottom: 0;
}
.card__list {
list-style: none;
padding: 0;
}
.card__list-item {
display: flex;
gap: 45px;
align-items: center;
background: #f2f2f2;
padding: 15px 20px;
border-radius: 8px;
font-weight: 500;
transition: all 0.5s;
cursor: pointer;
}
.card__list-item * {
pointer-events: none;
}
.card__list-item:hover {
background: #D9D9D9 !important;
}
.card__list-item:not(:last-child) {
margin-bottom: 10px;
}
.card__list-item-icon {
max-width: 35px !important;
max-height: 35px !important;
-o-object-fit: contain !important;
object-fit: contain !important;
}
.card__footer {
display: flex;
align-items: center;
gap: 5px;
margin-top: var(--content-spacing);
}
.card--invisible {
display: none;
}
.dialog {
min-width: 500px;
max-width: 800px;
max-height: 75vh;
border-radius: 16px;
padding: 15px 20px 0px 20px;
border: none !important;
outline: none !important;
}
.dialog__header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 25px;
}
.dialog__title {
text-align: center;
font-size: 1.4rem;
font-weight: 600;
margin-bottom: 0;
}
.dialog__close-btn {
font-weight: 700;
cursor: pointer;
}
.dialog img {
max-width: 100%;
max-height: 500px;
-o-object-fit: contain;
object-fit: contain;
margin-top: 10px;
}
.navigator {
display: flex;
align-items: center;
position: absolute;
bottom: 20px;
left: 25px;
right: 30px;
}
.navigator__prev-btn {
width: 36px;
height: 36px;
display: inline-flex;
justify-content: center;
align-items: center;
border-radius: 50%;
background: #E5E5E5;
font-size: 1.4rem;
cursor: pointer;
z-index: 1;
}
.navigator__prev-btn-icon {
width: 16px !important;
height: 16px !important;
}
.navigator__progressbar {
text-align: center;
position: absolute;
left: 0;
right: 0;
}
.navigator__progressbar-dot {
cursor: pointer;
height: 12px;
width: 12px;
margin: 0 2px;
background-color: #EEEEEE;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.navigator__progressbar-dot--active {
background-color: #717171;
}
.icon--clickable {
cursor: pointer;
}
}
@media screen and (max-width: 600px) { #configurator {
.dialog {
max-width: 90vw;
}
.stepper-form-container {
width: 100%;
}
.initial-section__title {
font-size: 38px;
}
.initial-section__btn {
font-size: 18px;
border-radius: 8px;
padding: 6px 80px;
}
}
}