.chart-wrap {
    position: relative;
    width: 100%;
    height: 292px; 
    border-radius: 20px;
   /* overflow: hidden; 
    background-color: #e1ebf5;*/
}

.chart-lite {
    background-color: #e1ebf6;
}

.news__chart:has(.chart-wrap) {
    overflow: visible !important;
}

.chart-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 45px;
    height: 45px;
    border-top-left-radius: 20px;
    border-left: 2px solid #96c593;
    border-top: 2px solid #96c593; 

}

.chart-wrap.down::before {
    border-left: 2px solid #c14547;
    border-top: 2px solid #c14547;
}

.chart-wrap.big { 
    height: 536px; 
}

.chart {
    width: auto;
    height: 100%; 
    margin: 0;
}

.chart-info {
    /*width: 192px;*/
    display: flex;
    justify-content: space-between; 
    padding: 15px 20px !important;
}
.big .chart-info {
    width: auto;
    justify-content: flex-start; 
    gap: 10px;
}
.chart-info-bottom {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0; 
    display: flex;
    justify-content: space-between; 
    align-items: flex-end;
    padding: 0 18px; 
}

.chart-values {
    z-index: 1; 
    display: block !important;
    margin-bottom: 0 !important;
}
.chart-index-name {
    color: #273035;
    font-size: 40px;
    line-height: 32px;
    padding: 0;
    margin: 0;
    font-weight: 100 !important;
   /* font-family: 'AdobeClean', sans-serif; */
}

.chart-index-value {
    font-size: 35px !important;
    font-weight: 100 !important;
    color: #030c12 !important;
}

.chart-index-proc {
    color: #96c593;
    position: relative; 
    font-family: Arial, sans-serif;
}

.down .chart-index-proc {
    color: #c14547;
}

.down .chart-index-proc::after,
.up .chart-index-proc::after {
    content: '\2B7E'; /* ⯾  \1F9D1 */
    display: inline-block;
    transition: transform 0.3s;
    font-size: 14px;
    line-height: 1;

    position: absolute; 
    top: 50%; 
    right: -20px;
    transform: translate(-50%, -50%);
}

.down .chart-index-proc::after {
    transform: translate(-50%, -50%) rotate(45deg);
}
.up .chart-index-proc::after {
    top: 63%;
    transform: translate(-50%, -50%) rotate(-135deg); 
}

.chart-index--proc {
    display: flex !important;
    font-size: 22px !important;
    font-weight: 100 !important;
}
.chart-interval {
    position: relative;
    background: #ecf0f9;
    height: 30px;
    border-radius: 20px;
}


.chart-interval-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    background: transparent;
    padding: 5px 30px 5px 10px;
    font-size: 16px;
    cursor: pointer;
    z-index: 1;
    outline: none;
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    color: #03080b;
    /*text-transform: lowercase;*/
}


.chart-interval-select:focus,
.chart-interval-select:hover,
.chart-interval-select:focus-visible {
    outline: none;
    border: none;
    box-shadow: none; 
}
.icon.icon-info {
    display: block;
    text-align: center;
    color: #91baf3;
    background: #e9f2f8;
    border-radius: 10px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

  /* select2 */
.chart-lite .select2-container--default .select2-selection--single {
    background-color: #e8f1f7;
    border: 0;
    border-radius: 1.05rem;
}
.chart-lite .select2-dropdown {
    background-color: #e8f1f7;
    border: 0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1)
}
.chart-lite .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 30px;
}
.chart-lite .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 10px;
}
.chart-lite .select2-container .select2-selection--single {
    height: 30px;
}
.chart-lite .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 30px;
    right: 10px;
}