2023-04-19 20:22:06 +03:00
|
|
|
@use "sass:math";
|
2023-04-27 21:15:55 +03:00
|
|
|
@import "./../../../assets/functions.scss";
|
2022-03-18 16:39:13 +03:00
|
|
|
|
|
|
|
$maxWidthContainer: 1123;
|
|
|
|
|
2023-04-19 20:22:06 +03:00
|
|
|
._container {
|
|
|
|
max-width: 1123px;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 0 10px;
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
|
|
|
|
2023-04-19 20:22:06 +03:00
|
|
|
.quiz-text {
|
|
|
|
font-size: 20px;
|
|
|
|
font-weight: 400;
|
|
|
|
line-height: math.div(30, 20);
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
2023-04-19 20:22:06 +03:00
|
|
|
.title {
|
|
|
|
color: #282828;
|
|
|
|
font-family: "GT Eesti Pro Display";
|
|
|
|
font-size: 33px;
|
|
|
|
font-weight: 700;
|
|
|
|
line-height: math.div(48, 33);
|
|
|
|
letter-spacing: 0.56px;
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
2023-04-19 20:22:06 +03:00
|
|
|
.subtitle {
|
|
|
|
color: #373936;
|
|
|
|
font-family: "GT Eesti Pro Display";
|
|
|
|
font-size: 20px;
|
|
|
|
font-weight: 400;
|
|
|
|
line-height: math.div(25, 20);
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
2023-04-19 20:22:06 +03:00
|
|
|
.quiz-btn {
|
|
|
|
display: flex;
|
|
|
|
font-family: "Lab Grotesque";
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
// box-shadow: 6px 5px 20px rgba(82, 151, 34, 0.21);
|
|
|
|
white-space: nowrap;
|
|
|
|
background: #406128;
|
|
|
|
border-radius: 44px;
|
|
|
|
color: #fff;
|
|
|
|
outline: none;
|
|
|
|
//border: 2px solid #52b709;
|
|
|
|
border: none;
|
|
|
|
transition: 0 all ease 0.8s;
|
|
|
|
padding: 7px 51px;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 14px;
|
|
|
|
text-decoration: none;
|
|
|
|
line-height: 200%;
|
|
|
|
// &:hover{
|
|
|
|
// text-decoration: none;
|
|
|
|
// color: #52b709;
|
|
|
|
// background: #fff;
|
|
|
|
// }
|
|
|
|
&_back {
|
|
|
|
background: #dddddd;
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
&_dark-green {
|
|
|
|
background-color: #1a310c;
|
|
|
|
border: 2px solid #1a310c;
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
color: #1a310c;
|
|
|
|
background: #fff;
|
|
|
|
}
|
|
|
|
}
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
2023-04-19 20:22:06 +03:00
|
|
|
.quiz-title_h3 {
|
|
|
|
font-family: "Lab Grotesque";
|
|
|
|
font-weight: 700;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 156%;
|
|
|
|
color: #52b709;
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
|
|
|
//=============================================
|
2022-10-19 17:47:07 +03:00
|
|
|
|
|
|
|
.error-msg {
|
2023-04-19 20:22:06 +03:00
|
|
|
text-align: center;
|
|
|
|
font-size: 25px;
|
|
|
|
color: red;
|
|
|
|
font-weight: 500;
|
2022-10-19 17:47:07 +03:00
|
|
|
}
|
|
|
|
|
2023-04-19 20:22:06 +03:00
|
|
|
.task {
|
|
|
|
@include adaptiv-value("padding-top", 35, 10, 1);
|
|
|
|
background: #fff;
|
|
|
|
border-radius: 12px;
|
|
|
|
&__container {
|
|
|
|
max-width: $maxWidthContainer + px;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 31px 51px;
|
|
|
|
}
|
|
|
|
&__body {
|
|
|
|
margin-left: 50px;
|
|
|
|
}
|
|
|
|
&__header {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 24px;
|
|
|
|
margin-bottom: 38px;
|
|
|
|
}
|
|
|
|
&__title {
|
|
|
|
}
|
|
|
|
&__form {
|
|
|
|
}
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
2023-04-19 20:22:06 +03:00
|
|
|
|
|
|
|
.form-task {
|
|
|
|
&__field {
|
|
|
|
padding: 10px 15px;
|
|
|
|
font-size: 17px;
|
2022-03-18 16:39:13 +03:00
|
|
|
font-family: "GT Eesti Pro Display";
|
2023-04-19 20:22:06 +03:00
|
|
|
letter-spacing: 0.3px;
|
|
|
|
outline: none;
|
|
|
|
border: none;
|
|
|
|
width: 100%;
|
|
|
|
resize: vertical;
|
|
|
|
background: #eff1f3;
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
&__check {
|
|
|
|
padding: 0;
|
|
|
|
height: initial;
|
|
|
|
width: initial;
|
|
|
|
margin-bottom: 0;
|
|
|
|
display: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
&__buttons {
|
|
|
|
display: flex;
|
|
|
|
gap: 56px;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items: center;
|
|
|
|
@include adaptiv-value("margin-top", 60, 30, 1);
|
|
|
|
}
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
|
|
|
|
2023-04-19 20:22:06 +03:00
|
|
|
.form-task__group {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 13px;
|
|
|
|
font-family: "Lab Grotesque";
|
|
|
|
label {
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 160%;
|
|
|
|
color: #000000;
|
|
|
|
position: relative;
|
|
|
|
margin: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
&:before {
|
|
|
|
content: "";
|
|
|
|
-webkit-appearance: none;
|
|
|
|
background-color: #eff1f3;
|
|
|
|
border: 2px solid #eff1f3;
|
|
|
|
border-radius: 8px;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
vertical-align: middle;
|
|
|
|
cursor: pointer;
|
|
|
|
margin-right: 16px;
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
2023-04-19 20:22:06 +03:00
|
|
|
}
|
|
|
|
input[type="radio"]:checked + label::after {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 7.5px;
|
|
|
|
left: 6px;
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
background: #8dc63f;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
input:checked + label:before {
|
|
|
|
background: #eff1f3;
|
|
|
|
}
|
2022-10-19 17:47:07 +03:00
|
|
|
|
2023-04-19 20:22:06 +03:00
|
|
|
input[type="checkbox"]:checked + label:after {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 7px;
|
|
|
|
left: 9px;
|
|
|
|
width: 6px;
|
|
|
|
height: 13px;
|
|
|
|
border: solid #1c1243;
|
|
|
|
border-width: 0 2px 2px 0;
|
|
|
|
transform: rotate(45deg);
|
|
|
|
}
|
|
|
|
}
|
2022-10-19 17:47:07 +03:00
|
|
|
|
2023-04-19 20:22:06 +03:00
|
|
|
.instruction {
|
|
|
|
&__container {
|
|
|
|
max-width: $maxWidthContainer + px;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 0 10px;
|
|
|
|
}
|
|
|
|
&__title {
|
|
|
|
@include adaptiv-value("margin-bottom", 62, 20, 1);
|
|
|
|
}
|
|
|
|
&__text {
|
|
|
|
color: #373936;
|
|
|
|
font-family: "GT Eesti Pro Display";
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: 300;
|
|
|
|
line-height: math.div(28, 18);
|
|
|
|
@include adaptiv-value("margin-bottom", 50, 20, 1);
|
|
|
|
span {
|
|
|
|
color: #54b611;
|
|
|
|
font-weight: 700;
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
2023-04-19 20:22:06 +03:00
|
|
|
&_info {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&__info {
|
2022-03-18 16:39:13 +03:00
|
|
|
display: flex;
|
2023-04-19 20:22:06 +03:00
|
|
|
gap: 24px;
|
2022-03-18 16:39:13 +03:00
|
|
|
align-items: center;
|
2023-04-19 20:22:06 +03:00
|
|
|
}
|
|
|
|
&__icon {
|
|
|
|
width: 36px;
|
|
|
|
height: 33px;
|
|
|
|
}
|
|
|
|
&__btn {
|
|
|
|
margin-bottom: 34px;
|
|
|
|
}
|
|
|
|
}
|
2022-10-19 17:47:07 +03:00
|
|
|
|
2023-04-19 20:22:06 +03:00
|
|
|
.result {
|
|
|
|
font-family: "GT Eesti Pro Display";
|
|
|
|
&__body {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: flex-start;
|
|
|
|
gap: 10px;
|
|
|
|
}
|
|
|
|
&__text {
|
|
|
|
font-size: 24px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
&__score {
|
|
|
|
color: #5cb42b;
|
|
|
|
}
|
|
|
|
}
|
2022-03-18 16:39:13 +03:00
|
|
|
|
2023-04-19 20:22:06 +03:00
|
|
|
.selected-category {
|
|
|
|
background: #ffffff;
|
|
|
|
border-radius: 12px;
|
|
|
|
&__container {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 35px;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
@media (max-width: 723px) {
|
|
|
|
justify-content: space-between;
|
|
|
|
row-gap: 25px;
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
2023-04-19 20:22:06 +03:00
|
|
|
}
|
|
|
|
&__title {
|
|
|
|
font-weight: 700;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 156%;
|
|
|
|
color: #406128;
|
|
|
|
margin: 0 32px 0 0;
|
|
|
|
}
|
|
|
|
&__category {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 18px;
|
|
|
|
margin: 0 44px 0 0;
|
|
|
|
}
|
|
|
|
&__img {
|
|
|
|
height: 48px;
|
|
|
|
flex: 0 0 48px;
|
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
2023-04-19 20:22:06 +03:00
|
|
|
}
|
|
|
|
&__title-category {
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 122%;
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
&__button {
|
|
|
|
background: #e1fccf;
|
|
|
|
border-radius: 44px;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 229%;
|
|
|
|
border: none;
|
|
|
|
padding: 5px 20px;
|
|
|
|
color: #000000;
|
|
|
|
@media (max-width: 723px) {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
text-align: center;
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
|
|
|
|
2023-04-19 20:22:06 +03:00
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
color: inherit;
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
2023-04-19 20:22:06 +03:00
|
|
|
}
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
|
|
|
|
2023-04-19 20:22:06 +03:00
|
|
|
.card-introduction {
|
|
|
|
padding: 0px 25px;
|
|
|
|
margin: 0px 0px 50px 0px;
|
|
|
|
flex: 0 1 33.333%;
|
|
|
|
@media (max-width: 850px) {
|
|
|
|
flex: 0 1 50%;
|
|
|
|
}
|
|
|
|
@media (max-width: 850px) {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
2022-10-19 17:47:07 +03:00
|
|
|
|
2023-04-19 20:22:06 +03:00
|
|
|
&__body {
|
|
|
|
display: flex;
|
|
|
|
gap: 20px;
|
|
|
|
}
|
|
|
|
&__title {
|
|
|
|
font-weight: 900;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 171%;
|
|
|
|
color: #52b709;
|
|
|
|
margin: 0 0 30px 0;
|
|
|
|
}
|
|
|
|
&__icon {
|
|
|
|
flex: 0 0 25px;
|
|
|
|
height: 30px;
|
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
2023-04-19 20:22:06 +03:00
|
|
|
}
|
|
|
|
&__text {
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 200%;
|
|
|
|
color: #000000;
|
|
|
|
}
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
|
|
|
|
2023-04-19 20:22:06 +03:00
|
|
|
.quiz-passing-information {
|
|
|
|
background: #fff;
|
|
|
|
border-radius: 12px;
|
|
|
|
&__container {
|
|
|
|
// @media (max-width: 600px) {
|
|
|
|
// display: block;
|
|
|
|
// }
|
|
|
|
// @media (max-width: 600px) {
|
|
|
|
// display: block;
|
|
|
|
// }
|
|
|
|
// @media (max-width: 600px) {
|
|
|
|
// display: block;
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
&__main {
|
|
|
|
//flex: 1 1 auto;
|
|
|
|
padding: 35px 45px;
|
|
|
|
height: 100%;
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1.2fr 1.2fr 0.6fr;
|
|
|
|
@media (max-width: 900px) {
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
grid-gap: 20px;
|
|
|
|
}
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
grid-template-columns: 1fr;
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
2023-04-19 20:22:06 +03:00
|
|
|
}
|
|
|
|
&__icon {
|
|
|
|
flex: 0 0 32px;
|
|
|
|
height: 35px;
|
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: contain;
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
2023-04-19 20:22:06 +03:00
|
|
|
}
|
|
|
|
&__text {
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 167%;
|
|
|
|
color: #6f6f6f;
|
|
|
|
span {
|
|
|
|
color: #111112;
|
|
|
|
font-weight: 700;
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
2023-04-19 20:22:06 +03:00
|
|
|
}
|
|
|
|
&__timer,
|
|
|
|
&__attempt {
|
|
|
|
display: flex;
|
|
|
|
gap: 23px;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__specialization {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 15px;
|
|
|
|
}
|
|
|
|
&__specialization-title {
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 122%;
|
|
|
|
color: #000000;
|
|
|
|
word-break: break-word;
|
|
|
|
}
|
|
|
|
&__button {
|
|
|
|
font-size: 18px;
|
|
|
|
max-width: 174px;
|
|
|
|
height: 46px;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
|
|
|
|
2023-04-19 20:22:06 +03:00
|
|
|
.block-text {
|
|
|
|
border-radius: 12px;
|
|
|
|
background: #fff;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
padding: 18px 0;
|
|
|
|
font-weight: 700;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 156%;
|
|
|
|
color: #000000;
|
|
|
|
a {
|
|
|
|
color: #406128;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-available-test {
|
|
|
|
position: relative;
|
|
|
|
background: #ffffff;
|
|
|
|
border-radius: 12px;
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
|
|
|
&__container {
|
2022-03-18 16:39:13 +03:00
|
|
|
display: block;
|
2023-04-19 20:22:06 +03:00
|
|
|
@include adaptiv-value("padding-top", 30, 20, 1);
|
|
|
|
@include adaptiv-value("padding-bottom", 30, 20, 1);
|
|
|
|
@include adaptiv-value("padding-right", 28, 18, 1);
|
|
|
|
@include adaptiv-value("padding-left", 28, 18, 1);
|
|
|
|
}
|
2022-10-19 17:47:07 +03:00
|
|
|
|
2023-04-19 20:22:06 +03:00
|
|
|
&:hover {
|
|
|
|
box-shadow: 6px 5px 20px rgb(87 98 80 / 21%);
|
|
|
|
transform: scale(1.02);
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__top-head {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 19px;
|
|
|
|
margin: 0 0 24px 0;
|
|
|
|
}
|
|
|
|
&__title {
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 122%;
|
|
|
|
color: #000000;
|
|
|
|
max-width: 128px;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__info {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
p {
|
|
|
|
flex: 0 1 66%;
|
|
|
|
font-weight: 700;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 20px;
|
|
|
|
color: #000000;
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
|
|
span {
|
|
|
|
color: #52b709;
|
|
|
|
font-weight: 700;
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
2023-04-19 20:22:06 +03:00
|
|
|
}
|
|
|
|
&Link {
|
|
|
|
width: 48px;
|
|
|
|
height: 48px;
|
|
|
|
background: #ddeec6;
|
|
|
|
border-radius: 50px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&__finished {
|
|
|
|
background: rgba(255, 255, 255, 0.76);
|
|
|
|
mix-blend-mode: normal;
|
|
|
|
border: 3px solid #52b709;
|
|
|
|
border-radius: 12px;
|
|
|
|
padding: 13px 16px;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
|
|
justify-content: space-between;
|
|
|
|
gap: 10px;
|
|
|
|
p {
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 129%;
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
color: #fff;
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
2023-04-19 20:22:06 +03:00
|
|
|
|
|
|
|
display: block;
|
|
|
|
background: #52b709;
|
|
|
|
border-radius: 44px;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 213%;
|
|
|
|
color: #ffffff;
|
|
|
|
padding: 9px 25px;
|
|
|
|
white-space: nowrap;
|
|
|
|
outline: none;
|
|
|
|
border: none;
|
|
|
|
}
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
2023-04-19 20:22:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.block-completed-test {
|
|
|
|
background: #ffffff;
|
|
|
|
border-radius: 12px;
|
|
|
|
// .block-completed-test__container
|
2022-03-18 16:39:13 +03:00
|
|
|
|
2023-04-19 20:22:06 +03:00
|
|
|
&__container {
|
|
|
|
padding: 41px 35px 29px 59px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
// .block-completed-test__img
|
|
|
|
|
|
|
|
&__img {
|
|
|
|
flex: 0 0 54px;
|
|
|
|
height: 60px;
|
|
|
|
margin: 0 34px 0 0;
|
|
|
|
img {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
2023-04-19 20:22:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// .block-completed-test__title
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
font-weight: 700;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 156%;
|
|
|
|
margin: 0 60px 0 0;
|
|
|
|
color: #52b709;
|
|
|
|
}
|
|
|
|
|
|
|
|
// .block-completed-test__text
|
|
|
|
|
|
|
|
&__text {
|
|
|
|
max-width: 386px;
|
|
|
|
margin: 0 26px 0 0;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 200%;
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
// .block-completed-test__button
|
|
|
|
|
|
|
|
&__button {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.report {
|
|
|
|
// .report__row
|
|
|
|
|
|
|
|
&__row {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
@media (max-width: 600px) {
|
|
|
|
display: block;
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
2023-04-19 20:22:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// .report__column
|
|
|
|
|
|
|
|
&__column {
|
|
|
|
&:first-child {
|
|
|
|
background: #ffffff;
|
|
|
|
flex: 0 1 22%;
|
|
|
|
border-radius: 12px;
|
|
|
|
@media (max-width: 1000px) {
|
|
|
|
flex: 0 1 50%;
|
|
|
|
}
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
2023-04-19 20:22:06 +03:00
|
|
|
height: 128px;
|
|
|
|
border-radius: 0px 12px 0px 0px;
|
|
|
|
flex: 0 1 26%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
background: #e1fccf;
|
|
|
|
gap: 21px;
|
|
|
|
&:last-child {
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 0;
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
2023-04-19 20:22:06 +03:00
|
|
|
@media (max-width: 1000px) {
|
|
|
|
flex: 0 1 50%;
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
2023-04-19 20:22:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// .report__job-title
|
|
|
|
|
|
|
|
&__job-title {
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 122%;
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
// .report__value
|
|
|
|
|
|
|
|
&__value {
|
|
|
|
font-weight: 700;
|
|
|
|
font-size: 52px;
|
|
|
|
line-height: 56%;
|
|
|
|
color: #52b709;
|
|
|
|
// .report__value_false
|
|
|
|
|
|
|
|
&_false {
|
|
|
|
color: #5b6871;
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
2023-04-19 20:22:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// .report__text
|
|
|
|
|
|
|
|
&__text {
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 138%;
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
// .report__status-text
|
|
|
|
|
|
|
|
&__status-text {
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 200%;
|
|
|
|
color: #000000;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
// .report__status
|
|
|
|
|
|
|
|
&__status {
|
|
|
|
background: #1458dd;
|
|
|
|
border-radius: 44px;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 200%;
|
|
|
|
color: #ffffff;
|
|
|
|
padding: 7px 34px;
|
|
|
|
max-width: 154px;
|
|
|
|
}
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
|
|
|
|
2023-04-19 20:22:06 +03:00
|
|
|
.alert-result {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
@include adaptiv-value("padding-top", 39, 20, 1);
|
|
|
|
@include adaptiv-value("padding-bottom", 39, 20, 1);
|
|
|
|
@include adaptiv-value("padding-right", 61, 20, 1);
|
|
|
|
@include adaptiv-value("padding-left", 61, 20, 1);
|
|
|
|
background: #fff;
|
|
|
|
gap: 30px;
|
|
|
|
border-radius: 10px;
|
|
|
|
@media (max-width: 900px) {
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
&__column {
|
|
|
|
display: flex;
|
|
|
|
@include adaptiv-value("gap", 44, 14, 1);
|
|
|
|
align-items: center;
|
|
|
|
@media (max-width: 900px) {
|
|
|
|
flex: 1 1 auto;
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
2023-04-19 20:22:06 +03:00
|
|
|
}
|
|
|
|
&__icon {
|
|
|
|
width: 39px;
|
|
|
|
height: 39px;
|
|
|
|
}
|
|
|
|
&__text {
|
|
|
|
font-weight: 700;
|
|
|
|
@include adaptiv-value("font-size", 18, 14, 1);
|
|
|
|
line-height: 156%;
|
|
|
|
word-break: break-word;
|
|
|
|
}
|
|
|
|
&__button {
|
|
|
|
width: 231px;
|
|
|
|
@include adaptiv-value("font-size", 16, 14, 1);
|
|
|
|
@media (max-width: 900px) {
|
|
|
|
width: 100%;
|
2022-03-18 16:39:13 +03:00
|
|
|
}
|
2023-04-19 20:22:06 +03:00
|
|
|
}
|
2022-10-19 17:47:07 +03:00
|
|
|
}
|