/* 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 '-'
(34,28): run-time error CSS1039: Token not allowed after unary operator: '-borderToolbarColor'
(60,34): run-time error CSS1039: Token not allowed after unary operator: '-borderToolbarColor'
(292,28): run-time error CSS1039: Token not allowed after unary operator: '-itemActiveColor'
(296,28): run-time error CSS1039: Token not allowed after unary operator: '-itemHoverColor'
(299,39): run-time error CSS1039: Token not allowed after unary operator: '-itemHoverColor'
(302,35): run-time error CSS1039: Token not allowed after unary operator: '-borderToolbarColor'
 */
.derivative-heatmap__wrapper {
    --itemHoverColor: #ffdead;
    --itemActiveColor: #fff3d0;
    --borderToolbarColor: #d3d4d5;
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    cursor: default;
}

    .derivative-heatmap__wrapper .hidden {
        display: none;
    }

.derivative-heatmap__header {
    margin-bottom: 10px;
}
.derivative-heatmap__header-title {
    font-weight: 700;
    font-size: 28px;
}

.derivative-heatmap__body {}
.derivative-heatmap__left-container {}
.derivative-heatmap__right-container {}


/* ----- */
/* Heatmap Toolbar */
.derivative-heatmap-toolbar {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #f8f9fa;
    border: 1px solid var(--borderToolbarColor);
    border-radius: 10px;    
    margin-bottom: 5px;
    position: relative;
}

.derivative-heatmap-toolbar__left {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    align-items: center;
    flex-shrink: 0;
}

.derivative-heatmap-toolbar__right {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-shrink: 0;
}

/* ----- */
/* Heatmap toolbar button */
.derivative-heatmap-toolbar__button {
    flex-grow: 1;
    padding: 5px 7px;
    border-right: 1px solid var(--borderToolbarColor);
    cursor: default;
    white-space: nowrap;
    position: relative;
    color: #4a4e52
}

.derivative-heatmap-toolbar__button:hover {
    background-color: #e1f5fe;
}

