@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500&family=Roboto:ital,wght@0,100;0,300;0,400;0,700;1,500&display=swap");

body {
	--color-orange: #ff8c1a;
	--color-green: #95ba45;
	--color-dark-green: #86a83e;
	--color-blue: #3778c8;
	--color-dark-blue: #26548c;
	--color-light-blue: #87aede;
	--color-red: #ff4d4d;
	--color-light-red: #ff8080;
	--color-gray: #888888;
	--color-light-gray: #eeeeee;
	--color-medium-gray: #999999;

	font-family: "Roboto", sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.75;
	background-color: #f8f8f8 !important;
	margin: 0;
	color: grey;
	text-align: left;
}

.color-light-red {
	color: var(--color-light-red);
}

.color-blue {
	color: var(--color-blue);
}

.color-light-blue {
	color: var(--color-light-blue);
}

.color-green {
	color: var(--color-green);
}

.color-red {
	color: var(--color-red);
}

.color-orange {
	color: var(--color-orange);
}

.color-gray {
	color: var(--color-gray);
}

.color-light-gray {
	color: var(--color-light-gray);
}

.color-medium-gray {
	color: var(--color-medium-gray);
}

.status-green {
	color: #009933 !important;
}

.status-red {
	color: var(--color-red) !important;
}

.status-orange {
	color: var(--color-orange) !important;
}

.bg-progress-green {
	background-color: var(--color-dark-green);
}

.bg-progress-orange {
	background-color: var(--color-orange);
}

.bg-progress-gray {
	background-color: #888888
}

.bg-light-gray {
	background-color: var(--color-light-gray);
}

/********************
 LINKS
********************/

a:link:not(.btn) {
	text-decoration: none;
	color: var(--color-blue);
}

a:hover:not(.btn) {
	text-decoration: none;
	color: var(--color-dark-blue) !important;
}

a:active:not(.btn) {
	text-decoration: none;
	color: var(--color-blue);
}

a:visited:not(.btn) {
	text-decoration: none;
	color: var(--color-blue);
}

/********************
 HEADINGS
********************/

h1 {
	font-size: 28px;
	font-weight: 400;
	text-align: center;
	color: var(--color-dark-blue);
	line-height: normal;
}

h2 {
	font-size: 19px;
	font-weight: 300;
	text-align: center;
	color: var(--color-dark-blue);
	margin-bottom: 26px;
	line-height: 150%;
}

h2:last-child {
	margin-bottom: 0;
}

h3 {
	font-size: 22px;
	font-weight: 300;
	text-align: center;
	color: var(--color-dark-blue);
	margin-bottom: 40px;
	line-height: normal;
}

h4 {
	font-size: 18px;
	font-weight: bold;
	line-height: normal;
	margin-bottom: 12px;
}

p {
	margin-bottom: 8px;
}

p + h4 {
	margin-top: 6px;
}

.sub-section-title {
	font-size: 20px;
	font-weight: 400;
	text-align: center;
	color: var(--color-dark-blue);
	line-height: normal;
	margin-bottom: 26px;
}

/********************
 HEADER
********************/

header {
	height: 100px;
	background-color: var(--color-dark-blue);
	border-bottom: 4px solid var(--color-blue);
	display: flex;
	align-items: center;
}

header img {
	height: 60px;
}

.hamburger-icon {
	color: #dddddd;
}

.hamburger-icon:hover {
	color: black;
}

/********************
 MENU : DESKTOP
********************/

.menu-items {
	padding-top: 8px;
}

.menu-item {
	display: inline-block;
	text-align: center;
	color: var(--color-light-blue);
}

.menu-item i {
	display: block;
	font-size: 18px;
	margin-bottom: 6px;
}

.menu-item a {
	color: var(--color-light-blue) !important;
}

.menu-item a:hover {
	color: white !important;
}

.menu-item.active i, .menu-item.active a {
	color: white !important;
}

.menu-item:not(:first-of-type) {
	margin-left: 20px;
}

.menu-item-group:not(:first-of-type) {
	margin-left: 20px;
	padding-left: 20px;
	border-left: 1px solid var(--color-light-blue);
}

