/* CSS Document */

@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Cousine&family=Inter:wght@300;400;500;600;700&display=swap');
:root {
    --vig_charts_grey_main: #8a8a98;
    --vig_charts_grey_darker: #56565f;
    --vig_charts_grey_background: #15161c;
    --vig_charts_grey_background_2: #292b33;
    --vig_charts_white: #f5f5ff;
    --vig_charts_green_check: #13ff9a;

    --vig_charts_positive: rgb(71, 255, 214);
    --vig_charts_negative: rgb(184, 14, 209);
    --vig_charts_grey: #8a8a98;
    --vig_charts_red: rgb(253, 68, 56);
    --vig_charts_blue: rgb(71, 201, 255);

    --vig_charts_tooltip_data_spacing: 8px;
}

/*---------------------------------------------------------------------------*/
/*------------------------------------------------------- Simulate vig layout*/
/*---------------------------------------------------------------------------*/

body {
    margin: 0;
    color: var(--vig_charts_grey_main);
    font-family: 'Inter', sans-serif;
    padding: 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-color: #000;
}

#header_space {
    display: flex;
    width: 100%;
    height: 68px;
    border-bottom: 2px solid grey;
    border-color: rgba(245, 245, 255, 0.25);
}

#header_space .logo {
    margin: 10px 0 0 15px;
}

#header_space .logo img {
    width: 70px;
}

#header_space .controls {
    margin: 0 0 0 auto;
    min-height: 68px;
}

#content_holder {
    width: 100%;
    height: calc(100vh - 120px);
    display: flex;
}
#left_content {
    width: 89px;
    height: 100%;
    padding-top: 50px;
    text-align: center;
    /*margin: 40px 22px 0 33px;*/
}
#right_content {
    width: 42px;
    text-align: center;
}

/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------- Main containers */
/*---------------------------------------------------------------------------*/

#vigchart_main_content {
    width: 100%;
    height: 100%;
}

#chart {
    width: 100%;
    height: 100%;
    position: relative;
}

#chart.full_screen {
    height: calc(100vh - 42px);
}

/*---------------------------------------------------------------------------*/
/*------------------------------------------------------------ General usage */
/*---------------------------------------------------------------------------*/

#vigcharts_chart_main_controls_holder {
    position: relative;
}

#vigcharts_chart_main_controls_holder > div {
    z-index: 1000;
}

#vigcharts_chart_main_controls_holder .margin-right-auto {
    margin-right: auto !important;
}

#vigcharts_chart_main_controls_holder .margin-left-auto {
    margin-left: auto !important;
}

#vigcharts_chart_main_controls_holder .force_hide {
    display: none !important;
}

#vigcharts_chart_main_controls_holder .vig_green {
    color: var(--vig_charts_green_check);
}

#vigcharts_chart_main_controls_holder .vig_green svg {
    fill: var(--vig_charts_green_check) !important;
}

#vigcharts_chart_main_controls_holder .rotate_90 {
    transform: rotateY(0deg) rotate(90deg);
}

#vigcharts_chart_main_controls_holder .mt10 {
    margin-top: 10px;
}

#vigcharts_chart_main_controls_holder .background_inherit {
    background-color: inherit !important;
}

#vigcharts_chart_main_controls_holder .mb10 {
    margin-bottom: 10px;
}

/*---------------------------------------------------------------------------*/
/*------------------------------------------------------- Controls container */
/*---------------------------------------------------------------------------*/

#vigcharts_chart_main_controls_holder {
    width: 100%;
    display: flex;
    height: 40px;
    margin-bottom: 2px;
}

#vigcharts_chart_main_controls_holder > div:not(.vig-modal-holder) {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    background-color: var(--vig_charts_grey_background);
    color: var(--vig_charts_grey_main);
    fill: var(--vig_charts_grey_main);
    font-size: 15px;
    cursor: pointer;
}

#vigcharts_chart_main_controls_holder > div:not(.vig-modal-holder) span {
    width: auto;
    height: 20px;
}

#vigcharts_chart_main_controls_holder > div:not(.vig-modal-holder) span svg {
    width: 20px;
    height: 20px;
}

#vigcharts_chart_main_controls_holder > div:not(:first-child) {
    margin-left: 2px;
}

#vigcharts_chart_main_controls_holder .hover > span,
#vigcharts_chart_main_controls_holder .active > span,
#vigcharts_chart_main_controls_holder .hover .link_text,
#vigcharts_chart_main_controls_holder .active .link_text,
#vigcharts_chart_main_controls_holder > div.ext_link:hover div,
#vigcharts_chart_main_controls_holder > div.ext_link:hover span svg {
    fill: white;
    color: white;
    -webkit-animation: vigcharts_card_animation 1s;
    animation: vigcharts_card_animation 1s;
}
@keyframes vigcharts_card_animation {
    0% {
        fill: var(--vig_charts_grey_main);
        color: var(--vig_charts_grey_main);
    }
    100% {
        fill: white;
        color: white;
    }
}

/*---------------------------------------------------------------------------*/
/*------------------------------------------------------------ Dropdown menu */
/*---------------------------------------------------------------------------*/

