/* MAIN LOGIN LANDING PAGE */
/* Sets main image size on login page */
.ts-no-padding img {
    width: 450px;
    height: auto;
}

/* Sets login box background color and border */
.login-panel-main {
    background-color: rgba(255, 255, 255, 0.7) !important;
    border-radius: 0px !important;
    border: 2px solid #00553E;
}

/* Sets main Login Panel Header Text */
.login-panel-title h1 {
    color: #00553E !important;
    /* text-transform: uppercase; */
}

/* Sets Main Login Password Background and Border Color */
.grid .form-floating .form-control {
    background-color: #ffffff !important;
    border: .5px solid #00553E;
}

/* Sets login button color */
.linkstar-page .login-submit-button{
	background-color: #00553E !important;
    color: #FFFFFF;
    font-weight: bold;
    /* text-transform: uppercase; */
}

/* Sets hover background and border for login button*/
.linkstar-page .login-submit-button:not(.disabled):hover {
    background-color: #338871 !important;
    color: #FFFFFF !important;
    font-weight: bold;
    /* text-transform: uppercase; */
}

/* Line Between Register and Forgot */
.col {
    position: relative;
    padding-top: 16px;
}
.col::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        #0a7f5a,
        #1fbf84,
        #0a7f5a
    );
}

/* Hide Password and Register Icons */
.bi-question-circle-fill::before {
    content: none !important;
}
.bi-book-fill::before {
    content: none !important;
}

/* Spacing between Forgot Password and Register */
.ts-no-padding {
    margin-bottom: 8px;
}

/* Sets Forgot Password and Register Font */
.login-panel-nav {
    /* text-transform: uppercase; */
    font-weight: bold;
    font-size: 1.20rem;
}

/* Sets Forgot Password and Register Text Color */
.linkstar-page a:not(.btn):not(.dropdown-item) {
    color: #00553E;
}

/* Sets hover for Forgot Password and Register */
.linkstar-page a:not(.btn):not(.dropdown-item):hover {
    color: #338871;
}





/* THROUGHOUT LINKSTAR */
/* Bottom banner background color */
.container-fluid.d-print-none.mt-auto.px-0 {
    background-color: #00553E;
}

/* Bottom banner text color */
.ts-phcfooter-padding,
.ts-phcfooter-padding a,
.ts-phcfooter-padding span,
.ts-phcfooter-padding i,
.ts-disclaimer,
.ts-disclaimer span {
    color: #FFFFFF !important;
}




/* SECURITY QUESTION POPUP */
/* Sets security question textbox and username textbox borders*/
#f {
    background-color: #ffffff !important;
    border: .5px solid #00553E;
}

/* Sets submit button background color and border*/
.linkstar-page .mb-3.offset-0.offset-xxl-1 input.btn-primary {
    background-color: #00553E !important;
    font-weight: bold;
}

/* Sets submit button background color and border hover*/
.linkstar-page .mb-3.offset-0.offset-xxl-1 input.btn-primary:not(.disabled):hover {
    background-color: #338871 !important;
    color: #FFFFFF !important;
}





/* ONCE LOGGED IN */
/* Sets navigation bar background color */
nav.navbar {
    background-color: #FFFFFF!important;
}

/* Sets navigation bar text */
.nav-link {
	color: #444444;
    font-size: 1.00rem;
    font-weight: bold;
}

/* Sets navigation bar image*/
.navbar-brand img {
  height: 25px;
  width: auto; /* keeps proportions */
}

/* Sets navigation bar text hover*/
.bg-primary .navbar-nav a.nav-link:hover {
    color: #444444 !important;
}

/* Ensure nav links can position the underline pseudo-element */
#navbar-content .nav-link {
    position: relative;
}

/* Apply active color when link is clicked or represents the current page */
#navbar-content .nav-link.active,
#navbar-content .nav-link:focus {
    color: #444444 !important;
}

/* Create and display underline for active or focused nav links */
#navbar-content .nav-link.active::after,
#navbar-content .nav-link:focus::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background-color: #444444;
}

/* Dropdown menu setup */
.dropdown-menu {
    background-color: #FFFFFF !important;
}

/* Dropdown menu text */
.dropdown-menu .dropdown-item {
    color: #444444 !important;
    /* text-transform: uppercase; */
    font-weight: 600;
}

/* Hover / focus state */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    color: #444444 !important;
    background-color: #FFFFFF !important;
}

/* Sets Primary Headers Throughout Pages */
.card-primary.card .card-header {
    background-color: #444444;
    color: #FFFFFF;
}