/* 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 '-'
(9,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(10,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(164,17): run-time error CSS1039: Token not allowed after unary operator: '-textColor'
(165,28): run-time error CSS1039: Token not allowed after unary operator: '-bgColorTab'
(166,28): run-time error CSS1039: Token not allowed after unary operator: '-borderColor'
(191,34): run-time error CSS1039: Token not allowed after unary operator: '-borderColor'
(197,32): run-time error CSS1039: Token not allowed after unary operator: '-hoverBgTabColor'
(206,28): run-time error CSS1039: Token not allowed after unary operator: '-hoverBgTabColor'
(225,34): run-time error CSS1039: Token not allowed after unary operator: '-borderColor'
(231,32): run-time error CSS1039: Token not allowed after unary operator: '-hoverBgTabColor'
(252,32): run-time error CSS1039: Token not allowed after unary operator: '-hoverBgTabColor'
(258,28): run-time error CSS1039: Token not allowed after unary operator: '-activeBgTabColor'
(267,40): run-time error CSS1039: Token not allowed after unary operator: '-activeBorderColor'
(304,35): run-time error CSS1039: Token not allowed after unary operator: '-borderColor'
(316,28): run-time error CSS1039: Token not allowed after unary operator: '-borderColor'
(344,35): run-time error CSS1039: Token not allowed after unary operator: '-borderColor'
(351,32): run-time error CSS1039: Token not allowed after unary operator: '-hoverBgColor'
(355,28): run-time error CSS1039: Token not allowed after unary operator: '-activeBgColor'
(360,35): run-time error CSS1039: Token not allowed after unary operator: '-borderColor'
(367,32): run-time error CSS1039: Token not allowed after unary operator: '-hoverBgColor'
(371,28): run-time error CSS1039: Token not allowed after unary operator: '-activeBgColor'
(638,28): run-time error CSS1039: Token not allowed after unary operator: '-hoverBgTabColor'
 */
#proprietary {
    --textColor: #545b66;
    --bgColorTab: #f8f9fa;
    --bgColorRow: #f7f8f9;
    --activeBgColor: #ffe5bf; /*#ffe5bf  #e1f5fe*/
    --activeBgTabColor: #e1f5fe;
    --hoverBgColor: #ffdead;
    --hoverBgTabColor: #e1f5fe;
    --borderColor: #efefef;
    --activeBorderColor: #1562a1;
}

.proprietary-container {
    /*padding-left: 10px;
    padding-right: 10px;*/
    position: relative;
}

#proprietary-chart-view-content, #proprietary, .proprietary-chart {
    height: 100%;
}

.proprietary-d-none {
    display: none;
}

.proprietary-d-block {
    display: block;
}

.block-proprietary-bar-chart--inactive {
    display: none;
}

.proprietary-row {
    height: 100%;
}


.proprietary-col{
    height: 100%;
}


.proprietary-container--fullscreen {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 150;
    background-color: #fff;
    margin: 0px;
}

.proprietary__header {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 10px;
    border: 1px solid #efefef;
    border-bottom: none;
}

.proprietary__header-title {
    font-weight: 700;
    padding: 0px 5px;
    color: #545b66;
    font-size: 14px;
    cursor: default;
    white-space: nowrap;
    flex-grow: 1;
}

.proprietary__header-buttons {
    display: flex;
    align-items: center;
}

.proprietary__header-button {
    margin-left: 10px;
    cursor: pointer;
}

.proprietary__header-img, .proprietary__header-img-hover {
    width: 15px;
    height: 15px;
    margin-right: 2px;
    margin-top: -3px;
    /*display: inline-block;*/
    max-height: unset;
    max-width: unset;
}

.proprietary__header-img {
    display: inline-block;
}

.proprietary__header-img-hover {
    display: none;
}

.proprietary__header-button:hover .proprietary__header-img {
    display: none;
}

.proprietary__header-button:hover .proprietary__header-img-hover {
    display: inline-block;
}