#vigcharts_chart_main_controls_holder .dropdown_control {
    transition: 0.4s ease-out;
    position: relative;
    cursor: pointer;
}

#vigcharts_chart_main_controls_holder .dropdown_control span {
    width: 22px;
    height: 22px;
}

#vigcharts_chart_main_controls_holder .dropdown_control span svg {
    width: 22px;
    height: 22px;
}

#vigcharts_chart_main_controls_holder .dropdown_control:hover {
    z-index: 1200;
}

#vigcharts_chart_main_controls_holder .vigcharts_menu_holder {
    height: auto;
    position: absolute;
    top: 40px;
    left: 0;
    opacity: 0;
    transform: translateX(0) translateY(0) scale(0);
    transition-property: all;
    transition-duration: 0.4s;
    /*transition-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);*/
    transition-timing-function: ease-out;
    transition-delay: 0s;
    transform-origin: top left;
    padding: 10px 10px 0;
    width: 130px;
    box-shadow: 0px 30px 30px #000000;
    /*border-radius: 6px;*/
    background: rgba(30, 30, 37, 0.8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
}

#vigcharts_chart_main_controls_holder
    .dropdown_control.active
    .vigcharts_menu_holder,
#vigcharts_chart_main_controls_holder
    #vigcharts_search_results_holder.vigcharts_menu_holder.active {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
    background: rgba(30, 30, 37, 0.8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(10px);
    height: auto;
    box-shadow: 0px 30px 30px #000000;
}

#vigcharts_chart_main_controls_holder .menu_item {
    height: 32px;
    font-size: 12px;
    display: flex;
    align-items: center;
}

#vigcharts_chart_main_controls_holder .menu_item span {
    margin-right: 10px;
}

#vigcharts_chart_main_controls_holder .menu_item span svg {
    fill: var(--vig_charts_grey_main) !important;
    width: 22px;
    height: 22px;
    /*stroke: var(--vig_charts_grey_main) !important;*/
}

#vigcharts_chart_main_controls_holder .menu_item:not(:first-child):hover,
#vigcharts_chart_main_controls_holder .menu_item#save:hover,
#vigcharts_chart_main_controls_holder .menu_item:hover svg {
    color: var(--vig_charts_white) !important;
    fill: var(--vig_charts_white) !important;
    /*stroke: var(--vig_charts_white) !important;*/
}

#vigcharts_chart_main_controls_holder .menu_item:first-child:not(#save) {
    font-size: 10px;
    cursor: auto;
    text-transform: uppercase;
    border-bottom: 1px solid var(--vig_charts_grey_darker);
}

/*---------------------------------------------------------------------------*/
/*------------------------------------------ Dropdown menu - Layout dropdown */
/*---------------------------------------------------------------------------*/

#vigcharts_chart_main_controls_holder
    #vigcharts_split_screen_button_menu_holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#vigcharts_chart_main_controls_holder
    #vigcharts_split_screen_button_menu_holder
    .menu_item {
    flex: 0 0 100%;
    margin-bottom: 10px;
}

#vigcharts_chart_main_controls_holder
    #vigcharts_split_screen_button_menu_holder
    .menu_item_split_screen
    svg {
    width: 36px;
    height: 28px;
    fill: var(--vig_charts_grey_main);
    margin-bottom: 6px;
}

#vigcharts_chart_main_controls_holder
    #vigcharts_split_screen_button_menu_holder
    .menu_item_split_screen
    svg:hover {
    fill: var(--vig_charts_white);
}

/*---------------------------------------------------------------------------*/
/*-------------------------------------------------------------- Symbol name */
/*---------------------------------------------------------------------------*/

#vigcharts_chart_main_controls_holder > div#vigcharts_symbol_name {
    font-size: 18px;
    color: var(--vig_charts_white);
    font-weight: 600;
    padding: 0 15px;
}

/*---------------------------------------------------------------------------*/
/*------------------------------------------------------------------- Search */
/*---------------------------------------------------------------------------*/

#vigcharts_search {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: var(--vig_charts_grey_background);
    transition: 0.4s ease-out;
    position: relative;
    left: 0px;
    cursor: pointer;
}

#vigcharts_search .btn-search {
    border-style: none;
    font-size: 20px;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    right: 1px;
    color: var(--vig_charts_white);
    background-color: transparent;
    pointer-events: painted;
    padding-top: 4px;
}

#vigcharts_search .btn-search svg {
    width: 27px;
    height: 27px;
}

#vigcharts_search:hover #show_search_field.btn-search svg {
    fill: var(--vig_charts_white);
}

#vigcharts_search #close_search_field.btn-search {
    font-family: 'Inter', sans-serif;
    color: var(--vig_charts_grey_main);
    font-size: 20px;
    font-weight: 800;
    margin: 5px 5px 0 0;
    top: -6px;
}

#vigcharts_search #close_search_field.btn-search:hover {
    color: var(--vig_charts_white);
}

#vigcharts_search .search-box {
    width: fit-content;
    height: fit-content;
    position: relative;
    font-size: 11px;
    cursor: pointer;
}

