:root {
    --background-color: rgb(0, 0, 0);
    --primary-color: #ffffff;
    --secondary-color: rgba(255,255,255,0.80);
    --card-secondary-color: rgba(255, 255, 255, 0.45);
    --symbol-secondary-color: rgba(255, 255, 255, 0.60);
    --card-primary-color: rgba(255, 255, 255, 0.92);
    --tint-color: #4EACF8;
    --right-panel-bg: rgb(0 0 0);
    --right-bar-bg: rgb(14, 17, 19);
    --border-color: rgba(255, 255, 255, 0.10);
    --card-bg-color: rgb(20,20,20);
    --input-bg-color: rgb(16, 17, 18);
    --input-border-color: rgba(211.44, 211.44, 211.44, 0.10);
    --input-text-color: rgba(255, 255, 255, 0.6);
    --round-button-bg-color: rgba(255, 255, 255, 0.04);
    --round-button-border-color: rgba(255, 255, 255, 0.11);
    --column-header-bg-color: rgb(15,15,15);
    --column-header-color: rgba(255, 255, 255, 0.65);
    --secondary-button-bg-color: rgb(25, 25, 25);
    --secondary-button-color: white;
    --highlight-color: rgb(28, 39, 48);
    --dropdown-bg-color: rgb(28, 39, 48);
    --bar-bg-color: rgb(54, 54, 54);
    --anti-background-color: rgb(250, 250, 250);
    --anti-primary-color: #000000;
    --positive-color:#04D16E; 
    --negative-color:#CF1515; 
    --cell-bg-1: rgb(0, 0, 0);
    --cell-bg-2: rgb(15, 15, 15);
    --box-shadow-color: rgba(255, 255, 255, 0.075);
    --chart-period-button-border-color: rgba(255, 255, 255, 0.24);
    --chart-period-button-bg-color: rgba(255, 255, 255, 0.08);
    --chart-period-button-color: white;
}



.light-theme {
    --background-color: rgb(255, 255, 255);
    --primary-color: #000000;
    --secondary-color: rgba(0,0,0,0.60);
    --card-secondary-color: rgba(0, 0, 0, 0.45);
    --symbol-secondary-color: rgba(0, 0, 0, 0.60);
    --card-primary-color: rgba(0, 0, 0, 0.92);
    --tint-color: #007AFF;
    --right-panel-bg: rgb(255, 255, 255);
    --right-bar-bg: rgb(255, 255, 255);
    --border-color: rgba(0, 0, 0, 0.12);
    --card-bg-color: rgb(249, 249, 249);
    --input-bg-color: rgb(255, 255, 255);
    --input-border-color: rgba(211.44, 211.44, 211.44, 0.10);
    --input-text-color: rgba(0, 0, 0, 0.6);
    --round-button-bg-color: white;
    --round-button-border-color: rgba(0, 0, 0, 0.13);
    --column-header-bg-color: #FAFAFA;
    --column-header-color: rgba(0, 0, 0, 0.60);
    --secondary-button-bg-color: #F6F6F6;
    --secondary-button-color: #4B4B4B;
    --highlight-color: rgb(228, 239, 255);
    --dropdown-bg-color: rgb(255, 255, 255);
    --bar-bg-color: rgb(235, 235, 235);
    --anti-background-color: rgb(10, 10, 10);
    --anti-primary-color: #ffffff;
    --positive-color:#08924F;
    --negative-color: #FF3A30;
    --cell-bg-1: rgb(255, 255, 255);
    --cell-bg-2: rgb(253, 253, 253);
    --box-shadow-color: rgba(0, 0, 0, 0.09);
    --chart-period-button-border-color: #D3D3D3;
    --chart-period-button-bg-color: white;
    --chart-period-button-color: black;
}