.proprietary__info {
    margin-left: 10px;
    color: #3d3f41;
    font-size: 13px;
    font-weight: 400;
    position: relative;
}

    .proprietary__info:hover .proprietary__tips {
        display: block
    }

.proprietary__tips {
    display: none;
    position: absolute;
    top: 28px;
    left: -120px;
    padding: 10px;
    border: 1px solid #efefef;
    background-color: #335295;
    border-radius: 5px;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    z-index: 5;
    width: 880px;
    white-space: normal;
}

    .proprietary__tips:after {
        content: " ";
        position: absolute;
        top: -12px;
        left: 118px;
        border-width: 6px;
        border-style: solid;
        border-color: transparent transparent #335295 transparent;
    }

    .proprietary__tips p {
        margin-bottom: 5px;
    }

.proprietary__top-row {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    color: var(--textColor);
    background-color: var(--bgColorTab);
    border: 1px solid var(--borderColor);
    height: 35px;
}

    .proprietary__top-row:after {
        clear: both;
    }

.proprietary__search-symbol-block {
    flex-grow: 0.5;
    cursor: pointer;
}

.proprietary__search-criterion-block {
    flex-grow: 0.5;
    cursor: pointer;
}

.proprietary__text-search{
    padding-right: 5px;
}

.proprietary__search-symbol {
    display: flex;
    justify-content: space-between;
    border-right: 1px solid var(--borderColor);
    padding: 6px 10px;
    white-space: nowrap;
}

    .proprietary__search-symbol:hover {
        background-color: var(--hoverBgTabColor);
    }

        .proprietary__search-symbol:hover .proprietary__duration-tooltip:before,
        .proprietary__search-symbol:hover .proprietary__duration-tooltip:after {
            display: block;
        }

.proprietary__search__active {
    background-color: var(--hoverBgTabColor);
}
.proprietary__symbol-code {
    font-weight: 500;
    padding-left: 5px;
}

.proprietary__symbol-ico {
    font-size: 13px;
    color: #808181;
}

.proprietary__field-arrow {
    font-size: 12px;
}

.proprietary__search-criterion {
    display: flex;
    justify-content: space-between;
    border-right: 1px solid var(--borderColor);
    padding: 6px 10px;
    white-space: nowrap;
}

    .proprietary__search-criterion:hover {
        background-color: var(--hoverBgTabColor);
    }

        .proprietary__search-criterion:hover .proprietary__duration-tooltip:before,
        .proprietary__search-criterion:hover .proprietary__duration-tooltip:after {
            display: block;
        }

.proprietary__duration {
    display: flex;
    align-items: center;
}

.proprietary__time-frame {
    padding: 7px 15px;
    cursor: pointer;
    height: 32px;
    margin-right: 1px;
}

    .proprietary__time-frame:hover {
        background-color: var(--hoverBgTabColor);
    }

.proprietary__time-frame--active {
    font-weight: bold;
    position: relative;
    background-color: var(--activeBgTabColor);
    color: #0b5495 !important;
    cursor: default;
}

    .proprietary__time-frame--active:after {
        content: " ";
        width: 100%;
        height: 1px;
        border-bottom: 1px dashed var(--activeBorderColor);
        position: absolute;
        left: 0px;
        bottom: -2px;
    }


.proprietary__chart-expand-img {
    width: 18px;
    height: unset;
    max-width: unset;
    max-height: unset;
}

/* DROPDOWN SEARCH */
.proprietary__search-dropdown {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 1px 2px 3px #0c0b0b59;
    border-radius: 2px;
    z-index: 10;
    width: 450px;
}

.criterion-search-dropdown {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 1px 2px 3px #0c0b0b59;
    border-radius: 2px;
    z-index: 10;
    width: 450px;
}

.proprietary__search-header {
    padding: 10px;
    border-bottom: 1px solid var(--borderColor);
    background-color: #fdfdfd;
}

.proprietary__search-ico {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #63615f;
}