#vigcharts_search .input-search {
    height: 29px;
    width: 35px;
    border-style: none;
    padding: 2px;
    font-size: 12px;
    outline: none;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
    background-color: var(--vig_charts_grey_background);
    color: var(--vig_charts_grey_background);
}

#vigcharts_search .input-search::placeholder {
    color: rgba(255, 255, 255, 0);
}

#vigcharts_search.active .input-search {
    width: 206px;
    padding-left: 10px;
    transition: all 500ms cubic-bezier(0, 0.11, 0.35, 2);
}

#vigcharts_search_results_holder.vigcharts_menu_holder {
    width: 196px !important;
    height: 500px;
    max-height: 50vh;
    overflow-x: hidden;
    overflow-y: auto;
}

#vigcharts_search_results_holder.vigcharts_menu_holder
    .menu_item:not(:first-child) {
    display: block;
    height: 42px !important;
}

#vigcharts_search_results_holder .search_results_symbol {
    font-size: 14px;
    height: 21px;
}

#vigcharts_search_results_holder .search_results_company_name {
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 21px;
}

#vigcharts_chart_main_controls_holder
    #vigcharts_search.active
    #vigcharts_main_search {
    color: var(--vig_charts_white) !important;
}

#vigcharts_search.active #vigcharts_main_search::placeholder {
    color: var(--vig_charts_grey_main);
}

/*---------------------------------------------------------------------------*/
/*----------------------------------------------------------------------- FX */
/*---------------------------------------------------------------------------*/

#vigcharts_chart_main_controls_holder > div#vigcharts_fx_button span {
    font-size: 18px;
    font-weight: 500;
    position: relative;
    top: -2px;
    text-align: center;
}

/*---------------------------------------------------------------------------*/
/*------------------------------------------------------------ Links Buttons */
/*---------------------------------------------------------------------------*/

#vigcharts_chart_main_controls_holder > div.ext_link {
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-size: 12px;
    font-weight: 500;
    background-color: inherit;
}

#vigcharts_chart_main_controls_holder > div.ext_link .link_text {
    margin-top: -1px;
}

#vigcharts_chart_main_controls_holder > div.ext_link.fundamentals {
    border-right: 1px solid var(--vig_charts_grey_main);
    border-left: 1px solid var(--vig_charts_grey_main);
}

#vigcharts_chart_main_controls_holder > div.ext_link.options_flow {
    border-right: 1px solid var(--vig_charts_grey_main);
}

#vigcharts_chart_main_controls_holder > div.ext_link span svg {
    width: 18px;
    height: 18px;
}

#vigcharts_chart_main_controls_holder > div#vigcharts_link_arcade {
    display: block;
    height: 40px;
    width: 125px;
    background-size: 125px 80px;
}

@media (min-width: 2000px) {
    #vigcharts_chart_main_controls_holder > div#vigcharts_link_arcade {
    }
}

#vigcharts_chart_main_controls_holder > div#vigcharts_link_arcade:hover {
    background-position: 0 -40px;
}

#vigcharts_chart_main_controls_holder > div#vigcharts_space {
    flex-grow: 1;
    cursor: default !important;
    background-color: inherit;
}

@media (max-width: 1255px) {
    #vigcharts_chart_main_controls_holder .link_text {
        display: none;
    }

    #vigcharts_chart_main_controls_holder .ext_link {
        min-width: 50px !important;
        width: 50px;
    }
}

/*---------------------------------------------------------------------------*/
/*----------------------------------------------------------- Load save menu */
/*---------------------------------------------------------------------------*/

#vigcharts_load_save_menu
    #vigcharts_load_save_menu_holder.vigcharts_menu_holder {
    left: auto;
    right: 0;
    transform-origin: top right;
}

#vigcharts_load_save_menu.dropdown_control > span {
    min-width: 38px;
    text-align: center;
}

#vigcharts_load_save_menu.dropdown_control > div.link_text {
    min-width: 70px;
    text-align: center;
}

#vigcharts_load_save_menu.dropdown_control > div.triangle {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--vig_charts_white);
    border-bottom: none;
    margin: 4px;
}

#vigcharts_load_save_menu.dropdown_control > div.triangle.up {
    border-bottom: 6px solid var(--vig_charts_white);
    border-top: none;
}

/*---------------------------------------------------------------------------*/
/*----------------------------------------------------- Custom form elements */
/*---------------------------------------------------------------------------*/

#vigcharts_chart_main_controls_holder .vig_checkbox {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.11);
    border-radius: 2px;
}

#vigcharts_chart_main_controls_holder .vig_checkbox.checked span {
    display: inline-block;
    transform: rotate(45deg);
    height: 12px;
    width: 5px;
    border-bottom: 4px solid var(--vig_charts_green_check);
    border-right: 4px solid var(--vig_charts_green_check);
    position: relative;
    right: -6px;
}

