/* Minification failed. Returning unminified contents.
(42,17): run-time error CSS1039: Token not allowed after unary operator: '-color-text-tertiary'
(63,28): run-time error CSS1039: Token not allowed after unary operator: '-border-color-secondary'
(72,17): run-time error CSS1039: Token not allowed after unary operator: '-color-text-primary'
(82,17): run-time error CSS1039: Token not allowed after unary operator: '-color-text-primary'
(220,28): run-time error CSS1039: Token not allowed after unary operator: '-border-color-secondary'
 */
.markets-section {
    /*margin-top: 100px;*/
}
.markets-section--fullscreen {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 150;
    background-color: #fff;
    margin: 0px;
    padding: 10px;
}

.markets-section__nav {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
   /* padding: 6px 10px;
    border: 1px solid #efefef;
    border-bottom: none;*/
}
    .markets-section__nav::-webkit-scrollbar {
        width: 0px;
        height: 0px;
    }
.markets-section__nav-bar {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.markets-section__nav-bar-item {
    font-family: Helvetica;
    font-weight: 400;
    font-size: 18px;
    /*line-height: 100%;*/
    color: var(--color-text-tertiary);
    cursor: pointer;
    white-space: nowrap;
    padding: 0 15px;
    display: flex;
    align-items: center;
    position: relative;
}
.markets-section__nav-bar-item:first-child {
    padding-left: 0;
}

.markets-section__nav-bar-item:last-child {
    padding-right: 0;
}

.markets-section__nav-bar-item::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 15px;
    background-color: var(--border-color-secondary);
    left: 100%;
}

.markets-section__nav-bar-item:last-child::after {
    content: none;
}
.markets-section__nav-bar-item--active {
    cursor: default;
    color: var(--color-text-primary);
    font-weight: 700;
}
.markets-section__nav-bar-title {
    font-family: Helvetica;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    cursor: default;
    white-space: nowrap;
    color: var(--color-text-primary);
}

.markets-section__nav-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}
.markets-section__nav-button {
    /*margin-left: 10px;*/
    cursor: pointer;
    position: relative;
}
.markets-section__nav-img, .markets-section__nav-img-hover {
    /*width: 15px;
    height: 15px;
    margin-right: 2px;
    margin-top: -3px;*/
    /*display: inline-block;*/
    max-height: unset;
    max-width: unset;
}
.markets-section__nav-img {
    display: inline-block;
}
.markets-section__nav-img-hover {
    display: none;
}
.markets-section__nav-button:hover .markets-section__nav-img {
    display: none;
}
.markets-section__nav-button:hover .markets-section__nav-img-hover {
    display: inline-block;
}
#general-markets-wrapper {
    /*display: none;*/
    width: 100%;
}
#image-chart-wrapper {
    display: none;
    border-top: 1px solid #efefef;
    margin: 0px 10px;
    position: relative;
}

/* -------- */
/* Dropdown */
.markets-section__dropdown {
    display: none;
    position: absolute;
    left: auto;
    top: -10px;
    right: 2px;
    width: 190px;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 1px 3px 5px #0c0b0b59;
    cursor: default;
    z-index: 151;
}

.markets-section__dropdown-header {
    position: relative;
    padding-top: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f3f3f3;
}

.markets-section__dropdown-header-text {
    color: #545866;
    font-size: 13px;
    font-weight: bold;
}

.markets-section__dropdown-body {
    position: relative;
    top: 0px;
    padding: 5px 0px;
    padding-top: 0px;
    max-height: 400px;
    overflow-y: auto;
}

.markets-section__dropdown-item {
    display: flex;
    align-items: center;
    padding: 7px 15px;
    white-space: normal;
    position: relative;
}

    .markets-section__dropdown-item:hover {
        background-color: #ffdead;
    }

.markets-section__dropdown-item-img {
    width: 20px;
    margin-top: -2px;
    margin-right: 10px;
}

.markets-section__dropdown-item-label {
}

/* ----- */
/* MEDIA SCREEN */
@media screen and (max-width: 767px) {
    .markets-section__nav-bar-title {
        font-size: 24px;
    }

    .markets-section__nav-bar-item, .general-markets__data-subTabs-item {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .markets-section__nav {
        padding: 7px 5px;
    }
    .markets-section__nav-bar-item {
        padding: 5px 8px;
    }
}

.markets-section__nav-bar-group {
    display: flex;
    align-items: center;
    white-space: nowrap;
    user-select: none;
    overflow: auto;
}

.markets-section__nav-button-separate {
    width: 1px;
    height: 15px;
    background-color: var(--border-color-secondary);
}

.markets-section__nav-buttons--small {
    display: none;
}

@media screen and (max-width: 991px) {
    .markets-section__nav-buttons--small {
        display: flex;
    }

    .markets-section__nav-buttons--large {
        display: none;
    }
}
