﻿:root {
    --primary: 15, 156, 208;
    --accent: 120, 33, 243;
    --bg-color: 245, 245, 245;
    --bg-card: 255, 255, 255;
    --text-color: 17, 47, 78;
    --font-primary: "Roboto", sans-serif;
    --border-radius: 16px;
    --box-shadow: 0 2px 6px rgba(var(--primary), 0.1);
    --visited-color: 44, 187, 82;
}

[data-theme="dark"] {
    --bg-color: 6, 24, 42;
    --bg-card: 1, 14, 27;
    --text-color: 255, 255, 255;
}

body {
    font-family: var(--font-primary);
    background-size: 100%;
    background: rgba(var(--bg-color), 1) url(../img/bg.svg) no-repeat center top;
    background-size: cover;
    background-attachment: fixed;
    color: rgba(var(--text-color), 1);
    font-size: 0.88rem;
    min-height: 100vh;
}

.navbar {
    background: rgba(var(--bg-card), 0.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);
    backdrop-filter: blur(4px);
    z-index: 1000;
}

.page-container {
    padding: 1rem 0;
}

.content-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.content-header-right,
.content-header-left {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}


.h1,
h1 {
    font-size: 1.6rem;
    font-weight: 700;
}

.h2,
h2 {
    font-size: 1.4rem;
    font-weight: 700;
}

.h3,
h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.h4,
h4 {
    font-size: 1.2rem;
    font-weight: 700;
}

.h5,
h5 {
    font-size: 1rem;
    font-weight: 700;
}

.bold {
    font-weight: 700;
}

::-moz-selection {
    /* Code for Firefox */
    color: white;
    background: rgba(var(--accent), 1);
}

::selection {
    color: white;
    background: rgba(var(--accent), 1);
}

a {
    text-decoration: none;
}

.login-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    padding: 3rem;
}

.hero-text-container {
    padding: 12rem 0 8rem;
    text-align: center;
}