#vigcharts_chart_main_controls_holder .vigcharts_forms {
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 25px;
    cursor: pointer;
    font-size: 18px;
}
#vigcharts_chart_main_controls_holder .vigcharts_forms input {
    position: absolute;
    /*z-index: -1;*/
    opacity: 0;
    width: 0;
    height: 0;
}
#vigcharts_chart_main_controls_holder .vigcharts_forms__indicator {
    position: absolute;
    top: 2px;
    right: 0;
    height: 20px;
    width: 20px;
    /*background: rgba(255, 255, 255, 0.11);*/
    border-radius: 2px;
    padding-left: 4px;
}

#vigcharts_chart_main_controls_holder
    .vigcharts_forms--radio
    .vigcharts_forms__indicator {
    border-radius: 50%;
}

#vigcharts_chart_main_controls_holder
    .vigcharts_forms
    input:disabled
    ~ .vigcharts_forms__indicator {
    opacity: 0.2;
    pointer-events: none;
}
#vigcharts_chart_main_controls_holder .vigcharts_forms__indicator:after {
    content: '';
    position: absolute;
    display: none;
}

#vigcharts_chart_main_controls_holder
    .vigcharts_forms--checkbox
    .vigcharts_forms__indicator:after {
    left: 6px;
    top: 1px;
    width: 5px;
    height: 12px;
    border: solid var(--vig_charts_green_check);
    border-width: 0 4px 4px 0;
    transform: rotate(45deg);
}
#vigcharts_chart_main_controls_holder
    .vigcharts_forms--checkbox
    input:disabled
    ~ .vigcharts_forms__indicator:after {
    border-color: #7b7b7b;
}
#vigcharts_chart_main_controls_holder
    .vigcharts_forms--radio
    .vigcharts_forms__indicator:after {
    left: 7px;
    top: 7px;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: #fff;
}
#vigcharts_chart_main_controls_holder
    .vigcharts_forms--radio
    input:disabled
    ~ .vigcharts_forms__indicator:after {
    background: #7b7b7b;
}
#vigcharts_chart_main_controls_holder .vigcharts_select {
    font-family: 'Inter', sans-serif;
    position: relative;
    display: inline-block;
    width: 100%;
}
#vigcharts_chart_main_controls_holder .vigcharts_select select {
    font-family: 'Inter', sans-serif;
    display: inline-block;
    width: 100%;
    cursor: pointer;
    padding: 5px 25px 5px 2px;
    outline: 0;
    border: 0;
    border-radius: 4px;
    background-color: var(--vig_charts_grey_darker) !important;
    color: var(--vig_charts_white);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

#vigcharts_chart_main_controls_holder .vigcharts_select select::-ms-expand {
    display: none;
}

#vigcharts_chart_main_controls_holder .vigcharts_select select:disabled {
    opacity: 0.5;
    pointer-events: none;
}
#vigcharts_chart_main_controls_holder .vigcharts_select__arrow {
    position: absolute;
    top: 10px;
    right: 9px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-style: solid;
    border-width: 6px 5px 0 5px;
    border-color: var(--vig_charts_grey_main) transparent transparent
        transparent;
}
#vigcharts_chart_main_controls_holder
    .vigcharts_select
    select:hover
    ~ .vigcharts_select__arrow,
#vigcharts_chart_main_controls_holder
    .vigcharts_select
    select:focus
    ~ .vigcharts_select__arrow {
    border-top-color: #000;
}
#vigcharts_chart_main_controls_holder
    .vigcharts_select
    select:disabled
    ~ .vigcharts_select__arrow {
    border-top-color: #ccc;
}

#vigcharts_chart_main_controls_holder .input-number {
    width: 30px;
    padding: 0 5px;
    vertical-align: top;
    text-align: center;
    outline: none;
    border: 1px solid var(--vig_charts_grey_darker);
    border-radius: 5px;
    background-color: transparent;
    color: var(--vig_charts_white);
}

#vigcharts_chart_main_controls_holder .input-number,
#vigcharts_chart_main_controls_holder .input-number-decrement,
#vigcharts_chart_main_controls_holder .input-number-increment {
    height: 24px;
    user-select: none;
}

#vigcharts_chart_main_controls_holder .input-number-decrement,
#vigcharts_chart_main_controls_holder .input-number-increment {
    display: inline-block;
    width: 18px;
    line-height: 24px;
    background: transparent;
    color: var(--vig_charts_grey_main);
    font-weight: bold;
    cursor: pointer;
}

#vigcharts_chart_main_controls_holder .input-number-decrement:hover,
#vigcharts_chart_main_controls_holder .input-number-increment:hover {
    color: var(--vig_charts_white);
}

#vigcharts_chart_main_controls_holder .input-number-decrement:active,
#vigcharts_chart_main_controls_holder .input-number-increment:active {
    /*background: #ddd;*/
    color: var(--vig_charts_white);
}

#vigcharts_chart_main_controls_holder .input-number-decrement {
    border-right: none;
    border-radius: 4px 0 0 4px;
    text-align: left;
}

#vigcharts_chart_main_controls_holder .input-number-increment {
    border-left: none;
    border-radius: 0 4px 4px 0;
    text-align: right;
}

/*-----------------------------------------------------+------------- Custom select */

