/* Minification failed. Returning unminified contents.
(2,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(5,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(7,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(8,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(23,28): run-time error CSS1039: Token not allowed after unary operator: '-bgColorTab'
(24,28): run-time error CSS1039: Token not allowed after unary operator: '-borderColor'
(37,17): run-time error CSS1039: Token not allowed after unary operator: '-textColor'
(56,40): run-time error CSS1039: Token not allowed after unary operator: '-activeBorderColor'
(108,33): run-time error CSS1039: Token not allowed after unary operator: '-borderColor'
(138,17): run-time error CSS1039: Token not allowed after unary operator: '-textColor'
(146,28): run-time error CSS1039: Token not allowed after unary operator: '-bgColorTab'
(147,28): run-time error CSS1039: Token not allowed after unary operator: '-borderColor'
(169,40): run-time error CSS1039: Token not allowed after unary operator: '-activeBorderColor'
(181,34): run-time error CSS1039: Token not allowed after unary operator: '-borderColor'
(241,28): run-time error CSS1039: Token not allowed after unary operator: '-borderColor'
(253,32): run-time error CSS1039: Token not allowed after unary operator: '-bgColorRow'
(254,39): run-time error CSS1039: Token not allowed after unary operator: '-borderColor'
(305,32): run-time error CSS1039: Token not allowed after unary operator: '-activeBgColor'
(308,39): run-time error CSS1039: Token not allowed after unary operator: '-borderColor'
(312,36): run-time error CSS1039: Token not allowed after unary operator: '-bgColorRow'
(315,36): run-time error CSS1039: Token not allowed after unary operator: '-hoverBgColor'
(466,32): run-time error CSS1039: Token not allowed after unary operator: '-bgColorTab'
 */
#general-markets {
    --textColor: #545b66;
    --bgColorTab: #f8f9fa;
    --bgColorRow: #f7f8f9;
    --activeBgColor: #ffe5bf; /*#ffe5bf  #e1f5fe*/
    --hoverBgColor: #ffdead;
    --borderColor: #efefef;
    --activeBorderColor: #1562a1;
}
.general-markets__container {
    clear: both;
}
.general-markets__container--fullscreen {
    height: 100vh;
}
.general-markets__chart {
    height: 100%;
}    
.general-markets__chart-top-row {
    display: flex;
    align-items: center;
    flex-direction: row;
    background-color: var(--bgColorTab);
    border: 1px solid var(--borderColor);
    height: 35px;
}
    .general-markets__chart-top-row::-webkit-scrollbar {
        width: 0px;
        height: 0px;
    }
.general-markets__chart-duration {
    display: flex;
    flex-grow: 1;
    /*padding-left: 5px;*/
}
.general-markets__chart-timeframe {
    color: var(--textColor);
    padding: 5px 25px;
    cursor: pointer;
    height: 32px;
}
    .general-markets__chart-timeframe:hover {
        background-color: #eff2f5;
    }
.general-markets__chart-timeframe--active {
    font-weight: bold;
    position: relative;
    background-color: #e1f5fe !important;
    color: #0b5495 !important;
    cursor: default;
}
    .general-markets__chart-timeframe--active:after {
        content: " ";
        width: 100%;
        height: 1px;
        border-bottom: 1px dashed var(--activeBorderColor);
        position: absolute;
        left: 0px;
        bottom: -2px;
    }
.general-markets__chart-tooltip {
    position: relative;
}
    .general-markets__chart-tooltip:before {
        content: attr(data-tooltip);
        font-weight: normal;
        margin-top: -15px;
        /* basic style */
        background-color: #335295;
        color: #fff;
        padding: 5px 10px;
        border-radius: 5px;
        white-space: nowrap;
        /* vertically center */
        transform: translate(-30%, -100%);
        text-align: center;
    }

    .general-markets__chart-tooltip:after {
        content: " ";
        top: 0px;
        margin-top: -17px;
        border-width: 6px;
        border-style: solid;
        border-color: #335295 transparent transparent transparent;
    }

    .general-markets__chart-tooltip:before, .general-markets__chart-tooltip:after {
        /*visibility: hidden;*/
        display: none;
        pointer-events: none;
        position: absolute;
        z-index: 10;
    }
