/* 
    Created on : May 12, 2020, 11:31:09 AM
    Author     : admin
*/

.tooltip.show {
    opacity: 1 !important;
} 


.text-muted a {
    color: inherit;
}

table.dataTable thead th {
    padding-left: 10px;
}
table.dataTable thead .sorting.no-sort {
    background: none;
    pointer-events: none;
}

form.small-centered {
    max-width: 300px;
}

.input-group-append.pass .input-group-text {
    background: none;
    border-left: none;
    padding: 0;
    cursor: pointer;
    width: 38px;
}

.input-group-append.pass i {
    margin: auto;
}

.pass.off i.icon-eye-off {
    display: none;
}
.pass.on i.icon-eye {
    display: none;
}
.pass.on i.icon-eye-off {
    display: block;
}



.feather {
    width: 16px;
    height: 16px;
    vertical-align: text-bottom;
}

/*
 * Sidebar
 */

.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100; /* Behind the navbar */
    padding: 48px 0 0; /* Height of navbar */
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

.sidebar-sticky {
    position: relative;
    top: 0;
    height: calc(100vh - 48px);
    padding-top: .5rem;
    overflow-x: hidden;
    overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}
.sidebar .nav-link {
    font-weight: 500;
    color: #333;
}

.sidebar .nav-link .feather {
    margin-right: 4px;
    color: #999;
}

.sidebar .nav-link.active {
    color: #007bff;
}

.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
    color: inherit;
}

.sidebar-heading {
    font-size: .75rem;
    text-transform: uppercase;
}

/*
 * Content
 */

[role="main"] {
    padding-top: 133px; /* Space for fixed navbar */
}

@media (min-width: 768px) {
    [role="main"] {
        padding-top: 48px; /* Space for fixed navbar */
    }
}

/*
 * Navbar
 */

.navbar-brand {
    padding-top: .75rem;
    padding-bottom: .75rem;
    font-size: 1rem;
    background-color: rgba(0, 0, 0, .25);
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);
}

.navbar .form-control {
    padding: .75rem 1rem;
    border-width: 0;
    border-radius: 0;
}

.form-control-dark {
    color: #fff;
    background-color: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .1);
}

.form-control-dark:focus {
    border-color: transparent;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}

table.dataTable td {
    vertical-align: middle;
}

.scrollable {
    overflow: auto;
}
.scrollable.w-scrollbar {
    padding-bottom: 15px;
}
.scrollable::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #F5F5F5;
}
.scrollable::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background-color: #F5F5F5;
}
.scrollable::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #98a0a9;
}

table#stocks-list {
    table-layout: auto;
}
table#stocks-list th:nth-child(1) {
    width: 100px !important;
    padding-left: 0;
}
table#stocks-list th:nth-child(2) {
    width: auto !important;
}

table#stocks-list td:nth-child(1) {
    padding-left: 0 !important;
}
table#stocks-list th:nth-child(3) {
    width: 70px !important;
}
table#stocks-list th:nth-child(4) {
    width: 65px !important;
    box-sizing: unset;
}
table#stocks-list td:nth-child(4) {
    text-align: right;
}
.table-responsive {
    background: white;
    margin: 20px 0 -20px !important;
    padding: 20px;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
}
div#stocks-list_length {
    display: none;
}
div#stocks-list_filter {
    margin-bottom: 10px;
}
div#stocks-list_paginate {
    display: none;
}

tr.halmacci td, tr.halmacci td a {
    color: #4caf50 !important;
}
tr.coming-soon td, tr.coming-soon td a {
    color: orange !important;
}
tr.watchlist td, tr.watchlist td a {
    color: #007bff !important;
}
tr.no-trading td, tr.no-trading td a {
    color: rgb(0 0 0 / 25%) !important;
    text-decoration: line-through;
}

div#stocks-list_info {
    font-size: 80%;
    margin-bottom: -5px;
    font-weight: bold;
}

.notes > .note:not(:last-child) {
    margin-bottom: 25px;
    border-bottom: 1px dashed rgb(206 212 218 / 50%);
    padding-bottom: 25px;
}

.note {
    position: relative;
}
.note a.btn {
    position: absolute;
    top: 0;
    right: 0;
    display: none;
}
.note:hover a.btn {
    display: block;
}