:root {
    --rnd-primary-colour: #17234C;
    --rnd-secondary-colour: #112A46;
    --rnd-tertiary-colour: #364780;
    --rnd-component-colour: #22406A;
    --rnd-light-colour: #EBECF4;
    --rnd-error-colour: #B3261E;
    --rnd-success-colour: #66AC5B;
    --rnd-header-height: 80px;
    --rnd-border-radius: 8px;
}

html {
    font-size: 14px;
}

a.plain, a.plain:hover {
    color: var(--rnd-primary-colour);
    text-decoration: none;
}

body {
    max-height: fit-content;
    display: flex;
    flex-flow: column;
    background: #FCFCFC;
    color: var(--rnd-secondary-colour);
    font-family: "Noto Sans";
}

main {
    height: 100%;
}

svg {
    outline: none;
}

.panel {
    position: relative;
    min-height: calc(100dvh - 132px);
    padding: 56px var(--rnd-header-height);
    border-radius: var(--rnd-border-radius);
    background-color: #FFFFFF;
    box-shadow: 2px 2px 16px rgba(38, 55, 67, 0.1);
}

    .panel .panel-header h4 {
        text-align: center;
        font-weight: 600;
        font-size: 24px;
        line-height: 29px;
    }

    .panel .panel-content {
        height: 100%;
        padding: 32px 0 90px;
        z-index: 10;
    }

        .panel .panel-content .text-block {
            font-weight: 400;
            font-size: 18px;
            line-height: 150%;
            color: var(--rnd-secondary-colour);
            margin-bottom: 30px;
        }

.clear-blue {
    color: #52647a;
    background: var(--rnd-light-colour);
    /*border-color: var(--rnd-light-colour);*/
}

.dark-blue-text {
    color: var(--rnd-secondary-colour);
}

.waterbg-panel {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url("../assets/images/WaterBg.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100%;
    opacity: 0.8;
    border-radius: 0 0 8px 8px;
}

.menu-column {
    background-color: #FFFFFF;
    border-right: 1px solid rgba(23, 35, 76, 0.15);
    height: 100%;
}

.content-container {
    height: 100%;
    padding: 10px;
}

.copyright-block {
    padding: 30px 0;
    padding-left: 20px;
    color: #101c2a;
    text-shadow: 0px 0px 20px #678ba4;
    font-weight: 600;
}

footer {
    text-align: center;
    position: absolute;
    bottom: 0;
}

    footer .copyright-block {
        font-weight: 400;
        font-size: 14px;
        line-height: 19px;
        color: rgba(17, 42, 70, 0.4);
    }

.company-block .company-logo {
    display: inline-block;
}

    .company-block .company-logo img {
        width: 48px;
        height: 48px;
        border-radius: 4px;
    }

.company-block .company-name {
    display: inline-block;
    margin-left: 16px;
    vertical-align: middle;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 33px;
    color: #FFFFFF;
}

.app-block {
    text-align: end;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

    .app-block .powered-by {
        display: inline-block;
        margin-left: 16px;
        vertical-align: middle;
        font-style: normal;
        font-weight: 600;
        font-size: 24px;
        line-height: 22px;
        color: #FFFFFF;
        padding-top: 20px;
    }

        .app-block .powered-by h2 {
            color: var(--rnd-secondary-colour);
        }

        .app-block .powered-by p {
            font-size: 10px;
            color: #89bed4;
            margin-top: -5px;
            margin-left: 12px;
        }

            .app-block .powered-by p span {
                color: #a6a8ab;
                font-weight: 400;
                font-size: 8px;
            }


.header-logo {
    margin-top: 10dvh;
}

    .header-logo .app-block h2 {
        font-weight: 600;
    }

    .header-logo .app-block .powered-by {
        padding-top: 0px;
    }

        .header-logo .app-block .powered-by p {
            font-size: 12px;
            color: #89bed4;
            margin-top: -10px;
        }

            .header-logo .app-block .powered-by p span {
                font-size: 10px;
            }


.divider {
    height: 1px;
    width: 100%;
    background: #D6D5E3;
}

.divider-ver {
    width: 1px;
    background: rgba(214, 213, 227, 0.5);
}

.modal {
    z-index: 3002;
    overflow-y: hidden;
    margin-top: 40px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: calc(100dvh - var(--rnd-header-height));
    background: rgba(23, 35, 76, 0.05) !important;
    backdrop-filter: blur(3px);
}

.modal-dialog {
    padding: 0px 8px;
    margin: 10px auto;
}

.modal-body {
    padding-right: 28px;
    padding-left: 28px;
    overflow-y: auto;
    max-height: calc(100dvh - var(--rnd-header-height) - 90px - 70px) !important;
}

    .modal-body div.dataTables_wrapper {
        padding: 10px 24px 10px 24px;
    }

.modal-footer {
    padding-right: 28px;
    padding-left: 28px;
}

    .modal-footer > * {
        margin: 0;
    }

.dataTables_wrapper div.dataTables_processing {
    display: flex;
    height: 100%;
    margin-top: auto;
    top: 0;
    background: transparent;
    padding-top: 0px;
    z-index: 1;
}

.border-radius-8 {
    border-radius: 8px !important;
}

.top-z-index {
    z-index: 9000;
}

.tooltip-inner {
    max-width: 300px;
}

.fa.fa-info-circle, .fa-solid.fa-info-circle {
    color: var(--rnd-secondary-colour);
}

.loader-wrapper {
    min-height: 100%;
    z-index: 1;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0;
    background: #9a9a9a65;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    position: absolute;
}

.modal .loader-wrapper {
    border-radius: 0px 0px 5px 5px;
}

.cursor-pointer {
    cursor: pointer;
}

.fw-semibold {
    font-weight: 600;
}

.w-33 {
    width: 33% !important;
}

.loader {
    color: #1b214c;
    font-size: 45px;
    text-indent: -9999em;
    overflow: hidden;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    transform: translateZ(0);
    animation: mltShdSpin 1.7s infinite ease, round 1.7s infinite ease;
}

    .loader.loader-sm {
        font-size: 18px;
    }

    .loader.loader-md {
        font-size: 45px;
    }

    .loader.loader-lg {
        font-size: 75px;
    }

    .loader.show {
        display: block;
    }

    .loader.loader-input {
        float: right;
        margin-top: -28px;
        margin-bottom: 0px;
        margin-right: 15px;
    }

.fw-600 {
    font-weight: 600 !important;
}

.page-header .container {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

.page-header .column {
    flex-basis: 50%;
    flex-grow: 0; /* Prevent items from growing beyond their flex-basis */
    flex-shrink: 1; /* Allow items to shrink if necessary */
    max-width: 50%; /* Ensure columns never exceed 50% */
    overflow: hidden; /* Handle overflow content */
}

.page-header .pairs {
    display: grid;
    grid-template-columns: max-content auto;
    gap: 0.25rem 0rem
}

.page-header .label {
    min-width: min-content;
}

.page-header .value {
    margin-left: 10px;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.justify-self-end {
    justify-self: end;
}

/* Add animation to "page content" */
.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}

.empty-placeholder {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;
    margin-bottom: 40px;
    font-size: 14px;
}

.fs-7 {
    font-size: 80%;
}


@-webkit-keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0px;
        opacity: 1
    }
}

@keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}



@keyframes mltShdSpin {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    5%, 95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    10%, 59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }

    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }

    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }

    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}

@keyframes round {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}


@media (min-width: 767px) {
    html {
        font-size: 16px;
    }
}

@media (max-width: 767px) {




    .content-container {
        /*padding: 5px 8px;*/
        padding: 0px
    }
}
