#exclusive-offer-modal .modal-window .modal-window-body{
    background: #2B2930;
    border-radius: 16px 16px 0 0;
    padding: 24px;
    height: 100%;
}
.modal-so-v-109 {
    text-align: center;
    display: grid;
    gap: 16px;
}
.modal-so-v-109 .main-label {
    position: relative;
}
.modal-so-v-109 .main-label .hr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.40);
    width: 100%;
}

.theme-pe-black #exclusive-offer-modal.modal-so-v-109 p{
    line-height: 24px;
}

.theme-pe-black #exclusive-offer-modal .modal-so-v-109 h3{
    margin: 0;
}

.modal-so-v-109 .main-label .text {
    position: absolute;
    padding: 0 16px;
    text-wrap: nowrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #2B2930;
    color: rgba(255, 255, 255, 0.40);
}

.anxiety-level {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 16px 0;
}

.anxiety-level .chart {
    position: relative;
    display: flex;
    width: 60%;
    height: 175px;
    gap: 40%;
}

#exclusive-offer-modal .anxiety-level .scale {
    position: absolute;
    max-width: 366px;
    box-sizing: border-box;
    width: 100%;
}

#exclusive-offer-modal .anxiety-level .scale img {
    max-width: 100%;
}

.anxiety-level .bar-wrapper {
    background: transparent;
    border-radius: 8px;
    position: relative;
    flex: 1;
    height: 100%;
    align-items: flex-end;
    display: flex;
    width: 10%;
}

.anxiety-level .bar {
    width: 100%;
    height: 0;
    transition: height 1s ease-out;
    border-radius: 4px;
}

.anxiety-level .bar-wrapper.first .bar {
    border-radius: 8px 8px 0 0;
    background: linear-gradient(180deg, #807F83 0%, #2B2B2B 100%)
}

.anxiety-level .bar-wrapper.last .bar {
    border-radius: 8px 8px 0 0;
    background: linear-gradient(180deg, #EB3349 28.94%, #2B2B2B 95.54%);
}

.anxiety-level .bar-wrapper.first {
    --target: 35%;
}

.anxiety-level .bar-wrapper.last {
    --target: 70%;
}

.anxiety-level .chart .bar-wrapper.animate .bar {
    height: var(--target);
}

.anxiety-level .chart .bar-wrapper .label {
    color: #FFF;
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: 0.2px;
    opacity: 0;
    transition: opacity 1s ease-out;
    padding: 2px 8px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.40);
    background: #2B2930;
    position: absolute;
    width: 125%;
    left: -11%;
    bottom: -5px;
    text-wrap: nowrap;
}

.anxiety-level .chart .bar-wrapper .label.visible {
    opacity: 1;
}

.anxiety-level .chart .bar-wrapper .tooltip {
    position: absolute;
    display: flex;
    padding: 2px 8px;
    justify-content: center;
    align-items: center;
    gap: 2px 8px;
    border-radius: 8px;
    opacity: 0;
    color: #FFF;
    text-wrap: nowrap;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    font-weight: 500;
    line-height: 24px;
}

.anxiety-level .chart .bar-wrapper.first .tooltip {
    background: #807F83;
    top: 52%;
}

.anxiety-level .chart .bar-wrapper.last .tooltip {
    background: #EB3349;
    top: 16%;
}

.anxiety-level .tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 7px;
    border-style: solid;
}

.anxiety-level .chart .bar-wrapper.first .tooltip:after {
    border-color: #807F83 transparent transparent transparent;
}

.anxiety-level .chart .bar-wrapper.last .tooltip:after {
    border-color: #EB3349 transparent transparent transparent;
}

.anxiety-level #chart-line-container {
    position: absolute;
    top: 40%;
    left: 12%;
    right: 13%;
    bottom: 20%;
}

.anxiety-level .chart .line {
    width: 100%;
    height: 100%;


    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.5s steps(500, end);
    -webkit-clip-path: inset(0 100% 0 0);
}

.anxiety-level .chart .line.visible {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.anxiety-level .tooltip.drop {
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 1s;
}

.anxiety-level .chart.animate .bar {
    height: var(--target);
}

.modal-so-v-109 .annotation {
    color: rgba(255, 255, 255, 0.40);
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}
.modal-so-v-109 .description {
    padding: 8px;
    align-self: stretch;
    border-radius: 16px;
    background: #36343B;
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
.modal-so-v-109 .description .highlight{
    font-weight: 700;
}

.theme-pe-black #exclusive-offer-modal .modal-so-v-109 a{
    margin: 0;
}