.dark-theme {
    --background-color: rgb(0, 0, 0);
    --primary-color: #ffffff;
    --secondary-color: rgba(255,255,255,0.80);
    --card-secondary-color: rgba(255, 255, 255, 0.45);
    --symbol-secondary-color: rgba(255, 255, 255, 0.60);
    --card-primary-color: rgba(255, 255, 255, 0.92);
    --tint-color: #4EACF8;
    --right-panel-bg: rgb(0, 0, 0);
    --right-bar-bg: rgb(14, 17, 19);
    --border-color: rgba(255, 255, 255, 0.10);
    --card-bg-color: rgb(20,20,20);
    --input-bg-color: rgb(16, 17, 18);
    --input-border-color: rgba(211.44, 211.44, 211.44, 0.10);
    --input-text-color: rgba(255, 255, 255, 0.6);
    --round-button-bg-color: rgba(255, 255, 255, 0.04);
    --round-button-border-color: rgba(255, 255, 255, 0.11);
    --column-header-bg-color: rgb(15,15,15);
    --column-header-color: rgba(255, 255, 255, 0.65);
    --secondary-button-bg-color: rgb(25, 25, 25);
    --secondary-button-color: white;
    --highlight-color: rgb(28, 39, 48);
    --dropdown-bg-color: rgb(28, 39, 48);
    --bar-bg-color: rgb(54, 54, 54);
    --anti-background-color: rgb(250, 250, 250);
    --anti-primary-color: #000000;
    --positive-color:#04D16E; 
    --negative-color:#CF1515; 
    --cell-bg-1: rgb(0, 0, 0);
    --cell-bg-2: rgb(15, 15, 15);
    --box-shadow-color: rgba(255, 255, 255, 0.075);
    --chart-period-button-border-color: rgba(255, 255, 255, 0.24);
    --chart-period-button-bg-color: rgba(255, 255, 255, 0.08);
    --chart-period-button-color: white;
}

.main-container {
    min-height: calc(100% - 80px);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--primary-color);
}

img:-moz-broken {
    opacity: 0
}

.margin-0 {
    margin: 0px;
    ;
}


