2025-11-19 22:34:27 +03:00
|
|
|
.circleContainer {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 50%;
|
|
|
|
|
left: 50%;
|
|
|
|
|
|
|
|
|
|
width: calc(var(--circle-radius, 265px) * 2);
|
|
|
|
|
height: calc(var(--circle-radius, 265px) * 2);
|
|
|
|
|
|
2025-11-20 16:07:18 +03:00
|
|
|
border: 1px solid rgba(#42567A, 0.2);
|
2025-11-19 22:34:27 +03:00
|
|
|
border-radius: 50%;
|
|
|
|
|
|
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.point {
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
2025-11-20 16:07:18 +03:00
|
|
|
width: 56px;
|
|
|
|
|
height: 56px;
|
|
|
|
|
margin-top: -28px;
|
|
|
|
|
margin-left: -28px;
|
2025-11-19 22:34:27 +03:00
|
|
|
|
2025-11-23 13:14:20 +03:00
|
|
|
border: 25px solid transparent;
|
2025-11-20 16:07:18 +03:00
|
|
|
border-radius: 50%;
|
2025-11-19 22:34:27 +03:00
|
|
|
|
|
|
|
|
background: var(--color-text);
|
2025-11-20 16:07:18 +03:00
|
|
|
background-clip: content-box;
|
|
|
|
|
|
|
|
|
|
cursor: pointer;
|
2025-11-19 22:34:27 +03:00
|
|
|
|
|
|
|
|
transform-origin: center;
|
|
|
|
|
|
2025-11-20 16:07:18 +03:00
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
|
2025-11-19 22:34:27 +03:00
|
|
|
&:hover,
|
|
|
|
|
&.active {
|
|
|
|
|
z-index: 10;
|
|
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
2025-11-20 16:07:18 +03:00
|
|
|
align-items: center;
|
2025-11-19 22:34:27 +03:00
|
|
|
|
2025-11-20 16:07:18 +03:00
|
|
|
border: 1px solid rgba(#303E58, 0.5);
|
2025-11-19 22:34:27 +03:00
|
|
|
|
|
|
|
|
background: #F4F5F9;
|
2025-11-20 16:07:18 +03:00
|
|
|
background-clip: padding-box;
|
2025-11-19 22:34:27 +03:00
|
|
|
}
|
|
|
|
|
|
2025-11-23 13:14:20 +03:00
|
|
|
&:hover .number,
|
|
|
|
|
&.active .number {
|
2025-11-19 22:34:27 +03:00
|
|
|
display: block;
|
|
|
|
|
}
|
2025-11-20 16:07:18 +03:00
|
|
|
|
2025-11-23 13:14:20 +03:00
|
|
|
.number {
|
2025-11-20 16:07:18 +03:00
|
|
|
display: none;
|
|
|
|
|
|
|
|
|
|
color: var(--color-text);
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
}
|
2025-11-23 13:14:20 +03:00
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 100%;
|
|
|
|
|
|
|
|
|
|
margin-left: 20px;
|
|
|
|
|
|
|
|
|
|
color: var(--color-text);
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
|
|
visibility: hidden;
|
2025-11-23 13:34:40 +03:00
|
|
|
|
|
|
|
|
opacity: 0;
|
2025-11-23 13:14:20 +03:00
|
|
|
}
|
2025-11-19 22:34:27 +03:00
|
|
|
}
|