.hero-text-container h2 span {
    font-weight: 700;
    color: rgba(var(--accent), 1);
    background: linear-gradient(90deg, rgba(var(--primary), 1) 0%, rgba(var(--accent), 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-style: italic;
    margin: 0 20%;
}

.hero-text h1 {
    color: rgba(var(--accent), 1);
    font-size: 1.6rem;
    text-align: left;
}

.hero-text h2 {
    color: rgba(var(--text-color), 1);
    font-size: 1.2rem;
    text-align: right;
}

.bg {
    background-image: url(../img/bg.jpg);
    background-size: cover;
    background-position: center;
}

.login-card-outer {
    background-color: rgba(var(--bg-color), 1);
    box-shadow: 0 4px 30px rgba(var(--primary), 0.3);
    border-top: 3px solid rgba(var(--primary), 1);
    border-radius: var(--border-radius);
    margin: 20px 0;
}

.btn {
    border-radius: 48px;
    border: 0;
}

.btn.btn-lg {
    font-size: 1.2rem;
    padding: .5rem 2rem;
}

.btn.btn-primary {
    background: linear-gradient(45deg, rgba(var(--primary), 1) 0%, rgba(var(--accent), 1) 100%);
    border-color: rgba(var(--accent), 1);
    color: #fff;
    white-space: nowrap;
}

.login-card {
    padding: 0 2rem;
}

.copy-info {
    text-align: center;
    font-size: 12px;
    color: #747474;
    margin: 2rem 0 0;
    border-top: 1px solid rgba(var(--text-color), .8);
    padding: 2rem;
}

.section-welcome {
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    background: linear-gradient(45deg, rgba(var(--primary), 1) 30%, rgba(var(--accent), 1) 100%);
    color: #fff;
}

.section-one {
    background-image: url(../img/hero-img-bg.jpg);
    background-size: cover;
    background-position: top;
    color: rgba(var(--text-color), 1);
    background-repeat: no-repeat;
}

.section-one-bg {
    background: linear-gradient(0deg, rgba(var(--bg-color), 0.8) 0%, rgba(var(--bg-color), 0.8) 100%);
}

.section-two {
    background: rgba(var(--bg-color), 0);
    display: flex;
    width: 100%;
}

.section-three {
    background: rgba(var(--bg-color), 1);
    padding: 0 0 3rem 0;
}

.section-four {
    background: rgba(var(--primary), .2);
}

.section-five {
    background: rgba(var(--bg-color), 1);
    padding: 3rem 0;
}

.welcome-txt {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.section-footer {
    background: rgba(var(--text-color), .95) url(../img/maryland-flag.svg) no-repeat left center;
    background-size: contain; 
    padding-top: 6rem;
    color: #888888;

}

.section-icon-link {
    display: flex;
    padding: 1rem;
    gap: 1rem;
    font-size: 1.2rem;
    border-radius: var(--border-radius);
    align-items: center;
    margin-bottom: 1rem;
    box-shadow: var(--box-shadow);
    background: rgba(var(--bg-card), 1);
    color: rgba(var(--text-color), 1);
    transition: .5s ease all;
}

.section-icon-link small {
    font-size: .8rem;
    opacity: .7;
}

.section-icon-link:hover {
    background: linear-gradient(45deg, rgba(var(--primary), 1) 30%, rgba(var(--accent), 1) 100%);
    color: rgba(var(--bg-color), 1);
    transition: .5s ease all;
}

.section-icon {
    font-size: 4rem;
}

.section-faq {
    padding: 1rem;
    border-radius: var(--border-radius);
    display: flex;
    gap: 1rem;
    align-items: anchor-center;
    font-size: 1rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, rgba(var(--primary), 1) 30%, rgba(var(--accent), 1) 100%);
    color: rgba(var(--bg-color), 1);
}

.section-faq .icon-icon-04 {
    font-size: 4rem;
}

.section-search {
    padding: 1rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: anchor-center;
    color: #fff;
    margin-bottom: 1rem;
    box-shadow: var(--box-shadow);
    background: rgba(var(--bg-color), 1);
}

.section-logo {
    margin-bottom: 1rem;
    padding: 0 15%;
}

.section-topmenu {
    margin-bottom: 1rem;
}

.panel-left {
    background: rgba(var(--bg-color), 1);
    height: 100%;
    box-shadow: var(--box-shadow);
    width: 300px;
}

.left-menu {
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    background: rgba(var(--bg-card), 1);
    margin-bottom: 1rem;
}

.left-menu.list-group-flush>.list-group-item {
    background: rgba(var(--bg-card), 1);
    border: 0;
    padding: 0;
    border-radius: 10px;
}

.left-menu.list-group-flush>.list-group-item.active {
    background-color: rgba(var(--accent), 1);
    color: rgba(var(--bg-card), 1);
    font-weight: 700;
}

.left-menu.list-group-flush>.list-group-item a {
    color: rgba(var(--text-color), 1);
    padding: 1rem;
    display: inline-block;
}


.left-menu.list-group-flush>.list-group-item.active a {
    color: rgba(var(--bg-card), 1);
}

.nav-link-icon {
    font-size: 1.2rem;
    line-height: 1;
    position: relative;
    background: #0000000f;
    border-radius: 6px;
}

ul.dropdown-menu.show {
    font-size: .8rem;
    box-shadow: var(--box-shadow);
    border: 0;
}

.form-section {
    border-radius: var(--border-radius);
    border: 1px solid #e1e1e1;
    padding: 1rem;
    margin-bottom: 1rem;
}

.form-label {
    margin-bottom: 0.1rem;
    color: #888888;
}

.progress-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    overflow: auto;
}

.progress-container .progress-section {
    min-width: 100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: anchor-center;
    text-align: center;
    font-size: 12px;
    gap: 4px;
    position: relative;
}

.progress-container .progress-section::after {
    background-color: #dedede;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    top: 11px;
    width: 100%;
    z-index: 0;
}

.progress-container .progress-section:first-child::after {
    left: 50%;
    width: 50%;
}

.progress-container .progress-section:last-child::after {
    right: 50%;
    width: 50%;
}

.circle {
    align-items: center;
    background-color: #dedede;
    border-radius: 50%;
    color: #11161c;
    display: flex;
    height: 24px;
    justify-content: center;
    transition: 0.4 ease;
    width: 24px;
    z-index: 1;
    font-weight: 700;
}

.circle.active {
    background-color: rgba(var(--primary), 1);
    ;
}

.circle.icon-check {
    background-color: #89be81;
}

.custom-list li {
    margin-bottom: 1rem;
}

.scroll {
    overflow-x: auto;
    width: 100%;
    margin: 2rem 0 0;
}

.form-control,
.form-check-input,
.form-select,
.input-group-text {
    border-color: #666;
    border-radius: 3px;
}

.form-check-input {
    transform: scale(1.3);
}

.table {
    --bs-table-bg: rgba(var(--bg-card), 1);
}

.table-lg>:not(caption)>*>* {
    padding: .75rem .5rem;
}

.card {
    border: 0;
    margin-bottom: 1rem;
    background: rgba(var(--bg-card), 1);
    border-radius: var(--border-radius);
}

.card-body {
    padding: 2rem;
}

.offcanvas-backdrop.show {
    opacity: 1;
    backdrop-filter: blur(5px);
    background: #00000012;
}

.stepper .list-group {
    display: block;
}

.stepper .list-group-item {
    border: none;
    background: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0.5em;
    position: relative;
}

.stepper .list-group-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 1em;
    top: 2.4em;
    width: 2px;
    height: calc(100% - 1.3em);
    background: rgba(var(--primary), .1);
    z-index: 0;
}

