
/* =========================================================
ELEMENTOR FIXES
========================================================= */

/*.elementor-widget-container,*/
/*.elementor-widget,*/
/*.elementor-column,*/
/*.elementor-column-wrap,*/
/*.elementor-section,*/
/*.elementor-element {*/
/*    overflow: visible !important;*/
/*}*/

/* =========================================================
GLOBAL
========================================================= */

.rtp-widget-wrapper *{
    box-sizing:border-box;
}

.rtp-widget-wrapper{
    position:relative;
    width:100%;
    overflow:visible !important;
    font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
}

/* =========================================================
CONTAINER
========================================================= */

.rtp-widget-wrapper .rtp-container{
    position:relative;
    overflow:visible !important;
    background:#fff;
    border-radius:12px;
    padding:30px;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.rtp-widget-wrapper .rtp-container__top{
    margin-bottom:20px;
}

.rtp-widget-wrapper .title{
    margin:0;
    font-size:28px;
    font-weight:700;
    color:#111;
    line-height:1.2;
}

/* =========================================================
RTP CHART WRAPPER
========================================================= */

.rtp-widget-wrapper .rtp-chart-wrapper{
    position:relative;
    padding-top:150px;
    padding-bottom:35px;
    overflow-x:auto;
    overflow-y:visible !important;
}

.rtp-widget-wrapper .rtp-chart{
    position:relative;
    display:flex;
    min-width:100%;
    height:90px;
    overflow:visible !important;
}

/* =========================================================
RTP CATEGORY
========================================================= */

.rtp-widget-wrapper .rtp-chart__category{
    position:relative;
    flex-basis:0;
    display:flex;
    justify-content:center;
    align-items:flex-end;
    padding-bottom:10px;
}

/* custom short dash line */

.rtp-widget-wrapper .rtp-chart__category::after{
    content:'';
    position:absolute;
    right:-1px;
    top:16px;
    width:2px;
    height:100px;
    background:repeating-linear-gradient(
        to bottom,
        rgba(213,213,213,0.95) 0px,
        rgba(213,213,213,0.95) 4px,
        transparent 4px,
        transparent 8px
    );
    transform:translateZ(0);
    backface-visibility:hidden;
    pointer-events:none;
}


/* =========================================================
WIDTHS
========================================================= */

.rtp-widget-wrapper .rtp-chart__category--low{
    flex-grow:3;
    color:#e54f58;
}

.rtp-widget-wrapper .rtp-chart__category--below{
    flex-grow:7;
    color:#f7931a;
}

.rtp-widget-wrapper .rtp-chart__category--avg{
    flex-grow:19;
    color:#f2c230;
}

.rtp-widget-wrapper .rtp-chart__category--above{
    flex-grow:10;
    color:#56b9d9;
}

.rtp-widget-wrapper .rtp-chart__category--high{
    flex-grow:3;
    color:#61d84f;
}
.rtp-widget-wrapper .rtp-chart__category--high::after{
    display:none !important;
}

/* =========================================================
SCALE TEXT
========================================================= */

.rtp-widget-wrapper .rtp-chart__scale{
    position:absolute;
    top:10px;
    right:0;
    transform:translateX(50%);
    font-size:11px;
    font-weight:700;
    color:#777;
    white-space:nowrap;
    background:#fff;
    padding:2px 6px;
    border-radius:4px;
    box-shadow:0 2px 4px rgba(0,0,0,.05);
    z-index:9;
}

/* =========================================================
LABEL
========================================================= */

.rtp-widget-wrapper .rtp-chart__label{
    font-size:12px;
    line-height:1.3;
    text-align:center;
    white-space:nowrap;
    display:block;
    margin-bottom:6px;
    font-weight:700;
}

/* =========================================================
BAR
========================================================= */

.rtp-widget-wrapper .rtp-chart__bar{
    position:absolute;
    bottom:0;
    width:100%;
    height:16px;
    border-radius:50px;
    display:flex;
    overflow:visible !important;
}

.rtp-widget-wrapper .rtp-chart__bar > div{
    position:relative;
}

/* COLORS */

.rtp-widget-wrapper .rtp-chart__bar--low{
    flex-grow:3;
    background:#e54f58;
    border-radius:50px 0 0 50px;
}

.rtp-widget-wrapper .rtp-chart__bar--below{
    flex-grow:7;
    background:#f7931a;
}

.rtp-widget-wrapper .rtp-chart__bar--avg{
    flex-grow:19;
    background:#f2c230;
    overflow:hidden;
    position:relative;
}

.rtp-widget-wrapper .rtp-chart__bar--above{
    flex-grow:10;
    background:#56b9d9;
}

.rtp-widget-wrapper .rtp-chart__bar--high{
    flex-grow:3;
    background:#61d84f;
    border-radius:0 50px 50px 0;
}


/* =========================================================
CURSOR
========================================================= */

.rtp-widget-wrapper .rtp-chart__cursor{
    position:absolute;
    bottom:-7px;
    left:0;
    transform:translateX(-50%);
    z-index:9;
    pointer-events:none;
    overflow:visible !important;
}

.rtp-widget-wrapper .rtp-chart__cursor::before{
    content:'';
    position:absolute;
    width:2px;
    height:76px;
    background:#f2c230;
    left:50%;
    bottom:20px;
    transform:translateX(-50%);
}

/* =========================================================
CARD
========================================================= */

.rtp-widget-wrapper .rtp-card{
    position:absolute;
    bottom:95px;
    left:50%;
    transform:translateX(-50%);
    width:220px;
    background:#fff;
    border-radius:8px;
    padding:14px;
    display:flex;
    align-items:center;
    gap:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    z-index:9;
}

.rtp-widget-wrapper .rtp-card__image{
    width:42px;
    height:42px;
    border-radius:8px;
    object-fit:cover;
}

.rtp-widget-wrapper .rtp-card__column{
    display:flex;
    flex-direction:column;
}

.rtp-widget-wrapper .rtp-card__column--percentage{
    font-size:32px;
    line-height:1;
    font-weight:800;
    color:#111;
}

.rtp-widget-wrapper .rtp-card__column--category{
    font-size:11px;
    font-weight:700;
    color:#666;
    text-transform:uppercase;
}

/* =========================================================
DOT
========================================================= */

.rtp-widget-wrapper .rtp-pointer-dot{
    width:18px;
    height:18px;
    border-radius:50%;
    background:#f2c230;
    border:4px solid #fff;
    box-shadow:0 2px 8px rgba(0,0,0,.18);
}

.rtp-widget-wrapper .rtp-pointer-dot.pink{
    background:#f64f8d;
}

.rtp-chart__bar,
.rtp-chart__bar--avg,
.rtp-chart,
.rtp-chart-wrapper,
.rtp-container,
.rtp-widget-wrapper{
    overflow:visible !important;
}

/* =========================================================
DESCRIPTION
========================================================= */

.rtp-widget-wrapper .rtp-description{
    margin-top:25px;
    padding-top:22px;
    border-top:1px solid #eee;
    font-size:15px;
    line-height:1.7;
    color:#555;
}

/* =========================================================
MOBILE FIX
========================================================= */

@media(max-width:767px){

    .rtp-widget-wrapper .rtp-container{
        padding:20px 14px;
    }

    .rtp-widget-wrapper .rtp-container__top{
        margin-bottom:6px;
    }

    .rtp-widget-wrapper .title{
        font-size:20px;
        line-height:1.25;
        margin-bottom:0;
    }

    .rtp-widget-wrapper .rtp-chart-wrapper{
        overflow-x:auto !important;
        overflow-y:visible !important;
        padding-top:78px;
        padding-bottom:20px;
        padding-left:40px;
        padding-right:40px;
        margin-left:-20px;
        margin-right:-20px;
        scrollbar-width:none;
        -webkit-overflow-scrolling:touch;
    }

    .rtp-widget-wrapper .rtp-chart-wrapper::-webkit-scrollbar{
        display:none;
    }

    .rtp-widget-wrapper .rtp-chart{
        width:100%;
        min-width:100%;
        height:70px;
        position:relative;
    }

    .rtp-widget-wrapper .rtp-chart__category{
        padding-bottom:8px;
    }

    .rtp-widget-wrapper .rtp-chart__category::after{
        top:30px;
        height:54px;
    }

    .rtp-widget-wrapper .rtp-chart__label{
        font-size:6px;
        line-height:1.2;
        white-space:normal;
    }

    .rtp-widget-wrapper .rtp-chart__scale{
        font-size:7px;
        top:20px;
        padding:2px 4px;
    }

    .rtp-widget-wrapper .rtp-chart__bar{
        height:15px;
        border-radius:100px;
    }

    .rtp-widget-wrapper .rtp-chart__cursor{
        bottom:-4px;
        z-index:9;
    }

    .rtp-widget-wrapper .rtp-chart__cursor::before{
        height:54px;
        width:2px;
        bottom:14px;
    }

    .rtp-widget-wrapper .rtp-pointer-dot{
        width:14px;
        height:14px;
        border-width:3px;
        box-shadow:0 2px 6px rgba(0,0,0,.15);
    }

    .rtp-widget-wrapper .rtp-card{
        width:118px;
        min-width:118px;
        max-width:118px;
        padding:7px 8px;
        gap:6px;
        bottom:58px;
        border-radius:8px;
        left:50%;
        transform:translateX(-50%);
        overflow:hidden;
    }

    .rtp-widget-wrapper .rtp-card__image{
        width:28px;
        height:28px;
        border-radius:5px;
        flex-shrink:0;
    }

    .rtp-widget-wrapper .rtp-card__column{
        gap:2px;
    }

    .rtp-widget-wrapper .rtp-card__column--percentage{
        font-size:14px;
        line-height:1;
    }

    .rtp-widget-wrapper .rtp-card__column--category{
        font-size:7px;
        line-height:1.1;
        white-space:nowrap;
    }

    .rtp-widget-wrapper .rtp-description{
        margin-top:18px;
        padding-top:16px;
        font-size:13px;
        line-height:1.7;
    }
}
/* =========================================================
VOLATILITY
========================================================= */

/* =========================================================
VOLATILITY WRAPPER
========================================================= */

.volatility-widget-wrapper .volatility-chart {
    position: relative;
    margin-top: 40px;
    padding-top: 70px;
    overflow: visible !important;
}

/* =========================================================
LABELS
========================================================= */

.volatility-widget-wrapper .volatility-chart__labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.volatility-widget-wrapper .volatility-chart__label {
    flex: 1;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
}

.volatility-widget-wrapper .volatility-chart__label.selected {
    color: #ff4f8b;
}

/* =========================================================
BAR
========================================================= */

.volatility-widget-wrapper .volatility-chart__bar {
    position: relative;
    display: flex;
    height: 28px;
    border-radius: 100px;
    overflow: visible !important;
    box-shadow: 0 3px 12px rgba(0,0,0,.08);
}

.volatility-widget-wrapper .volatility-chart__segment {
    flex: 1;
    position: relative;
}

.volatility-widget-wrapper .volatility-chart__segment:nth-child(1) {
    background: #dddddd;
    border-radius: 100px 0 0 100px;
}

.volatility-widget-wrapper .volatility-chart__segment:nth-child(2) {
    background: #c6c6c6;
}

.volatility-widget-wrapper .volatility-chart__segment:nth-child(3) {
    background: #b0b0b0;
}

.volatility-widget-wrapper .volatility-chart__segment:nth-child(4) {
    background: #999999;
}

.volatility-widget-wrapper .volatility-chart__segment:nth-child(5) {
    background: #858585;
    border-radius: 0 100px 100px 0;
}

/* ACTIVE */

.volatility-widget-wrapper .volatility-chart__segment.selected {
    background: linear-gradient(90deg,#ff4f8b,#ff6fa3);
}

/* =========================================================
POINTER WRAPPER
========================================================= */

.volatility-widget-wrapper .volatility-card-wrapper {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    z-index: 9;
    overflow: visible !important;
}

/* =========================================================
CARD
========================================================= */

.volatility-widget-wrapper .volatility-card {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    min-height: 48px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.volatility-widget-wrapper .volatility-card span {
    font-size: 13px;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
}

/* =========================================================
LINE
========================================================= */

.volatility-widget-wrapper .volatility-chart__cursor {
    position: relative;
    display: flex;
    justify-content: center;
}

.volatility-widget-wrapper .volatility-chart__cursor::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 46px;
    background: #ff4f8b;
    bottom: 16px;
}

/* =========================================================
DOT
========================================================= */

.volatility-widget-wrapper .rtp-pointer-dot.pink {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ff4f8b;
    border: 4px solid #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,.18);
    position: relative;
    z-index: 9;
}

@media(max-width:767px){
.volatility-widget-wrapper .volatility-chart__label {

    font-size: 8px;
}

}