#vigcharts_chart_main_controls_holder .vigcharts_custom_select {
    height: auto;
    position: absolute;
    top: 17px;
    right: 0;
    opacity: 0;
    transform: translateX(0) translateY(0) scale(0);
    transition-property: all;
    transition-duration: 0.4s;
    /*transition-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);*/
    transition-timing-function: ease-out;
    transition-delay: 0s;
    transform-origin: top right;
    padding: 10px 0 10px 20px;
    width: auto;
    box-shadow: 0px 30px 30px #000000;
    /*border-radius: 6px;*/
    background: rgba(30, 30, 37, 0.8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
}

#vigcharts_chart_main_controls_holder .vigcharts_custom_select > div {
    padding: 3px;
    font-size: 12px;
    text-align: right;
}

#vigcharts_chart_main_controls_holder .vigcharts_custom_select > div:hover {
    color: var(--vig_charts_white);
}

#vigcharts_chart_main_controls_holder
    .dropdown_control.hover
    .vigcharts_custom_select {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
    background: rgba(30, 30, 37, 0.8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(10px);
    height: auto;
    box-shadow: 0px 30px 30px #000000;
}

/*-----------------------------------------------------+------------- Switch */

#vigcharts_chart_main_controls_holder .vigcharts_switch {
    width: 37px;
    height: 22px;
    /*top:0;*/
    /*right:0;*/
}

#vigcharts_chart_main_controls_holder .vigcharts_switch.vigcharts_toggle {
    /*position: absolute;*/
    /*right: 8px;*/
    border: 2px solid #444249;
    border-radius: 20px;
    -webkit-transition: border-color 0.6s ease-out;
    transition: border-color 0.6s ease-out;
    box-sizing: border-box;
}

#vigcharts_chart_main_controls_holder
    .vigcharts_switch.vigcharts_toggle.vigcharts_toggle-on {
    border-color: rgba(137, 194, 217, 0.4);
    -webkit-transition: all 0.5s 0.15s ease-out;
    transition: all 0.5s 0.15s ease-out;
}

.vigcharts_toggle-button {
    position: absolute;
    top: 4px;
    width: 13px;
    bottom: 4px;
    right: 19px;
    background-color: #444249;
    border-radius: 19px;
    cursor: pointer;
    -webkit-transition: all 0.3s 0.1s, width 0.1s, top 0.1s, bottom 0.1s;
    transition: all 0.3s 0.1s, width 0.1s, top 0.1s, bottom 0.1s;
}

.vigcharts_toggle-on .vigcharts_toggle-button {
    top: 4px;
    width: 13px;
    bottom: 4px;
    right: 5px;
    border-radius: 23px;
    background-color: var(--vig_charts_green_check);
    /*box-shadow: 0 0 16px #4b7a8d;*/
    -webkit-transition: all 0.2s 0.1s, right 0.1s;
    transition: all 0.2s 0.1s, right 0.1s;
}

.vigcharts_toggle-text-on {
    position: absolute;
    top: -9px;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 36px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none; /* Chrome/Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ */

    color: rgba(0, 0, 0, 0);
}

.vigcharts_toggle-on .vigcharts_toggle-text-on {
    color: #3b6a7d;
    -webkit-transition: color 0.3s 0.15s;
    transition: color 0.3s 0.15s;
}

.vigcharts_toggle-text-off {
    position: absolute;
    top: -9px;
    bottom: 0;
    right: 6px;
    line-height: 36px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    user-select: none;
    -webkit-user-select: none; /* Chrome/Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ */

    cursor: pointer;

    color: #444249;
}

.vigcharts_toggle-on .vigcharts_toggle-text-off {
    color: rgba(0, 0, 0, 0);
}

.vigcharts_glow-comp {
    position: absolute;
    opacity: 0;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    border-radius: 6px;
    background-color: rgba(75, 122, 141, 0.1);
    box-shadow: 0 0 12px rgba(75, 122, 141, 0.2);
    -webkit-transition: opacity 4.5s 1s;
    transition: opacity 4.5s 1s;
}

.vigcharts_toggle-on .vigcharts_glow-comp {
    opacity: 1;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
}

.vigcharts_plus {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: linear-gradient(rgb(71, 255, 214) 0 0),
        linear-gradient(rgb(71, 255, 214) 0 0);
    background-position-x: 0%, 0%;
    background-position-y: 0%, 0%;
    background-position: center;
    background-size: 100% 3px, 4px 100%;
    background-repeat: no-repeat;
}

.vigcharts_minus {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: linear-gradient(rgb(184, 14, 209) 0 0),
        linear-gradient(rgb(184, 14, 209) 0 0);
    background-position-x: 0%, 0%;
    background-position-y: 0%, 0%;
    background-position: center;
    background-size: 100% 3px, 4px 0;
    background-repeat: no-repeat;
    cursor: pointer;
}

/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------- Modal - General */
/*---------------------------------------------------------------------------*/

#vigcharts_chart_main_controls_holder .vig-modal-holder {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1000;
}