/********************
 MENU : MOBILE
********************/

header .dropdown .btn.dropdown-toggle::after {
	content: none;
}

header .dropdown .btn {
	padding: 0;
	border: none;
}

header .dropdown .btn i {
	font-size: 30px;
	color: var(--color-light-blue);
	line-height: 0;
}

header .dropdown a:hover {
	background-color: #ebf2fa;
}

header .dropdown a.active {
	background-color: #ebf2fa;
}

/********************
 MOBILE MENU ITEMS
********************/

/*.offcanvas-header {*/
/*    background-color: var(--color-dark-blue)*/
/*}*/

/*.offcanvas-header .title {*/
/*    font-size: 20px;*/
/*    color: white;*/
/*}*/

/*.offcanvas a {*/
/*    font-size: 20px;*/
/*    margin-left: 0 !important;*/
/*    color: var(--color-blue) !important;*/
/*}*/

/*.offcanvas a:hover {*/
/*    color: var(--color-dark-blue) !important;*/
/*}*/

/*.offcanvas a:not(:last-of-type) {*/
/*    margin-bottom: 16px !important;*/
/*}*/

/*.offcanvas a.active {*/
/*    font-weight: bold;*/
/*    color: var(--color-dark-blue) !important;*/
/*}*/

/********************
 SPLASH
********************/

.splash {
	min-height: 260px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url("../img/splash.jpg");
	border-bottom: 4px solid var(--color-dark-blue);
	display: flex;
	justify-content: center;
	align-items: center;
}

.splash-text {
	display: inline-block;
	font-family: "Raleway", sans-serif;
	font-size: 40px;
	font-weight: 300;
	color: white;
	text-shadow: 4px 4px 6px #000000;
}

/********************
 SECTION
********************/

section {
	padding: 40px 0 40px 0;
}

@media only screen and (max-width: 1200px) {
	section:last-of-type {
		padding-bottom: 200px;
	}
}

section.banner {
	color: #afc9e9;
	background-color: #2c60a0;
	padding: 9px 0;
}

section.banner-beta {
	background-color: #f8f8f8;
	padding: 8px 0 10px 0;
}

section.banner-beta .tag-duos {
	margin: 0 !important;
}

section.banner-beta .tag-duo {
	font-size: 12px;
}

section.dark {
	background-color: #f2f2f2;
}

section.darker {
	background-color: #dddddd;
}

section.intro {
	text-align: center;
}

section.intro .intro-icon {
	color: var(--color-blue);
	font-size: 46px;
	margin-bottom: 30px;
}

section.intro h1 {

}

section.intro h2 {
	margin-top: 20px;
}

section.intro p {
	margin-top: 20px;
	margin-bottom: 0;
}

section.intro .tag-duos:last-child {
	margin-bottom: -8px;
}

/********************
 BREADCRUMBS
********************/

.breadcrumbs {
	margin-top: 12px;
	margin-bottom: 26px;
}

/*.breadcrumb {*/
/*    white-space: nowrap;*/
/*    overflow: hidden;*/
/*    text-overflow: ellipsis;*/
/*}*/

.breadcrumb a {
	text-decoration: none;
}

.breadcrumb a:hover {
	text-decoration: underline;
}

/*.breadcrumb {*/
/*    margin-bottom: 0;*/
/*}*/

.breadcrumb-item.active {
	/*color: rgba(255, 255, 255, 0.6) !important;*/
}

.breadcrumb-item + .breadcrumb-item::before {
	color: #aaaaaa;
}

/********************
 FORM
********************/

.form-fields {
	margin-bottom: -10px !important;
}

.form-field {
	margin-bottom: 10px;
}

label {
	color: #999999;
	font-size: 15px;
	margin-bottom: 6px;
	display: block;
}

.form-buttons {
	margin-top: 16px;
}

.form-buttons-group {
	display: flex;
	gap: 5px;
}

.form-buttons .btn:not(:first-child) {
	margin-left: 6px;
}

.form-fields + .form-buttons-bottom-between {
	margin-top: 15px;
}

.form-buttons-bottom-between {
	margin-top: 5px;
	display: flex;
	justify-content: space-between;
}

