.circle-wrapper {
    position: relative;
    width: max-content;
    max-width: 100%;
    margin: 24px auto;

}

@media (min-width: 768px) {
    .circle-wrapper {
        width: max-content;
    }
}

.circle-wrapper .indicator-circle-animation {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
}

.circle-wrapper .indicator-circle-animation dotlottie-wc {
    max-width: 80%;
    height: auto;
    z-index: -1;
}

@media (min-width: 768px) {
    .circle-wrapper .indicator-circle-animation dotlottie-wc {
        max-width: auto;
    }
}

@media (min-width: 768px) {
    .circle-wrapper .circle {
        width: auto;
    }
}

.circle-wrapper .info {
    align-items: center;
    position: absolute;
    transition: transform 0.3s;
    overflow: visible;
    flex-direction: row;
    display: none;
}

@media (min-width: 768px) {
    .circle-wrapper .info {
        display: flex;
    }
}

.circle-wrapper .info.left {
    flex-direction: row-reverse;
}

.circle-wrapper .info.top.left {
    transform: translate(0, 50%);
}

.circle-wrapper .info.top.right {
    transform: translate(0, 50%);
}

.circle-wrapper .info.bottom.left {
    transform: translate(0, -50%);
}

.circle-wrapper .info.bottom.right {
    transform: translate(0, -50%);
}

.circle-wrapper .info__text {
    width: 100px;
    padding: 8px;
    border-radius: 8px;
    background: #FFF;
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
    font-size: 12px;
    line-height: 140%;
    text-align: center;
    min-height: 30px;
    box-sizing: border-box;
}
[lang="fr"] .circle-wrapper .info__text {
    width: 115px;
}

.circle-wrapper .info__dot {
    position: relative;
    z-index: 1;
}

.circle-wrapper .info__dot svg {
    display: block;
}

.info {
    overflow: hidden;
    cursor: pointer;
}


.info {
    opacity: 1;
    transition: opacity 1s;
}

.info.selected.selected {
    overflow: visible;
    z-index: 1;
}


.has-selected .info:not(.selected) {
    opacity: 1;
    transition: opacity 0.3s;
}

.info.selected .info__details {
    transition: opacity 0.3s;
    opacity: 1;
}

.info.selected.left.top .info__details {
    top: 0;
    left: 0;
}

.info.selected.right.top .info__details {
    top: 0;
    right: 0;
}

.info.selected.left.bottom .info__details {
    bottom: 0;
    left: 0;
}

.info.selected.right.bottom .info__details {
    bottom: 0;
    right: 0;
}

.info.selected .info__dot, .info.selected .info__text {
    display: none;
}

.circle path {
    cursor: pointer;
}

.circle .indicator-circle-svg {
    overflow: visible;
    width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .circle .indicator-circle-svg {
        width: auto;
    }
}

.circle path[data-indicator] {
    stroke-width: 0;
    transition: all 0.3s ease;
}

.circle path[data-indicator]:hover,
.circle path[data-indicator]:focus {
    stroke-width: 10;
}

.info.left .info__dot {
    transform: scaleX(-1);
}

.info.right .info__dot {
    transform: translateX(1px);
}

.indicator-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.info-list-item {
    display: flex;
    align-items: center;
    align-self: stretch;
    cursor: pointer;
}

.info-list__text {
    background-color: #FFFFFF;
    display: flex;
    padding: 12px 8px;
    justify-content: left;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    color: #1B1C1D;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 16.8px */
    border-radius: 6px 0 0 6px;
    box-shadow: -4px 9px 18px 7px rgba(0, 0, 0, 0.06);
}

.info-list__icon {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}

.info-list__dot img {
    display: block;
    width: 20px;
    height: 20px;
}

.info-list__dot {
    display: flex;
    padding: 2px;
    align-items: flex-start;
    gap: 10px;
    border-radius: 12px 0px 0px 12px;
    background: #FFF;
}

.info-list__subtract-top,
.info-list__subtract-bottom {
    mix-blend-mode: exclusion;
    width: 6px;
    height: 6px;
    fill: #FFF;
    position: relative;
    z-index: 1;
}