#vigcharts_chart_main_controls_holder .vig-modal {
    z-index: 10000;
    /*width: 300px;*/
    height: 0;
    max-height: 80vh;
    /*overflow: auto;*/
    background: rgba(15, 15, 19);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0px 30px 30px #000000;
    transform: scaleX(0);
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
    border-radius: 15px;
}

#vigcharts_chart_main_controls_holder .vig-modal.show {
    transform: scaleX(1);
    height: auto;
}

#vigcharts_chart_main_controls_holder .vig-modal-close {
    position: absolute;
    top: -4px;
    right: 21px;
    color: #aaaaaa;
    font-size: 40px;
}

#vigcharts_chart_main_controls_holder .vig-modal-close:hover,
#vigcharts_chart_main_controls_holder .vig-modal-close:focus {
    color: var(--vig_charts_white);
    text-decoration: none;
    cursor: pointer;
}

#vigcharts_chart_main_controls_holder .vig-modal-body {
    height: 50vh;
    max-height: 50vh;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 10px;
}

#vigcharts_chart_main_controls_holder .vig-modal-header-main {
    height: 34px;
    border-bottom: 1px solid var(--vig_charts_grey_main);
    margin: 15px 25px 15px;
}

/*---------------------------------------------------------------------------*/
/*----------------------------------------------------------------- FX Modal */
/*---------------------------------------------------------------------------*/

#vigcharts_chart_main_controls_holder #vigModal.vig-modal {
    background-repeat: no-repeat;
    background-position: right top;
}

#vigcharts_chart_main_controls_holder #vigModal #vigcharts_fx_settings_modal {
    color: var(--vig_charts_white);
}

#vigcharts_chart_main_controls_holder
    #vigModal
    #vigcharts_fx_settings_modal
    .vig-modal-content {
    display: flex;
    align-items: normal;
    justify-content: center;
    font-size: 14px;
}

#vigcharts_chart_main_controls_holder
    #vigcharts_fx_settings_modal
    .fx_column_title {
    color: var(--vig_charts_grey_main);
    padding: 10px 0 10px 0;
    position: relative;
    height: 18px;
}

#vigcharts_chart_main_controls_holder
    #vigcharts_fx_settings_modal
    .studies_list {
    width: 280px;
    background-repeat: no-repeat;
    background-position: left bottom;
    padding: 0 5px 15px 25px;
    border-radius: 0 0 0 15px;
}

#vigcharts_chart_main_controls_holder
    #vigcharts_fx_settings_modal
    .studies_list_item
    svg {
    fill: var(--vig_charts_grey_main);
}

#vigcharts_chart_main_controls_holder #vigcharts_fx_settings_modal .splitter_1,
#vigcharts_chart_main_controls_holder #vigcharts_fx_settings_modal .splitter_2 {
    margin: 0 20px 0 10px;
    width: 2px;
    background: -moz-linear-gradient(
        top,
        rgba(0, 0, 0, 0.001) 0%,
        rgba(201, 201, 201, 1) 50%,
        rgba(0, 0, 0, 0.001) 100%
    );
    background: -webkit-linear-gradient(
        top,
        rgba(0, 0, 0, 0.001) 0%,
        rgba(201, 201, 201, 1) 50%,
        rgba(0, 0, 0, 0.001) 100%
    );
    background: linear-gradient(
        top,
        rgba(0, 0, 0, 0.001) 0%,
        rgba(201, 201, 201, 1) 50%,
        rgba(0, 0, 0, 0.001) 100%
    );

    transform: scaleX(1);
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}

#vigcharts_chart_main_controls_holder #vigcharts_fx_settings_modal #fx_settings,
#vigcharts_chart_main_controls_holder
    #vigcharts_fx_settings_modal
    #fx_details_settings {
    width: 280px;
    transform: scaleX(1);
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
    transition-delay: 0s;
}

#vigcharts_chart_main_controls_holder
    #vigcharts_fx_settings_modal
    .splitter_1.hidden,
#vigcharts_chart_main_controls_holder
    #vigcharts_fx_settings_modal
    #fx_settings.hidden,
#vigcharts_chart_main_controls_holder
    #vigcharts_fx_settings_modal
    .splitter_2.hidden,
#vigcharts_chart_main_controls_holder
    #vigcharts_fx_settings_modal
    #fx_details_settings.hidden {
    width: 0;
    transform: scaleX(0);
    margin: 0;
}

#vigcharts_chart_main_controls_holder
    #vigcharts_fx_settings_modal
    .studies_list
    svg {
    width: 22px;
    height: 22px;
}

#vigcharts_chart_main_controls_holder
    #vigcharts_fx_settings_modal
    .studies_list_item {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-transform: capitalize;
}

#vigcharts_chart_main_controls_holder
    #vigcharts_fx_settings_modal
    .studies_list_item
    .vig_gear {
    padding-top: 5px;
    margin-right: 10px;
    cursor: pointer;
}

#vigcharts_chart_main_controls_holder
    #vigcharts_fx_settings_modal
    .studies_list_item
    .vig_gear
    svg {
    width: 18px;
    height: 18px;
}

#vigcharts_chart_main_controls_holder
    #vigcharts_fx_settings_modal
    .studies_list_item
    > div:nth-child(2) {
    margin-right: auto;
}

