:root {
    --color-primary: #330000;
    --table-header-bgcolor: var(--color-primary);
    --table-header-color: #FFFFFF;
    --color-secondary: #f2f2f2;
    --color-info: var(--color-primary);
    --color-green: #6e7e1b;
    --color-green-2: #6ca342;
    --color-green-3: #D1CAC2;
    --color-yellow: #F9E79F;
    --color-gray: #d7d7d7;
    --color-gray-2: #d8d8d8;
    --color-gray-3: #797979;
    --color-gray-4: #565051;
    --color-gray-5: #837E7C;
    --color-cream: #C9C0BB;
    --color-blue-1: #2E86C1;
    --color-blue-2: #34495E;
    --color-alert: #FFD100;
    --border-radius: 4px;
    --border-radius-top: 4px 4px 0 0;
}

main {
    min-height: 82vh;
}

.loadercentered {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 9999;
    cursor: progress;
    color: whitesmoke;
}

.loaderImg {
    height: 50px;
    z-index: 1057;
}

.breakupboxClass {
    height: 40px;
    width: 385px;
    background-color: #5e544b;
    color: #fff;
}

.input-group > input[type="text"]:disabled {
    color: #330000;
}

.textalignright {
    text-align: right;
}

.width-auto {
    width: auto !important;
}

button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
}

nav.appbar ul:first-child > li select {
    width: 100% !important;
    display: inline-block;
    color: white;
    background-color: var(--navapp-item-bgcolor);
    text-decoration: none;
    padding: 13px 22px;
    min-width: 130px;
    white-space: nowrap;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: left;
    border: none;
}

    nav.appbar ul:first-child > li select option {
        position: absolute;
        min-width: 20%;
        background-color: var(--navapp-sub-item-bgcolor);
        border-radius: 0 0 4px 4px;
        box-shadow: 2px 2px 3px 0 var(--color-black-35);
    }

:focus-visible {
    outline: -webkit-focus-ring-color auto 0px;
}

nav.appbar ul:first-child > li select.form-select {
    background-image: url("../img/icon-arrow-triangle-down-white.svg");
    margin-left: 20px;
}

.mobileAppsMenu .list-group li select {
    background-color: #5E544B;
    font-family: "Segoe UI", sans-serif;
    font-size: 1.5rem;
    font-weight: 350;
    font-style: normal;
    color: #fff;
    text-transform: uppercase;
    padding: 0;
    align-items: center;
    text-indent: 1rem;
    border: none;
    min-height: 50px;
}

    .mobileAppsMenu .list-group li select.form-select {
        background-image: url("../img/icon-arrow-triangle-down-white.svg");
    }

td a,
.btn-group a {
    padding: 8px;
    cursor: pointer;
    filter: invert(6%) sepia(52%) saturate(3526%) hue-rotate(351deg) brightness(105%) contrast(111%) !important;
}

    td a:hover,
    .btn-group a:hover {
        filter: invert(34%) sepia(66%) saturate(494%) hue-rotate(341deg) brightness(103%) contrast(91%) !important;
    }

.modal .default input,
.modal .default .form-select {
    text-transform: none;
}

.Iframe-width-height {
    width: 100%;
    position: relative;
    min-height:82vh;
    max-width: 100vw;
}

.copyright {
    float: left;
}

.social {
    float:right;
}

.topmargin{
    margin-top: 10px;
}

.bs_loader {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 120px;
    width: 120px;
}

.shader {
    width: 100%;
    height: 100%;
    background-color: black;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
    opacity: 0.5;
    display: none;
    z-index: 1;
}

.custom_Loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: -75px 0 0 -75px; 
    border: 16px solid transparent; 
    border-top: 16px solid #FFD700; 
    border-bottom: 16px solid transparent;
    border-left: 16px solid transparent; 
    border-right: 16px solid transparent;
    animation: spin 2s linear infinite;
    z-index: 2;
    transform: translate(-50%, -50%);
}

.welcome_message {
    font-size: 21px !important;
    text-align: center !important;
}

.btn-style {
    display: inline-block;
    padding: 10px 20px;
    background-color: #330000 !important;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.header-greeting{
    text-align : right;
    color : #fff;
    margin-right : 28px;
    line-height: 48px;
    float:right !important;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

body {
    overflow-x: hidden;
}