.simple-spinner-holder {
    display: flex;
    padding: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.simple-spinner {
    width: 20px;
    height: 20px;
    border-width: 1;
    margin-right: 5px;
    color: var(--primary-color);
}

.black-spinner-holder {
    display: flex;
    padding: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.black-spinner {
    width: 20px;
    height: 20px;
    border-width: 1;
    margin-right: 5px;
    color: black;
}

#search-spinner {
    width: 20px;
    height: 20px;
    border-width: 1;
    margin-right: 5px;
    color: var(--primary-color);
    display: none;
}

.no-button {
    background-color: transparent;
    border: none;
    outline: none;
}

.fixed-right-panel {
    position: fixed;
    top: 0;
    right: 50;
    width: 270px;
    height: 100%;
    overflow-y: auto;
    display: none;
    background-color: var(--right-panel-bg);
    border-left: 0.03em solid var(--border-color);
}

.right-content {
    flex: 1;
    padding-top: 0px;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.fixed-right-bar {
    position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    background-color: var(--card-bg-color);
    border-left: 0.03em solid var(--border-color);
    padding-top: 30px;
    display: none;
    flex-direction: column;
    height: 100%;
    align-items: center;
}

.right-content::-webkit-scrollbar {
    display: none;
}

.right-content::-webkit-scrollbar-thumb {
    display: none;
}

.fixed-right-panel::-webkit-scrollbar {
    display: none;
}

.fixed-right-panel::-webkit-scrollbar-thumb {
    display: none;
}

.search-result::-webkit-scrollbar {
    display: none;
}

.search-result::-webkit-scrollbar-thumb {
    display: none;
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-bar-button {
    margin-bottom: 15px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.2em;
}

.selected{
    color: var(--tint-color);
}

.navigation-bar {
    height: 40px;
    margin-bottom: 10px;
    margin-top: 10px;
    padding-left: 17px;
    padding-right: 17px;
}

.spacer {
    flex: 1;
}

.mt10 {
    margin-top: 10px;
}

.borsaLogo {
    margin-top: 6px;
    height: 25px;
    float: left;
    margin-right: 40px;
    display: none;
}

.loginLogo {
    height: 34px;
}

.right-content .dropdown {
    height: 30px;
}

.search-bar {
    float: left;
    height: 45px;
    width: 180px;
    background-color: var(--input-bg-color);
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 10px;
    margin-right: 10px;
    display: none;
    cursor: pointer;
    padding-right: 0px;
}

.light-theme .search-bar {
    box-shadow: 0px 1.5px 0px rgba(0, 0, 0, 0.05);
}

.dark-theme .search-bar {
    border: 0.03em var(--input-border-color) solid;
}

.search-bar img {
    margin-top: 13px;
    float: left;

}

.search-bar span {
    float: left;
    margin-top: 8px;
    margin-left: 5px;
    color: var(--input-text-color);
}


.premium-bar {
    float: right;
    height: 38px;
    width: 160px;
    margin-top: 3.5px;
    background: linear-gradient(to right, #E88249, #e8ae1c);
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 10px;
    margin-right: 10px;
    display: block;
    cursor: pointer;
}

.premium-bar .action-title {
    width: 100%;
    display: inline-block;
    text-align: center;
    font-size: 11pt;
    font-weight: 600;
    margin-top: 2px;
    color: white;
}

.premium-bar .action-subtitle {
    width: 100%;
    display: inline-block;
    text-align: center;
    font-size: 8pt;
    margin-top: -6px;
    font-weight: 200;
    color: white;
}


.s-table .tag-holder {
    margin-top: 0px !important;
}

.profile-button {
    float: right;
    height: 38px;
    width: 38px;
    border-radius: 19px;
    margin-top: 3.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--input-bg-color);
}

.profile-button:hover {
    background-color: var(--dropdown-bg-color);
}

.light-theme .profile-button {
    box-shadow: 0px 1.5px 0px rgba(0, 0, 0, 0.05);
}

.dark-theme .profile-button {
    border: 0.03em var(--input-border-color) solid;
}

.profile-button-img {
    width: 16px;
}

.profile-button span {
    width: 100%;
    display: inline-block;
    margin-top: 4px;
    font-size: 15pt;
    text-align: center;
    color: lightgray;
}

.profile-dropdown {
    background: transparent;
    outline: none;
    border: none;
    width: 100%;
    height: 100%;
}

.navigation-dropdown {
    background: transparent;
    outline: none;
    border: none;
    width: 100%;
    height: 100%;
}

.light-theme .profile-button span {
    color: black
}

.dark-theme .profile-button span {
    color: lightgray
}

.navigation-item-container {
    float: left;
    padding-top: 0px;
    display: flex;
    height: 100%;
}

.navigation-item {
    height: 100%;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 12pt;
    margin-left: -4px;
    padding: 8px;
    border-radius: 8px;
}



.navigation-dropdown a {
    font-size: 14pt;
    text-decoration: none;
    color: var(--primary-color);
}

.navigation-item:hover {
    text-decoration: none;
    color: var(--primary-color);
    background-color: var(--dropdown-bg-color);
}


.bcard {
    background-color: var(--card-bg-color);
    border-radius: 8px;
    overflow: hidden;
}

.card-vm {
    margin-bottom: 20px
}

.card-container {
    padding-left: 10px;
    padding-right: 10px;
}

.brow {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}




.bdropdown {
    height: 45px;
    width: 100%;
    color: var(--primary-color);
    background-color: var(--input-bg-color);
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 10px;
    margin-right: 10px;
    display: block;
    text-align: left;
}

.bdropdown:hover {
    background-color: var(--dropdown-bg-color);
    color: var(--primary-color);
}

.wdropdown {
    width: 100%;
    color: var(--tint-color);
    background-color: transparent;
    padding-left: 5px;
    padding-right: 12px;
    margin-right: 10px;
    display: block;
    text-align: left;
}

.wdropdown:hover {
    background-color: transparent;
    color: var(--tint-color);
}

.wpdropdown-holder {
    width: 100%;
    max-width: 100%;
    height: 100% !important;
}

.wpdropdown-holder ul {
    right: 0;
    left: auto;
    background-color: var(--dropdown-bg-color);
}

.wpdropdown {
    height: 100% !important;
    padding: 0px;
    color: var(--column-header-color);
    font-size: 10pt;
    display: inline-block;
    width: 100%;
    background-color: transparent;
    border: none;
}

.wpdropdown:hover {
    background-color: transparent;
    color: var(--column-header-color);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    width: 100%;
}

.profile-dropdown-menu {
    right: 0;
    left: auto;
    background-color: var(--dropdown-bg-color);
}

.navigation-dropdown-menu {
    left: 0;
    right: auto;
    background-color: var(--dropdown-bg-color);
}

.dropdown .dropdown-toggle:active {
    pointer-events: none;
}

.light-theme .bdropdown {
    box-shadow: 0px 1.5px 0px rgba(0, 0, 0, 0.05);
    border: none;
}

.dark-theme .bdropdown {
    border: 0.03em var(--input-border-color) solid;
}

.b-round-button {
    height: 33px;
    border-radius: 50px;
    background-color: var(--round-button-bg-color);
    border: 0.03em var(--round-button-border-color) solid;
    color: var(--primary-color);
    font-size: 10pt;
    padding-left: 10px;
    padding-right: 10px;
    margin-right: 5px;
}

.b-round-button img {
    margin-right: 4px;
}

.alert-symbol-tag {
    height: 33px;
    border-radius: 50px;
    background-color: var(--round-button-bg-color);
    border: 0.03em var(--round-button-border-color) solid;
    color: var(--primary-color);
    font-size: 10pt;
    padding-left: 10px;
    padding-right: 10px;
    margin-right: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.alert-symbol-tag img{
    margin-right: 4px;
}

.alert-create-price {
    border-left: 0.03em var(--round-button-border-color) solid;
    margin-left: 5px;
    padding-left: 5px;
}

.alert-create-change {
    margin-left: 5px;
}

.column-header {
    background-color: var(--column-header-bg-color);
    height: 35px;
    margin-top: 12px;
    display: flex;
    border-top: 0.05em solid var(--border-color);
}

.smt0 {
    margin-top: 0px !important;
}

.b-column-1 {
    flex: 1;
}

.b-column-2 {
    flex: 2;
}

.b-column-3 {
    flex: 3;
    margin-left: 5px;
}

.b-column-4 {
    flex: 4;
}

.b-column-5 {
    flex: 5;
}

.b-column-6 {
    flex: 6;
}

.b-column-7 {
    flex: 7;
}

.positive {
    color: var(--positive-color) !important;
}

.negative {
    color: var(--negative-color) !important;
}


.symbol-cell {
    height: 60px;
    position: relative;
    cursor: pointer;
}

.light-theme .symbol-cell {
    border-bottom: 0.03em solid var(--border-color);
}

.symbol-cell-content {
    height: 100%;
    display: flex;
    position: relative;
    width: 100%;
}


.symbol-cell:hover {
    background-color: var(--highlight-color) !important;
}

.symbol-cell-del {
    background-color: var(--highlight-color);
    color: var(--secondary-color);
    font-weight: 200;
    border: none;
    display: none;
    position: absolute;
    top: 15;
    right: 0;
    height: 20px;
}

.alert-cell-del {
    background-color: var(--highlight-color);
    color: var(--secondary-color);
    font-weight: 200;
    border: none;
    display: none;
    position: absolute;
    top: 15;
    right: 0;
    height: 20px;
}

.w-dropdown-item {
    display: flex !important;
    align-items: center;
    padding-right: 0px;
}

.w-dropdown-item span {
    max-width: 125px;
    overflow: hidden;
    white-space: nowrap;
    display: block;
    text-overflow: ellipsis;
}

.w-dropdown-item:hover .watchlist-cell-del {
    display: block;
}

.watchlist-cell-del {
    color: var(--secondary-color);
    font-weight: 200;
    border: none;
    display: none;
    height: 20px;
}

.light-theme .watchlist-cell-del {
    background-color: rgb(248,249,250);

}

.dark-theme .watchlist-cell-del {
    background-color: rgb(62,71,79);
}

.search-modal-content {
    background-color: var(--secondary-button-bg-color);
    display: flex;
    flex-direction: column;
}

.fa-ma-r {
    margin-right: 5px;
}
.fa-ma-l {
    margin-left: 5px;
}

*:focus {
    outline: none;
}

#modal-search-bar {
    float: left;
    width: 100%;
    height: 60px;
    background-color: var(--input-bg-color);
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    ;
}

#modal-search-bar img {
    height: 25px;
}

#modal-search-bar input {
    border: none;
    color: var(--primary-color);
    font-size: 16pt;
    margin-left: 10px;
    background: transparent;
    width: 100%;
}

#modal-search-bar input::placeholder {
    color: var(--input-text-color);
}


