html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: #EDEDED !important;
    font-family: Arial, sans-serif;
}

#statusBanner {
    border-radius: 10px;
    font-size: 16px;
}

.navBarBg {
    --bs-bg-opacity: 1;
    background-color: #013E5A;
}

.text-light {
    color: #e8ecaa !important;
}

.nav-pills > .active > a, .nav-pills > .active > a:hover {
    background-color: red !important;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: #013E5A !important;
    color: #e8ecaa !important;
}

.btn-primary {
    background-color: #013E5A !important;
}

.font-weight-bold {
    font-weight: bold;
}

.cardHeader {
    background-color: #013E5A;
    color: white !important;
    font-weight: bold;
}

.progress-bar {
    height: 7px;
    background-color: rgba(5, 114, 206, 0.2);
    width: 100%;
    overflow: hidden;
}

.progress-bar-value {
    width: 100%;
    height: 100%;
    background-color: rgb(5, 114, 206);
    animation: indeterminateAnimation 1s infinite linear;
    transform-origin: 0% 50%;
}

@keyframes indeterminateAnimation {
    0% {
        transform: translateX(0) scaleX(0);
    }

    40% {
        transform: translateX(0) scaleX(0.4);
    }

    100% {
        transform: translateX(100%) scaleX(0.5);
    }
}

a {
    color: #006185;
    text-decoration: none;
    background-color: transparent;
}

.hoverColor:hover {
    color: #B7DB57;
}

.emphasizeInfo {
    font-weight: 600;
}

.emphasizeInfoWithColor {
    font-weight: 600;
    color: #013E5A;
}


.ghost-div {
    border-radius: 8px !important;
    border: 4px solid #e2eaee;
    background-color: #f8f8ff
}

.CurvedBorder {
    border-radius: 10px !important
}

.dropdown-item {
    color: #00618d;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

    .dropdown-item:hover {
        color: #B7DB57;
        background-color: #07A3E0;
    }

.dropdown-menu {
    background-color: #F8FDFF;
}


.cardSubHeader {
    background-color: #f7f8ff;
    color: black !important;
    font-weight: bold;
}


.no-sort::after {
    display: none !important;
}

.no-sort {
    pointer-events: none !important;
    cursor: default !important;
}


.nav-link.text-light {
    color: white !important;
    font-weight: bold;
}


.navbar .navbar-nav .nav-item:not(:last-child) .nav-link {
    border-right: 1px solid #fff;
    margin-left: 1px;
    margin-right: 1px;
}


.lmask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
    z-index: 2000; /* High z-index to cover the whole screen */
}


.fixed {
    position: fixed;
}

@-moz-keyframes spinPulse {
    0% {
        -moz-transform: rotate(160deg);
        opacity: 0;
        box-shadow: 0 0 1px #2187e7;
    }

    50% {
        -moz-transform: rotate(145deg);
        opacity: 1;
    }

    100% {
        -moz-transform: rotate(-320deg);
        opacity: 0;
    }
}

@-moz-keyframes spinoffPulse {
    0% {
        -moz-transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spinPulse {
    0% {
        -webkit-transform: rotate(160deg);
        opacity: 0;
        box-shadow: 0 0 1px #2187e7;
    }

    50% {
        -webkit-transform: rotate(145deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: rotate(-320deg);
        opacity: 0;
    }
}

@-webkit-keyframes spinoffPulse {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

.hide {
    display: none;
    cursor: pointer;
}

.short:hover {
    display: none;
    cursor: pointer;
}

    .short:hover + .hide {
        display: inline;
        cursor: pointer;
    }


small.text-muted {
    font-weight: 700 !important;
}

.small.text-muted {
    font-weight: 500 !important;
}

.ssn-number {
    position: relative;
}

.ssn-value {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 56px;
    background: transparent;
    z-index: 2;
    color: transparent !important;
    border: none;
}

    .ssn-value:focus {
        outline: 0;
        border: 1px solid #333;
        box-shadow: 0 0 5px #666;
        transition: box-shadow .5s,border-color .25s ease-in-out;
    }

span.dt {
    display: none;
}

.darkButton {
    color: #006185 !important;
}

#spinnerOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
}

.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}


/* Styles for the popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.popup-content {
    background-color: #fff;
    width: 50%;
    margin: 100px auto;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

.error {
    color: red;
    font-weight: bold;
}



.btn-close {
    color: white !important;
    opacity: 1;
    background-color: white !important;
}

.btn-close-white {
    filter: none !important;
}

.progress-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2001; /* Higher than mask to be visible on top */
}

.tooltip-inner {
    text-align: left;
    padding: 10px;
    max-width: 300px;
}

.tooltip.bs-tooltip-top .arrow::before {
    border-top-color: #000;
}

.tooltip-inner {
    text-align: left;
    padding: 10px;
    max-width: 350px;
}


.tooltip.bs-tooltip-top .arrow::before {
    border-top-color: #000;
}

.form-floating {
    position: relative;
}

.bi-question-circle {
    font-size: 1.5rem;
}

.form-floating input {
    padding-left: 2.5rem;
}

.invisible {
    visibility: hidden;
}

.primary-color {
    color: #013E5A;
}

.retiree_footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}

