/* Minification failed. Returning unminified contents.
(455,20): run-time error CSS1036: Expected expression, found ':'
 */

.graph-container {
    color: #777;
    margin: -30px 0 80px
}

.graph-item {
    margin: 0 0 50px;
    display: flex;
    align-items: center
}

    .graph-item:nth-child(1) {
        width: 100%
    }

    .graph-item:nth-child(2) {
        width: 100%;
        margin-top: 80px
    }

    .graph-item:after {
        content: '';
        display: block;
        clear: both
    }

    .graph-item .label {
        width: 120px;
        padding: 0 10px 0 0;
        font-size: 12px;
        text-align: right;
        color: #777;
        flex: 0 0 120px
    }

html[lang="de-de"] .graph-item .label {
    font-size: 11px
}

.graph-item .graph {
    width: 350px;
    height: 75px;
    position: relative;
    flex: 0 0 350px
}

/*.graph-item:nth-child(2) .graph {
    flex: 0 0 350px;
    width: 350px
}*/

.graph-item .text {
    padding: 0 0 0 15px;
    font-size: 14px;
    color: #777;
    opacity: 0;
    transform: translateX(20px);
    transition: all .3s 1.8s
}

.graph-item.in-view .text {
    opacity: 1;
    transform: none
}

.graph-item .line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    /*    background: #54c6d7;
    background: -moz-linear-gradient(left, rgba(84, 198, 215, 1) 0%, rgba(0, 102, 170, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(84, 198, 215, 1) 0%, rgba(0, 102, 170, 1) 100%);
    background: linear-gradient(to right, rgba(84, 198, 215, 1) 0%, rgba(0, 102, 170, 1) 100%);*/
    background: #003366;
    background-image: linear-gradient(to right, #003366, #385682, #627c9f, #8fa4bc, #bfccd9);
}




/* .graph-item.in-view .line {
            width: 3%
        }

        .graph-item:nth-child(2).in-view .line {
            width: 20%
        }*/

.graph-item .line-after {
    position: absolute;
    transition: width 1s linear;
    top: 0;
    bottom: 0;
    right: 0;
    width: 0;
    z-index: 1;
    background: #fff;
    background: -moz-linear-gradient(left, rgba(254, 254, 254, 1) 0%, rgba(216, 216, 217, 1) 30%, rgba(184, 183, 183, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(254, 254, 254, 1) 0%, rgba(216, 216, 217, 1) 30%, rgba(184, 183, 183, 1) 100%);
    background: linear-gradient(to right, rgba(254, 254, 254, 1) 0%, rgba(216, 216, 217, 1) 30%, rgba(184, 183, 183, 1) 100%)
}

.graph-item.in-view .line-after {
    width: 99%
}

.graph-item:nth-child(2).in-view .line-after {
    width: 90%
}

.graph-item:nth-child(3).in-view .line-after {
    width: 75%
}

.graph-item .sign-right {
    position: absolute;
    right: 0;
    font-size: 12px;
    color: #777;
    top: 100%;
    padding: 5px 0 0;
    text-align: right;
    width: 50%;
    font-style: italic
}

.graph-item .sign {
    position: absolute;
    left: 0;
    font-size: 12px;
    color: #777;
    top: 100%;
    padding: 5px 0 0;
    text-align: left;
    width: 150px;
    font-style: italic;
    opacity: 0;
    transform: translateY(20px);
    transition: all .3s ease 1.5s
}

.graph-item:nth-child(2) .sign {
    text-align: right;
    left: auto;
    right: 0
}

.graph-item.in-view .sign {
    opacity: 1;
    transform: none
}

.graph-item .right-text {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%) translateX(50px);
    padding: 0 0 0 40px;
    font-weight: bold;
    color: #40668c;
    font-size: 16px;
    line-height: 18px;
    opacity: 0;
    transition: all .5s 1s
}

html[lang="ja-jp"] .graph-item .right-text {
    min-width: 154px
}

.graph-item.in-view .right-text {
    opacity: 1;
    transform: translateY(-50%) translateX(0)
}

.graph-item .right-text:before {
    content: '';
    position: absolute;
    left: 7px;
    width: 0;
    height: 0;
    top: 50%;
    margin-top: -27px;
    border-top: 27px solid transparent;
    border-right: 23px solid #519cbf;
    border-bottom: 27px solid transparent
}