.light-theme #modal-search-bar {
    box-shadow: 0px 1.5px 0px rgba(0, 0, 0, 0.05);
}

.dark-theme #modal-search-bar {
    border: 0.03em var(--input-border-color) solid;
}


.over {
    border: 2px dashed;
    border-radius: 8px;
    border-color: var(--tint-color);
}

.symbol-cell:hover .symbol-cell-del {
    display: block;
}

.symbol-cell:hover .alert-cell-del {
    display: block;
}

.symbol-column {
    display: flex;
    height: 100%;
    font-weight: 590;
    color: var(--primary-color);
}

.w-codes {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.w-code {
    font-weight: 590;
    color: var(--primary-color) !important;
    height: 20px !important;
    text-wrap: nowrap;
}

.w-desc {
    font-weight: 400;
    color: var(--symbol-secondary-color) !important;
    font-size: 9pt !important;
    height: 20px !important;
    max-height: 20px;
    line-height: 20px;
    overflow: hidden;
    max-width: 65px;
    white-space: nowrap;
    text-overflow: ellipsis;
}


.symbol-img-holder {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    margin-top: 9px;
    margin-right: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.light-theme .symbol-img-holder {
    border: 0.03em rgba(0, 0, 0, 0.20) solid;
    background-color: white;
}

.dark-theme .symbol-img-holder {
    background-color: rgba(255, 255, 255, 0.05);
}

.symbol-img-holder img {
    width: 22px;
    height: 22px;
    border-radius: 11px;
}


.symbol-cell-content span {
    color: var(--secondary-color);
    font-size: 10pt;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: revert;
    height: 100%;
}


.cell-bg-1 {
    background-color: var(--cell-bg-1);
}

.cell-bg-2 {
    background-color: var(--cell-bg-2);
}

.column-header span {
    color: var(--column-header-color);
    font-size: 10pt;
    display: inline-block;
    margin-top: 7px;
    width: 100%;
}



.tar {
    text-align: right;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
}

.empty-state-title {
    color: var(--primary-color);
    font-size: 12pt;
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
}

.empty-state-text {
    color: var(--secondary-color);
    font-size: 10pt;
    font-weight: 400;
    text-align: center;
    margin-top: 5px;
}

.empty-state-button {
    height: 40px;
    color: var(--secondary-button-color);
    background-color: var(--secondary-button-bg-color);
    border-radius: 12px;
    padding-left: 32px;
    padding-right: 32px;
    font-size: 12pt;
    border: none;
    margin-top: 10px;
}

.search-result {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    max-height: 400px;
    overflow-y: auto;

}

.search-result-cell {
    display: flex;
    min-height: 50px;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
    overflow: hidden;
    cursor: pointer;
}

.search-result-cell-img-holder {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    padding-top: 8px;
    padding-left: 8px;
    min-width: 40px;
}

.search-result-cell-img-holder img {
    width: 24px;
    height: 24px;
    border-radius: 12px;
}

.search-result-code {
    margin-left: 10px;
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 14pt;
    font-weight: 400;
}

.search-result-desc {
    margin-left: 5px;
    color: var(--secondary-color);
    font-size: 14pt;
    font-weight: 200;
    margin-right: 15px;
    overflow: hidden;
}

.search-result-desc span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.light-theme .search-result-cell-img-holder {
    border: 0.03em rgba(0, 0, 0, 0.20) solid;
    background-color: white;

}

.dark-theme .search-result-cell-img-holder {
    border: 0.03em rgba(211.44, 211.44, 211.44, 0.10) solid;

}


.watchlist-top {
    display: flex;
    margin-top: -13px;
}

.watchlist-top .dropdown {
    flex: 1;
    max-width: 165.5px;
}

.watchlist-top .dropdown button {
    max-width: 165.5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border: none !important;
}

.right-content-header{
    display: flex;
    align-items: center;
    padding-left: 15px;
    padding-right: 5px;
    padding-top: 10px;
    min-height: 55px;
}

.right-content-title{
    font-size: 14pt;
    font-weight: 600;
}

#watchlist-add-symbol {
    height: 45px;
    margin-left: 10px;
    border: none;
    background-color: transparent;
    color: var(--primary-color);
}

#alerts-add-button {
    height: 45px;
    margin-left: 10px;
    border: none;
    background-color: transparent;
    color: var(--primary-color);
}

