:root {
	--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-family: --font-family-sans-serif;

    /* Core color */
    --webpros-core: #5703AD;
    /* Secondary colors */
    --charcoal: #231F20;
    --light-grey: #F2F2F2;
    /* Accent colors */
    --webpros-teal: #76FFEF;
    --webpros-blue: #3A5AD9;

}
body {
    margin: 0;
    font-size: .9375rem;
    font-weight: 400;
    line-height: 1.5;
    color: #1d2125;
    text-align: left;
    background-color: #fff;
}
a:not(footer) {
    color: var(--core);
}
.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.sub-wrapper {
    flex-grow: 1;
}
.card-footer-btn .card-footer {
    text-decoration: none;
    color: #fff;
}
table tr th {
	text-transform: uppercase;
}
.navbar.sticky-top {
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: none;
    border-bottom: #000 1px solid;
    align-items: stretch;
    height: 61px;
}

#main-nav-links {
    margin-left: 2em;
}
.nav-logo {
    max-height: 50px;
}
.page-content {
	margin-top: 60px;
}
.custom-nav .nav-link {
	border-bottom: solid 3px #fff0;
	padding: .5rem 1rem;
	display: flex;
	align-items: center;
	height: 60px !important;
}
.legal-list li {
    padding-left: 60px;
    margin-top: 25px;
    margin-bottom: 25px;
}
.list-address li {
    margin-top: 2px;
    margin-bottom: 2px;
}
.list-address li:first-child {
    margin-top: 25px;
}
.list-la {
    list-style-type: lower-alpha;
}
.list-lr {
    list-style-type: lower-roman;
}
.menu-icon {
    color: rgb(0 0 0 / .6);
}
.search-results ul li {
    list-style: none;
}

.partner-profile {
    background-color: var(--charcoal);
    border-radius: 1rem;

    & .profile-section {
        border-radius: 1rem;
    }
}
.partner-profile-stats-wrap {
    display: flex;
    margin-top: 0;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}
.partner-profile-stats-wrap .partner-stats-item {
    width: 33%;
    height: 100%;
    /* padding: 50px 0; */
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    text-align: center;
}
.partner-profile-stats-wrap .partner-stats-item p {
    color: var(--charcoal);
    font-size: 18px;
    margin: 0;
    padding: 10px 10px 0px 10px;
}
.partner-profile-stats-wrap .partner-stats-item p.number {
    font-size: 40px;
    padding: 10px 0;
    font-weight: bold;
}
.partner-profile-stats-wrap .partner-stats-item span {
    width: 60px;
    background: var(--charcoal);
    height: 2px;
    display: block;
    margin: 0 auto;
}
.partner-profile-stats-wrap .partner-stats-item i {
    vertical-align: middle;
    font-size: 50px;
    color: var(--charcoal);
}

.user-profile {
    border-radius: 1rem;

    & .profile-section {
        border-radius: 1rem;
    }
}

.dropdown-item i {
    width: 2em;
    text-decoration: none;
    text-align: center;
}

.user-menu {
    width: 250px;
}

.user-menu-email {
    color: gray;
}

.legal-table, .legal-table tr, .legal-table th, .legal-table td {
    border: 1px solid black;
    border-collapse: collapse;
}

.legal-table th, .legal-table td {
    padding: .5em;
}

.has-sublist {
    counter-reset: item;

    & > ol {
        list-style-type: none;
    }
}

.has-sublist ol > li {
    counter-increment: item; /* Increment the 'item' counter for each main list item */
}

.has-sublist ol > li::marker {
    content: counters(item, ".") ". "; /* Display the counter with a dot separator */
}

.has-sublist ol ol {
    list-style-type: none;
    counter-reset: subitem; /* Initialize the 'subitem' counter for sub-lists */
}

.has-sublist ol ol > li {
    counter-increment: subitem; /* Increment the 'subitem' counter for each sub-list item */
}

.has-sublist ol ol > li::marker {
    content: counters(item, ".") "." counters(subitem, ".") ". "; /* Display parent and sub-item counters */
}

footer {
    color: #ffffff;
    background-color: var(--charcoal);
    min-height: 5vh;

    & h4 {
        margin-bottom: 2.5rem;
        font-weight: bold;
    }

    & ul {
        list-style: none;
        padding-left: 0;
    }

    & li {
        margin-bottom: .5rem;
        a {
            color: #ffffff;
            text-decoration: none;
        }
    }

    & img.brand-logo {
        max-width: 300px;
    }

    & .copyright {
        font-size: .8rem;
    }
}
