.owl-carousel {
    display: none;
}

.owl-carousel.owl-loaded {
    display: block;
}

/* Chart section */
.b-chart {
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
}
.b-chart.animated {
    opacity: 1;
    visibility: visible;
}

.b-chart__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 15px 24px;
}

.b-chart__title {
    margin: 0 0 22px;
    font-family: "Rubik", sans-serif;
    font-weight: normal;
    font-size: 32px;
    line-height: 38px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #1C1C1C;
}

.b-chart__content {
    /*max-width: 600px;*/
    margin: 0 auto;
    position: relative;
}
.b-chart__content-inner {
    display: flex;
    align-items: flex-end;
    padding-top: 12px;
    overflow: hidden;
}



/* chart - axisY */
.b-axisY {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.b-axisY__el {
    display: flex;
    justify-content: flex-end;
    position: relative;
    padding-right: 16px;
    border-right: 1px solid #C0CCD3;
}
.b-axisY__el:last-child {
    border-right: none;
}
.b-axisY__el:before {
    content: '';
    display: block;
    width: 8px;
    position: absolute;
    right: 0;
    top: -1px;
    z-index: 1;
    border-bottom: 1px solid #C0CCD3;
}
.b-axisY__el:after {
    content: '';
    display: block;
    width: 100vw;
    position: absolute;
    left: calc(100% - 8px);
    top: -1px;
    border-bottom: 1px solid #E9EDF5;
}
.b-axisY__el:last-child:before {
    display: none;
}
.b-axisY__el:last-child:after {
    left: 100%;
    border-bottom: 1px solid #C0CCD3;
}

.b-axisY__el-label {
    position: relative;
    bottom: 14px;
    font-weight: normal;
    font-size: 17px;
    line-height: 20px;
    text-align: right;
    color: #4A4A4A;
}



/* chart slider - axisX */
.b-axisX {
    position: relative;
    overflow: hidden;
}

.b-axisX.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.b-axisX__el {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    border-right: 2px dashed #E9EDF5;
}

.b-axisX__el-data {
    opacity: 0;
    visibility: hidden;
    position: relative;
    transform: scale(0.7);
    transition: .5s;
}
.b-axisX__el-data--visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.b-axisX__el-data-tooltip {
    display: none;
    width: 120px;
    padding: 8px 6px;
    position: absolute;
    bottom: calc(100% + 27px);
    right: calc(50% - 60px);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 6px 12px rgba(0, 147, 194, .12);

    /*bottom: calc(100% + 56px);*/
    /*z-index: 1;*/
}
.b-axisX__el-data-tooltip--visible {
    display: block;
}
.b-axisX__el:hover .b-axisX__el-data-tooltip {
    display: block;
}
.b-axisX__el-data-tooltip:before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    position: absolute;
    bottom: -8px;
    right: calc(50% - 9px);
    z-index: 10;
    background: #fff;
    transform: rotate(45deg);
}
.b-axisX__el-data-tooltip-text {
    position: relative;
    z-index: 11;
    font-size: 14px;
    font-weight: 300;
    line-height: 16px;
    text-align: center;
    overflow: hidden;
    color: #333;
}
.b-axisX .owl-item:first-child .b-axisX__el-data-tooltip {
    left: -30px;
}
.b-axisX .owl-item:first-child .b-axisX__el-data-tooltip:before {
    left: 35px;
    /*left: 21px;*/
}

.b-axisX .owl-item:last-child .b-axisX__el-data-tooltip {
    right: -30px;
}
.b-axisX .owl-item:last-child .b-axisX__el-data-tooltip:before {
    right: 35px;
    /*right: 21px;*/
}

.b-axisX__el-data-val {
    margin-bottom: 14px;
    font-size: 17px;
    font-weight: 300;
    line-height: 1;
    color: #333;
    /*position: absolute;*/
    /*left: 0;*/
    /*bottom: 100%;*/
    /*width: 100%;*/
    /*text-align: center;*/
    /*display: flex;*/
    /*justify-content: center;*/
}

.b-axisX__el-data-val--hidden {
    opacity: 0;
    visibility: hidden;
    height: 0;
    margin-bottom: 0;

    /*display: none;*/
}
.b-axisX__el-bar {
    width: 9%;
    height: 0;
    position: relative;
    top: 0;
    background: linear-gradient(0deg, #00B9FF, #00B9FF), linear-gradient(180deg, #00B9FF 0%, #006EB3 100%);
}
.b-axisX__el-label {
    width: 100%;
    padding-top: 20px;
    padding-left: 5px;
    padding-right: 5px;
    position: absolute;
    left: 0;
    top: 100%;
    font-size: 17px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    color: #333;
}



/* slider pagination container - axisX */
.b-chart__dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 12px;
}
.b-chart__dots-container.disabled {
    display: none;
}
.b-axisX__dot {
    display: block;
    width: 20px;
    height: 24px;
    padding: 12px 7px;
    position: relative;
    cursor: pointer;
    border:none;
    background:none;
}
.b-axisX__dot:after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    top: calc(50% - 6px);
    left: calc(50% - 6px);
    background: #c4c4c4;
    border-radius: 50%;
}
.b-axisX__dot.active:after {
    background: #00b9ff;
}