#vigcharts_chart_main_controls_holder
    #vigcharts_fx_settings_modal
    .studies_list_item
    .vig_checkbox {
    cursor: pointer;
}

#vigcharts_chart_main_controls_holder
    #vigcharts_fx_settings_modal.studies_list_item
    svg:hover {
    color: var(--vig_charts_white);
    fill: var(--vig_charts_white);
}

#vigcharts_chart_main_controls_holder
    #vigcharts_fx_settings_modal
    .settings_options_holder,
#vigcharts_chart_main_controls_holder
    #settingsVigModal
    .settings_options_holder {
    height: 100%;
}

#vigcharts_chart_main_controls_holder
    #vigcharts_fx_settings_modal
    .settings_option,
#vigcharts_chart_main_controls_holder #settingsVigModal .settings_option {
    height: 40px;
    width: 100;
    display: flex;
    align-items: center;
    justify-content: left;
}

#vigcharts_chart_main_controls_holder
    #vigcharts_fx_settings_modal
    .settings_options_preview,
#vigcharts_chart_main_controls_holder
    #settingsVigModal
    .settings_options_preview {
    margin-left: auto;
    position: relative;
}

#vigcharts_chart_main_controls_holder
    #vigcharts_fx_settings_modal
    #settings-container {
    margin-right: 15px;
}

#vigcharts_indicators_search {
    background-color: transparent;
    border: none;
    color: var(--vig_charts_white);
    outline-color: transparent;
    outline: none !important;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    position: absolute;
    top: 10px;
    left: 20px;
}

#vigcharts_chart_main_controls_holder
    #vigModal
    #vigcharts_fx_settings_modal
    #search_indicators_icon {
    position: absolute;
    top: 10px;
    left: 0;
    fill: var(--vig_charts_grey_main);
}

/*---------------------------------------------------------------------------*/
/*----------------------------------------------------------- Settings Modal */
/*---------------------------------------------------------------------------*/

#vigcharts_chart_main_controls_holder #settingsVigModal {
    width: 380px;
    color: var(--vig_charts_white);
    border-radius: 15px;
    font-size: 14px;
}

#vigcharts_chart_main_controls_holder #settingsVigModal .vig-modal-header-main {
    margin: 25px 25px 0;
}

#vigcharts_chart_main_controls_holder #settingsVigModal .vig-modal-close {
    top: 4px;
}

#vigcharts_chart_main_controls_holder #settingsVigModal .vig-modal-content {
    height: 50vh;
    max-height: 50vh;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 10px 25px;
}

/*---------------------------------------------------------------------------*/
/*-------------------------------------------------------------- Load / Save */
/*---------------------------------------------------------------------------*/

#save-overlay,
#load-overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
    cursor: pointer;
}

#save-overlay #text,
#load-overlay #text {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 50px;
    color: white;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

/*---------------------------------------------------------------------------*/
/*------------------------------------------------------------------ Tooltip */
/*---------------------------------------------------------------------------*/

.vig_chart .tooltip_numbers {
    font-family: 'Cousine', monospace;
    font-size: 13px;
    line-height: 0;
}

.vig_chart .tooltip_bid_ask {
    font-family: 'Cousine', monospace;
    font-size: 13px;
    /*line-height: 0;*/
    display: inline-block;
    min-width: 50px;
    text-align: center;
}

.vig_chart .tooltip_numbers_volume {
    display: inline-block;
    min-width: 65px;
}

.vig_chart .data-spacing {
    margin-left: var(--vig_charts_tooltip_data_spacing);
}

.vig_chart .force_hide {
    display: none !important;
}

.vig_chart .mt10 {
    margin-top: 10px;
}

.vig_chart .fs16 {
    font-size: 16px;
}

.vig_chart .vigcharts_tooltip {
    position: absolute;
    top: 0px;
    left: 0px;
    width: auto;
    height: auto;
    background-color: rgba(21, 22, 28, 0.8);
    padding: 0 23px 10px 10px;
    z-index: 900;
}

