#quotations {
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23052c65' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
    --bs-icon-arrow: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
    --bs-icon-arrow-green: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23268a5c' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
    --bs-icon-arrow-red: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23e53935' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
    --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
    --bs-accordion-btn-icon-transform: rotate(-180deg);
}

#chartBox {
    position: relative;
    background-color: #ffffff;
    padding-top: 10px;
    border-radius: 5px;
    width: 90%;
    margin: 0 auto;
}
#chartBox .chartBox-header{
    display: flex;
    justify-content: space-between;
    background-repeat: no-repeat;
    background-position: 100% 100%;
    /*background-image: url("data:image/svg+xml,%3csvg width='100%25' height='1px' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='1px' fill='none' stroke='%23c0c0c0' stroke-width='1px' stroke-dasharray='11px' stroke-dashoffset='10' stroke-linecap='square'/%3e%3c/svg%3e");*/
    width: calc(100% - 50px);
    margin-left: 30px;
}


#widgetOutput {
    position: relative;
    z-index: 0;
}
#widgetOutput iframe {
    position: relative;
    z-index: -1;
}

#quotations {
    position: relative;
    width: calc(100%);
    padding: 25px 25px 5px 5px;
    font-size: 14px;
}
#quotations .row {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
}
#quotations .row .col {
    position: relative;
    width: 100%;
    background-color: transparent;
    cursor: pointer;
    border-top: 1px dashed #f0f0f0;
    border-top: 1px dashed transparent;
    border-bottom: 1px dashed transparent;
    padding: 10px 0px;
    text-align: center;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
#quotations .row .col:nth-child(1){
    font-weight: 400 !important;
}
#quotations .row .col span.up[data-name="change"] {
    color: #268a5c;
}
#quotations .row .col span.down[data-name="change"] {
    color: #e53935;
}
#quotations .row .col span:after {
    position: absolute;
    content: "";
    width: 10px; height: 10px;
    display: inline-block;
    margin-left: 3px;
    margin-top: 7px;
    font-weight: 700;
    letter-spacing: -3px;
    line-height: 100%;
    text-align: center;
    background-repeat: no-repeat;
    background-position: 100% 100%;
}
#quotations .row .col span.up[data-name="change"]:after {
    background-image: var(--bs-icon-arrow-green);
    transform: var(--bs-accordion-btn-icon-transform);
}
#quotations .row .col span.down[data-name="change"]:after {
    background-image: var(--bs-icon-arrow-red);
}

#quotations .row .col span.up:after {
    background-image: var(--bs-icon-arrow);
    transform: var(--bs-accordion-btn-icon-transform);
}
#quotations .row .col span.down:after {
    background-image: var(--bs-icon-arrow);
}

#quotations #widgetOutput {
    position: absolute;
    top:30px; left: 140px;
    z-index: 999;
    width: calc(100% - 150px);
    height: 100%;
}

#widgetChart {
    width: calc(100% - 20px) !important;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin: 10px;
    padding-left: 7px;
}
#widgetChart canvas:nth-child(2){
    display: none;
}