#watchlist-rename {
    height: 45px;
    margin-left: 10px;
    border: none;
    background-color: transparent;
    color: var(--primary-color);
}



.search-result-add {
    color: var(--primary-color);
    height: 30px;
    border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 12pt;
    font-weight: 300;
}

.search-result-remove {
    color: var(--secondary-color);
    height: 30px;
    border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 12pt;
    font-weight: 300;
}

.light-theme .search-result-add {
    border: 0.03em #D3D3D3 solid;
}

.light-theme .search-result-remove {
    border: 0.03em #BABABA solid;
}

.dark-theme .search-result-add {
    border: 0.03em white solid;
    ;
}

.dark-theme .search-result-remove {
    border: 0.03em #BABABA solid;
}

.login-container {
    width: 100%;
    height: 100%;
    background-color: var(--background-color);
    display: flex;
}

.login-video-main-container {
    flex: 1;
    width: 50%;
    height: 100%;
    padding: 30px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.login-video-container {
    width: 100%;
    min-width: 500px;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background-image: url('https://getborsa.com/img/login-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.login-video-container h1 {
    text-align: center;
    color: white;
}

.login-video-container h3 {
    text-align: center;
    color: white;
    font-weight: 200;
}

.login-headers {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.login-symbol-1 {
    height: 80px;
    width: 300px;
    border-radius: 25px;
    background-color: rgba(0, 0, 0, 0.24);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding-right: 10px;
}

.login-symbol-2 {
    height: 93px;
    width: 350px;
    border-radius: 25px;
    background-color: rgba(0, 0, 0, 0.40);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding-right: 10px;
}

.login-symbol-3 {
    height: 93px;
    width: 350px;
    border-radius: 25px;
    background-color: rgba(0, 0, 0, 0.24);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding-right: 10px;
}

.login-symbol {
    display: flex;
    align-items: center;
    justify-content: start;
    flex: 2;
    padding-left: 10px;
}

.login-symbol-logo-container {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.2);
    margin-right: 8px;
}

.login-symbol-logo {
    width: 20px;
    height: 20px;
    border-radius: 10px;
}

.login-symbol-codes {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.login-symbol-code {
    color: white;
    font-size: 12pt;

}

.login-symbol-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11pt;
    font-weight: 200;

}

.login-field {
    color: white;
    flex: 0.85;
    margin-left: 7px;
}


.login-video {
    height: 100%;
    float: right;
    width: auto;
}

.login-form {
    width: 50%;

    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}

.f-header {
    width: 100%;
    height: 40px;
    display: flex;
}

.f-header-center {
    margin-left: 40px;
    flex: 1;
    display: flex;
    justify-content: center;
}

.f-header-center img {
    height: 30px;
    margin-top: 3px;
}

.f-content {
    flex: 1;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.f-control {
    height: 50px;
    background-color: var(--input-bg-color);
    border: 0.06em var(--input-border-color) solid;
    color: var(--primary-color);
}

.f-control:focus {
    background-color: var(--input-bg-color);
    color: var(--primary-color);
}

.f-group {
    margin-top: 20px;
}

.f-control::placeholder {
    color: var(--input-text-color);
}

.f-button {
    background-color: var(--tint-color);
    color: white;
    border: none;
    outline: none;
    width: 100%;
    height: 60px;
    margin-top: 20px;
    font-size: 14pt;
    font-weight: 500;
}

.f-social-button {
    background-color: var(--input-bg-color);
    color: var(--primary-color);
    border: none;
    outline: none;
    width: 100%;
    height: 60px;
    margin-top: 20px;
    font-size: 14pt;
    font-weight: 500;
}

.f-button:hover {
    background-color: var(--tint-color);
}

.f-social-button:hover {
    background-color: var(--input-bg-color);
    color: var(--primary-color);
}

.light-theme .f-social-button {
    box-shadow: 0px 1.5px 0px rgba(0, 0, 0, 0.05);
}

.dark-theme .f-social-button {
    border: 0.03em var(--input-border-color) solid;
}


.f-social-button img {
    margin-right: 10px;
    width: 20px;
    margin-bottom: 5px;
}

.f-forget-password-row {
    display: flex;
    width: 100%;
}

.agreement-link {
    text-decoration: none;
    color: var(--tint-color);
}

.f-footer span {
    font-size: 12pt;
    color: var(--primary-color);
}

.f-footer a {
    text-decoration: none;
    color: var(--tint-color) !important;
    font-size: 12pt;
}

.f-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    margin-bottom: 10px;
}

.f-item-title {
    font-size: 12pt;
    color: var(--column-header-color);
    margin-bottom: 10px;
    font-weight: 300;
}

.clickable {
    cursor: pointer;
}

.forecast-table-title {
    color: var(--secondary-color);

}

.forecast-table-title-holder {
    height: 20px !important;
}

#form-content {
    overflow-y: auto;
}

.modal-dismiss-button {
    float: right;
    border: none;
    outline: none;
    background: transparent;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-dismiss-button img {
    width: 25px;
    height: 25px;
}

.pv0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
    margin-top: 2px;
}

.no-snippets {
    color: var(--secondary-color);
    padding-left: 15px;
    font-weight: 400;
}

.borsa-premium-card {
    width: 100%;
    display: none;
    border-radius: 10px;
    padding: 20px;
    padding-top: 50px;
    justify-content: center;
}

.premium-card-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    border-radius: 10pt;
    overflow: hidden;
    padding: 40px;
    border-radius: 16px;
    background: linear-gradient(to right, rgb(8, 10, 19), rgb(16, 16, 38)) padding-box, linear-gradient(90deg, #E8BB49, #E88249, #E8BB49) border-box;
    border: 3px solid transparent;
}

.premium-card-info {
    display: flex;
    flex-direction: column;
}

.premium-card-title {
    color: #E88249;
    font-size: 20pt;
    font-weight: 600;
    background: linear-gradient(90deg, #E8BB49, #E88249, #E8BB49);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-card-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14pt;
    font-weight: 200;
    margin-top: 15px;

}

.premium-card-subtitle strong {
    color: rgba(255, 255, 255, 0.7) !important;
}

.premium-card-highlight {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14pt;
    font-weight: 600;
    background: linear-gradient(90deg, #E8BB49, #E88249, #E8BB49);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.premium-card-features {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}


.premium-card-features-title {
    color: white;
    font-size: 14pt;
    font-weight: 600;
}

.premium-card-features-items {
    display: grid;
    margin-top: 20px;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-content: space-between;
    align-content: space-around;
}

.premium-feature-item {

    display: flex;
    align-items: center;
}

.premium-feature-item i {
    color: white;
    font-size: 12pt;
    margin-right: 10px;
}

.feature-texts {
    display: flex;
    flex-direction: column;
}

.feature-title {
    display: flex;
    font-size: 12pt;
    font-weight: 400;
    color: white;
}

.feature-subtitle {
    display: flex;
    font-size: 12pt;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.7);
}

.premium-card-call-to-action {
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.premium-card-price-info {
    display: flex;
    align-items: center;
}

.premium-card-price {
    font-size: 30pt;
    font-weight: 600;
    color: white;
}

.premium-card-period {
    font-size: 16pt;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 10px;
}

.premium-card-price-subinfo {
    font-size: 14pt;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.premium-card-button {
    font-size: 14pt;
    color: black;
    background-color: white;
    padding-left: 20px;
    padding-right: 20px;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 15px;
    width: 250px;
}

.s-href {
    color: var(--primary-color);
    text-decoration: none;
}

.s-href:link {
    color: var(--primary-color);
    text-decoration: none;
}

.s-href:visited {
    color: var(--primary-color);
    text-decoration: none;
}

.s-href:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.s-href:active {
    color: var(--primary-color);
    text-decoration: none;
}

.a-href {
    color: var(--tint-color);
    text-decoration: none;
}

.a-href:link {
    color: var(--tint-color);
    text-decoration: none;
}

.a-href:visited {
    color: var(--tint-color);
    text-decoration: none;
}

.a-href:hover {
    color: var(--tint-color);
    text-decoration: none;
}

.a-href:active {
    color: var(--tint-color);
    text-decoration: none;
}

.cookie-banner {
    width: calc(100% - 40px);
    position: fixed;
    background-color: var(--anti-background-color);
    color: var(--anti-primary-color);
    z-index: 2;
    bottom: 20;
    left: 20;
    border-radius: 4px;
    padding-left: 20px;
    font-size: 10pt;
    line-height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 300;
}

.cookie-banner span {
    margin-right: 10px;
}

.cookie-banner button {
    height: 35px;
    outline: none;
    border: none;
    background-color: var(--tint-color);
    color: white;
    font-size: 12pt;
    font-weight: 600;
    border-radius: 4px;
}

.bfooter {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-top: 0.03em solid var(--border-color);
}

.footer-link-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.footer-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 10pt;
    margin-right: 10px;
}

.footer-link:link {
    color: var(--secondary-color);
    text-decoration: none;
}

.footer-link:visited {
    color: var(--secondary-color);
    text-decoration: none;
}

.footer-link:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.footer-link:active {
    color: var(--secondary-color);
    text-decoration: none;
}


.footer-copyright-section {
    font-size: 10pt;
    color: var(--secondary-color);
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-payment-section {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-payment-section img{
    width: 300px;
}

.footer-legal-section {
    text-align: center;
    font-size: 8pt;
    color: var(--secondary-color);
    font-weight: 200;
}

.as-modal-content {
    background-color: var(--bar-bg-color) !important;
}

.as-modal-title {
    color: var(--primary-color) !important;
}


.another-sign-message {
    color: var(--primary-color) !important;
}

#web-modal-iframe {
    width: 100%;
    height: 100%;
}

.wb-modal-content {
    height: calc(100% - 50px);
}

.watchlist-modal-content {
    background-color: var(--right-panel-bg);
}

.watchlist-modal-content .modal-header{
    border-bottom: 0.03em solid var(--border-color) !important;
}

.watchlist-modal-content .modal-footer{
    border-top: 0.03em solid var(--border-color) !important;
}

.create-alert-modal-content {
    background-color: var(--right-panel-bg);
}

.create-alert-modal-content .modal-header{
    border-bottom: 0.03em solid var(--border-color) !important;
}

.create-alert-modal-content .modal-footer{
    border-top: 0.03em solid var(--border-color) !important;
}

.right-snippet-header {
    padding-left: 10px;
    height: 10px;
    background-color: var(--card-bg-color);
    font-size: 10pt;
    font-weight: 400;
    color: var(--column-header-color);
    display: flex;
    align-items: center;
}

.right-snippet-cells {
    padding-left: 10px;
    padding-right: 10px;
}

.right-snippet-cell {
    display: flex;
    flex-direction: column;
    padding: 10px;
    cursor: pointer;
    border-radius: 12px;
    background-color: var(--card-bg-color);
    margin-top: 10px;
}

.right-snippet-date {
    color: var(--card-secondary-color);
    font-weight: 200;
    font-size: 9pt;
}

.right-snippet-text {
    color: var(--card-primary-color);
    font-size: 12pt;
    font-weight: 400;
    max-width: 230px;
    word-wrap: break-word;
    margin-top: 5px;
    line-height: 1.4em;
    max-height: 4.2em;
    overflow: hidden;
}

.right-snippet-text a{
    color: var(--tint-color);
    text-decoration: none;
    max-width: 230px;
    word-wrap: break-word;
}

.right-tag-holder {
    display: flex;
    margin-top: 10px;
    align-items: center;
}


.r-round-button {
    height: 30px;
    border-radius: 50px;
    background-color: var(--round-button-bg-color);
    border: 0.03em var(--round-button-border-color) solid;
    color: var(--primary-color);
    font-size: 8pt;
    margin-right: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 7px;
    padding-right: 7px;
}

.r-round-button .tag-logo {
   margin-bottom: 0px !important;
   margin-right: 3px;
}

.tag-logo {
    width: 18px;
    height: 18px;
    border-radius: 9px;
    margin-bottom: 2px;
}


.i-control {
    height: 50px;
    background-color: rgb(16 17 18 / 50%);
    border: 0.06em var(--input-border-color) solid;
    color: white;
    border-radius: 6px;
}

.i-control:focus {
    background-color: rgb(16 17 18 / 50%);
    color: whitesmoke;
}

.i-control::placeholder {
    color: rgb(185, 185, 185);
    background-color: rgb(16 17 18 / 50%);
}

.i-control:disabled {
    color: white;
    background-color: rgb(16 17 18 / 50%);
}

.i-control-area {
    background-color: rgb(16 17 18 / 50%);
    border: 0.06em var(--input-border-color) solid;
    color: white;
}

.i-control-area:focus {
    background-color: rgb(16 17 18 / 50%);
    color: whitesmoke;
}


.i-control-area::placeholder {
    color: rgb(185, 185, 185);
    background-color: rgb(16 17 18 / 50%);
}

.i-control-area:disabled {
    color: rgb(185, 185, 185);
    background-color: rgb(16 17 18 / 50%);
}

.form-row {
    display: flex;
    justify-content: space-between;
}

.form-row-h{
    width:  calc(50% - 10px);
    height: 100px;
    display: flex;
    flex-direction: column;
}

.form-row-h select{
    padding-left: 10px;
    padding-right: 10px;
}


@media screen and (min-width: 992px) and (max-width: 1070px) {

    .borsaLogo {
        margin-right: 10px;
    }

    .search-bar {
        width: 140px;
    }
}


@media screen and (min-width: 1070px) {
    .navigation-item {
        margin-left: 4px;

    }
}

@media screen and (min-width: 992px) {
    .fixed-right-panel {
        display: flex;
    }

    .fixed-right-bar {
        display: flex;
    }

    .main-container {
        margin-right: 320px;
    }

    .bfooter {
        margin-right: 320px;
    }

    .navigation-bar {
        margin-right: 320px;
    }
}

@media screen and (min-width: 768px) {
    .search-bar {
        display: block;
    }
}

@media screen and (min-width: 576px) {
    .borsaLogo {
        display: block;
    }

    .navigation-item {
        font-size: 14pt;
    }
}

@media screen and (max-width: 800px) {
    .premium-card-content {
        flex-direction: column;
    }

    .premium-card-call-to-action {
        margin-top: 30px;
    }
}

@media screen and (max-width: 576px) {
    .footer-link-section {
        flex-direction: column;
    }
    
    .footer-link {
        margin-bottom: 5px;
    }

    .premium-card-features-items {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .navigation-dropdown a {
        font-size: 12pt;
    }

    .login-video-main-container {
        display: none;
    }

    .pv0 {
        margin-top: 0px;
    }

    .login-form {
        width: 100%;
    }
}


@media screen and (max-width: 350px) {
    .profile-button {
        display: none;
    }
}

@media screen and (max-width: 1250px) {
    .premium-bar {
        display: none;
    }
}