.graph-item .counter {
    font-size: 20px
}

.legend {
    max-width: 475px;
    margin: 0 0 0 120px;
    border-top: 1px solid #d2d2d6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px
}

    .legend p {
        margin: 0;
        font-size: 12px;
        color: #777;
        padding: 0 0 0 10px
    }

    .legend .color-box {
        width: 26px;
        height: 26px;
        /* background: #54c6d7;
        background: -moz-linear-gradient(left, rgba(84, 198, 215, 1) 0%, rgba(0, 102, 170, 1) 100%);
        background: -webkit-linear-gradient(left, rgba(84, 198, 215, 1) 0%, rgba(0, 102, 170, 1) 100%);
        background: linear-gradient(to right, rgba(84, 198, 215, 1) 0%, rgba(0, 102, 170, 1) 100%)*/


        background: #8099b3;
        background: rgb(191,204,217);
        background: linear-gradient(180deg, rgba(191,204,217,1) 0%, rgba(0,51,102,1) 100%);
        transition: width 1s linear
    }

    .legend .legend-item:last-child .color-box {
        background: #bbb
    }

    .legend .legend-item {
        display: flex;
        align-items: center
    }


.graph-container .project-scope, .graph-container .selection-timeframe {
    width: 100%;
}

.graph-container .graph-item .details {
    opacity: 0;
}


@keyframes project-scope {
    from {
        width: 100%;
    }

    to {
        width: 1%;
    }
}