.derivative-heatmap-toolbar__button--first {
    flex-grow: 0 !important;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.derivative-heatmap-toolbar__button--last {
    border-right: 0px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.derivative-heatmap-toolbar__button-text {
    font-size: 13px;
}

.derivative-heatmap-toolbar__button-img, .derivative-heatmap-toolbar__button-img-blue {
    width: 15px;
    height: 15px;
    margin-right: 2px;
    margin-top: -3px;
}

.derivative-heatmap-toolbar__button .derivative-heatmap-toolbar__button-img {
    display: inline-block;
}

.derivative-heatmap-toolbar__button .derivative-heatmap-toolbar__button-img-blue {
    display: none;
}
.derivative-heatmap-toolbar__color-theme {
    display: inline-flex;
    align-items: center;
}

.derivative-heatmap-toolbar__color-bg {
    background-color: aquamarine;
    width: 11px;
    height: 11px;
    margin-right: 2px;
}
/* --------
  Heatmap toolbar tooltip
--------*/
.derivative-heatmap-toolbar__tooltip {
    position: relative;
}

.derivative-heatmap-toolbar__tooltip:before {
    content: attr(data-tooltip);
    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;
}

.derivative-heatmap-toolbar__tooltip--right:before {
    /* vertically center */
    transform: translate(-70%, -100%);
}

.derivative-heatmap-toolbar__tooltip:after {
    content: " ";
    top: 0px;
    margin-top: -17px;
    border-width: 6px;
    border-style: solid;
    border-color: #335295 transparent transparent transparent;
}

    .derivative-heatmap-toolbar__tooltip:before, .derivative-heatmap-toolbar__tooltip:after {
        /*visibility: hidden;*/
        display: none;
        pointer-events: none;
        position: absolute;
        z-index: 10;
    }

.derivative-heatmap-toolbar__button:hover .derivative-heatmap-toolbar__tooltip:before, .derivative-heatmap-toolbar__button:hover .derivative-heatmap-toolbar__tooltip:after {
    /*visibility: visible;*/
    display: block;
}

.derivative-heatmap-toolbar__tooltip--fullscreen:before {
    /*margin-top: 1px;
    transform: translate(-20%, 100%);*/
    display: none;
}

.derivative-heatmap-toolbar__tooltip--fullscreen:after {
    /*margin-top: 18px;
    border-color: transparent transparent #335295 transparent;*/
    display: none;
}


/*-------
    Dropdown
----------*/
.derivative-heatmap-dropdown {
    display: none;
    width: 190px;
    position: absolute;
    top: 40px;
    left: -1px;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 1px 3px 5px #0c0b0b59;
    z-index: 10;
    color: #4a4e52;
}

    .derivative-heatmap-dropdown:before {
        display: block;
        position: absolute;
        content: "";
        top: -5px;
        left: 20px;
        width: 10px;
        height: 10px;
        background-color: #f8f9fc;
        border-top: 1px solid #f3f3f3;
        border-right: 1px solid #f3f3f3;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
    }

.derivative-heatmap-dropdown--xsmall {
    width: 150px;
}

.derivative-heatmap-dropdown--small {
    width: 170px;
    left: -35px;
}

.derivative-heatmap-dropdown--medium {
    width: 250px;
}

.derivative-heatmap-dropdown--large {
    width: 300px;
}

.derivative-heatmap-dropdown--xlarge {
    width: 600px;
}

.derivative-heatmap-dropdown--sizing {
    width: 750px;
    height: 400px;
    left: calc(100% - 450px);
}

    .derivative-heatmap-dropdown--sizing::before {
        left: 350px;
    }

.derivative-heatmap-dropdown--right {
    left: auto;
    right: 0px;
}

    .derivative-heatmap-dropdown--right:before {
        right: 10px;
        left: auto;
    }

.derivative-heatmap-dropdown__header {
    padding-top: 10px;
    padding-left: 7px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f3f3f3;
    position: relative;
    background: #f8f9fb;
}

.derivative-heatmap-dropdown__header-text {
    color: #545B66;
    font-size: 13px;
    font-weight: 500;
}

.derivative-heatmap-dropdown__body {
    position: relative;
    top: 0px;
    padding: 5px 0px;
    padding-top: 0px;
    max-height: 300px;
    overflow-y: auto;
}
    .derivative-heatmap-dropdown__body::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }
    .derivative-heatmap-dropdown__body::-webkit-scrollbar-track {
        border-radius: 5px;
        background-color: #efefef;
    }
    .derivative-heatmap-dropdown__body::-webkit-scrollbar-thumb {
        border-radius: 5px;
        background-color: #c2c2c2;
    }

.derivative-heatmap-dropdown__item {
    display: flex;
    align-items: center;
    padding: 7px 15px;
    white-space: nowrap;
    position: relative;
    top: 0px;
}
.derivative-heatmap-dropdown__item--active {
    background-color: var(--itemActiveColor);
}

.derivative-heatmap-dropdown__item:hover {
    background-color: var(--itemHoverColor);
}
    .derivative-heatmap-dropdown__item:hover .derivative-heatmap-dropdown__item-color-bg:before {
        border-bottom: 7px solid var(--itemHoverColor);
    }
.derivative-heatmap-dropdown__item--border {
    border-bottom: 1px solid var(--borderToolbarColor);
    margin-top: 3px;
}
.derivative-heatmap-dropdown__item-label {
}

.derivative-heatmap-dropdown__item-label--disabled {
    color: #a5a5a5;
}
.derivative-heatmap-dropdown__item-checkbox {
    flex-shrink: 0;
    position: relative;
    width: 18px;
    height: 18px;
    background-color: #ffffff;
    margin-right: 7px;
    border: 1px solid #efefef;
}
.derivative-heatmap-dropdown__item-checkbox--active {
    background-color: #fbfeff;
}

.derivative-heatmap-dropdown__item-checkbox--active:after {
    content: " ";
    position: absolute;
    left: 5px;
    top: 0px;
    width: 6px;
    height: 12px;
    border: solid #565656;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.derivative-heatmap-dropdown__item-color-theme {
    display: flex;
    align-items: center;
    margin-left: 6px;
}

.derivative-heatmap-dropdown__item-color-bg {
    width: 17px;
    height: 16px;
    background-color: #b24ee5;
    margin-right: 1px;
    position: relative;
}

.derivative-heatmap-dropdown__item-color-bg:before {
    content: " ";
    position: absolute;
    right: 0px;
    bottom: 0px;
    height: 0px;
    width: 0px;
    border-bottom: 7px solid #f8f9fa;
    border-left: 7px solid transparent;
}

.derivative-heatmap-dropdown__item-img {
    width: 20px;
    margin-top: -2px;
    margin-right: 5px;
}

/* -------------
    Derivate Table
-----------*/
.derivative-table__container {
    position: relative;
    width: 100%;
    max-height: 360px;
    overflow-y: auto;
}
    .derivative-table__container::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }
    .derivative-table__container::-webkit-scrollbar-track {
        border-radius: 2px;
        background-color: #efefef;
    }
    .derivative-table__container::-webkit-scrollbar-thumb {
        border-radius: 3px;
        background-color: #b6b7b7;
    }
