﻿html {
    position: relative;
    min-height: 100%;
}

html,
body,
.body-content {
    height: 100%;
    box-sizing: border-box;
    font-family: 'Numans', sans-serif;
    font-size: 0.85rem;
    /*margin-bottom: 50px;*/
}

/*body {
    font-family: 'Numans','Open Sans', sans-serif !important;
    margin-bottom: 80px;
}*/

/* #region Footer styles */
#footer {
    background: #fff;
    padding: 0 0 30px 0;
    color: #47536e;
    font-size: 14px;
    background: #eff2f8;
}

#footer .copyright {
    text-align: center;
    /*float: left;*/
    color: #47536e;
}

#footer .credits {
    float: right;
    text-align: center;
    font-size: 13px;
    color: #47536e;
    padding-left: 10px;
	display: inline-block;
}
/* #endregion */

/* #region custom Kendo UI styles */
#configure {
    display: none;
}

.k-panelbar .k-content {
    padding: 20px;
}

p .k-button {
    margin: 0 15px 0 0;
}

.k-state-active .label {
    font-size: 1em;
}
/* #endregion */

@media (max-width: 767px) {
    #responsive-panel {
        transition: all linear .2s;
    }

    #configure {
        display: block;
        float: right;
    }

    .k-rpanel {
        width: 100%;
    }

    .k-rpanel-expanded {
        margin-top: 1rem;
    }

    .navbar-header {
        width: 100%;
    }

    .footer {
        height: 60px;
    }

    .k-menu .k-item,
    .k-menu .k-link {
        width: 100%;
    }

    .k-menu .k-link {
        box-sizing: border-box;
    }
}

/*label {
    margin-top: 0.5rem;
}*/

h4 {
    font-size: 1rem;
    font-weight: bold;
}

.imgCaptainLogo {
    border-radius: 50px;
    width: 10rem;
    margin-bottom:10px;
}
.clsValidationMsgs {
    display: none;
    margin-top: 10px;
    padding: 5px;
}
.fa-info, .fa-info-circle {
    cursor: help;
}

.clsLink {
    color: #007bff !important;
    text-decoration: underline !important;
}

.clsCursor_Pointer{
    cursor:pointer;
}

.clsCusrsor_Info{
    cursor: help;
}

.div_TradingHistory{
    height:300px;
    overflow:auto;
}

.cls_TextArea_StatusUpdate{
    width:100%;
}

.cls_btnUpdateStatus{
    height:75px;
}

.cls_UpdateStatus{
    margin-bottom:10px;
}

.cls_Card_TeamUpdate{
    margin:5px;
}


.cls_btn_ValidateAPIDetails
{
    margin-top:10px;
}

.cls_ReadMore {
    text-decoration: underline;
    cursor: pointer;
    color: #007bff
}

.full_text{
    display:none;
}
.logo img{
    width:100px;
}

.cls_footerLinks {
    padding-left: 10px;
    display: inline-block;
}

.cls_BBCC_Doc
{
    padding:10px;
}

.table-bordered th, .table-bordered td {
    border: 1px solid #000;
}

.table thead th {
    border-bottom: 1px solid #000;
    vertical-align:middle;
}

.clsInfoIcon_Cards{
    font-size: 20px !important;
}

.btn-IBS {
    padding: 5px !important;
    font-size: 12px !important;
}

.main-logo {
    padding-left: 15px !important;
}

.main-logo-image {
    padding: 20px !important;
}

.tab-selected {
    background-color: #ffd800 !important;
    color: black !important;
}

.IBS-Link {
    color: dodgerblue !important;
    text-decoration: underline !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}

.arrow-container {
    position: relative !important;
}

.arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    cursor: pointer !important;
}

    .arrow i {
        font-size: 16px !important;
    }

    .arrow-container:nth-child(2) {
        width: 250px !important;
    }

.arrow1 {
    left: 0 !important;
    width: 35px !important;
}

.arrow2 {
    right: 0 !important;
    width: 30px !important;
}

.cls_AddTest {
    font-size: 25px;
    margin: 5px;
    cursor:pointer;
}

.cls_TestNumber {
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    background-color: white;
    border-radius: 0.2rem;
    margin-bottom: 2rem;
    padding-bottom: 0.3rem;
}

#profilingAccordion .accordion-body{
    margin-top:10px;
}

.GridImages {
    width: 100px;
    border-radius: 10px;
}

/* CSS Scrollbar Customised */

::-webkit-scrollbar-track {    
    border-radius: 10px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;    
    background-color: #555;
}

/* Audit Log Styling */
.auditLogStyle {
    word-break: break-all;
}

.cls_AuditLogDifferentValues {
    background-color: lightcoral !important;
    color: white !important;
    font-weight: bold !important;
}

.ibs-loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
}

.ibs-loader {
    width: 50px;
    height: 50px;
    border: 5px solid #002e6e;
    border-top: 5px solid transparent;
    border-radius: 50%;
    animation: loader 1s infinite linear;
}

@keyframes loader {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bg-primary {
    background-color: #00C0C7 !important;
}

.ibs-selected {
    elevation: 0 !important;
    box-shadow: none !important;
}

.theme-switch {
    font-size: 24px !important;
}

.main-header {
    border: 0px !important;
}

.ibs-dark-mode {
    background-color: #36454F !important;    
}