.general-markets__chart-tooltip--extend:before {
    margin-top: -23px;
    transform: translate(-70%, -100%);
}
.general-markets__chart-tooltip--extend:after {
    margin-top: -23px;
}
.general-markets__chart-timeframe:hover .general-markets__chart-tooltip:before,
.general-markets__chart-timeframe:hover .general-markets__chart-tooltip:after {
    display: block;
}
.general-markets__chart-expand-button {
    padding: 0px 5px;
    border-left: 1px solid var(--borderColor);
    height: 35px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
    .general-markets__chart-expand-button:hover {
        background-color: #eff2f5;
    }
    .general-markets__chart-expand-button:hover .general-markets__chart-tooltip:before,
    .general-markets__chart-expand-button:hover .general-markets__chart-tooltip:after {
        display: block;
    }
.general-markets__chart-expand-img {
    width: 25px;
    height: unset;
    max-width: unset;
    max-height: unset;
}
.general-markets__chart-content {
    margin-top: 10px;
    height: 400px;
}
.general-markets__chart-content--fullscreen {
    margin-top: 10px;
    height: calc(100% - 100px);
}
/* ---- DATA (RIGHT) -----*/
.general-markets__data {
    padding-left: 0px;
    color: var(--textColor);
    line-height: 20px;
    height: 100%;
}
.general-markets__data-tabs {
    display: flex;
    align-items: center;
    flex-direction: row;
    background-color: var(--bgColorTab);
    border: 1px solid var(--borderColor);
    height: 35px;
}
.general-markets__data-tab-item {    
    padding: 6px 13px;    
    cursor: pointer;
    height: 32px;
}
    .general-markets__data-tab-item:hover {
        background-color: #eff2f5;
    }
.general-markets__data-tab-item--active {
    font-weight: bold;
    position: relative;
    background-color: #e1f5fe !important;
    color: #0b5495 !important;
    cursor: default;
}
    .general-markets__data-tab-item--active:after {
        content: " ";
        width: 100%;
        height: 1px;
        border-bottom: 1px dashed var(--activeBorderColor);
        position: absolute;
        left: 0px;
        bottom: -2px;
    }
/* ---- DATA / SUB TABS ----*/
.general-markets__data-subTabs {
    display: flex;
    align-items: center;
    flex-direction: row;
    /*height: 35px;*/
    background-color: #fff;
    border-right: 1px solid var(--borderColor);
    font-size: 13px;
    /*padding-left: 5px;*/
    padding-top: 3px;
    padding-bottom: 1px;
}
.general-markets__data-subTabs-item {
    padding: 5px 15px;
    cursor: pointer;
}
.general-markets__data-subTabs-item:hover {
    background-color: #f7f8f9;
    border-radius: 3px;
}
.general-markets__data-subTabs-item--active {
    font-weight: bold;
    background-color: #fff !important;
    color: #0b5495;
    cursor: default;
}
/* ---- DATA / CONTENT TABLE ----*/
.general-markets__data-content {
    background-color: #fff;
    max-height: 370px;
    overflow-y: auto;
    overflow-x: auto;
    max-width: 100%;
}
    .general-markets__data-content::-webkit-scrollbar {
        width: 6px;
        height: 5px;
    }
    .general-markets__data-content::-webkit-scrollbar-track {
        border-radius: 10px;
        background-color: #efefef;
    }
    .general-markets__data-content::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background-color: #b6b7b7;
    }
.general-markets__data-content--fullscreen {
    max-height: calc(100% - 120px);
    background-color: #fff;
    overflow-y: auto;
}
    .general-markets__data-content--fullscreen::-webkit-scrollbar {
        width: 6px;
        height: 0px;
    }
    .general-markets__data-content--fullscreen::-webkit-scrollbar-track {
        border-radius: 10px;
        background-color: #efefef;
    }
    .general-markets__data-content--fullscreen::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background-color: #b6b7b7;
    }