.project-scope {
    animation: project-scope 3000ms;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes selection-timeframe {
    from {
        width: 100%;
    }

    to {
        width: 10%;
    }
}

.selection-timeframe {
    animation: selection-timeframe 3000ms;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}


@keyframes project-start{
    from {
        width: 100%;
    }

    to {
        width: 25%;
    }
}

.project-start {
    animation: project-start 3000ms;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}



.graph-container .graph-item .details {
    opacity: 0;
}


@keyframes show-text {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.show-text {
    animation: show-text 4000ms;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

/*
.graph-container-vertical .graph-item .graph {
    width: 75px;
    height: 350px;
    position: relative;
    flex: none;
}

.graph-container-vertical .graph-item .sign-right {
    width: 100%;
}

.graph-container-vertical .project-scope, .graph-container .selection-timeframe {
    height: 200px;
}

.graph-container-vertical .graph-item .line {
    top: unset;
}

.graph-container-vertical .graph-item .right-text {
    left: unset;
    top: -25px;
}


.graph-container-vertical .graph-item .right-text:before {
    left: 15px;
    width: 0;
    height: 0;
    top: 26px;
    border-top: 27px solid #519cbf;
    border-right: 23px solid transparent;
    border-left: 27px solid transparent;
}

.graph-container-vertical .counter{
    position: absolute;
    top: -28px;
    left: 0px;
    width: 320px;
}*/

@media only screen and (max-width:1023px) {
    .graph-item:nth-child(1) {
        width: 85%
    }

    .graph-item .graph {
        width: 260px;
        flex: 0 0 260px
    }

    .graph-container {
        margin: 0 0 60px
    }

    .graph-item:nth-child(2) .graph {
        flex: 0 0 400px;
        width: 400px
    }
}

@media only screen and (max-width:767px) {
    .graph-item:nth-child(1) {
        width: 100%
    }

    .graph-item {
        flex-wrap: wrap;
        margin: 0 0 30px
    }

        .graph-item .label {
            width: 86px;
            font-size: 9px;
            flex: 0 0 86px
        }

    html[lang="de-de"] .graph-item .label {
        font-size: 8px
    }

    .graph-item .graph {
        width: 44%;
        flex: 0 0 44%;
        height: 50px
    }

    .graph-item .sign-right,
    .graph-item .sign {
        font-size: 10px;
        padding: 3px 0 0;
        line-height: 1.2
    }

    .graph-item .right-text {
        font-size: 12px;
        line-height: 14px;
        padding: 0 0 0 34px
    }

    .graph-item .counter {
        font-size: 16px
    }

    .graph-item .text {
        width: 100%;
        font-size: 12px;
        padding: 25px 0 0 86px
    }

    .graph-item:nth-child(2) {
        margin-top: 0
    }

        .graph-item:nth-child(2) .graph {
            width: calc(100% - 86px);
            flex: 0 0 calc(100% - 86px)
        }

    .legend {
        margin: 0 0 0 86px;
        padding: 15px 0 0
    }

        .legend p {
            font-size: 10px
        }

        .legend .color-box {
            width: :21px;
            height: 21px
        }

    .graph-container {
        margin: 0 0 40px
    }

    .graph-item .right-text:before {
        left: 7px;
        margin-top: -22px;
        border-top: 22px solid transparent;
        border-right: 18px solid #519cbf;
        border-bottom: 22px solid transparent
    }

    html[lang="ja-jp"] .graph-item .right-text {
        min-width: 120px
    }
}

@media only screen and (max-width:439px) {
    html[lang="es"] .graph-item:nth-child(1) .sign-right {
        right: auto;
        width: 200%;
        left: 65%;
        text-align: left
    }
}



/*START VERTICAL BAR*/

.wrap-anim {
    margin: 0 0 110px
}

    .wrap-anim:after {
        content: "";
        clear: both;
        display: block
    }

.chart-container {
    width: 59%;
    float: right;
    max-width: 600px;
    padding: 77px 10px 0;
    margin: 0 auto;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #cbcbd0
}

    .chart-container .chart-body.in-view:before {
        width: calc(100% + 20px)
    }

    .chart-container .chart-body:before {
        position: absolute;
        top: 33%;
        left: -10px;
        content: "";
        width: 0;
        transition: width .3s 3.9s;
        border-bottom: 2px dashed #cbcbd0;
        opacity:0;
    }

.chart-body {
    position: relative;
    height: 360px
}

    .chart-body .bar {
        position: absolute;
        bottom: 0;
        width: 18%;
        height: 100%;
        left: 0;
        z-index: 2
    }

        .chart-body .bar:before {
            content: "";
            position: absolute;
            left: 0;
            z-index: -1;
            right: 0;
            bottom: 0;
            height: 0;
            background: #003366;
            transition: height .3s ease 0s
        }

        .chart-body .bar:nth-child(2):before {
            transition-delay: .6s;
            opacity: .27;
        }

        .chart-body .bar:nth-child(6):before {
            transition-delay: .6s;
            opacity: 0;
        }

        .chart-body .bar:nth-child(3):before {
            transition-delay: 1.2s;
            transition-duration: .15s;
            opacity: 0;
            transition: visibility 0s 5s, opacity 5s linear;
        }

        .chart-body .bar:nth-child(4):before {
            transition-delay: 1.8s;
            transition-duration: .15s;
            opacity: 0;
        }

        .chart-body .bar:nth-child(5):before {
            transition-delay: 2.4s;
            transition-duration: .15s;
            opacity: 0;
        }

    .chart-body.in-view .bar:before {
        height: 100%
    }

    .chart-body .green:before {
        background: #24b56f
    }

    .chart-body .blue:before {
        background: #003366;
        background-image: linear-gradient(to top, #003366, #385682, #627c9f, #8fa4bc, #bfccd9);
    }

    .chart-body .bar:nth-child(2) {
        left: 21%;
       /* background: rgb(210,210,210);
        background: linear-gradient(to top, rgba(254, 254, 254, 1) 0%, rgba(216, 216, 217, 1) 30%, rgba(184, 183, 183, 1) 100%)*/
    }

    .chart-body .bar:nth-child(3) {
        left: 42%
    }

    .chart-body .bar:nth-child(4) {
        left: 63%
    }

    .chart-body .bar:nth-child(5) {
        left: 84%
    }

    .chart-body .bar:nth-child(6) {
        left: 21%;
        transition: height .5s linear 3s
    }

    .chart-body.in-view .bar:nth-child(6) {
        height: 100%;
    }

.chart-container .value {
    position: absolute;
    left: 50%;
    top: 10px;
    color: #fefefe;
    width: 100%;
    transform: translateX(-50%);
    font-size: 23px;
    font-weight: 600;
    opacity: 0;
    transition: opacity .3s ease .3s
}

.chart-container .value-blue {
    color: #003366 !important;
}

html[lang=pt-br] .chart-container .value, html[lang=zh-cn] .chart-container .value {
    font-size: 18px;
    white-space: nowrap
}

html[lang=ja-jp] .chart-container .label {
    font-size: 12px
}

.chart-container .label {
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    top: 100%;
    padding: 5px 0 0;
    color: #777;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity .2s ease
}

    .chart-container .label.top {
        top: auto;
        bottom: 100%;
        padding: 0 0 5px
    }

html[lang=ja-jp] .chart-body .bar:nth-child(2) .inner-label, html[lang=ja-jp] .chart-body .bar:nth-child(6) .inner-label {
    font-size: 10px
}

.chart-body .bar:nth-child(2) .inner-label, .chart-body .bar:nth-child(6) .inner-label {
    white-space: normal;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    top: 46px;
    color: #fff;
    line-height: 1.2;
    width: 100%;
    font-size: 12px;
    opacity: 0;
}

.chart-body .bar:nth-child(2) .label {
    transition-delay: .6s;
    opacity:0;
}

.chart-body .bar:nth-child(2) .value, .chart-body .bar:nth-child(6) .value {
    transition-delay: .9s;
    opacity: 0;
}

.chart-body .bar:nth-child(3) .label {
    transition-delay: 1.2s;
    opacity: 0;
}

.chart-body .bar:nth-child(3) .value {
    transition-delay: 1.4s;
    opacity: 0;
}

.chart-body .bar:nth-child(4) .label {
    transition-delay: 1.8s;
    opacity: 0;
}

.chart-body .bar:nth-child(4) .value {
    transition-delay: 2s;
    opacity: 0;
}

.chart-body .bar:nth-child(5) .label {
    transition-delay: 2.4s;
    opacity: 0;
}

.chart-body .bar:nth-child(5) .value {
    transition-delay: 2.6s;
    opacity: 0;
}

.chart-container .label-large {
    position: absolute;
    top: 4%;
    text-align: center;
    width: 110px;
    height: 110px;
    font-size: 38px;
    line-height: 110px;
    left: 130%;
    margin: 0;
    z-index: 2;
    opacity: 0;
    transition: opacity .5s ease 4.7s;
}

    .chart-container .label-large sup {
        font-size: 50%;
        line-height: 1;
        display: inline-block;
        vertical-align: middle;
        margin: 0 0 20px
    }

    .chart-container .label-large:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url(/_mainsite/assets/https:/cdn2.hubspot.net/hubfs/1769719/images_oct_2018/Circle.svg) no-repeat 50% 50%;
        background-size: cover;
        transform: rotate(-4deg)
    }

.chart-container .in-view .label, .chart-container .in-view .label-large, .chart-container .in-view .value {
    opacity: 1
}

.chart-text {
    position: relative;
    z-index: 2;
    float: left;
    width: 39%
}

    .chart-text .hs_cos_wrapper h2, .chart-text .hs_cos_wrapper h3 {
        color: #06a
    }

    .chart-text .hs_cos_wrapper {
        max-width: 815px;
        margin: 0 auto
    }

        .chart-text .hs_cos_wrapper p:last-of-type {
            margin: 0
        }

.chart-container .top-marker {
    position: absolute;
    left: 50%;
    margin-left: -45px;
    width: 90px;
    bottom: 100%;
    text-align: center;
    color: #1266ab;
    font-weight: 700;
    font-size: 26px;
    padding: 0 0 27px;
    opacity: 0;
    transform: translateY(-30px);
    transition: all .3s 3.7s;
    white-space: nowrap
}

.chart-container .in-view .top-marker {
    opacity: 1;
    transform: translateY(0)
}

.chart-container .top-marker:after {
    content: "";
    position: absolute;
    bottom: 7px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -30px;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 23px solid #1e88ba
}

@keyframes scroll {
    0% {
        opacity: 0
    }

    10% {
        transform: translateY(0);
        opacity: 1
    }

    to {
        transform: translateY(12px);
        opacity: 0
    }
}

.bar-text {
    position: absolute;
    top: 75px;
    left: 42%;
    right: 0;
    color: #777;
    font-size: 14px;
    opacity: 0;
    text-align: left;
    transform: translateX(-50px);
    transition: all .3s ease 4s;
}

.resize-active .bar-text {
    transition: none !important
}

.in-view + .bar-text {
    opacity: 0;
    transform: translateX(0)
}

.bar-text p {
    margin: 0
}

.chart-body .bar:nth-child(2){
    opacity:0;
}

@media only screen and (max-width:1023px) {
    .wrap-anim {
        margin: 0 0 90px
    }

    .chart-text {
        width: 40%
    }

    .chart-container {
        width: 58%
    }

        .chart-container .value {
            top: 5px;
            font-size: 18px
        }

    html[lang=pt-br] .chart-container .value, html[lang=zh-cn] .chart-container .value {
        font-size: 14px
    }

    .chart-body {
        height: 330px
    }

    .chart-container .top-marker {
        font-size: 22px
    }

    .chart-body .bar:nth-child(2) .inner-label, .chart-body .bar:nth-child(6) .inner-label {
        top: 34px;
        width: 95%
    }

    .chart-container .label {
        font-size: 12px
    }

    html[lang=de-de] .chart-body .bar:nth-child(2) .inner-label, html[lang=de-de] .chart-body .bar:nth-child(6) .inner-label {
        font-size: 9px
    }

    html[lang=ja-jp] .chart-body .bar:nth-child(2) .inner-label, html[lang=ja-jp] .chart-body .bar:nth-child(6) .inner-label {
        font-size: 8px
    }
}

@media only screen and (max-width:767px) {
    .chart-text {
        float: none;
        width: 100%;
        margin: 0 0 25px
    }

    .chart-container {
        width: 100%;
        float: none;
        padding: 50px 10px 0
    }

        .chart-container .label {
            font-size: 10px;
            line-height: 1.4
        }

    html[lang=pt-br] .chart-container .label {
        font-size: 9px
    }

    .chart-body {
        height: 235px
    }

    .bar-text {
        top: 50px
    }

    .bar-text, .chart-container .value {
        font-size: 12px
    }

    html[lang=pt-br] .chart-container .value, html[lang=zh-cn] .chart-container .value {
        font-size: 10px;
        white-space: nowrap
    }

    .chart-body .bar:nth-child(2) .inner-label, .chart-body .bar:nth-child(6) .inner-label {
        top: 21px;
        font-size: 10px
    }

    .chart-container .top-marker {
        font-size: 16px
    }

        .chart-container .top-marker:after {
            border-left: 20px solid transparent;
            border-right: 20px solid transparent;
            border-top: 18px solid #1e88ba;
            margin-left: -20px
        }

    .wrap-anim {
        margin: 0 0 70px
    }

    html[lang=de-de] .bar-text, html[lang=es] .bar-text {
        font-size: 10px
    }

    html[lang=de-de] .chart-body .bar:nth-child(2) .inner-label, html[lang=de-de] .chart-body .bar:nth-child(6) .inner-label {
        font-size: 7px
    }

    html[lang=ja-jp] .chart-container .label {
        font-size: 8px
    }
}








@keyframes show-vertical-bars {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}




.bar-animation-for-6, .bar-animation-for-6:before {
    animation: show-vertical-bars 1s 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.bar-animation-for-3, .bar-animation-for-3:before {
    animation: show-vertical-bars 1s 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
.bar-animation-for-4, .bar-animation-for-4:before {
    animation: show-vertical-bars 1s 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
.bar-animation-for-5, .bar-animation-for-5:before {
    animation: show-vertical-bars 1s 4s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}



/*
.chart-body .bar:nth-child(6):before,
.chart-body .bar:nth-child(6) .inner-label,
.chart-body .bar:nth-child(6) .value,
.chart-body .bar:nth-child(2) .inner-label,
.chart-body .bar:nth-child(2) .label,
.chart-body .bar:nth-child(2) .value
{
    animation: show-vertical-bars 1s 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

    .chart-body .bar:nth-child(3):before,.chart-body .bar:nth-child(3) .label,.chart-body .bar:nth-child(3) .value


.chart-body .bar:nth-child(3):before,
.chart-body .bar:nth-child(3) .label,
.chart-body .bar:nth-child(3) .value {
    animation: show-vertical-bars 1s 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.chart-body .bar:nth-child(4):before,.chart-body .bar:nth-child(4) .label,.chart-body .bar:nth-child(4) .value {
    animation: show-vertical-bars 1s 4s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.chart-body .bar:nth-child(5):before,.chart-body .bar:nth-child(5) .label,.chart-body .bar:nth-child(5) .value {
    animation: show-vertical-bars 1s 5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
*/






@keyframes show-difference{
    from {
        height: 100%;
    }

    to {
        height: 67%;
    }
}

.bar-animation-for-2, .bar-animation-for-2:before {
    animation: show-vertical-bars 1s 5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.key-show-difference {
    animation: show-difference 1s 5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}



@keyframes bar-opacity-2 {
    from {
        opacity: 0;
    }

    to {
        opacity: .27;
    }
}

.bar-opacity-2:before {
    animation: bar-difference 1s 5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}





/*.chart-body.in-view .bar:nth-child(6) {
    animation: show-difference 1s 6s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.in-view + .bar-text,
.chart-container .chart-body:before {
    animation: show-vertical-bars 1s 6s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}*/




/*small GRAPHS address WITH MODAL*/
.chart-container-vertical-small {
    width: 90%;
}

.chart-container-vertical-small .chart-body {
    height: 255px;
}

.chart-container-vertical-small .top-marker {
    font-size:18px;
}

.chart-container-vertical-small .top-marker:after {
    bottom: 7px;
    left: 50%;
    margin-left: -18px;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 18px solid #1e88ba;
}

.chart-container-vertical-small .value,
.chart-container-vertical-small .label {
    font-size: 11px;
}


.chart-container-vertical-small .chart-body .bar:nth-child(2),
.chart-container-vertical-small .chart-body .bar:nth-child(6) {
    left: 25%;
}
.chart-container-vertical-small .chart-body .bar:nth-child(3) {
    left: 52%;
}
.chart-container-vertical-small .chart-body .bar:nth-child(4)
{
    left: 78%;
}



.chart-boxes .btn-slick-arrow {
    margin-top: 50px;
    margin-left: 30px;
    margin-top: 50px;
    margin-left: 30px;
    background-image: url(/benchkart-images-v1/left.svg);
    background-size: 16px;
    background-position: center;
    background-color: #e6b645;
    display: flex !important;
    align-items: center;
    border-radius: 50%;
    bottom: -40px;
    z-index: 12;
    text-indent: -9999px;
    width: 35px;
    height: 35px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
}

.chart-boxes .for-expanded {
    display:none;
}

@media (max-width: 767px) {
    .chart-items .btn-slick-arrow {
        display: none !important;
    }
}






/*CSS form svg SECTION*/

.compare-wrap {
    padding: 10px 0 20px
}

    .compare-wrap h2 {
        color: #06a;
        margin: 0 0 40px
    }

    .compare-wrap .row {
        display: flex;
        align-items: center
    }

#lottie-circle {
    width: 63%;
    margin: -8% -11% -8% -14%
}

.msie-11 #lottie-circle {
    margin: 0;
    width: 30%;
    margin: -9% 15% -10% -14%
}

    .msie-11 #lottie-circle svg {
        width: 620px !important;
        height: 493px !important
    }

.compare-wrap .list-wrap {
    overflow: hidden;
    position: relative;
    opacity: 0;
    transition: opacity .3s ease;
    max-width: 100%
}

.compare-wrap.in-view .list-wrap {
    opacity: 1
}

.compare-wrap .col {
    float: left;
    width: 50%;
    padding: 0;
    color: #777;
    line-height: 1.25
}

    .compare-wrap .col ul {
        padding: 0 10px 0 10px;
        margin: 0;
        list-style: none
    }

        .compare-wrap .col ul li {
            padding: 0 0 12px 30px;
            position: relative;
            opacity: 0;
            min-height: 16px;
            transition: opacity .3s ease
        }

            .compare-wrap .col ul li.visible {
                opacity: 1
            }

            .compare-wrap .col ul li:nth-child(2) {
                min-height: 0
            }

    .compare-wrap .col:last-child ul {
        padding: 0 0 0 20px
    }

        .compare-wrap .col:last-child ul li:before {
            content: '';
            position: absolute;
            left: 3px;
            top: 7px;
            width: 12px;
            height: 6px;
            border: 2px solid #32ba63;
            border-width: 0 0 2px 2px;
            transform: rotate(-45deg)
        }

    .compare-wrap .col:first-child ul li:after,
    .compare-wrap .col:first-child ul li:before {
        content: '';
        position: absolute;
        left: 0;
        top: 9px;
        width: 14px;
        height: 2px;
        background: #e86336;
        transform: rotate(45deg)
    }

    .compare-wrap .col:first-child ul li:after {
        transform: rotate(-45deg)
    }

    .compare-wrap .col:first-child h3 {
        color: #000000;
    }

.compare-wrap .list-wrap:after {
    content: '';
    position: absolute;
    left: 0;
    right: -999px;
    top: 35px;
    border-bottom: 1px solid #a5a5ad
}

html[lang="pt-br"] .compare-wrap .list-wrap:after,
html[lang="es"] .compare-wrap .list-wrap:after,
html[lang="de-de"] .compare-wrap .list-wrap:after {
    top: 60px
}

.compare-wrap .list-wrap:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    border-left: 1px solid #a5a5ad
}

.compare-wrap h3 {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #24b56f;
    position: relative;
    margin: 6px 0 30px;
    opacity: 0;
    transition: opacity .3s ease
}

    .compare-wrap h3.visible {
        opacity: 1
    }

@media only screen and (max-width:1023px) {
    .compare-wrap .col ul li br {
        display: none
    }

    .compare-wrap {
        padding: 70px 0
    }

    #lottie-circle {
        width: 83%;
        margin: -8% -12% -8% -13%
    }

    .compare-wrap .list-wrap:after {
        top: 60px
    }

    .compare-wrap h3 {
        max-width: 250px;
        margin: 0 auto 30px
    }

    .compare-wrap .list-wrap {
        max-width: 72%
    }
}

@media only screen and (max-width:767px) {
    .compare-wrap {
        padding: 50px 0
    }

    #lottie-circle {
        width: 100%;
        float: none;
        max-width: 360px;
        margin: 0 auto 30px;
        overflow: hidden
    }

        #lottie-circle svg {
            width: 150% !important;
            margin: -25%;
            height: 150% !important
        }

    .compare-wrap h3 {
        font-size: 15px;
        margin: 0 auto 0px;
        max-width: 200px
    }

    .compare-wrap .list-wrap {
        max-width: 100%
    }

        html[lang="pt-br"] .compare-wrap .list-wrap:after,
        html[lang="es"] .compare-wrap .list-wrap:after,
        html[lang="de-de"] .compare-wrap .list-wrap:after,
        .compare-wrap .list-wrap:after {
            top: 49px
        }

    .compare-wrap .col {
        font-size: 12px
    }

        .compare-wrap .col ul li {
            padding: 0 0 9px 20px
        }

        .compare-wrap .col:first-child ul li:after,
        .compare-wrap .col:first-child ul li:before {
            top: 7px
        }

        .compare-wrap .col:last-child ul li:before {
            top: 4px
        }

        .compare-wrap .col:last-child ul {
            padding: 0 10px 0 10px
        }

    .compare-wrap .row {
        display: block
    }
}
.process-comparision .outsourcing_bg .order-1,
.process-comparision .outsourcing_bg .order-2,
.process-comparision .outsourcing_bg .order-3,
.process-comparision .outsourcing_bg .circle,
.process-comparision .outsourcing_bg .circle-text
{
    opacity: 0;
}