/********************
 QUALIFICATION CARD
********************/

.qualification-card .card-status {
	display: flex;
	align-items: center;
	height: 80px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	padding: 0 20px;
	background-color: var(--color-blue);
}

.qualification-card .card-status i {
	color: white !important;
	font-size: 30px;
	margin-right: 10px;
}

.qualification-card .card-status .title {
	font-size: 20px;
	font-weight: 500;
	color: white !important;
	margin-bottom: 0;
}

.qualification-card .card-status.complete {
	background-image: linear-gradient(45deg, #86a83e, var(--color-green));
}

.qualification-card .card-status.in-progress {
	background-image: linear-gradient(45deg, #ff8000, var(--color-orange));
}

.qualification-card .card-body {
	color: black !important;
	text-align: start;
	padding: 20px;
	background-color: #fbfbfb;
	border-radius: inherit !important;
}

.qualification-card .card-body .title {
	font-size: 18px !important;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 0;
}

.qualification-card .card-body .description {
	color: #888888;
	font-weight: normal;
}

/********************
 CERTIFICATION CARD
********************/

.certification-card .card-body {
	color: black !important;
	text-align: start;
	padding: 20px;
	background-color: #fbfbfb;
	border-radius: inherit !important;
}

.certification-card .title {
	font-size: 16px !important;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 0;
}

.certification-card .description {
	color: #888888;
	font-weight: normal;
	margin-top: 8px;
}

/********************
 JURISDICTION CARD
********************/

.jurisdiction-card .card-body {
	text-align: start;
	padding: 20px;
	border-radius: inherit !important;
}

.jurisdiction-card .title {
	font-size: 18px !important;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 0;
}

.jurisdiction-card .description {
	color: #888888;
	font-weight: normal;
	margin-top: 8px;
}

.jurisdiction-button {
	font-size: 13px;
	width: 100%;
	border-radius: 6px;
	height: 50px;

	color: white;
	background-color: var(--color-blue);
}

.jurisdiction-button:hover {
	color: white;
	background-color: #316cb4;
}

.jurisdiction-button:disabled {
	color: white;
	background-color: var(--color-green) !important;
	cursor: default;
}

/********************
 TAG
********************/

.tag {
	display: inline;
	font-size: 14px;
	background-color: #e5edfe;
	border-radius: 5px;
	padding: 6px 12px 7px 12px;
	color: #426abc;
}

h2 + .tag {
	margin-top: 28px;
}

/*.tag + .alerts {*/
/*    margin-top: 24px;*/
/*}*/

.tag + .alert-box {
	margin-top: 40px;
}

.tag:not(:first-of-type) {
	margin-left: 6px;
}

/********************
 TAG DUO
********************/

.tag-duos {
	font-size: 14px;
}

.tag-duos + .alert {
	margin-top: 24px;
}

.tag-duos + .alert-box {
	margin-top: 40px;
}

.tag-duos + div[class^="animate"] {
	margin-top: 40px;
}

.tag-duo {
	display: inline-block;
	margin-bottom: 12px;
}

.tag-duo-title {
	background-color: var(--color-blue);
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	padding: 6px 12px 7px 12px;
	color: white;
}

.tag-duo-description {
	background-color: var(--color-light-blue);
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	padding: 6px 12px 7px 12px;
	color: white;
}

.tag-duo:not(:first-of-type) {
	margin-left: 6px;
}

.tag-duo.gray .tag-duo-title {
	background-color: #aaaaaa;
}

.tag-duo.gray .tag-duo-description {
	background-color: #bbbbbb;
}

.tag-duo.orange .tag-duo-title {
	background-color: #ff751a;
}

.tag-duo.orange .tag-duo-description {
	background-color: #ff944d;
}

.tag-duo.red .tag-duo-title {
	background-color: #ff4d4d;
}

.tag-duo.red .tag-duo-description {
	background-color: #ff8080;
}

.tag-duo.green .tag-duo-title {
	background-color: #009900;
}

.tag-duo.green .tag-duo-description {
	background-color: #00b300;
}

.tag-duo.action:hover .tag-duo-title {
	background-color: var(--color-dark-blue);
}

.tag-duo.action:hover .tag-duo-description {
	background-color: var(--color-blue);
}

/********************
 TAG SIMPLE
********************/

.tag-simple {
	display: inline;
	font-size: 14px;
	color: white;
	background-color: #999999;
	border-radius: 8px;
	padding: 4px 10px 4px 10px;
}

.tag-simple.outline.gray {
	color: #555555;
	background-color: inherit;
	border: 1px solid #999999;
}

.tag-simple.green {
	background-color: var(--color-green);
}

.tag-simple.orange {
	background-color: var(--color-orange);
}

.tag-simple.red {
	background-color: var(--color-red);
}

/********************
 ALERT
********************/

.alerts {
	margin-top: 16px;
}

.alert {
	margin-bottom: 0;
	text-align: left;
	font-size: 16px;

	color: #0275d8;
	background-color: #ebf2fa !important;
	border: 1px solid #99c2ff;
	border-radius: 10px;
}

.alert:not(:last-child) {
	margin-bottom: 16px;
}

.alert-dismissible .btn-close {
	top: 3px !important;
	font-size: 13px;
}

/*div[class^="animate"] .alert {*/
/*    margin-bottom: 16px;*/
/*}*/

/*div[class^="animate"]:last-child .alert {*/
/*    margin-bottom: 0;*/
/*}*/

.alert.alert-primary {
	background-color: #ebf2fa !important;
	border: 1px solid #99c2ff;
}

.alert.alert-primary.interactive:hover {
	background-color: #d6e4f5 !important;
	border: 1px solid #99c2ff;
	cursor: pointer;
}

.alert.alert-success {
	color: #00802b;
	background-color: #d6f5d6 !important;
	border: 1px solid #6fdc6f;
}

.alert.alert-success.interactive:hover {
	background-color: #adebad !important;
	border: 1px solid #6fdc6f;
	cursor: pointer;
}

.alert.alert-light {
	color: #4b86ce !important;
	background-color: white !important;
	border: 1px solid #dddddd;
}

.alert.alert-light.interactive:hover {
	background-color: #ebf2fa !important;
}

.alert.alert-danger {
	background-color: #ffebe6 !important;
	border: 1px solid #ffad99;
	color: #ff704d !important;
}

.alert.alert-danger.interactive:hover {
	background-color: #ffd6cc !important;
	border: 1px solid #ffad99;
	cursor: pointer;
}

.alert.alert-warning {
	color: #cc7a00 !important;
	background-color: #ffebcc !important;
	border: 1px solid #ffb84d;
}

.alert.alert-warning.interactive:hover {
	background-color: #ffe0b3 !important;
	border: 1px solid #ffad99;
	cursor: pointer;
}

.alert.alert-secondary {
	background-color: #f6f6f6 !important;
	border: 1px solid #dddddd;
}

.alert.alert-secondary.interactive:hover {
	background-color: #eeeeee !important;
	border: 1px solid #dddddd;
	cursor: pointer;
}

.alert-green {
	color: #009933 !important;
}

.alert-red {
	color: #ff6666 !important;
}

.alert-blue {
	color: #4b86ce !important;
}

h2 + .alert {
	margin-top: 32px;
}

.tag-duos + .alert {
	margin-top: 40px;
}

.status-card + .alert {
	margin-top: 16px;
}

/********************
 CERTIFICATION
********************/

.certification-button {
	font-size: 13px;
	width: 100%;
	border-radius: 6px;
}

.certification-button.btn-light {
	color: var(--color-blue);
	background-color: rgba(0, 0, 0, 0.04);
}

.certification-button.btn-light:hover {
	background-color: rgba(0, 0, 0, 0.08);
}

/********************
 FOOTER : DESKTOP
********************/

.footer-desktop {
	font-family: "Roboto", sans-serif;
	font-size: 12px;
	font-weight: 400;
	color: #87aede;
	background-color: #26548c;
	padding-top: 16px;
	padding-bottom: 16px;
	display: flex;
	justify-content: space-between;
}

.footer-desktop a {
	color: #87aede !important;
}

.footer-desktop a:hover {
	color: white !important;
}

.footer-desktop a.item:not(:first-child) {
	margin-left: 6px;
}

.footer-desktop div:has(> i) {
	text-align: center;
}

.footer-desktop i {
	font-size: 36px;
}

/********************
FOOTER : DESKTOP : SUB FOOTER
********************/

.sub-footer-desktop {
	margin-top: 10px;
	margin-bottom: 20px;
	text-align: center;
	font-size: 42px;
	color: white;
}

.sub-footer-desktop i {
	cursor: pointer;
}

.sub-footer-desktop .twitter {
	color: #1da1f2;
}

.sub-footer-desktop .linked-in {
	color: #0072b1;
}

.sub-footer-desktop .social-media-icon:not(:first-of-type) {
	margin-left: 6px;
}

/********************
 FOOTER : MOBILE
********************/

.footer-mobile {
	background-color: #26548c;
	padding-top: 24px;
	padding-bottom: 20px;
	text-align: center;
}

.footer-mobile .menu {
	margin-bottom: 10px;
}

.footer-mobile a.mobile-menu-item {
	font-size: 30px;
	color: var(--color-light-blue);
	cursor: pointer;
}

.footer-mobile a.mobile-menu-item.active {
	color: white;
}

.footer-mobile a.mobile-menu-item:hover {
	color: white;
}

.footer-mobile a.mobile-menu-item:not(:first-child) {
	margin-left: 40px;
}

.footer-mobile .disclaimer a {
	font-size: 13px;
	color: var(--color-light-blue);
}

.footer-mobile .disclaimer a:hover {
	color: white;
}

/* grid */

.row-error {
	color: red;
	background-color: #ffe6e6;
}

/* btn-grid-link override */

.btn-grid-link:disabled {
	background-color: transparent;
	border: none;
	color: inherit;
	cursor: not-allowed;
	opacity: 0.5;
}

/* accordion */

.accordion-section {
	padding-bottom: 20px;
}

.accordion-section:last-child {
	padding-bottom: 0;
}

.accordion-section .title {
	color: var(--color-dark-blue);
	font-weight: bold;
	border-bottom: 2px solid #b5ccfc;
	padding-bottom: 1px;
	margin-bottom: 20px;
}

/* metric */

.metrics {
	padding-top: 0;
}

.metric {
	background: linear-gradient(90deg, #316cb4 0%, #4b86ce 100%) !important;
	color: white;
	padding: 16px;
	border-radius: 8px;
}

.metric.danger {
	background: linear-gradient(90deg, rgba(255, 77, 77, 1) 0%, rgba(255, 102, 102, 1) 100%) !important;
}

.metric .value {
	font-size: 26px;
}

.metric .description {
	margin-top: 6px;
}

.metric i {
	font-size: 21px;
	color: rgba(255, 255, 255, .3);
}

.ql-editor {
	font-size: 18px;
}

.ql-toolbar.ql-snow {
	padding-bottom: 12px;
}

.ql-formats {
	margin-right: 0 !important;
}

.ql-formats:not(:first-child) {
	margin-left: 8px;
	padding-left: 14px;
	border-left: 1px solid #cccccc;
}

.empty-pane-message {
	text-align: center;
	color: #999999;
	font-size: 16px;
	padding: 14px 0;
}

.interactive {
	cursor: pointer;
}

.draggable:hover {
	cursor: move !important;
}

.btn-banner {
	font-size: 14px;
	padding: 4px 10px;
}

/********************
 QUICK SEARCH
********************/

.quick-search {
	margin-bottom: 16px;
}

.quick-search dxbl-combobox {
	padding: 4px !important;
	border-radius: 10px;
}

.examiner-checklist-container {
	background-color: #f7f7f7;
	padding: 16px;
	border: 1px solid #dedede;
	border-radius: 8px;
}

/* tooltip*/

.my-tooltip {
	position: relative;
	display: inline-block;
	cursor: help;
	color: var(--color-blue);
}

.my-tooltip .my-tooltip-text {
	visibility: hidden;
	width: 200px;
	bottom: 100%;
	left: 50%;
	background-color: var(--color-blue);
	color: #ffffff;
	text-align: center;
	padding: 12px;
	border-radius: 6px;
	margin-left: -100px; /* Use half of the width (120/2 = 60), to center the tooltip */
	margin-bottom: 8px;

	position: absolute;
	z-index: 1;
}

.my-tooltip:hover .my-tooltip-text {
	visibility: visible;
	line-height: 150%;
}

i.interactive:hover {
	color: var(--color-blue);
}

.grid-buttons-top {
	text-align: right;
	margin-bottom: 16px;
}

.grid-buttons-bottom {
	display: flex;
	margin-top: 15px;
	gap: 8px;
}

.grid-buttons-bottom-between {
	margin-top: 15px;
	display: flex;
	justify-content: space-between;
}

/* quick search */

.search-results {
	width: 100%;
	overflow-y: scroll;
}

.search dxbl-input-editor {
	min-height: 70px;
	font-size: 18px !important;
	border-radius: 8px;
}

.search-category {
	padding-bottom: 8px;
	padding-left: 6px;
	border-bottom: 1px solid #dddddd;
	font-weight: bold;
}

.search-category:not(:first-of-type) {
	margin-top: 12px;
}

.search-result {
	width: 100%;
	padding: 6px;
}

.search-result:hover {
	cursor: pointer;
	background-color: #f6f6f6;
	border-radius: 6px;
}

/* Hide scrollbar for Chrome, Safari and Opera */

.search-results::-webkit-scrollbar {
	display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */

.search-results {
	-ms-overflow-style: none; /* IE and Edge */
	scrollbar-width: none; /* Firefox */
}

.fade-in {
	animation: fadeInAnimation ease 3s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	animation-duration: 1s;
}

@keyframes fadeInAnimation {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.html p {
	margin-top: 6px !important;
}

.html ol {
	padding-top: 4px;
	margin-bottom: 0 !important;
}

.html ul {
	padding-top: 4px;
	margin-bottom: 0 !important;
}

/********************
 announcements
********************/

.announcements {
	padding: 20px; 
	background-color: #87aede;
	border-bottom: 4px solid var(--color-blue);
}

.announcement {
	border-radius: 10px; 
	background-color: white; 
	padding: 20px;
}

.announcement:not(:first-child) {
	margin-top: 20px;
}

.announcement .icon {
	font-size: 28px;
	padding-right: 0;
	color: var(--color-light-blue);
}

.announcement .description {
	
}

/********************
 tutorial
********************/

.tutorial-collapsed {
	margin: 16px 0;
	padding: 16px 48px 16px 16px;
	border-radius: 10px;
	text-align: left;
	cursor: pointer;
	border: 1px solid #99c2ff;
	background-color: #ebf2fa;
}

.tutorial-collapsed:hover {
	background-color: #d6e4f5 !important;
}

.tutorial {
	margin: 16px 0;
	background-color: white;
	padding: 30px;
	border: 1px solid #99c2ff;
	border-radius: 12px;
	text-align: left;
}

.tutorial p:first-of-type {
	margin-top: 0;
}

.tutorial .intro {
	border-bottom: 1px solid #99c2ff;
	color: var(--color-blue);
	padding-bottom: 4px;
	font-size: 22px;
}

.tutorial .intro i {
	font-size: 40px;
	color: var(--color-blue);
}

.tutorial .content {
	margin-top: 8px;
}

/********************
 notes
********************/

/*.note .dxbl-grid {*/
/*	max-height: 100%;*/
/*}*/

/*.note .dxbl-grid tr {*/
/*	border: none;*/
/*}*/

.note {
	background-color: #f6f6f6;
}

.note.not-flagged {
	
}

.note.not-flagged i.flag {
	color: #ccc;
}

.note.flagged {
	background-color: #eee;
}

.note.flagged i.flag {
	color: #ff6666;
}

/********************
 Banner
********************/
.impersonation-banner {
	background-color: #ff4d4d;
	color: white;
	padding: 10px 20px;
	text-align: center;
}

/********************
 Import popup
********************/

.import-edit-form {
	width: 800px !important;
	max-width: 800px !important;
}