.general-markets__table {
    width: 100%;
    table-layout: fixed;
    border: 1px solid var(--borderColor);
    font-size: 13px;
    min-width: 600px;
}
.general-markets__table-head {}    
    .general-markets__table-head th {
        padding: 7px 0px;
        text-align: center;
        white-space: nowrap;        
        font-size: 12px;
        font-weight: normal;
        display: table-cell;
        background-color: var(--bgColorRow);
        border-bottom: 1px solid var(--borderColor);
        position: sticky;
        position: -webkit-sticky;
        top: -1px;
    }
    .general-markets__table-head th:first-child {
        left: -2px;
        z-index: 3;
    }
.general-markets__table-head-tooltip {
    position: relative;
}
    .general-markets__table-head-tooltip:before {
        content: attr(data-tooltip);
        font-weight: normal;
        margin-top: -15px;
        /* basic style */
        background-color: #335295;
        color: #fff;
        padding: 5px 10px;
        border-radius: 5px;
        white-space: nowrap;
        /* vertically center */
        transform: translate(-30%, -100%);
        text-align: center;
    }

    .general-markets__table-head-tooltip:after {
        content: " ";
        top: 0px;
        margin-top: -17px;
        border-width: 6px;
        border-style: solid;
        border-color: #335295 transparent transparent transparent;
    }

    .general-markets__table-head-tooltip:before, .general-markets__table-head-tooltip:after {
        /*visibility: hidden;*/
        display: none;
        pointer-events: none;
        position: absolute;
        z-index: 10;
    }

.general-markets__table-head th:hover .general-markets__table-head-tooltip:before,
.general-markets__table-head th:hover .general-markets__table-head-tooltip:after {
    display: block;
}
.general-markets__table-body {
}
    .general-markets__table-body tr.row-active td {
        background-color: var(--activeBgColor) !important;
    }
    .general-markets__table-body tr td {
        border-bottom: 1px solid var(--borderColor);
        background-color: #fff;
    }    
        .general-markets__table-body tr:nth-child(even) td {
            background-color: var(--bgColorRow);
        }
        .general-markets__table-body tr:hover td {
            background-color: var(--hoverBgColor);
        }
    .general-markets__table-body td {
        padding: 6px 0px;
        text-align: right;
        padding-right: 5px;
        white-space: nowrap;
        overflow: hidden;
        cursor: default;
        display: table-cell;
    }
        .general-markets__table-body td:first-child {
            text-align: left;
            font-size: 12px;
            font-weight: 600;
            padding-right: 0px;
            padding-left: 5px;
            text-overflow: ellipsis;
            z-index: 2;
            /*left: -2px;*/
            position: sticky;
            left: 0;
            background: #fff;
        }
.general-markets__data-unit-commodity {
    font-size: 9px;    
    font-weight: normal;
    height: 12px;
    margin-top: -3px;
}
.general-markets__col-code {
    width: 16%;
}
.general-markets__col-price {
    width: 12%;
}
.general-markets__col-1d {
    width: 12%;
}
.general-markets__col-1w {
    width: 12%;
}
.general-markets__col-1m {
    width: 12%;
}
.general-markets__col-1q {
    width: 12%;
}
.general-markets__col-ytd {
    width: 12%;
}
.general-markets__col-1y {
    width: 12%;
}

/*-------*/
/*Tooltip chart*/
.general-market__tooltip-formatter {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    /*padding-left: 5px;
    padding-right: 10px;*/
    padding: 7px 10px 5px 10px;
}
.general-market__tooltip-code {
    font-weight: bold;
    font-size: 13px;
}
.general-market__tooltip-index {
    margin-top: 1px;
}
.general-market__tooltip-index-value {   
    font-size: 13px;
}
.general-market__tooltip-change {
    margin-top: 1px;
    display: flex;
    flex-direction: row;
}
    .general-market__tooltip-change i {
        font-size: 15px;
    }