/* slider navigation container - axisX */
.b-chart__nav-container {
    position: absolute;
    width: 100%;
    top: calc(50% - 75px);
    left: 0;
    height: 0;
}
.b-chart__nav-container.disabled {
    display: none;
}
.b-chart__nav-container .owl-prev,
.b-chart__nav-container .owl-next {
    position: absolute;
    width: 32px;
    height: 58px;
    top: 0;
    z-index: 1;
    cursor: pointer;
}
.b-chart__nav-container .owl-prev {
    left: -75px;
    background: url(../images/vendor/owl/prev.svg) no-repeat center/contain;
}
.b-chart__nav-container .owl-next {
    right: -75px;
    background: url(../images/vendor/owl/next.svg) no-repeat center/contain;
}

/*icon info tooltip*/
.b-tooltip {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    text-align: left;
    text-transform: none;
    overflow: visible !important;
    top: -1px;
}

.b-tooltip > * {
    vertical-align: top;
}

.b-tooltip::before {
    content: '';
    display: none;
    position: absolute;
    transform: rotate(45deg);
    width: 28px;
    height: 28px;
    background-color: #fff;
    top: calc(100% + 14px);
    left: -6px;
    z-index: 10;
}

.b-tooltip::after {
    content: attr(data-title);
    display: none;
    position: absolute;
    top: calc(100% + 28px);
    left: -36px;
    width: 300px;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    color: #333333;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 24px;
    z-index: 10;
    box-shadow: 0 20px 20px 0 rgba(0, 95, 137, 0.2);
}

.b-tooltip:hover::before, .b-tooltip:hover::after {
    display: block;
}
@media only screen and (max-width: 1023px) {
    .b-new-title {
        font-size: 28px;
    }
}
/* Media */
@media screen and (max-width: 1199px) {
    .b-chart__container {
        padding: 48px 24px 24px
    }

    .b-chart__nav-container {
        top: calc(50% - 65px);
    }
    .b-chart__nav-container .owl-prev, .b-chart__nav-container .owl-next {
        width: 23px;
        height: 40px;
    }
    .b-chart__nav-container .owl-prev {
        left: -37px;
    }
    .b-chart__nav-container .owl-next {
        right: -37px;
    }
}

@media screen and (max-width: 1023px) {
    .b-chart__container {
        padding: 40px 24px 14px
    }

    .b-chart__title {
        margin: 0 0 20px;
        font-size: 28px;
        line-height: 34px;
        letter-spacing: -0.01em;
    }
}

@media screen and (max-width: 767px) {
    .b-chart__container {
        padding: 32px 15px 28px;
    }

    .b-chart__title {
        margin: 0;
        font-size: 22px;
        line-height: 26px;
    }

    .b-chart__content {
        max-width: none;
    }
    .b-chart__content-inner {
        padding-top: 0;
    }

    .b-axisY {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
    }
    .b-axisY:before {
        display: none;
    }

    .b-axisY__el {
        justify-content: flex-start;
        border-right: none;
        align-items: center;
    }
    .b-axisY__el:before {
        display: none;
    }
    .b-axisY__el:after {
        width: 100%;
        top: 40px;
        left: 0;
        z-index: 2;
    }
    .b-axisY__el:last-child:after {
        left: 0;
        border-bottom: 1px solid #E9EDF5;

    }
    .b-axisY__el-label {
        bottom: auto;
        z-index: 2;
        font-size: 14px;
        line-height: 16px;
        text-align: left;
        color: #C0CCD3;
    }

    .b-axisX {
        border-left: none;
        border-bottom: none;
    }
    .b-axisX.owl-carousel {
        padding-bottom: 59px !important;
        margin-top: 41px;
        z-index: 2;
        overflow: hidden;
    }
    .b-axisX:before {
        display: none;
    }

    .b-axisX__el {
        border-right: none;
    }

    .b-axisX__el-data-tooltip {
        width: 110px;
        right: calc(50% - 55px);
        bottom: calc(100% + 21px);
    }
    /*.b-axisX .owl-item:last-child .b-axisX__el-data-tooltip {*/
    /*right: -29px;*/
    /*}*/
    .b-axisX__el-data-tooltip-text {
        font-size: 13px;
        line-height: 15px;
    }

    .b-axisX__el-data {
        margin-bottom: 4px;
    }
    .b-axisX__el-data-val {
        margin-bottom: 5px;
    }
    .b-axisX__el-data-val--hidden {
        margin-bottom: 0;
    }

    .b-axisX__el-label {
        padding-top: 16px;
        font-size: 14px;
        line-height: 17px;
    }

    .b-chart__dots-container {
        margin-top: 0;
    }
}