﻿/* Move down content because we have a fixed navbar that is 50px tall */
body {
    padding-top: 50px;
    font-family: "Poppins", sans-serif !important;

}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 280px;
}


/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }

    .body-content {
        padding: 0;
    }
}





/*header css*/

.navbar.navbar-expand-lg {
    box-shadow: rgb(221, 221, 221) 0px 0px 10px 0px;
    background: #06313e;
}
.header-container {
    background: #06313e;
    height: 100px;
}

.body-content {
    margin-top:64px !important;
}
body {
   
    font-size: 14px !important;
}
    .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
    text-decoration: none;
}




@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        justify-content: end !important;
    }
}

.navbar-nav > li > a {
 padding:10px 16px !important;
    text-decoration: none;
    color: #fff !important;
    font-weight: 600;
    margin-left: 10px;
    border-radius: 10px;
}
    .navbar-nav > li > a:hover {
        background: #ef7f1b;
        
        color: #fff !important;
        border-radius: 10px;
    }
.navbar-brand { 
    height: auto !important;
    padding: 0 !important;
}
.logo-text h4 {
    align-items: center;
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    display: flex;
    
}
.navbar-brand.logo-text:hover {
    color: #104e54 !important;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #011c25;
    color: #fff;
    padding: 10px 0px 3px 0px;
}
.logo-image{
    color:#fff;
    text-decoration: none !important;
    font-weight:600 !important
}
.logo-image h3:hover{
    text-decoration:none;
    color:#fff !important;
}
.logo-image h3 {
    margin-top: -16px;
}

.navbar {
    padding: 0px !important;
}

    /*Default page css*/
    .market-container {
        display: flex;
        gap: 40px;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

.market-item {
    text-align: left;
}

.index {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.value {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 3px;
}

.change {
    display: flex;
    gap: 5px;
    align-items: center;
}

.percentage {
    font-size: 14px;
}

.points {
    font-size: 14px;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 3px;
}

    .points.positive {
        background-color: green;
        color: white;
    }

    .points.negative {
        background-color: red;
        color: white;
    }

.percentage.positive {
    color: green;
}

.percentage.negative {
    color: red;
}

.pt-10{
    padding-top:10px;
}
.pb-10{
    padding-bottom:10px;
}
.ptb-10 {
    padding: 10px 0px;
}
.pt-20 {
    padding-top: 20px;
}
.pb-20 {
    padding-bottom: 20px;
}
.ptb-20 {
    padding: 20px;
}
.mt-20{
    margin-top:20px;
}
.mb-20 {
    margin-bottom: 20px;
}

.site-btn {
    color: #fff !important;
    background-color: #ef7f1b !important;
    border: 1px solid #ef7f1b !important;
    padding: 10px 0px !important;
    font-size: 1.3rem !important;
    text-decoration: none;
    border-radius: 20px;
    box-shadow: rgb(115 149 159) 0px 0px 6px 0px;
    width: 74px;
    display: inline-block;
    text-align: center;
    line-height: 12px;
    font-family: poppins, sans-serif;
}
.login-btn {
    color: #fff !important;
    background-color: #00685b !important;
    border: 1px solid #00685b !important;
    padding: 10px 0px !important;
    font-size: 1.3rem !important;
    text-decoration: none;
    border-radius: 20px;
    box-shadow: rgb(115 149 159) 0px 0px 6px 0px;
    width: 74px;
    display: inline-block;
    text-align: center;
    line-height: 12px;
    font-family: poppins, sans-serif;
}
.site-outline-btn {
    color: #ef7f1b !important;
    background-color: #fff !important;
    border-color: #ef7f1b !important;
    border: 1px solid;
    padding: 8px 0px !important;
    font-size: 1.3rem !important;
    text-decoration: none;
    border-radius: 10px;
    width: 90px;
    display: inline-block;
    text-align: center;
    line-height: 16px;
}

.login-btn:hover, .site-btn:hover {
    color: #fff !important;
    background-color: #06313e !important;
    border-color: #06313e !important;
}

.blink {
    text-decoration: blink;
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-direction: alternate;
}
@-webkit-keyframes blinker {
    from {
        opacity: 1.0;
    }

    to {
        opacity: 0;
    }
}

.bottom-cards {
    background-color: #fff;
    border: 1px solid #dee2e6;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    box-shadow: rgb(221, 221, 221) 0px 0px 4px 0px;
    padding:14px;
    height:100%
}
    .bottom-cards h4 {
        color: #06313e;
        font-size: 1.2em;
        font-weight: 600;
    }
.icon-class {
    display: flex;
    align-items: center;
}
.icon-class img{
    margin-right: 10px;
}

.bottom-cards ul li::marker {
    color: #075269;
    font-size: 2rem;
}
.bottom-cards ul {
    margin-left: 10px;
}



.table-sub-heading span {
    font-size: 1.2em;
    color: #06313e;
    font-weight: 700;
}

.table-card {
    box-shadow: rgb(221,221,221) 0px 0px 10px 0px;
    width: 100%;
    margin-bottom:20px;
    margin-top:10px;
    border-radius:10px
    
 
}
    .table-card tbody tr td {
        padding: 14px 10px;
    }
.title-td{
    color:#333;
    font-weight:600;
}
.form-control {
    border: 1px solid #e6e6e6 !important;
    width: 100% !important;
    height: 40px;
    border-radius: 20px !important;
    box-shadow: rgb(255 255 255) 0px 0px 1px 0px !important;
    font-size: 14px !important;
    appearance: auto !important;
    margin-top: 6px;
}
.chooseFile-padding{
    padding:8px 24px !important;
}
.process-steps {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}
table#MainContent_rblistPortfolioName  tbody  {
    display: flex;
    align-items:center
}
table#MainContent_rblistPortfolioName tbody tr td label{
    font-weight:400 !important
}
    table#MainContent_rblistPortfolioName tbody tr td input {
        margin-right: 5px;
        accent-color: red
    }
table.import-table tr:nth-child(odd), table.indicator-table tr:nth-child(odd) {
    background: #98d4e633;
}
#MainContent_rblistPortfolioName tr{
    background:none;
}
.btn-width-lg {
    width: auto !important;
    padding: 10px 10px !important;
}
.indicator-table tr{
    border:1px solid #e6e6e6;
}
.grapgh-table-head {
    background-color: #07607b;
    text-align: center;
    border-color: #ffffff;
    border-style: solid;
    border-width: 1px;
    color: #fff;
    text-transform: uppercase;
}
.grapgn-column {
    width: 20%;
    text-align: center;
    border-right-color: #e6e6e6;
    border-right-style: solid;
    border-right-width: 1px;
}

    .grapgn-column input {
        display: flex;
        color: #fff;
        border: 1px solid #00685b;
        background: #00685b;
        border-radius: 10px;
        padding: 5px 10px;
       
    }
        .grapgn-column input:hover {
            display: flex;
            color: #fff;
            border: 1px solid #ef7f1b;
            border-radius: 10px;
            padding: 5px 10px;
            background: #ef7f1b !important;
        }
.indicator-table select {
    word-wrap: normal;
    border: 1px solid #c5baba;
    border-radius: 6px;
    color: #fe7c08;
    font-size: 14px;
    padding: 2px 0px;
    width: 100px ;
    padding: 4px 0px;
}

.parameter-column input {
    color: #04524a;
    border: 1px solid #00685b;
    border-radius: 6px;
    padding: 0px;
    background: #fff !important;
    text-align: center;
    width: 70px !important;
    padding: 4px 0px;
}
.parameter-column .row div{
    display:flex;
    justify-content:space-between;
    align-items:center;
padding-right:40px;
}
   