.proprietary__search-input {
    border: 1px solid var(--borderColor);
    outline: none;
    padding: 7px;
    width: 100%;
    padding-right: 30px;
    font-size: 13px;
    text-transform: uppercase;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

    .proprietary__search-input::placeholder {
        text-transform: none;
    }

    .proprietary__search-input:hover, .proprietary__search-input:focus {
        border-color: #66afe9;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
    }

.proprietary__search-list {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.proprietary__search-item {
    padding: 7px 10px;
    border-bottom: 1px solid var(--borderColor);
    display: flex;
    align-items: center;
    cursor: pointer;
}

    .proprietary__search-item:hover {
        background-color: var(--hoverBgColor);
    }

.proprietary__search-item--active {
    background-color: var(--activeBgColor);
}

.proprietary__search-item {
    padding: 7px 10px;
    border-bottom: 1px solid var(--borderColor);
    display: flex;
    align-items: center;
    cursor: pointer;
}

    .proprietary__search-item:hover {
        background-color: var(--hoverBgColor);
    }

.proprietary__search-item--active {
    background-color: var(--activeBgColor);
}

.proprietary__logo-frame {
    min-width: 65px;
    width: 65px;
    height: 30px;
    text-align: center;
}

    .proprietary__logo-frame img {
        max-width: 100%;
        max-height: 100%;
    }

.proprietary__stock-frame {
    margin-left: 10px;
}

.proprietary__stock-name {
    white-space: nowrap;
    text-overflow: ellipsis;
}

.proprietary__stock-alias {
    margin-top: 5px;
    color: #676767;
}

.proprietary__search-body {
    max-height: 350px;
    overflow-x: hidden;
    overflow-y: auto;
}

    .proprietary__search-body::-webkit-scrollbar {
        width: 6px;
        height: 0px;
    }

    .proprietary__search-body::-webkit-scrollbar-track {
        border-radius: 10px;
        background-color: #efefef;
    }

    .proprietary__search-body::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background-color: #b6b7b7;
    }

/* Dropdown */
.proprietary__dropdown {
    display: none;
    position: absolute;
    left: auto;
    top: 0px;
    right: 47px;
    width: 190px;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 1px 3px 5px #0c0b0b59;
    cursor: default;
    z-index: 151;
}

.proprietary__dropdown-header {
    position: relative;
    padding-top: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f3f3f3;
}

.proprietary__dropdown-header-text {
    color: #545866;
    font-size: 13px;
    font-weight: bold;
}

.proprietary__dropdown-body {
    position: relative;
    top: 0px;
    padding: 5px 0px;
    padding-top: 0px;
    max-height: 400px;
    overflow-y: auto;
}

.proprietary__dropdown-item {
    display: flex;
    align-items: center;
    padding: 7px 15px;
    white-space: normal;
    position: relative;
}

    .proprietary__dropdown-item:hover {
        background-color: #ffdead;
    }

.proprietary__dropdown-item-img {
    width: 20px;
    margin-top: -2px;
    margin-right: 10px;
}

.proprietary__dropdown-item-label {
}

/* CHART */
.proprietary__chart-content {
    margin-top: 15px;
    height: 400px;
    width: 100%;
}

.proprietary__chart-content--fullscreen {
    margin-top: 15px;
    /*height: 500px;*/
    height: calc(100% - 200px);
}

#column-chart .highcharts-container {
    background: url(https://image.vietstock.vn/common/vietstock_60.png) no-repeat center 25%;
}

.highcharts-legend-item {
    font-family: 'Roboto', Helvatica;
    font-size: 12px;
}

    .highcharts-legend-item text {
        font-weight: 500 !important;
    }

/*TITLE ALL CHART*/
.chart-title {
    font-family: 'Roboto', Arial, sans-serif;
    text-align: center;
    color: #003199;
    font-size: 18px;
    fill: #003199;
    display: inline-block;
    margin: 22px 4px 0px 4px;
}

.chart-title-block {
    text-align: center;
}

/*BAR CHART*/
.bar-chart {
    padding: 0px;
    margin-top: 15px;
}

#bar-chart-sell, #bar-chart-buy{
    margin-top: 0px!important;
}