@keyframes donut-chart {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.key-donut-chart-order-1 {
    animation: donut-chart 4s 1s 1 forwards;
}
.key-donut-chart-order-2 {
    animation: donut-chart 4s 2s 1 forwards;
}
.key-donut-chart-order-3 {
    animation: donut-chart 4s 3s 1 forwards;
}
.key-donut-chart-circle {
    animation: donut-chart 4s 4s 1 forwards;
}
.key-donut-chart-circle-text {
    animation: donut-chart 4s 5s 1 forwards;
}

/*@keyframes scale-donut {
    to {
        transform: scale(1.2);
    }
}
.key-donut-chart-scale-donut {
    animation: scale-donut 4s 5s 1 forwards;
}*/

.process-comparision .list-wrap .traditional, .process-comparision .list-wrap .ai-powered {
    opacity: 1;
}

@keyframes show-opacity-1 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
.donut-comparision-xexel {
    animation: show-opacity-1 2s 1s 1 forwards;
}
.donut-comparision-xMBC {
    animation: show-opacity-1 4s 2s 1 forwards;
}
.donut-comparision-xexel-sm {
    animation: show-opacity-1 2s 1s 1 forwards;
}

.donut-comparision-xMBC-sm {
    animation: show-opacity-1 4s 2s 1 forwards;
}


.process-comparision .mcb-wrap .bdr-bt-rd.list-items {
    height: 270px !important;
}

@media only screen and (max-width:767px) {
    .process-comparision .mcb-wrap .bdr-bt-rd.list-items {
        height: 350px !important;
    }
}

.process-comparision .benchkart_slider.processes {
    height: auto !important;
}


