:root {
    --price-font-size: 30px;
    --data-font-size: 14px;
    --small-data-font-size: 10px;
    --line-height: 0.75;
    --symbol-height: 25px;
}

/* html,
body {
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0px;
    padding: 0px;
} */

.ssw-details-div {
    width: 100%;
    height: 300px;
    overflow: scroll;
    overflow-x: hidden;
}

.bs-symbol-search {
    text-transform: uppercase;
}

.symbol-search {
    font-size: var(--data-font-size);
    width: 62px;
    height: var(--symbol-height);
    /* font-weight: bold; */
    color: black;
    vertical-align: top;
    border: solid 1px !important;
    text-transform: uppercase;
    position: relative;
    left: -85px;
}

.symbol-search:focus {
    outline: none;
}

.symbol-search-list {
    font-size: var(--data-font-size);
    width: 80px;
    height: var(--symbol-height);
    font-weight: bold;
    color: black;
    /* position: absolute; */
    z-index: 101;
    clip: rect(auto auto auto 62px);
}

.symbol-search-list:focus {
    outline: none;
}

.company-name {
    font-size: var(--data-font-size);
    font-weight: bold;
}

.last-price {
    font-size: var(--price-font-size);
    font-weight: bold;
}

.company-logo {
    width: 48px;
    height: 48px;
    clip-path: inset(0% round 25%);
}

.company-logo-error {
    width: 48px;
    height: 48px;
    clip-path: inset(0% round 25%);
}

.country-flag {
    display: none;
}

.change-data {
    font-size: var(--data-font-size);
    color: black;
    white-space: nowrap;
}

.total-volume {
    font-size: var(--data-font-size);
    font-weight: bold;
}

.relative-volume {
    font-size: var(--data-font-size);
    font-weight: bold;
}

.data-label {
    /* font-size: var(--data-font-size); */
    color: black;
    white-space: nowrap;
}

.date-time,
.table-data-label, 
.total-volume-label, 
.relative-volume-label {
    font-size: var(--data-font-size);
    font-weight: normal;
    color: darkgray;
    white-space: nowrap;
}

.data-value {
    font-size: var(--data-font-size);
    font-weight: bold;
    white-space: nowrap;
}

.data-value-small {
    font-size: var(--small-data-font-size);
    font-weight: bold;
    color: black;
}

@media screen and (max-width: 480px) {
    .symbol-search {
        font-size: var(--data-font-size);
        width: 62px;
        height: var(--symbol-height);
        /* font-weight: bold; */
        color: black;
        vertical-align: top;
        border: solid 1px !important;
        text-transform: uppercase;
        position: relative;
        left: 0px;
        top: -25px;
    }    
}

#header-main {
    padding-bottom: 1rem;
}

table.table-header {
    border-collapse: collapse;
    border-spacing: 0px;
}

td.td-bottom {
    vertical-align: bottom;
    padding: 0px;
    box-sizing: border-box;
    line-height: 1;
}

td.td-top {
    vertical-align: top;
    padding: 0px;
    box-sizing: border-box;
    line-height: 1;
}

td.td-middle {
    vertical-align: middle;
    padding: 0px;
    box-sizing: border-box;
    line-height: 1;
}

td.td-right {
    text-align: right;
}

td.td-center {
    white-space: nowrap;
    text-align: center;
    line-height: var(--line-height);
}

td.td-value {
    width: 100px;
}

td.td-label {
    width: 100% !important;
    /* width: 150px; */
}

table.table-data {
    width: 250px;
    border-collapse: collapse;
}

tr.tr-data {
    border-bottom: 1px solid darkgray;
}

.svg-cone {
    margin: 0px;
    padding: 0px;
    vertical-align: middle;
    background-color: black;
/*     -webkit-filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .7));
    filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .7)); */
}

.polygon-1 {
    fill: #0f1aef;
    stroke: #0f1aef;
    stroke-width: 1px;
}

.polygon-2 {
    fill: darkmagenta;
}

.polygon-3 {
    fill: #0c4615;
}

.svg-cone-text {
    font-size: var(--data-font-size);
    font-weight: bold;
    fill: white;
    white-space: nowrap;
}

.svg-cylinder {
    margin: 0px;
    padding: 0px;
    vertical-align: middle;
    background-color: white;
    box-shadow: 
        inset 0px 11px 8px -10px grey,
        inset 0px -11px 8px -10px grey;
/*     -webkit-filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .7));
    filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .7)); */
}

.svg-cylinder-text {
    font-size: var(--data-font-size);
    font-weight: bold;
    fill: black;
    white-space: nowrap;
}

.svg-cylinder-rect {
    mix-blend-mode: multiply;
}