/*-------*/
/*Tooltip formater of chart*/
.proprietary__tooltip-formatter {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    padding: 2px 4px;
    background-color: rgba(247, 247, 247, 0.6);
    color: #0e0e0e;
    border-radius: 2px;
}

.proprietary__tooltip-code {
    font-size: 13px;
    font-weight: 700;
    color: #636363;
}

.proprietary__tooltip-data {
    display: flex;
    align-items: center;
    padding: 2px 0px;
    font-size: 13px;
}

.proprietary__tooltip-color {
    height: 10px;
    width: 20px;
    margin-right: 5px;
}

.proprietary__tooltip-color--sell {
    background-color: red;
}

.proprietary__tooltip-color--buy {
    background-color: green;
}

.proprietary__tooltip-color--net {
    background-color: #fd7e14;
}

.proprietary__tooltip-name {
    margin-right: 10px;
}

.proprietary__tooltip-value {
    font-weight: 500;
}

.proprietary__tooltip-trading-date {
    margin-top: 5px;
    font-weight: 500;
}

.proprietary__tooltip-trading-date-value {
}

/* ---------------- */
/* Tooltip at top row */

.proprietary__duration-tooltip {
    position: relative;
}

    .proprietary__duration-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(-10%, -100%);
        text-align: center;
    }

    .proprietary__duration-tooltip:last-child:before {
        transform: translate(-70%, -100%);
    }

    .proprietary__duration-tooltip:after {
        content: " ";
        top: 0px;
        margin-top: -17px;
        border-width: 6px;
        border-style: solid;
        border-color: #335295 transparent transparent transparent;
    }

    .proprietary__duration-tooltip:before, .proprietary__duration-tooltip:after {
        /*visibility: hidden;*/
        display: none;
        pointer-events: none;
        position: absolute;
        z-index: 10;
    }

.proprietary__time-frame:hover .proprietary__duration-tooltip:before,
.proprietary__time-frame:hover .proprietary__duration-tooltip:after {
    display: block;
}
/*BUTTON VIEW DETAIL*/
.proprietary__button:hover {
    background-color: var(--hoverBgTabColor)!important;
}

/* ----- */
/* MEDIA SCREEN */
@media screen and (max-width: 375px) {
    .proprietary__tips {
        width: 360px !important;
    }

    .chart-title{
        font-size:15px;
        margin-top: 5px;
    }

    .proprietary__chart-content {
        height: 260px;
    }

    .proprietary__chart-content--fullscreen {
        margin-top: 1px;
        height: 220px;
    }
}

@media screen and (max-width: 480px) {
    .proprietary__top-row {
        overflow-x: auto;
    }
    .proprietary__price-info {
        display: none;
        width: 0px;
    }

    .proprietary__search-dropdown {
        width: 350px;
    }

    .criterion-search-dropdown {
        width: 230px;
    }

    .proprietary__search-symbol:hover .proprietary__duration-tooltip:before,
    .proprietary__search-symbol:hover .proprietary__duration-tooltip:after {
        display: none;
    }

    .proprietary__time-frame:hover .proprietary__duration-tooltip:before,
    .proprietary__time-frame:hover .proprietary__duration-tooltip:after {
        display: none;
    }

    .proprietary__time-frame-last-child {
        margin-right: 30px;
    }

    .proprietary__tips {
        width: 380px;
    }
    .proprietary-row {
        height: auto;
    }

    .proprietary__chart-content {
        height: 270px;
    }

    .proprietary__chart-content--fullscreen {
        margin-top: 5px;
        height: 240px;
    }
    .chart-title {
        margin-top: 10px;
    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {

    .proprietary__tips {
        width: 700px;
    }

    .proprietary-row {
        height: auto;
    }

    .proprietary__chart-content {
        height: 320px;
    }

    .proprietary__chart-content--fullscreen {
        margin-top: 5px;
        height: 280px;
    }

    .chart-title{
        margin-top: 10px;
    }
}