.stepper .list-group-item a {
    color: rgba(var(--text-color), .6);
}

.stepper .list-group-item a.active {
    color: rgba(var(--primary), 1);
    font-weight: bold;
    cursor:pointer;
}

.stepper .step-number {
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    border-radius: 50%;
    background: rgba(var(--text-color), 0.1);
    text-align: center;
    font-weight: bold;
    margin-right: 1em;
    position: relative;
    z-index: 1;
}

.stepper .list-group-item a.active .step-number {
    background: rgba(var(--primary), 1);
    color: rgba(var(--bg-color), 1);
}

.stepper .list-group-item a.visited {
    color: rgba(var(--visited-color), 1);
    font-weight: bold;
    cursor: pointer;
}
.stepper .list-group-item a.visited .step-number {
    background: rgba(var(--visited-color), 1);
    color: rgba(var(--bg-color), 1);
}

.input-group-date {
    position: relative;
}

.input-group-date .icon-calendar {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 1.1rem;
    pointer-events: none;
}

.rate-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.rate-card {
    border: 1px solid rgba(var(--bg-card), 1);
    border-radius: 6px;
    padding: .6rem;
    text-align: center;
    color: rgba(var(--text-color), 1);
    transition: .5s ease all;
    display: flex;
    align-items: center;
}

.rate-card:hover {
    background: linear-gradient(45deg, rgba(var(--primary), 1) 30%, rgba(var(--accent), 1) 100%);
    color: rgba(var(--bg-color), 1);
    border: 1px solid rgba(var(--bg-color), 1);
    transition: .5s ease all;
}

.icon-5 {
    font-size: 2rem;
}

.footer-links a {
    color: rgba(var(--primary), 1);
    text-decoration: none;
    padding: 0.5rem 0;
    display: inline-block;
}

.footer-icon {
    font-size: 1.6rem;
    color: rgba(var(--primary), 1);
}

/* TEMP CSS */
.modal-backdrop.show {
    opacity: 1;
    backdrop-filter: blur(2px);
    background-color: #00000070;
}

.modal-content.login {
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border-radius: var(--border-radius);
}

.modal-header {
    border-bottom: 0;
}

.hide {
    display: none !important;
}

.grid-edit::before {
    /*display: inline-block;
	padding-right: .5rem;*/
    color: #7721F3FA;
    font-family: Font Awesome\ 5 Free;
    content: "\f044";
    font-weight: 900;
}

.grid-eye::before {
    /*display: inline-block;
	padding-right: .5rem;*/
    color: #7721F3FA;
    font-family: Font Awesome\ 5 Free;
    content: "\f06e";
    font-weight: 900;
}

.grid-delete::before {
    color: #b00000;
    font-family: Font Awesome\ 5 Free;
    content: "\f2ed";
    font-weight: 900;
}
 
label.flR {
    margin-left: 12px;
    position: relative;
}

label.flR:before {
    position: relative;
    content: "*";
    left: -6px;
    top: 0;
    color: red;
}

@media (max-width: 1280px) {}

@media (max-width: 768px) {
    .hero-content {
        padding: 0;
        display: none;
    }

    .content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .panel-left {
        height: auto;
        width: 100%;
    }
}

.mt20{
    margin-top:20px;
}

.mb10{
    margin-bottom:10px;
}

.k-input-md .k-input-inner, .k-picker-md .k-input-inner {
    padding-block: 8px !important;
    border: 0.3px solid !important;
}


.modal.show {
    background: rgba(0,0,0,0.3);
}

.h100{
    height:100%
}

.signatureClear{
    height: 2%;
    margin-top: 10px;
    margin-left: 5px;
}

.form_status {
    display: flex;
    align-items: center;
    justify-content: center;
}

.CancelButton {
    text-align: right;
    padding-bottom: 10px;
}

.ml20{
    margin-left:20px;
}

.badge {
    font-size: 1.2em;
}

.bg-info {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--visited-color), 1) !important;
}


/* Loader */

.spinner_overlay {
    width: 100%;
    height: 100vh;
    background: rgba(255,255,255,0.9);
    position: fixed;
    top: 0;
    z-index: 9999;
}

.spinner {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, rgba(var(--primary), 1) 0%, rgba(var(--accent), 1) 100%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

.loader_text {
    color: rgb(17 124 217);
    font-size: 36px;
    font-family: Roboto;
    font-weight: bold;
    position: absolute;
    overflow: hidden;
    z-index: 99;
    width: 55%;
    top: 36%;
    left: 0;
    right: 0;
    margin: auto;
    line-height: 1.2;
}


@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }

    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }

    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}