.general-market__tooltip-change-value {
    margin-right: 10px;
}
.general-market__tooltip-perchange-value {

}
.general-market__tooltip-trading-date {
    margin-top: 1px;
}
.general-market__tooltip-data {
    display: flex;
    align-items: center;
    padding: 2px 0px;
    font-size: 13px;
}
.general-market__tooltip-color {
    height: 10px;
    width: 20px;
    margin-right: 5px;
}
.general-market__tooltip-color--sell-price {
    background-color: #b30606;
}
.general-market__tooltip-color--buy-price {
    background-color: #008000;
}
.general-market__tooltip-name {
    margin-right: 10px;
}
.general-market__tooltip-value {
    font-weight: 500;
}
/*
    custom class hightcharts
*/
.hightcharts-data-label-basic-line text {
    fill: rgb(88, 87, 86) !important;
    font-weight: bold !important;
    font-size: 10px !important;
}
.general-markets__data-icon-commodity {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.general-markets__data-icon-commodity.svg {
    margin-right: 5px;
}
#currency-content .i-rate {
    min-height: 95px;
}
    #currency-content .i-rate > div {
        padding-left: 56px;
    }
/* ----- */
/* MEDIA SCREEN */
@media screen and (max-width: 480px) {
    .general-markets__chart-top-row {
        overflow-x: scroll;
    }
    .general-markets__chart-timeframe--active:after {
        bottom: 0px;
    }
    .general-markets__chart-timeframe:last-child {
        margin-right: 30px;
    }
    .general-markets__chart-expand-button {
        position: absolute;
        right: 11px;
        z-index: 2;
        background-color: var(--bgColorTab);
        height: 33px;
    }
    .general-markets__container--fullscreen {
        height: 270px !important;
    }
    .general-markets__chart-content {
        margin-top: 0px;
        height: 270px !important;
    }
    .general-markets__data-content {
        max-height: 270px !important;
    }
    .general-markets__data-content--fullscreen {
        max-height: 300px !important;
        margin-top: 1px;
    }
    .general-markets__data-subTabs-item {
        padding: 5px 12px;
    }
    .general-markets__col-code {
        width: 80px !important;
    }
    .general-markets__col-price {
        width: 80px !important;
    }
    .general-markets__col-1d {
        width: 65px !important;
    }
    .general-markets__col-1w {
        width: 65px !important;
    }
    .general-markets__col-1m {
        width: 65px !important;
    }
    .general-markets__col-1q {
        width: 65px !important;
    }
    .general-markets__col-ytd {
        width: 65px !important;
    }
    .general-markets__col-1y {
        width: 65px !important;
    }

    .general-markets__table-body td:first-child {
        position: sticky;
    }

    .general-markets__chart-timeframe:hover .general-markets__chart-tooltip:before,
    .general-markets__chart-timeframe:hover .general-markets__chart-tooltip:after {
        display: none;
    }
    .general-markets__chart-expand-button:hover .general-markets__chart-tooltip:before,
    .general-markets__chart-expand-button:hover .general-markets__chart-tooltip:after {
        display: none;
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {

}

@media screen and (max-width: 992px) {
    .general-markets__chart-expand-button {
        /*display: none;*/
    }
    .general-markets__data {
        padding-left: 10px;
        margin-top: 10px;
    }
    .general-markets__chart {
        height: 100%;
    }
    .general-markets__container--fullscreen {
        height: 290px;
    }
    .general-markets__chart-content {
        margin-top: 0px;
        height: 290px;
    }
    .general-markets__chart-content--fullscreen {
        height: calc(100% - 45px);
        padding: 0px 5px;
    }
    .general-markets__data-content {
        max-height: 270px;
    }
    .general-markets__data-content--fullscreen {
        max-height: 270px;
        margin-top: 1px;
    }
    .general-markets__col-code {
        width: 17%;
    }
    .general-markets__col-price {
        width: 11%;
    }
    .general-markets__col-1d {
        width: 11%;
    }
    .general-markets__col-1w {
        width: 11%;
    }
    .general-markets__col-1m {
        width: 11%;
    }
    .general-markets__col-1q {
        width: 11%;
    }
    .general-markets__col-ytd {
        width: 11%;
    }
    .general-markets__col-1y {
        width: 11%;
    }
}
@media screen and (max-width: 320px) {
    .general-markets__data-tab-item {
        padding: 6px 7px;
    }
}