.retiree-btn-primary {
    background-color: #013E5A;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
}

    .retiree-btn-primary:hover {
        color: #fff;
        background-color: #012B41;
        border-color: #012638;
    }

    .btn-check:focus .retiree-btn-primary, .retiree-btn-primary:focus {
        color: #fff;
        background-color: #012B41;
        border-color: #012638;
        box-shadow: 0 0 0 0.25rem rgba(1, 62, 90, 0.5);
    }

    .btn-check:checked + .retiree-btn-primary,
    .btn-check:active + .retiree-btn-primary,
    .retiree-btn-primary:active,
    .retiree-btn-primary.active,
    .show > .retiree-btn-primary.dropdown-toggle {
        color: #fff;
        background-color: #012638;
        border-color: #012130;
    }

        .btn-check:checked + .retiree-btn-primary:focus,
        .btn-check:active + .retiree-btn-primary:focus,
        .retiree-btn-primary:active:focus,
        .retiree-btn-primary.active:focus,
        .show > .retiree-btn-primary.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.25rem rgba(1, 62, 90, 0.5);
        }

    .retiree-btn-primary:disabled, .retiree-btn-primary.disabled {
        color: #fff;
        background-color: #013E5A;
        border-color: #013E5A;
    }

#countryCodeDropdown,
.iti input {
    height: 58px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.form-check-input:checked {
    background-color: #013E5A;
    border-color: #013E5A;
}

.retiree-heading {
    color: #013E5A;
    padding-bottom: 5px;
    font-weight: bold;
    margin-top: 20px;
}

.retiree-home-table th, .retiree-home-table td {
    padding: 8px;
    text-align: left;
}

.custom-max-width {
    max-width: 1000px;
    max-height: 600px;
}

.table-th-pr {
    padding-right: 10px !important;
}

.retireeRole {
    background-color: #013E5A;
    color: white;
    border: 2px solid #ccc;
    border-radius: 6px;
    padding-right: 30px;
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D'10'%20height%3D'6'%20viewBox%3D'0%200%2010%206'%20xmlns%3D'http%3A//www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M1%201l4%204%204-4'%20fill%3D'none'%20stroke%3D'white'%20stroke-width%3D'1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 12px;
    cursor: pointer;
}

.fit-width {
    width: fit-content;
}

.pointer-cursor {
    cursor: pointer;
}

.mw-800px {
    max-width: 800px;
}

.award-preview {
    width: 100%;
    background-color: white;
    border: none;
    height: 100vh
}

.color-blue-100 {
    color: #0d3c61
}

.eye-toggle {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #013E5A;
}

.height-480 {
    height: 480px
}

.text-black-left-important {
    color: black !important;
    text-align: left !important;
}

.h-100vh {
    height: 100vh;
}

.retiree_footer {
    background-color: #f8f9fa; /* light bg (ok) */
    color: #212529 !important; /* dark text for contrast */
}

    .retiree_footer a {
        color: #0d6efd !important; /* visible blue */
    }

.max-w-1000 {
    max-width: 1000px;
}

.padding-left-165px {
    padding-left: 165px !important;
}

.padding-left-145px {
    padding-left: 145px !important;
}

.text-smaller {
    font-size: smaller;
}

.retiree-link {
    color: #0d6efd !important; /* visible blue */
}