.derivative-table {
    width: 100%;
    table-layout: fixed;
    /*border: 1px solid var(--borderToolbarColor);*/
}
.derivative-table i {
    font-size: 10px;
    display: inline-block;
    margin-right: 5px;
}
.derivative-table__col-code {
    width: 160px;
}
.derivative-table__col-price {
    width: 80px;
}
.derivative-table__head {
}
    .derivative-table__head th {
        font-weight: 400;
        font-size: 13.5px;
        padding: 10px 0px;        
        text-align: right;
        padding-right: 10px;
        border-bottom: 1px solid #d9d9d9;
        color: #282828;
        background-color: #fff;
        position: sticky;
        top: 0px;
    }
        .derivative-table__head th:first-child {
            text-align: left;
            padding-left: 10px;
        }
        .derivative-table__head th:last-child {
            padding-right: 5px;
        }

.derivative-table__body {
}
    .derivative-table__body td {
        padding: 10px 0px;
        text-align: right;
        padding-right: 10px;
        border-bottom: 1px solid #d9d9d9;
        font-size: 13.5px;
    }
        .derivative-table__body td:first-child {
            text-align: left;
            padding-left: 30px;
        }
        .derivative-table__body td:last-child {
            padding-right: 5px;
        }
            .derivative-table__body td a {
                color: #333 !important;
            }
                .derivative-table__body td a:hover {
                    color: #0d6efd !important;
                    text-decoration: none;
                }

.derivative-table__row-index {}
.derivative-table__row-index td {}
.derivative-table__row-index td:first-child {
    padding-left: 10px;
}

.derivative-heatmap__sub-title {
    text-align: right;
    margin-top: 10px;
}
.derivative-heatmap__sub-title-img {
    width: 15px;
    height: 15px;
    margin-right: 5px;
    margin-top: -3px;
    opacity: 0.7;
}
.derivative-heatmap__sub-title-text {
    color: #666666;
}

@media screen and (max-width: 480px) {
    .derivative-heatmap__right-container {
        margin-top: 10px;
    }
    .derivative-heatmap-toolbar {
        overflow-x: scroll;        
    }
    .derivative-heatmap-dropdown {
        display: none;
        position: fixed;
        left: calc(50% - 95px);
        top: 100px;
        box-shadow: #0c0b0b8c 0px 3px 8px;
        z-index: 150;
    }
    .derivative-heatmap-dropdown--medium {
        left: calc(50% - 125px);
    }

    .derivative-table__col-code {
        width: 110px;
    }
    .derivative-table__col-price {
        width: 65px;
    }
    .derivative-table__head th {
        padding-right: 5px;
    }
    .derivative-table__body td {
        padding: 5px 0px;
        padding-right: 5px;
    }
        .derivative-table__body td:first-child {
            padding-left: 15px;
        }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    
}

@media screen and (max-width: 912px) {
    .derivative-heatmap__right-container {
        margin-top: 10px;
    }
    .derivative-heatmap-toolbar__button--first {
        display: none;
    }
    .derivative-heatmap-toolbar__left .derivative-heatmap-toolbar__button:nth-child(2) {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }
}