.vig_chart .tooltip-toggle {
    position: absolute;
    top: 3px;
    right: -20px;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.vig_chart .tooltip-toggle .arrow {
    position: absolute;
    top: 5px;
    left: 3px;
    width: 6px;
    height: 6px;
    background: transparent;
    border-top: 2px solid var(--vig_charts_grey_main);
    border-right: 2px solid var(--vig_charts_grey_main);
    transition: all 200ms ease;
}
.vig_chart .tooltip-toggle .arrow.up {
    /*left: 0;*/
    transform: translate3d(0, 0, 0) rotate(-45deg);
}
.vig_chart .tooltip-toggle .arrow.down {
    /*right: 0;*/
    transform: translate3d(0, -50%, 0) rotate(135deg);
}

.vig_chart .vigcharts_tooltip_main {
    height: 17px !important;
}

.vig_chart .vigcharts_tooltip_one_line {
    display: flex;
    align-items: center;
    justify-content: left;
    font-size: 12px;
    height: 12px;
}

.vig_chart .vigchart_ask {
    height: 14px;
    padding: 3px;
    border: 1px solid var(--vig_charts_blue);
    color: var(--vig_charts_blue);
    border-radius: 5px;
    margin-left: auto;
}

.vig_chart .vigchart_bid {
    height: 14px;
    padding: 3px;
    border: 1px solid var(--vig_charts_red);
    color: var(--vig_charts_red);
    border-radius: 5px;
}

.vig_chart .vigcharts_tooltip_info {
    width: 10px;
    border: 1px solid var(--vig_charts_grey_main);
    background-color: var(--vig_charts_grey_main);
    color: #000;
    border-radius: 10px;
    text-align: center;
    height: 10px;
    margin-top: 1px;
    margin-right: 3px;
    font-size: 10px;
    cursor: pointer;
    font-weight: 800;
    line-height: 1;
}

.vig_chart .vigcharts_tooltip_spacer {
    width: 10px;
    margin-left: auto;
}

.vig_chart .vigcharts_tooltip_settings {
    margin-left: 2px;
}

.vig_chart .vigcharts_tooltip_settings svg {
    width: 12px;
    height: 12px;
    fill: var(--vig_charts_grey_main);
    position: relative;
    top: 2px;
    cursor: pointer;
}

.vig_chart .vigcharts_tooltip_remove {
    position: relative;
    top: -1px;
    font-size: 20px;
    width: 12px;
    cursor: pointer;
    left: 2px;
    margin-right: 2px;
}

.vig_chart .vigcharts_tooltip_show {
    margin: 0 5px 0 10px;
    width: 10px;
    height: 10px;
    border: solid 1px var(--vig_charts_grey_main);
    background-color: var(--vig_charts_grey_main);
    border-radius: 75% 15%;
    position: relative;
    transform: rotate(45deg);
    cursor: pointer;
}
.vig_chart .vigcharts_tooltip_show:before {
    content: '';
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #000;
    border-radius: 50%;
    left: 2px;
    top: 2px;
}

.vig_chart .vigcharts_tooltip_show.hide {
    background-color: var(--vig_charts_grey_darker);
    border: solid 1px var(--vig_charts_grey_darker);
}

/*---------------------------------------------------------------------------*/
/*------------------------------------------------------------- Color picker */
/*---------------------------------------------------------------------------*/

x-color-picker .settings_options_preview.trigger_color_chooser {
    width: 80px;
    height: 26px;
    border-radius: 5px;
    cursor: pointer;
}

x-color-picker .vig_chart_color-picker {
    width: 100%;
    padding: 0 0 10px 0;
}

x-color-picker .base-colors {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    padding: 10px 0 0;
    flex-flow: row wrap;
    margin: 0 auto;
}

x-color-picker .varied-colors {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 0 10px;
}

x-color-picker .color,
x-color-picker .color-var {
    float: left;
    border-radius: 10%;
    cursor: pointer;
}

x-color-picker .color {
    transition: all 0.2s;
    width: 25px;
    height: 25px;
    margin: 1px 3px 5px;
}
x-color-picker .color.active {
    transform: scale(1.15, 1.15);
}

x-color-picker .color-var {
    transform: scale(0, 0);
    width: 20px;
    height: 20px;
    margin: 1px 3px;
}
x-color-picker .color-var.visible {
    transform: scale(1, 1);
}
x-color-picker .color-var.active {
    transform: scale(1.15, 1.15);
}

/*---------------------------------------------------------------------------*/
/*--------------------------------------------------------- Custom scrollbar */
/*---------------------------------------------------------------------------*/

/* Chrome */
#vigcharts_chart_main_controls_holder .custom_scrollbar::-webkit-scrollbar,
.vig_chart .custom_scrollbar::-webkit-scrollbar {
    width: 5px;
}

#vigcharts_chart_main_controls_holder
    .custom_scrollbar::-webkit-scrollbar-track,
.vig_chart .custom_scrollbar::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--vig_charts_grey_darker);
    border-radius: 15px;
}

#vigcharts_chart_main_controls_holder
    .custom_scrollbar::-webkit-scrollbar-thumb,
.vig_chart .custom_scrollbar::-webkit-scrollbar-thumb {
    background-color: var(--vig_charts_grey_main);
    border-radius: 15px;
}

#vigcharts_chart_main_controls_holder
    .custom_scrollbar::-webkit-scrollbar-thumb:hover,
.vig_chart .custom_scrollbar::-webkit-scrollbar-thumb:hover {
    background: var(--vig_charts_white);
}

/* IE */
#vigcharts_chart_main_controls_holder .custom_scrollbar,
.vig_chart .custom_scrollbar {
    scrollbar-face-color: var(--vig_charts_grey_main);
    scrollbar-shadow-color: var(--vig_charts_grey_darker);
    scrollbar-highlight-color: var(--vig_charts_white);
}

/* FireFox */
#vigcharts_chart_main_controls_holder .custom_scrollbar,
.vig_chart .custom_scrollbar {
    scrollbar-color: var(--vig_charts_grey_main) var(--vig_charts_grey_darker);
    scrollbar-width: thin;
}
