;
+
+ beforeEach(async () => {
+ await TestBed.configureTestingModule({
+ imports: [SideBarComponent]
+ })
+ .compileComponents();
+
+ fixture = TestBed.createComponent(SideBarComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/frontend-app/harness-webapp/src/app/side-bar/side-bar.component.ts b/frontend-app/harness-webapp/src/app/side-bar/side-bar.component.ts
new file mode 100644
index 0000000..2a5db1a
--- /dev/null
+++ b/frontend-app/harness-webapp/src/app/side-bar/side-bar.component.ts
@@ -0,0 +1,12 @@
+import { Component } from '@angular/core';
+
+@Component({
+ selector: 'app-side-bar',
+ standalone: true,
+ imports: [],
+ templateUrl: './side-bar.component.html',
+ styleUrl: './side-bar.component.css'
+})
+export class SideBarComponent {
+
+}
diff --git a/frontend-app/harness-webapp/src/assets/.gitkeep b/frontend-app/harness-webapp/src/assets/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/frontend-app/harness-webapp/src/assets/canary-logo.png b/frontend-app/harness-webapp/src/assets/canary-logo.png
new file mode 100644
index 0000000..ed9b751
Binary files /dev/null and b/frontend-app/harness-webapp/src/assets/canary-logo.png differ
diff --git a/frontend-app/harness-webapp/src/assets/canary-standing.png b/frontend-app/harness-webapp/src/assets/canary-standing.png
new file mode 100644
index 0000000..e3c48cd
Binary files /dev/null and b/frontend-app/harness-webapp/src/assets/canary-standing.png differ
diff --git a/frontend-app/harness-webapp/src/assets/config.js b/frontend-app/harness-webapp/src/assets/config.js
new file mode 100644
index 0000000..7d86956
--- /dev/null
+++ b/frontend-app/harness-webapp/src/assets/config.js
@@ -0,0 +1,6 @@
+(function(window) {
+ window.__env = window.__env || {};
+
+ // Environment variables
+ window.__env.apiUrl = "http://localhost:8000";
+ })(this);
\ No newline at end of file
diff --git a/frontend-app/harness-webapp/src/assets/deployments.png b/frontend-app/harness-webapp/src/assets/deployments.png
new file mode 100644
index 0000000..a7d14e7
Binary files /dev/null and b/frontend-app/harness-webapp/src/assets/deployments.png differ
diff --git a/frontend-app/harness-webapp/src/assets/env.template.js b/frontend-app/harness-webapp/src/assets/env.template.js
new file mode 100644
index 0000000..a90d8a5
--- /dev/null
+++ b/frontend-app/harness-webapp/src/assets/env.template.js
@@ -0,0 +1,6 @@
+(function(window) {
+ window.__env = window.__env || {};
+
+ // Environment variables
+ window.__env.apiUrl = "${API_URL}";
+ })(this);
\ No newline at end of file
diff --git a/frontend-app/harness-webapp/src/assets/normal-distribution.jpg b/frontend-app/harness-webapp/src/assets/normal-distribution.jpg
new file mode 100644
index 0000000..07edf4c
Binary files /dev/null and b/frontend-app/harness-webapp/src/assets/normal-distribution.jpg differ
diff --git a/frontend-app/harness-webapp/src/assets/normal.jpg b/frontend-app/harness-webapp/src/assets/normal.jpg
new file mode 100644
index 0000000..3014e8a
Binary files /dev/null and b/frontend-app/harness-webapp/src/assets/normal.jpg differ
diff --git a/frontend-app/harness-webapp/src/assets/testing.png b/frontend-app/harness-webapp/src/assets/testing.png
new file mode 100644
index 0000000..324b8a2
Binary files /dev/null and b/frontend-app/harness-webapp/src/assets/testing.png differ
diff --git a/frontend-app/harness-webapp/src/environments/environment.ts b/frontend-app/harness-webapp/src/environments/environment.ts
new file mode 100644
index 0000000..de406bc
--- /dev/null
+++ b/frontend-app/harness-webapp/src/environments/environment.ts
@@ -0,0 +1,6 @@
+export const environment = {
+ production: false,
+ defaultApiUrl: 'http://localhost:8000', // Default API URL for development
+ defaultSDKKey: '7aec20a0-d867-42fa-8979-609f80937411'
+ };
+
diff --git a/frontend-app/harness-webapp/src/favicon.ico b/frontend-app/harness-webapp/src/favicon.ico
new file mode 100644
index 0000000..58abdc4
Binary files /dev/null and b/frontend-app/harness-webapp/src/favicon.ico differ
diff --git a/frontend-app/harness-webapp/src/index.html b/frontend-app/harness-webapp/src/index.html
new file mode 100644
index 0000000..6aa4c1d
--- /dev/null
+++ b/frontend-app/harness-webapp/src/index.html
@@ -0,0 +1,18 @@
+
+
+
+
+ HarnessWebapp
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/frontend-app/harness-webapp/src/main.server.ts b/frontend-app/harness-webapp/src/main.server.ts
new file mode 100644
index 0000000..4b9d4d1
--- /dev/null
+++ b/frontend-app/harness-webapp/src/main.server.ts
@@ -0,0 +1,7 @@
+import { bootstrapApplication } from '@angular/platform-browser';
+import { AppComponent } from './app/app.component';
+import { config } from './app/app.config.server';
+
+const bootstrap = () => bootstrapApplication(AppComponent, config);
+
+export default bootstrap;
diff --git a/frontend-app/harness-webapp/src/main.ts b/frontend-app/harness-webapp/src/main.ts
new file mode 100644
index 0000000..e3cb0b2
--- /dev/null
+++ b/frontend-app/harness-webapp/src/main.ts
@@ -0,0 +1,7 @@
+import { bootstrapApplication } from '@angular/platform-browser';
+import { appConfig } from './app/app.config';
+import { AppComponent } from './app/app.component';
+import { NgxChartsModule } from '@swimlane/ngx-charts';
+
+bootstrapApplication(AppComponent, appConfig)
+ .catch((err) => console.error(err));
diff --git a/frontend-app/harness-webapp/src/styles.css b/frontend-app/harness-webapp/src/styles.css
new file mode 100644
index 0000000..32f5d4d
--- /dev/null
+++ b/frontend-app/harness-webapp/src/styles.css
@@ -0,0 +1,36360 @@
+/* You can add global styles to this file, and also import other style files */
+/* You can add global styles to this file, and also import other style files */
+@import "../node_modules/bootstrap/dist/css/bootstrap.css";
+
+@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600;700&display=swap');
+/*!
+ * Bootstrap v4.4.1 (https://getbootstrap.com/)
+ * Copyright 2011-2019 The Bootstrap Authors
+ * Copyright 2011-2019 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */ /*!
+ * Bootstrap v4.4.1 (https://getbootstrap.com/)
+ * Copyright 2011-2019 The Bootstrap Authors
+ * Copyright 2011-2019 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */
+
+ .off-text {
+ background-color: #cdf4fe;
+ color: #0278d5;
+}
+
+.on-text {
+ background-color: #bdeab7;
+ color: #1e5c1f;
+}
+
+
+
+
+.credential_picker_container{
+ z-index: 0 !important;
+}
+.spinner {
+ animation: rotate 2s linear infinite;
+ z-index: 2;
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ margin: -25px 0 0 -25px;
+ width: 50px;
+ height: 50px;
+}
+ .spinner .path {
+ stroke: #93bfec;
+ stroke-linecap: round;
+ animation: dash 1.5s ease-in-out infinite;
+}
+ @keyframes rotate {
+ 100% {
+ transform: rotate(360deg);
+ }
+}
+ @keyframes dash {
+ 0% {
+ stroke-dasharray: 1, 150;
+ stroke-dashoffset: 0;
+ }
+ 50% {
+ stroke-dasharray: 90, 150;
+ stroke-dashoffset: -35;
+ }
+ 100% {
+ stroke-dasharray: 90, 150;
+ stroke-dashoffset: -124;
+ }
+}
+
+
+.footer-buttons{
+ display:flex;
+ justify-content: flex-end;
+ margin-left: auto;
+ margin-right: 10px;
+}
+
+
+ @supports (-webkit-appearance: none) or (-moz-appearance: none) {
+ input[type='checkbox'], input[type='radio'] {
+ --active: #0677D4;
+ --active-inner: #fff;
+ --focus: 2px rgba(39, 94, 254, .3);
+ --border: #bbc1e1;
+ --border-hover: #0677D4;
+ --background: #fff;
+ --disabled: #f6f8ff;
+ --disabled-inner: #e1e6f9;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ height: 21px;
+ outline: none;
+ display: inline-block;
+ vertical-align: top;
+ position: relative;
+ margin: 0;
+ cursor: pointer;
+ border: 1px solid var(--bc, var(--border));
+ background: var(--b, var(--background));
+ transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
+ }
+ input[type='checkbox']:after, input[type='radio']:after {
+ content: '';
+ display: block;
+ left: 0;
+ top: 0;
+ position: absolute;
+ transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
+ }
+ input[type='checkbox']:checked, input[type='radio']:checked {
+ --b: var(--active);
+ --bc: var(--active);
+ --d-o: 0.3s;
+ --d-t: 0.6s;
+ --d-t-e: cubic-bezier(0.2, 0.85, 0.32, 1.2);
+ }
+ input[type='checkbox']:disabled, input[type='radio']:disabled {
+ --b: var(--disabled);
+ cursor: not-allowed;
+ opacity: 0.9;
+ }
+ input[type='checkbox']:disabled:checked, input[type='radio']:disabled:checked {
+ --b: var(--disabled-inner);
+ --bc: var(--border);
+ }
+ input[type='checkbox']:disabled + label, input[type='radio']:disabled + label {
+ cursor: not-allowed;
+ }
+ input[type='checkbox']:hover:not(:checked):not(:disabled), input[type='radio']:hover:not(:checked):not(:disabled) {
+ --bc: var(--border-hover);
+ }
+ input[type='checkbox']:focus, input[type='radio']:focus {
+ box-shadow: 0 0 0 var(--focus);
+ }
+ input[type='checkbox']:not(.switch), input[type='radio']:not(.switch) {
+ width: 21px;
+ }
+ input[type='checkbox']:not(.switch):after, input[type='radio']:not(.switch):after {
+ opacity: var(--o, 0);
+ }
+ input[type='checkbox']:not(.switch):checked, input[type='radio']:not(.switch):checked {
+ --o: 1;
+ }
+ input[type='checkbox'] + label, input[type='radio'] + label {
+ font-size: 14px;
+ line-height: 21px;
+ display: inline-block;
+ vertical-align: top;
+ cursor: pointer;
+ margin-left: 4px;
+ }
+ input[type='checkbox']:not(.switch) {
+ border-radius: 7px;
+ }
+ input[type='checkbox']:not(.switch):after {
+ width: 5px;
+ height: 9px;
+ border: 2px solid var(--active-inner);
+ border-top: 0;
+ border-left: 0;
+ left: 7px;
+ top: 4px;
+ transform: rotate(var(--r, 20deg));
+ }
+ input[type='checkbox']:not(.switch):checked {
+ --r: 43deg;
+ }
+ input[type='checkbox'].switch {
+ width: 38px;
+ border-radius: 11px;
+ }
+ input[type='checkbox'].switch:after {
+ left: 2px;
+ top: 2px;
+ border-radius: 50%;
+ width: 15px;
+ height: 15px;
+ background: var(--ab, var(--border));
+ transform: translateX(var(--x, 0));
+ }
+ input[type='checkbox'].switch:checked {
+ --ab: var(--active-inner);
+ --x: 17px;
+ }
+ input[type='checkbox'].switch:disabled:not(:checked):after {
+ opacity: 0.6;
+ }
+ input[type='radio'] {
+ border-radius: 50%;
+ }
+ input[type='radio']:after {
+ width: 19px;
+ height: 19px;
+ border-radius: 50%;
+ background: var(--active-inner);
+ opacity: 0;
+ transform: scale(var(--s, 0.7));
+ }
+ input[type='radio']:checked {
+ --s: 0.5;
+ }
+}
+
+
+
+ dl,
+ h1,
+ h2,
+ h3,
+ h4,
+ h5,
+ h6,
+ ol,
+ p,
+ pre,
+ ul {
+ margin-top: 0;
+ }
+ address,
+ dl,
+ ol,
+ p,
+ pre,
+ ul {
+ margin-bottom: 1rem;
+ }
+ img,
+ svg {
+ vertical-align: middle;
+ }
+ body,
+ caption {
+ color: #404e67;
+ text-align: left;
+ }
+ dd,
+ h1,
+ h2,
+ h3,
+ h4,
+ h5,
+ h6,
+ label {
+ margin-bottom: 0.5rem;
+ }
+ pre,
+ textarea {
+ overflow: auto;
+ }
+ article,
+ aside,
+ figcaption,
+ figure,
+ footer,
+ header,
+ hgroup,
+ legend,
+ main,
+ nav,
+ section {
+ display: block;
+ }
+ address,
+ legend {
+ line-height: inherit;
+ }
+ progress,
+ sub,
+ sup {
+ vertical-align: baseline;
+ }
+ label,
+ output {
+ display: inline-block;
+ }
+ button,
+ hr,
+ input {
+ overflow: visible;
+ }
+ .card,
+ code {
+ word-wrap: break-word;
+ }
+ .dropdown-menu,
+ .nav,
+ .navbar-nav {
+ list-style: none;
+ }
+ :root {
+ --blue: #2dcee3;
+ --indigo: #6610f2;
+ --purple: #6f42c1;
+ --pink: #e83e8c;
+ --red: #F08080;
+ --orange: #ffa87d;
+ --yellow: #ffc107;
+ --green: #16d39a;
+ --teal: #20c997;
+ --cyan: #0677D4;
+ --white: #ffffff;
+ --gray: #404e67;
+ --gray-dark: #1b2942;
+ --primary: #0677D4;
+ --secondary: #404e67;
+ --success: #16d39a;
+ --info: #2dcee3;
+ --warning: #ffa87d;
+ --danger: #F08080;
+ --light: #babfc7;
+ --dark: #1b2942;
+ --breakpoint-xs: 0;
+ --breakpoint-sm: 576px;
+ --breakpoint-md: 768px;
+ --breakpoint-lg: 992px;
+ --breakpoint-xl: 1200px;
+ --breakpoint-xxl: 1400px;
+ --font-family-sans-serif: sans-serif;
+ --font-family-monospace: Inter,sans-serif;
+ }
+ *,
+ ::after,
+ ::before {
+ box-sizing: border-box;
+ }
+ html {
+ font-family: sans-serif;
+ line-height: 1.15;
+ -webkit-text-size-adjust: 100%;
+ -webkit-tap-highlight-color: transparent;
+ }
+ body {
+ margin: 0;
+ font-family: sans-serif;
+ font-size: 1rem;
+ font-weight: 400;
+ line-height: 1.45;
+ background-color: #f5f7fa;
+ }
+ [tabindex="-1"]:focus:not(:focus-visible) {
+ outline: 0 !important;
+ }
+ abbr[data-original-title],
+ abbr[title] {
+ -webkit-text-decoration: underline dotted;
+ text-decoration: underline dotted;
+ cursor: help;
+ border-bottom: 0;
+ -webkit-text-decoration-skip-ink: none;
+ text-decoration-skip-ink: none;
+ }
+ .breadcrumb-item + .breadcrumb-item:hover::before,
+ .btn-link,
+ .btn-link.focus,
+ .btn-link:focus,
+ .btn-link:hover,
+ .btn:hover,
+ .card-link:hover,
+ .dropdown-item:focus,
+ .dropdown-item:hover,
+ .list-group-item-action:focus,
+ .list-group-item-action:hover,
+ .nav-link:focus,
+ .nav-link:hover,
+ .navbar-brand:focus,
+ .navbar-brand:hover,
+ .navbar-toggler:focus,
+ .navbar-toggler:hover,
+ .page-link:hover,
+ a,
+ a.badge:focus,
+ a.badge:hover,
+ a:hover,
+ a:not([href]),
+ a:not([href]):hover {
+ text-decoration: none;
+ }
+ .btn,
+ [type="button"]:not(:disabled),
+ [type="reset"]:not(:disabled),
+ [type="submit"]:not(:disabled),
+ button:not(:disabled),
+ summary {
+ cursor: pointer;
+ }
+ address {
+ font-style: normal;
+ }
+ ol ol,
+ ol ul,
+ ul ol,
+ ul ul {
+ margin-bottom: 0;
+ }
+ dt {
+ font-weight: 700;
+ }
+ dd {
+ margin-left: 0;
+ }
+ blockquote,
+ figure {
+ margin: 0 0 1rem;
+ }
+ b,
+ strong {
+ font-weight: bolder;
+ }
+ small {
+ font-size: 80%;
+ }
+ sub,
+ sup {
+ position: relative;
+ font-size: 75%;
+ line-height: 0;
+ }
+ sub {
+ bottom: -0.25em;
+ }
+ sup {
+ top: -0.5em;
+ }
+ a {
+ color: #0278d5;
+ background-color: transparent;
+ }
+ a:hover {
+ color: #0278d5;
+ }
+ a:not([href]),
+ a:not([href]):hover {
+ color: inherit;
+ }
+ code,
+ kbd,
+ pre,
+ samp {
+ font-family: Inter,sans-serif;
+ font-size: 1em;
+ }
+ img {
+ border-style: none;
+ }
+ svg {
+ overflow: hidden;
+ }
+ table {
+ border-collapse: collapse;
+ }
+ caption {
+ padding-top: 0.75rem;
+ padding-bottom: 0.75rem;
+ caption-side: bottom;
+ }
+ th {
+ text-align: inherit;
+ }
+ button {
+ border-radius: 0;
+ }
+ button:focus {
+ outline: dotted 1px;
+ outline: -webkit-focus-ring-color auto 5px;
+ }
+ button,
+ input,
+ optgroup,
+ select,
+ textarea {
+ margin: 0;
+ font-family: inherit;
+ font-size: inherit;
+ line-height: inherit;
+ }
+ button,
+ select {
+ text-transform: none;
+ }
+ select {
+ word-wrap: normal;
+ }
+ [type="button"],
+ [type="reset"],
+ [type="submit"],
+ button {
+ -webkit-appearance: button;
+ }
+ [type="button"]::-moz-focus-inner,
+ [type="reset"]::-moz-focus-inner,
+ [type="submit"]::-moz-focus-inner,
+ button::-moz-focus-inner {
+ padding: 0;
+ border-style: none;
+ }
+ input[type="checkbox"],
+ input[type="radio"] {
+ box-sizing: border-box;
+ padding: 0;
+ }
+ input[type="date"],
+ input[type="time"],
+ input[type="datetime-local"],
+ input[type="month"] {
+ -webkit-appearance: listbox;
+ }
+ textarea {
+ resize: vertical;
+ }
+ fieldset {
+ min-width: 0;
+ padding: 0;
+ margin: 0;
+ border: 0;
+ }
+ legend {
+ width: 100%;
+ max-width: 100%;
+ padding: 0;
+ margin-bottom: 0.5rem;
+ font-size: 1.5rem;
+ color: inherit;
+ white-space: normal;
+ }
+ .badge,
+ .dropdown-header,
+ .dropdown-item,
+ .dropdown-toggle,
+ .input-group-text,
+ .navbar-brand,
+ .progress-bar {
+ white-space: nowrap;
+ }
+ [type="number"]::-webkit-inner-spin-button,
+ [type="number"]::-webkit-outer-spin-button {
+ height: auto;
+ }
+ [type="search"] {
+ outline-offset: -2px;
+ -webkit-appearance: none;
+ }
+ [type="search"]::-webkit-search-decoration {
+ -webkit-appearance: none;
+ }
+ ::-webkit-file-upload-button {
+ font: inherit;
+ -webkit-appearance: button;
+ }
+ .display-1,
+ .display-2,
+ .display-3,
+ .display-4 {
+ line-height: 1.2;
+ }
+ .display-1,
+ .display-2,
+ .display-3,
+ .display-4,
+ .lead,
+ .small,
+ small {
+ font-weight: 400;
+ }
+ .custom-range,
+ .custom-select {
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ }
+ summary {
+ display: list-item;
+ }
+ template {
+ display: none;
+ }
+ [hidden] {
+ display: none !important;
+ }
+
+ h6 {
+ margin-bottom: 0.2rem;
+ font-family: Inter,sans-serif;
+ font-weight: 400;
+ line-height: 1.2;
+ color: #0278d5;;
+ }
+ .blockquote,
+ hr {
+ margin-bottom: 1rem;
+ }
+ .h1,
+ h1 {
+ font-size: 2rem;
+ }
+ .h2,
+ h2 {
+ font-size: 1.74rem;
+ }
+ .h3,
+ h3 {
+ font-size: 1.51rem;
+ }
+ .h4,
+ h4 {
+ font-size: 1.32rem;
+ }
+ .h5,
+ h5 {
+ font-size: 0.9rem;
+ }
+ .h6,
+ h6 {
+ font-size: 1rem;
+ }
+ .lead {
+ font-size: 1.25rem;
+ }
+ .display-1 {
+ font-size: 6rem;
+ }
+ .display-2 {
+ font-size: 5.5rem;
+ }
+ .display-3 {
+ font-size: 4.5rem;
+ }
+ .display-4 {
+ font-size: 3.5rem;
+ }
+ hr {
+ box-sizing: content-box;
+ height: 0;
+ margin-top: 1rem;
+ border: 0;
+ border-top: 1px solid rgba(0, 0, 0, 0.1);
+ }
+ .img-fluid,
+ .img-thumbnail {
+ max-width: 100%;
+ height: auto;
+ }
+ .small,
+ small {
+ font-size: 80%;
+ }
+ .mark,
+ mark {
+ padding: 0.2em;
+ background-color: #fcf8e3;
+ }
+ .img-thumbnail,
+ kbd {
+ background-color: #f5f7fa;
+ }
+ .list-inline,
+ .list-unstyled {
+ padding-left: 0;
+ list-style: none;
+ }
+ .list-inline-item {
+ display: inline-block;
+ }
+ .list-inline-item:not(:last-child) {
+ margin-right: 0.5rem;
+ }
+ .initialism {
+ font-size: 90%;
+ text-transform: uppercase;
+ }
+ .blockquote {
+ font-size: 1.25rem;
+ }
+ .blockquote-footer {
+ display: block;
+ font-size: 80%;
+ color: #404e67;
+ }
+ code,
+ kbd {
+ font-size: 90%;
+ }
+ .blockquote-footer::before {
+ content: "\2014\00A0";
+ }
+ .img-thumbnail {
+ padding: 0.25rem;
+ border: 1px solid #ddd;
+ border-radius: 0.25rem;
+ }
+ .figure {
+ display: inline-block;
+ }
+ .figure-img {
+ margin-bottom: 0.5rem;
+ line-height: 1;
+ }
+ .figure-caption {
+ font-size: 90%;
+ color: #404e67;
+ }
+ a > code,
+ pre code {
+ color: inherit;
+ }
+ code {
+ color: #e83e8c;
+ }
+ kbd {
+ padding: 0.2rem 0.4rem;
+ color: #fff;
+ border-radius: 0.21rem;
+ }
+ kbd kbd {
+ padding: 0;
+ font-size: 100%;
+ font-weight: 700;
+ }
+ .container,
+ .container-fluid,
+ .container-lg,
+ .container-md,
+ .container-sm,
+ .container-xl,
+ .container-xxl {
+ padding-right: 15px;
+ padding-left: 15px;
+ margin-right: auto;
+ margin-left: auto;
+ width: 100%;
+ }
+ .btn,
+ .btn-link,
+ .custom-select,
+ .dropdown-item,
+ .form-control,
+ .input-group-text {
+ font-weight: 400;
+ }
+ pre {
+ display: block;
+ font-size: 90%;
+ color: #404e67;
+ }
+ pre code {
+ font-size: inherit;
+ word-break: normal;
+ }
+ .table,
+ .table-hover tbody tr:hover {
+ color: #404e67;
+ }
+ .pre-scrollable {
+ max-height: 340px;
+ overflow-y: scroll;
+ }
+ @media (min-width: 576px) {
+ .container {
+ max-width: 540px;
+ }
+ }
+ @media (min-width: 768px) {
+ .container {
+ max-width: 720px;
+ }
+ }
+ @media (min-width: 992px) {
+ .container {
+ max-width: 960px;
+ }
+ }
+ @media (min-width: 1200px) {
+ .container {
+ max-width: 1140px;
+ }
+ }
+ @media (min-width: 1400px) {
+ .container {
+ max-width: 1340px;
+ }
+ }
+ @media (min-width: 576px) {
+ .container,
+ .container-sm {
+ max-width: 540px;
+ }
+ }
+ @media (min-width: 768px) {
+ .container,
+ .container-md,
+ .container-sm {
+ max-width: 720px;
+ }
+ }
+ @media (min-width: 992px) {
+ .container,
+ .container-lg,
+ .container-md,
+ .container-sm {
+ max-width: 960px;
+ }
+ }
+ @media (min-width: 1200px) {
+ .container,
+ .container-lg,
+ .container-md,
+ .container-sm,
+ .container-xl {
+ max-width: 1140px;
+ }
+ }
+ @media (min-width: 1400px) {
+ .container,
+ .container-lg,
+ .container-md,
+ .container-sm,
+ .container-xl,
+ .container-xxl {
+ max-width: 1360px;
+ }
+ }
+ .row {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-flex-wrap: wrap;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ margin-right: -15px;
+ margin-left: -15px;
+ }
+ .no-gutters {
+ margin-right: 0;
+ margin-left: 0;
+ }
+ .no-gutters > .col,
+ .no-gutters > [class*="col-"] {
+ padding-right: 0;
+ padding-left: 0;
+ }
+ .col,
+ .col-1,
+ .col-10,
+ .col-11,
+ .col-12,
+ .col-2,
+ .col-3,
+ .col-4,
+ .col-5,
+ .col-6,
+ .col-7,
+ .col-8,
+ .col-9,
+ .col-auto,
+ .col-lg,
+ .col-lg-1,
+ .col-lg-10,
+ .col-lg-11,
+ .col-lg-12,
+ .col-lg-2,
+ .col-lg-3,
+ .col-lg-4,
+ .col-lg-5,
+ .col-lg-6,
+ .col-lg-7,
+ .col-lg-8,
+ .col-lg-9,
+ .col-lg-auto,
+ .col-md,
+ .col-md-1,
+ .col-md-10,
+ .col-md-11,
+ .col-md-12,
+ .col-md-2,
+ .col-md-3,
+ .col-md-4,
+ .col-md-5,
+ .col-md-6,
+ .col-md-7,
+ .col-md-8,
+ .col-md-9,
+ .col-md-auto,
+ .col-sm,
+ .col-sm-1,
+ .col-sm-10,
+ .col-sm-11,
+ .col-sm-12,
+ .col-sm-2,
+ .col-sm-3,
+ .col-sm-4,
+ .col-sm-5,
+ .col-sm-6,
+ .col-sm-7,
+ .col-sm-8,
+ .col-sm-9,
+ .col-sm-auto,
+ .col-xl,
+ .col-xl-1,
+ .col-xl-10,
+ .col-xl-11,
+ .col-xl-12,
+ .col-xl-2,
+ .col-xl-3,
+ .col-xl-4,
+ .col-xl-5,
+ .col-xl-6,
+ .col-xl-7,
+ .col-xl-8,
+ .col-xl-9,
+ .col-xl-auto,
+ .col-xxl,
+ .col-xxl-1,
+ .col-xxl-10,
+ .col-xxl-11,
+ .col-xxl-12,
+ .col-xxl-2,
+ .col-xxl-3,
+ .col-xxl-4,
+ .col-xxl-5,
+ .col-xxl-6,
+ .col-xxl-7,
+ .col-xxl-8,
+ .col-xxl-9,
+ .col-xxl-auto {
+ position: relative;
+ width: 100%;
+ padding-right: 15px;
+ padding-left: 15px;
+ }
+ .col {
+ -webkit-flex-basis: 0;
+ -ms-flex-preferred-size: 0;
+ flex-basis: 0;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ max-width: 100%;
+ }
+ .row-cols-1 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 100%;
+ -ms-flex: 0 0 100%;
+ flex: 0 0 100%;
+ max-width: 100%;
+ }
+ .row-cols-2 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 50%;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%;
+ }
+ .row-cols-3 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 33.33333%;
+ -ms-flex: 0 0 33.33333%;
+ flex: 0 0 33.33333%;
+ max-width: 33.33333%;
+ }
+ .row-cols-4 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 25%;
+ -ms-flex: 0 0 25%;
+ flex: 0 0 25%;
+ max-width: 25%;
+ }
+ .row-cols-5 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 20%;
+ -ms-flex: 0 0 20%;
+ flex: 0 0 20%;
+ max-width: 20%;
+ }
+ .row-cols-6 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 16.66667%;
+ -ms-flex: 0 0 16.66667%;
+ flex: 0 0 16.66667%;
+ max-width: 16.66667%;
+ }
+ .col-1,
+ .col-auto {
+ -webkit-box-flex: 0;
+ }
+ .col-auto {
+ -webkit-flex: 0 0 auto;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto;
+ max-width: 100%;
+ }
+ .col-1 {
+ -webkit-flex: 0 0 8.33333%;
+ -ms-flex: 0 0 8.33333%;
+ flex: 0 0 8.33333%;
+ max-width: 8.33333%;
+ }
+ .col-2,
+ .col-3 {
+ -webkit-box-flex: 0;
+ }
+ .col-2 {
+ -webkit-flex: 0 0 16.66667%;
+ -ms-flex: 0 0 16.66667%;
+ flex: 0 0 16.66667%;
+ max-width: 16.66667%;
+ }
+ .col-3 {
+ -webkit-flex: 0 0 25%;
+ -ms-flex: 0 0 25%;
+ flex: 0 0 25%;
+ max-width: 25%;
+ }
+ .col-4,
+ .col-5 {
+ -webkit-box-flex: 0;
+ }
+ .col-4 {
+ -webkit-flex: 0 0 33.33333%;
+ -ms-flex: 0 0 33.33333%;
+ flex: 0 0 33.33333%;
+ max-width: 33.33333%;
+ }
+ .col-5 {
+ -webkit-flex: 0 0 41.66667%;
+ -ms-flex: 0 0 41.66667%;
+ flex: 0 0 41.66667%;
+ max-width: 41.66667%;
+ }
+ .col-6,
+ .col-7 {
+ -webkit-box-flex: 0;
+ }
+ .col-6 {
+ -webkit-flex: 0 0 50%;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%;
+ }
+ .col-7 {
+ -webkit-flex: 0 0 58.33333%;
+ -ms-flex: 0 0 58.33333%;
+ flex: 0 0 58.33333%;
+ max-width: 58.33333%;
+ }
+ .col-8,
+ .col-9 {
+ -webkit-box-flex: 0;
+ }
+ .col-8 {
+ -webkit-flex: 0 0 66.66667%;
+ -ms-flex: 0 0 66.66667%;
+ flex: 0 0 66.66667%;
+ max-width: 66.66667%;
+ }
+ .col-9 {
+ -webkit-flex: 0 0 75%;
+ -ms-flex: 0 0 75%;
+ flex: 0 0 75%;
+ max-width: 75%;
+ }
+ .col-10,
+ .col-11 {
+ -webkit-box-flex: 0;
+ }
+ .col-10 {
+ -webkit-flex: 0 0 83.33333%;
+ -ms-flex: 0 0 83.33333%;
+ flex: 0 0 83.33333%;
+ max-width: 83.33333%;
+ }
+ .col-11 {
+ -webkit-flex: 0 0 91.66667%;
+ -ms-flex: 0 0 91.66667%;
+ flex: 0 0 91.66667%;
+ max-width: 91.66667%;
+ }
+ .col-12 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 100%;
+ -ms-flex: 0 0 100%;
+ flex: 0 0 100%;
+ max-width: 100%;
+ }
+ .order-first {
+ -webkit-box-ordinal-group: 0;
+ -webkit-order: -1;
+ -ms-flex-order: -1;
+ order: -1;
+ }
+ .order-last {
+ -webkit-box-ordinal-group: 14;
+ -webkit-order: 13;
+ -ms-flex-order: 13;
+ order: 13;
+ }
+ .order-0 {
+ -webkit-box-ordinal-group: 1;
+ -webkit-order: 0;
+ -ms-flex-order: 0;
+ order: 0;
+ }
+ .order-1 {
+ -webkit-box-ordinal-group: 2;
+ -webkit-order: 1;
+ -ms-flex-order: 1;
+ order: 1;
+ }
+ .order-2 {
+ -webkit-box-ordinal-group: 3;
+ -webkit-order: 2;
+ -ms-flex-order: 2;
+ order: 2;
+ }
+ .order-3 {
+ -webkit-box-ordinal-group: 4;
+ -webkit-order: 3;
+ -ms-flex-order: 3;
+ order: 3;
+ }
+ .order-4 {
+ -webkit-box-ordinal-group: 5;
+ -webkit-order: 4;
+ -ms-flex-order: 4;
+ order: 4;
+ }
+ .order-5 {
+ -webkit-box-ordinal-group: 6;
+ -webkit-order: 5;
+ -ms-flex-order: 5;
+ order: 5;
+ }
+ .order-6 {
+ -webkit-box-ordinal-group: 7;
+ -webkit-order: 6;
+ -ms-flex-order: 6;
+ order: 6;
+ }
+ .order-7 {
+ -webkit-box-ordinal-group: 8;
+ -webkit-order: 7;
+ -ms-flex-order: 7;
+ order: 7;
+ }
+ .order-8 {
+ -webkit-box-ordinal-group: 9;
+ -webkit-order: 8;
+ -ms-flex-order: 8;
+ order: 8;
+ }
+ .order-9 {
+ -webkit-box-ordinal-group: 10;
+ -webkit-order: 9;
+ -ms-flex-order: 9;
+ order: 9;
+ }
+ .order-10 {
+ -webkit-box-ordinal-group: 11;
+ -webkit-order: 10;
+ -ms-flex-order: 10;
+ order: 10;
+ }
+ .order-11 {
+ -webkit-box-ordinal-group: 12;
+ -webkit-order: 11;
+ -ms-flex-order: 11;
+ order: 11;
+ }
+ .order-12 {
+ -webkit-box-ordinal-group: 13;
+ -webkit-order: 12;
+ -ms-flex-order: 12;
+ order: 12;
+ }
+ .offset-1 {
+ margin-left: 8.33333%;
+ }
+ .offset-2 {
+ margin-left: 16.66667%;
+ }
+ .offset-3 {
+ margin-left: 25%;
+ }
+ .offset-4 {
+ margin-left: 33.33333%;
+ }
+ .offset-5 {
+ margin-left: 41.66667%;
+ }
+ .offset-6 {
+ margin-left: 50%;
+ }
+ .offset-7 {
+ margin-left: 58.33333%;
+ }
+ .offset-8 {
+ margin-left: 66.66667%;
+ }
+ .offset-9 {
+ margin-left: 75%;
+ }
+ .offset-10 {
+ margin-left: 83.33333%;
+ }
+ .offset-11 {
+ margin-left: 91.66667%;
+ }
+ @media (min-width: 576px) {
+ .col-sm {
+ -webkit-flex-basis: 0;
+ -ms-flex-preferred-size: 0;
+ flex-basis: 0;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ max-width: 100%;
+ }
+ .row-cols-sm-1 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 100%;
+ -ms-flex: 0 0 100%;
+ flex: 0 0 100%;
+ max-width: 100%;
+ }
+ .row-cols-sm-2 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 50%;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%;
+ }
+ .row-cols-sm-3 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 33.33333%;
+ -ms-flex: 0 0 33.33333%;
+ flex: 0 0 33.33333%;
+ max-width: 33.33333%;
+ }
+ .row-cols-sm-4 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 25%;
+ -ms-flex: 0 0 25%;
+ flex: 0 0 25%;
+ max-width: 25%;
+ }
+ .row-cols-sm-5 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 20%;
+ -ms-flex: 0 0 20%;
+ flex: 0 0 20%;
+ max-width: 20%;
+ }
+ .row-cols-sm-6 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 16.66667%;
+ -ms-flex: 0 0 16.66667%;
+ flex: 0 0 16.66667%;
+ max-width: 16.66667%;
+ }
+ .col-sm-auto {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 auto;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto;
+ max-width: 100%;
+ }
+ .col-sm-1 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 8.33333%;
+ -ms-flex: 0 0 8.33333%;
+ flex: 0 0 8.33333%;
+ max-width: 8.33333%;
+ }
+ .col-sm-2 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 16.66667%;
+ -ms-flex: 0 0 16.66667%;
+ flex: 0 0 16.66667%;
+ max-width: 16.66667%;
+ }
+ .col-sm-3 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 25%;
+ -ms-flex: 0 0 25%;
+ flex: 0 0 25%;
+ max-width: 25%;
+ }
+ .col-sm-4 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 33.33333%;
+ -ms-flex: 0 0 33.33333%;
+ flex: 0 0 33.33333%;
+ max-width: 33.33333%;
+ }
+ .col-sm-5 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 41.66667%;
+ -ms-flex: 0 0 41.66667%;
+ flex: 0 0 41.66667%;
+ max-width: 41.66667%;
+ }
+ .col-sm-6 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 50%;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%;
+ }
+ .col-sm-7 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 58.33333%;
+ -ms-flex: 0 0 58.33333%;
+ flex: 0 0 58.33333%;
+ max-width: 58.33333%;
+ }
+ .col-sm-8 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 66.66667%;
+ -ms-flex: 0 0 66.66667%;
+ flex: 0 0 66.66667%;
+ max-width: 66.66667%;
+ }
+ .col-sm-9 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 75%;
+ -ms-flex: 0 0 75%;
+ flex: 0 0 75%;
+ max-width: 75%;
+ }
+ .col-sm-10 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 83.33333%;
+ -ms-flex: 0 0 83.33333%;
+ flex: 0 0 83.33333%;
+ max-width: 83.33333%;
+ }
+ .col-sm-11 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 91.66667%;
+ -ms-flex: 0 0 91.66667%;
+ flex: 0 0 91.66667%;
+ max-width: 91.66667%;
+ }
+ .col-sm-12 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 100%;
+ -ms-flex: 0 0 100%;
+ flex: 0 0 100%;
+ max-width: 100%;
+ }
+ .order-sm-first {
+ -webkit-box-ordinal-group: 0;
+ -webkit-order: -1;
+ -ms-flex-order: -1;
+ order: -1;
+ }
+ .order-sm-last {
+ -webkit-box-ordinal-group: 14;
+ -webkit-order: 13;
+ -ms-flex-order: 13;
+ order: 13;
+ }
+ .order-sm-0 {
+ -webkit-box-ordinal-group: 1;
+ -webkit-order: 0;
+ -ms-flex-order: 0;
+ order: 0;
+ }
+ .order-sm-1 {
+ -webkit-box-ordinal-group: 2;
+ -webkit-order: 1;
+ -ms-flex-order: 1;
+ order: 1;
+ }
+ .order-sm-2 {
+ -webkit-box-ordinal-group: 3;
+ -webkit-order: 2;
+ -ms-flex-order: 2;
+ order: 2;
+ }
+ .order-sm-3 {
+ -webkit-box-ordinal-group: 4;
+ -webkit-order: 3;
+ -ms-flex-order: 3;
+ order: 3;
+ }
+ .order-sm-4 {
+ -webkit-box-ordinal-group: 5;
+ -webkit-order: 4;
+ -ms-flex-order: 4;
+ order: 4;
+ }
+ .order-sm-5 {
+ -webkit-box-ordinal-group: 6;
+ -webkit-order: 5;
+ -ms-flex-order: 5;
+ order: 5;
+ }
+ .order-sm-6 {
+ -webkit-box-ordinal-group: 7;
+ -webkit-order: 6;
+ -ms-flex-order: 6;
+ order: 6;
+ }
+ .order-sm-7 {
+ -webkit-box-ordinal-group: 8;
+ -webkit-order: 7;
+ -ms-flex-order: 7;
+ order: 7;
+ }
+ .order-sm-8 {
+ -webkit-box-ordinal-group: 9;
+ -webkit-order: 8;
+ -ms-flex-order: 8;
+ order: 8;
+ }
+ .order-sm-9 {
+ -webkit-box-ordinal-group: 10;
+ -webkit-order: 9;
+ -ms-flex-order: 9;
+ order: 9;
+ }
+ .order-sm-10 {
+ -webkit-box-ordinal-group: 11;
+ -webkit-order: 10;
+ -ms-flex-order: 10;
+ order: 10;
+ }
+ .order-sm-11 {
+ -webkit-box-ordinal-group: 12;
+ -webkit-order: 11;
+ -ms-flex-order: 11;
+ order: 11;
+ }
+ .order-sm-12 {
+ -webkit-box-ordinal-group: 13;
+ -webkit-order: 12;
+ -ms-flex-order: 12;
+ order: 12;
+ }
+ .offset-sm-0 {
+ margin-left: 0;
+ }
+ .offset-sm-1 {
+ margin-left: 8.33333%;
+ }
+ .offset-sm-2 {
+ margin-left: 16.66667%;
+ }
+ .offset-sm-3 {
+ margin-left: 25%;
+ }
+ .offset-sm-4 {
+ margin-left: 33.33333%;
+ }
+ .offset-sm-5 {
+ margin-left: 41.66667%;
+ }
+ .offset-sm-6 {
+ margin-left: 50%;
+ }
+ .offset-sm-7 {
+ margin-left: 58.33333%;
+ }
+ .offset-sm-8 {
+ margin-left: 66.66667%;
+ }
+ .offset-sm-9 {
+ margin-left: 75%;
+ }
+ .offset-sm-10 {
+ margin-left: 83.33333%;
+ }
+ .offset-sm-11 {
+ margin-left: 91.66667%;
+ }
+ }
+ @media (min-width: 768px) {
+ .col-md {
+ -webkit-flex-basis: 0;
+ -ms-flex-preferred-size: 0;
+ flex-basis: 0;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ max-width: 100%;
+ }
+ .row-cols-md-1 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 100%;
+ -ms-flex: 0 0 100%;
+ flex: 0 0 100%;
+ max-width: 100%;
+ }
+ .row-cols-md-2 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 50%;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%;
+ }
+ .row-cols-md-3 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 33.33333%;
+ -ms-flex: 0 0 33.33333%;
+ flex: 0 0 33.33333%;
+ max-width: 33.33333%;
+ }
+ .row-cols-md-4 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 25%;
+ -ms-flex: 0 0 25%;
+ flex: 0 0 25%;
+ max-width: 25%;
+ }
+ .row-cols-md-5 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 20%;
+ -ms-flex: 0 0 20%;
+ flex: 0 0 20%;
+ max-width: 20%;
+ }
+ .row-cols-md-6 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 16.66667%;
+ -ms-flex: 0 0 16.66667%;
+ flex: 0 0 16.66667%;
+ max-width: 16.66667%;
+ }
+ .col-md-auto {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 auto;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto;
+ max-width: 100%;
+ }
+ .col-md-1 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 8.33333%;
+ -ms-flex: 0 0 8.33333%;
+ flex: 0 0 8.33333%;
+ max-width: 8.33333%;
+ }
+ .col-md-2 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 16.66667%;
+ -ms-flex: 0 0 16.66667%;
+ flex: 0 0 16.66667%;
+ max-width: 16.66667%;
+ }
+ .col-md-3 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 25%;
+ -ms-flex: 0 0 25%;
+ flex: 0 0 25%;
+ max-width: 25%;
+ }
+ .col-md-4 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 33.33333%;
+ -ms-flex: 0 0 33.33333%;
+ flex: 0 0 33.33333%;
+ max-width: 33.33333%;
+ }
+ .col-md-5 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 41.66667%;
+ -ms-flex: 0 0 41.66667%;
+ flex: 0 0 41.66667%;
+ max-width: 41.66667%;
+ }
+ .col-md-6 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 50%;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%;
+ }
+ .col-md-7 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 58.33333%;
+ -ms-flex: 0 0 58.33333%;
+ flex: 0 0 58.33333%;
+ max-width: 58.33333%;
+ }
+ .col-md-8 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 66.66667%;
+ -ms-flex: 0 0 66.66667%;
+ flex: 0 0 66.66667%;
+ max-width: 66.66667%;
+ }
+ .col-md-9 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 75%;
+ -ms-flex: 0 0 75%;
+ flex: 0 0 75%;
+ max-width: 75%;
+ }
+ .col-md-10 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 83.33333%;
+ -ms-flex: 0 0 83.33333%;
+ flex: 0 0 83.33333%;
+ max-width: 83.33333%;
+ }
+ .col-md-11 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 91.66667%;
+ -ms-flex: 0 0 91.66667%;
+ flex: 0 0 91.66667%;
+ max-width: 91.66667%;
+ }
+ .col-md-12 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 100%;
+ -ms-flex: 0 0 100%;
+ flex: 0 0 100%;
+ max-width: 100%;
+ }
+ .order-md-first {
+ -webkit-box-ordinal-group: 0;
+ -webkit-order: -1;
+ -ms-flex-order: -1;
+ order: -1;
+ }
+ .order-md-last {
+ -webkit-box-ordinal-group: 14;
+ -webkit-order: 13;
+ -ms-flex-order: 13;
+ order: 13;
+ }
+ .order-md-0 {
+ -webkit-box-ordinal-group: 1;
+ -webkit-order: 0;
+ -ms-flex-order: 0;
+ order: 0;
+ }
+ .order-md-1 {
+ -webkit-box-ordinal-group: 2;
+ -webkit-order: 1;
+ -ms-flex-order: 1;
+ order: 1;
+ }
+ .order-md-2 {
+ -webkit-box-ordinal-group: 3;
+ -webkit-order: 2;
+ -ms-flex-order: 2;
+ order: 2;
+ }
+ .order-md-3 {
+ -webkit-box-ordinal-group: 4;
+ -webkit-order: 3;
+ -ms-flex-order: 3;
+ order: 3;
+ }
+ .order-md-4 {
+ -webkit-box-ordinal-group: 5;
+ -webkit-order: 4;
+ -ms-flex-order: 4;
+ order: 4;
+ }
+ .order-md-5 {
+ -webkit-box-ordinal-group: 6;
+ -webkit-order: 5;
+ -ms-flex-order: 5;
+ order: 5;
+ }
+ .order-md-6 {
+ -webkit-box-ordinal-group: 7;
+ -webkit-order: 6;
+ -ms-flex-order: 6;
+ order: 6;
+ }
+ .order-md-7 {
+ -webkit-box-ordinal-group: 8;
+ -webkit-order: 7;
+ -ms-flex-order: 7;
+ order: 7;
+ }
+ .order-md-8 {
+ -webkit-box-ordinal-group: 9;
+ -webkit-order: 8;
+ -ms-flex-order: 8;
+ order: 8;
+ }
+ .order-md-9 {
+ -webkit-box-ordinal-group: 10;
+ -webkit-order: 9;
+ -ms-flex-order: 9;
+ order: 9;
+ }
+ .order-md-10 {
+ -webkit-box-ordinal-group: 11;
+ -webkit-order: 10;
+ -ms-flex-order: 10;
+ order: 10;
+ }
+ .order-md-11 {
+ -webkit-box-ordinal-group: 12;
+ -webkit-order: 11;
+ -ms-flex-order: 11;
+ order: 11;
+ }
+ .order-md-12 {
+ -webkit-box-ordinal-group: 13;
+ -webkit-order: 12;
+ -ms-flex-order: 12;
+ order: 12;
+ }
+ .offset-md-0 {
+ margin-left: 0;
+ }
+ .offset-md-1 {
+ margin-left: 8.33333%;
+ }
+ .offset-md-2 {
+ margin-left: 16.66667%;
+ }
+ .offset-md-3 {
+ margin-left: 25%;
+ }
+ .offset-md-4 {
+ margin-left: 33.33333%;
+ }
+ .offset-md-5 {
+ margin-left: 41.66667%;
+ }
+ .offset-md-6 {
+ margin-left: 50%;
+ }
+ .offset-md-7 {
+ margin-left: 58.33333%;
+ }
+ .offset-md-8 {
+ margin-left: 66.66667%;
+ }
+ .offset-md-9 {
+ margin-left: 75%;
+ }
+ .offset-md-10 {
+ margin-left: 83.33333%;
+ }
+ .offset-md-11 {
+ margin-left: 91.66667%;
+ }
+ }
+ @media (min-width: 992px) {
+ .col-lg {
+ -webkit-flex-basis: 0;
+ -ms-flex-preferred-size: 0;
+ flex-basis: 0;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ max-width: 100%;
+ }
+ .row-cols-lg-1 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 100%;
+ -ms-flex: 0 0 100%;
+ flex: 0 0 100%;
+ max-width: 100%;
+ }
+ .row-cols-lg-2 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 50%;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%;
+ }
+ .row-cols-lg-3 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 33.33333%;
+ -ms-flex: 0 0 33.33333%;
+ flex: 0 0 33.33333%;
+ max-width: 33.33333%;
+ }
+ .row-cols-lg-4 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 25%;
+ -ms-flex: 0 0 25%;
+ flex: 0 0 25%;
+ max-width: 25%;
+ }
+ .row-cols-lg-5 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 20%;
+ -ms-flex: 0 0 20%;
+ flex: 0 0 20%;
+ max-width: 20%;
+ }
+ .row-cols-lg-6 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 16.66667%;
+ -ms-flex: 0 0 16.66667%;
+ flex: 0 0 16.66667%;
+ max-width: 16.66667%;
+ }
+ .col-lg-auto {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 auto;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto;
+ max-width: 100%;
+ }
+ .col-lg-1 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 8.33333%;
+ -ms-flex: 0 0 8.33333%;
+ flex: 0 0 8.33333%;
+ max-width: 8.33333%;
+ }
+ .col-lg-2 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 16.66667%;
+ -ms-flex: 0 0 16.66667%;
+ flex: 0 0 16.66667%;
+ max-width: 16.66667%;
+ }
+ .col-lg-3 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 25%;
+ -ms-flex: 0 0 25%;
+ flex: 0 0 25%;
+ max-width: 25%;
+ }
+ .col-lg-4 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 33.33333%;
+ -ms-flex: 0 0 33.33333%;
+ flex: 0 0 33.33333%;
+ max-width: 33.33333%;
+ }
+ .col-lg-5 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 41.66667%;
+ -ms-flex: 0 0 41.66667%;
+ flex: 0 0 41.66667%;
+ max-width: 41.66667%;
+ }
+ .col-lg-6 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 50%;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%;
+ }
+ .col-lg-7 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 58.33333%;
+ -ms-flex: 0 0 58.33333%;
+ flex: 0 0 58.33333%;
+ max-width: 58.33333%;
+ }
+ .col-lg-8 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 66.66667%;
+ -ms-flex: 0 0 66.66667%;
+ flex: 0 0 66.66667%;
+ max-width: 66.66667%;
+ }
+ .col-lg-9 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 75%;
+ -ms-flex: 0 0 75%;
+ flex: 0 0 75%;
+ max-width: 75%;
+ }
+ .col-lg-10 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 83.33333%;
+ -ms-flex: 0 0 83.33333%;
+ flex: 0 0 83.33333%;
+ max-width: 83.33333%;
+ }
+ .col-lg-11 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 91.66667%;
+ -ms-flex: 0 0 91.66667%;
+ flex: 0 0 91.66667%;
+ max-width: 91.66667%;
+ }
+ .col-lg-12 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 100%;
+ -ms-flex: 0 0 100%;
+ flex: 0 0 100%;
+ max-width: 100%;
+ }
+ .order-lg-first {
+ -webkit-box-ordinal-group: 0;
+ -webkit-order: -1;
+ -ms-flex-order: -1;
+ order: -1;
+ }
+ .order-lg-last {
+ -webkit-box-ordinal-group: 14;
+ -webkit-order: 13;
+ -ms-flex-order: 13;
+ order: 13;
+ }
+ .order-lg-0 {
+ -webkit-box-ordinal-group: 1;
+ -webkit-order: 0;
+ -ms-flex-order: 0;
+ order: 0;
+ }
+ .order-lg-1 {
+ -webkit-box-ordinal-group: 2;
+ -webkit-order: 1;
+ -ms-flex-order: 1;
+ order: 1;
+ }
+ .order-lg-2 {
+ -webkit-box-ordinal-group: 3;
+ -webkit-order: 2;
+ -ms-flex-order: 2;
+ order: 2;
+ }
+ .order-lg-3 {
+ -webkit-box-ordinal-group: 4;
+ -webkit-order: 3;
+ -ms-flex-order: 3;
+ order: 3;
+ }
+ .order-lg-4 {
+ -webkit-box-ordinal-group: 5;
+ -webkit-order: 4;
+ -ms-flex-order: 4;
+ order: 4;
+ }
+ .order-lg-5 {
+ -webkit-box-ordinal-group: 6;
+ -webkit-order: 5;
+ -ms-flex-order: 5;
+ order: 5;
+ }
+ .order-lg-6 {
+ -webkit-box-ordinal-group: 7;
+ -webkit-order: 6;
+ -ms-flex-order: 6;
+ order: 6;
+ }
+ .order-lg-7 {
+ -webkit-box-ordinal-group: 8;
+ -webkit-order: 7;
+ -ms-flex-order: 7;
+ order: 7;
+ }
+ .order-lg-8 {
+ -webkit-box-ordinal-group: 9;
+ -webkit-order: 8;
+ -ms-flex-order: 8;
+ order: 8;
+ }
+ .order-lg-9 {
+ -webkit-box-ordinal-group: 10;
+ -webkit-order: 9;
+ -ms-flex-order: 9;
+ order: 9;
+ }
+ .order-lg-10 {
+ -webkit-box-ordinal-group: 11;
+ -webkit-order: 10;
+ -ms-flex-order: 10;
+ order: 10;
+ }
+ .order-lg-11 {
+ -webkit-box-ordinal-group: 12;
+ -webkit-order: 11;
+ -ms-flex-order: 11;
+ order: 11;
+ }
+ .order-lg-12 {
+ -webkit-box-ordinal-group: 13;
+ -webkit-order: 12;
+ -ms-flex-order: 12;
+ order: 12;
+ }
+ .offset-lg-0 {
+ margin-left: 0;
+ }
+ .offset-lg-1 {
+ margin-left: 8.33333%;
+ }
+ .offset-lg-2 {
+ margin-left: 16.66667%;
+ }
+ .offset-lg-3 {
+ margin-left: 25%;
+ }
+ .offset-lg-4 {
+ margin-left: 33.33333%;
+ }
+ .offset-lg-5 {
+ margin-left: 41.66667%;
+ }
+ .offset-lg-6 {
+ margin-left: 50%;
+ }
+ .offset-lg-7 {
+ margin-left: 58.33333%;
+ }
+ .offset-lg-8 {
+ margin-left: 66.66667%;
+ }
+ .offset-lg-9 {
+ margin-left: 75%;
+ }
+ .offset-lg-10 {
+ margin-left: 83.33333%;
+ }
+ .offset-lg-11 {
+ margin-left: 91.66667%;
+ }
+ }
+ @media (min-width: 1200px) {
+ .col-xl {
+ -webkit-flex-basis: 0;
+ -ms-flex-preferred-size: 0;
+ flex-basis: 0;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ max-width: 100%;
+ }
+ .row-cols-xl-1 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 100%;
+ -ms-flex: 0 0 100%;
+ flex: 0 0 100%;
+ max-width: 100%;
+ }
+ .row-cols-xl-2 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 50%;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%;
+ }
+ .row-cols-xl-3 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 33.33333%;
+ -ms-flex: 0 0 33.33333%;
+ flex: 0 0 33.33333%;
+ max-width: 33.33333%;
+ }
+ .row-cols-xl-4 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 25%;
+ -ms-flex: 0 0 25%;
+ flex: 0 0 25%;
+ max-width: 25%;
+ }
+ .row-cols-xl-5 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 20%;
+ -ms-flex: 0 0 20%;
+ flex: 0 0 20%;
+ max-width: 20%;
+ }
+ .row-cols-xl-6 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 16.66667%;
+ -ms-flex: 0 0 16.66667%;
+ flex: 0 0 16.66667%;
+ max-width: 16.66667%;
+ }
+ .col-xl-auto {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 auto;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto;
+ max-width: 100%;
+ }
+ .col-xl-1 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 8.33333%;
+ -ms-flex: 0 0 8.33333%;
+ flex: 0 0 8.33333%;
+ max-width: 8.33333%;
+ }
+ .col-xl-2 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 16.66667%;
+ -ms-flex: 0 0 16.66667%;
+ flex: 0 0 16.66667%;
+ max-width: 16.66667%;
+ }
+ .col-xl-3 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 25%;
+ -ms-flex: 0 0 25%;
+ flex: 0 0 25%;
+ max-width: 25%;
+ }
+ .col-xl-4 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 33.33333%;
+ -ms-flex: 0 0 33.33333%;
+ flex: 0 0 33.33333%;
+ max-width: 33.33333%;
+ }
+ .col-xl-5 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 41.66667%;
+ -ms-flex: 0 0 41.66667%;
+ flex: 0 0 41.66667%;
+ max-width: 41.66667%;
+ }
+ .col-xl-6 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 50%;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%;
+ }
+ .col-xl-7 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 58.33333%;
+ -ms-flex: 0 0 58.33333%;
+ flex: 0 0 58.33333%;
+ max-width: 58.33333%;
+ }
+ .col-xl-8 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 66.66667%;
+ -ms-flex: 0 0 66.66667%;
+ flex: 0 0 66.66667%;
+ max-width: 66.66667%;
+ }
+ .col-xl-9 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 75%;
+ -ms-flex: 0 0 75%;
+ flex: 0 0 75%;
+ max-width: 75%;
+ }
+ .col-xl-10 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 83.33333%;
+ -ms-flex: 0 0 83.33333%;
+ flex: 0 0 83.33333%;
+ max-width: 83.33333%;
+ }
+ .col-xl-11 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 91.66667%;
+ -ms-flex: 0 0 91.66667%;
+ flex: 0 0 91.66667%;
+ max-width: 91.66667%;
+ }
+ .col-xl-12 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 100%;
+ -ms-flex: 0 0 100%;
+ flex: 0 0 100%;
+ max-width: 100%;
+ }
+ .order-xl-first {
+ -webkit-box-ordinal-group: 0;
+ -webkit-order: -1;
+ -ms-flex-order: -1;
+ order: -1;
+ }
+ .order-xl-last {
+ -webkit-box-ordinal-group: 14;
+ -webkit-order: 13;
+ -ms-flex-order: 13;
+ order: 13;
+ }
+ .order-xl-0 {
+ -webkit-box-ordinal-group: 1;
+ -webkit-order: 0;
+ -ms-flex-order: 0;
+ order: 0;
+ }
+ .order-xl-1 {
+ -webkit-box-ordinal-group: 2;
+ -webkit-order: 1;
+ -ms-flex-order: 1;
+ order: 1;
+ }
+ .order-xl-2 {
+ -webkit-box-ordinal-group: 3;
+ -webkit-order: 2;
+ -ms-flex-order: 2;
+ order: 2;
+ }
+ .order-xl-3 {
+ -webkit-box-ordinal-group: 4;
+ -webkit-order: 3;
+ -ms-flex-order: 3;
+ order: 3;
+ }
+ .order-xl-4 {
+ -webkit-box-ordinal-group: 5;
+ -webkit-order: 4;
+ -ms-flex-order: 4;
+ order: 4;
+ }
+ .order-xl-5 {
+ -webkit-box-ordinal-group: 6;
+ -webkit-order: 5;
+ -ms-flex-order: 5;
+ order: 5;
+ }
+ .order-xl-6 {
+ -webkit-box-ordinal-group: 7;
+ -webkit-order: 6;
+ -ms-flex-order: 6;
+ order: 6;
+ }
+ .order-xl-7 {
+ -webkit-box-ordinal-group: 8;
+ -webkit-order: 7;
+ -ms-flex-order: 7;
+ order: 7;
+ }
+ .order-xl-8 {
+ -webkit-box-ordinal-group: 9;
+ -webkit-order: 8;
+ -ms-flex-order: 8;
+ order: 8;
+ }
+ .order-xl-9 {
+ -webkit-box-ordinal-group: 10;
+ -webkit-order: 9;
+ -ms-flex-order: 9;
+ order: 9;
+ }
+ .order-xl-10 {
+ -webkit-box-ordinal-group: 11;
+ -webkit-order: 10;
+ -ms-flex-order: 10;
+ order: 10;
+ }
+ .order-xl-11 {
+ -webkit-box-ordinal-group: 12;
+ -webkit-order: 11;
+ -ms-flex-order: 11;
+ order: 11;
+ }
+ .order-xl-12 {
+ -webkit-box-ordinal-group: 13;
+ -webkit-order: 12;
+ -ms-flex-order: 12;
+ order: 12;
+ }
+ .offset-xl-0 {
+ margin-left: 0;
+ }
+ .offset-xl-1 {
+ margin-left: 8.33333%;
+ }
+ .offset-xl-2 {
+ margin-left: 16.66667%;
+ }
+ .offset-xl-3 {
+ margin-left: 25%;
+ }
+ .offset-xl-4 {
+ margin-left: 33.33333%;
+ }
+ .offset-xl-5 {
+ margin-left: 41.66667%;
+ }
+ .offset-xl-6 {
+ margin-left: 50%;
+ }
+ .offset-xl-7 {
+ margin-left: 58.33333%;
+ }
+ .offset-xl-8 {
+ margin-left: 66.66667%;
+ }
+ .offset-xl-9 {
+ margin-left: 75%;
+ }
+ .offset-xl-10 {
+ margin-left: 83.33333%;
+ }
+ .offset-xl-11 {
+ margin-left: 91.66667%;
+ }
+ }
+ @media (min-width: 1400px) {
+ .col-xxl {
+ -webkit-flex-basis: 0;
+ -ms-flex-preferred-size: 0;
+ flex-basis: 0;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ max-width: 100%;
+ }
+ .row-cols-xxl-1 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 100%;
+ -ms-flex: 0 0 100%;
+ flex: 0 0 100%;
+ max-width: 100%;
+ }
+ .row-cols-xxl-2 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 50%;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%;
+ }
+ .row-cols-xxl-3 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 33.33333%;
+ -ms-flex: 0 0 33.33333%;
+ flex: 0 0 33.33333%;
+ max-width: 33.33333%;
+ }
+ .row-cols-xxl-4 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 25%;
+ -ms-flex: 0 0 25%;
+ flex: 0 0 25%;
+ max-width: 25%;
+ }
+ .row-cols-xxl-5 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 20%;
+ -ms-flex: 0 0 20%;
+ flex: 0 0 20%;
+ max-width: 20%;
+ }
+ .row-cols-xxl-6 > * {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 16.66667%;
+ -ms-flex: 0 0 16.66667%;
+ flex: 0 0 16.66667%;
+ max-width: 16.66667%;
+ }
+ .col-xxl-auto {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 auto;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ width: auto;
+ max-width: 100%;
+ }
+ .col-xxl-1 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 8.33333%;
+ -ms-flex: 0 0 8.33333%;
+ flex: 0 0 8.33333%;
+ max-width: 8.33333%;
+ }
+ .col-xxl-2 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 16.66667%;
+ -ms-flex: 0 0 16.66667%;
+ flex: 0 0 16.66667%;
+ max-width: 16.66667%;
+ }
+ .col-xxl-3 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 25%;
+ -ms-flex: 0 0 25%;
+ flex: 0 0 25%;
+ max-width: 25%;
+ }
+ .col-xxl-4 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 33.33333%;
+ -ms-flex: 0 0 33.33333%;
+ flex: 0 0 33.33333%;
+ max-width: 33.33333%;
+ }
+ .col-xxl-5 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 41.66667%;
+ -ms-flex: 0 0 41.66667%;
+ flex: 0 0 41.66667%;
+ max-width: 41.66667%;
+ }
+ .col-xxl-6 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 50%;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%;
+ }
+ .col-xxl-7 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 58.33333%;
+ -ms-flex: 0 0 58.33333%;
+ flex: 0 0 58.33333%;
+ max-width: 58.33333%;
+ }
+ .col-xxl-8 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 66.66667%;
+ -ms-flex: 0 0 66.66667%;
+ flex: 0 0 66.66667%;
+ max-width: 66.66667%;
+ }
+ .col-xxl-9 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 75%;
+ -ms-flex: 0 0 75%;
+ flex: 0 0 75%;
+ max-width: 75%;
+ }
+ .col-xxl-10 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 83.33333%;
+ -ms-flex: 0 0 83.33333%;
+ flex: 0 0 83.33333%;
+ max-width: 83.33333%;
+ }
+ .col-xxl-11 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 91.66667%;
+ -ms-flex: 0 0 91.66667%;
+ flex: 0 0 91.66667%;
+ max-width: 91.66667%;
+ }
+ .col-xxl-12 {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 100%;
+ -ms-flex: 0 0 100%;
+ flex: 0 0 100%;
+ max-width: 100%;
+ }
+ .order-xxl-first {
+ -webkit-box-ordinal-group: 0;
+ -webkit-order: -1;
+ -ms-flex-order: -1;
+ order: -1;
+ }
+ .order-xxl-last {
+ -webkit-box-ordinal-group: 14;
+ -webkit-order: 13;
+ -ms-flex-order: 13;
+ order: 13;
+ }
+ .order-xxl-0 {
+ -webkit-box-ordinal-group: 1;
+ -webkit-order: 0;
+ -ms-flex-order: 0;
+ order: 0;
+ }
+ .order-xxl-1 {
+ -webkit-box-ordinal-group: 2;
+ -webkit-order: 1;
+ -ms-flex-order: 1;
+ order: 1;
+ }
+ .order-xxl-2 {
+ -webkit-box-ordinal-group: 3;
+ -webkit-order: 2;
+ -ms-flex-order: 2;
+ order: 2;
+ }
+ .order-xxl-3 {
+ -webkit-box-ordinal-group: 4;
+ -webkit-order: 3;
+ -ms-flex-order: 3;
+ order: 3;
+ }
+ .order-xxl-4 {
+ -webkit-box-ordinal-group: 5;
+ -webkit-order: 4;
+ -ms-flex-order: 4;
+ order: 4;
+ }
+ .order-xxl-5 {
+ -webkit-box-ordinal-group: 6;
+ -webkit-order: 5;
+ -ms-flex-order: 5;
+ order: 5;
+ }
+ .order-xxl-6 {
+ -webkit-box-ordinal-group: 7;
+ -webkit-order: 6;
+ -ms-flex-order: 6;
+ order: 6;
+ }
+ .order-xxl-7 {
+ -webkit-box-ordinal-group: 8;
+ -webkit-order: 7;
+ -ms-flex-order: 7;
+ order: 7;
+ }
+ .order-xxl-8 {
+ -webkit-box-ordinal-group: 9;
+ -webkit-order: 8;
+ -ms-flex-order: 8;
+ order: 8;
+ }
+ .order-xxl-9 {
+ -webkit-box-ordinal-group: 10;
+ -webkit-order: 9;
+ -ms-flex-order: 9;
+ order: 9;
+ }
+ .order-xxl-10 {
+ -webkit-box-ordinal-group: 11;
+ -webkit-order: 10;
+ -ms-flex-order: 10;
+ order: 10;
+ }
+ .order-xxl-11 {
+ -webkit-box-ordinal-group: 12;
+ -webkit-order: 11;
+ -ms-flex-order: 11;
+ order: 11;
+ }
+ .order-xxl-12 {
+ -webkit-box-ordinal-group: 13;
+ -webkit-order: 12;
+ -ms-flex-order: 12;
+ order: 12;
+ }
+ .offset-xxl-0 {
+ margin-left: 0;
+ }
+ .offset-xxl-1 {
+ margin-left: 8.33333%;
+ }
+ .offset-xxl-2 {
+ margin-left: 16.66667%;
+ }
+ .offset-xxl-3 {
+ margin-left: 25%;
+ }
+ .offset-xxl-4 {
+ margin-left: 33.33333%;
+ }
+ .offset-xxl-5 {
+ margin-left: 41.66667%;
+ }
+ .offset-xxl-6 {
+ margin-left: 50%;
+ }
+ .offset-xxl-7 {
+ margin-left: 58.33333%;
+ }
+ .offset-xxl-8 {
+ margin-left: 66.66667%;
+ }
+ .offset-xxl-9 {
+ margin-left: 75%;
+ }
+ .offset-xxl-10 {
+ margin-left: 83.33333%;
+ }
+ .offset-xxl-11 {
+ margin-left: 91.66667%;
+ }
+ }
+ .table {
+ width: 100%;
+ margin-bottom: 1rem;
+ background-color: transparent;
+ }
+ .table-hover tbody tr:hover,
+ .table-striped tbody tr:nth-of-type(odd) {
+ background-color: rgba(245, 247, 250, 0.5);
+ }
+ .table td,
+ .table th {
+ padding: 0.75rem;
+ vertical-align: top;
+ border-top: 1px solid #98a4b8;
+ }
+ .table thead th {
+ vertical-align: bottom;
+ border-bottom: 2px solid #98a4b8;
+ }
+ .table tbody + tbody {
+ border-top: 2px solid #98a4b8;
+ }
+ .table-sm td,
+ .table-sm th {
+ padding: 0.3rem;
+ }
+ .table-bordered,
+ .table-bordered td,
+ .table-bordered th {
+ border: 1px solid #98a4b8;
+ }
+ .table-bordered thead td,
+ .table-bordered thead th {
+ border-bottom-width: 2px;
+ }
+ .table-borderless tbody + tbody,
+ .table-borderless td,
+ .table-borderless th,
+ .table-borderless thead th {
+ border: 0;
+ }
+ .table-primary,
+ .table-primary > td,
+ .table-primary > th {
+ background-color: #b8eaeb;
+ }
+ .table-primary tbody + tbody,
+ .table-primary td,
+ .table-primary th,
+ .table-primary thead th {
+ border-color: #7ad9da;
+ }
+ .table-hover .table-primary:hover,
+ .table-hover .table-primary:hover > td,
+ .table-hover .table-primary:hover > th {
+ background-color: #a4e4e5;
+ }
+ .table-secondary,
+ .table-secondary > td,
+ .table-secondary > th {
+ background-color: #cacdd4;
+ }
+ .table-secondary tbody + tbody,
+ .table-secondary td,
+ .table-secondary th,
+ .table-secondary thead th {
+ border-color: #9ca3b0;
+ }
+ .table-hover .table-secondary:hover,
+ .table-hover .table-secondary:hover > td,
+ .table-hover .table-secondary:hover > th {
+ background-color: #bcc0c9;
+ }
+ .table-success,
+ .table-success > td,
+ .table-success > th {
+ background-color: #bef3e3;
+ }
+ .table-success tbody + tbody,
+ .table-success td,
+ .table-success th,
+ .table-success thead th {
+ border-color: #86e8ca;
+ }
+ .table-hover .table-success:hover,
+ .table-hover .table-success:hover > td,
+ .table-hover .table-success:hover > th {
+ background-color: #a8efda;
+ }
+ .table-info,
+ .table-info > td,
+ .table-info > th {
+ background-color: #c4f1f7;
+ }
+ .table-info tbody + tbody,
+ .table-info td,
+ .table-info th,
+ .table-info thead th {
+ border-color: #92e6f0;
+ }
+ .table-hover .table-info:hover,
+ .table-hover .table-info:hover > td,
+ .table-hover .table-info:hover > th {
+ background-color: #aeecf4;
+ }
+ .table-warning,
+ .table-warning > td,
+ .table-warning > th {
+ background-color: #ffe7db;
+ }
+ .table-warning tbody + tbody,
+ .table-warning td,
+ .table-warning th,
+ .table-warning thead th {
+ border-color: #ffd2bb;
+ }
+ .table-hover .table-warning:hover,
+ .table-hover .table-warning:hover > td,
+ .table-hover .table-warning:hover > th {
+ background-color: #ffd6c2;
+ }
+ .table-danger,
+ .table-danger > td,
+ .table-danger > th {
+ background-color: #ffd8de;
+ }
+ .table-danger tbody + tbody,
+ .table-danger td,
+ .table-danger th,
+ .table-danger thead th {
+ border-color: #ffb7c1;
+ }
+ .table-hover .table-danger:hover,
+ .table-hover .table-danger:hover > td,
+ .table-hover .table-danger:hover > th {
+ background-color: #ffbfc8;
+ }
+ .table-light,
+ .table-light > td,
+ .table-light > th {
+ background-color: #ecedef;
+ }
+ .table-light tbody + tbody,
+ .table-light td,
+ .table-light th,
+ .table-light thead th {
+ border-color: #dbdee2;
+ }
+ .table-hover .table-light:hover,
+ .table-hover .table-light:hover > td,
+ .table-hover .table-light:hover > th {
+ background-color: #dee0e3;
+ }
+ .table-dark,
+ .table-dark > td,
+ .table-dark > th {
+ background-color: #bfc3ca;
+ }
+ .table-dark tbody + tbody,
+ .table-dark td,
+ .table-dark th,
+ .table-dark thead th {
+ border-color: #88909d;
+ }
+ .table-hover .table-dark:hover,
+ .table-hover .table-dark:hover > td,
+ .table-hover .table-dark:hover > th {
+ background-color: #b1b6be;
+ }
+ .table-active,
+ .table-active > td,
+ .table-active > th {
+ background-color: rgba(245, 247, 250, 0.5);
+ }
+ .table-hover .table-active:hover,
+ .table-hover .table-active:hover > td,
+ .table-hover .table-active:hover > th {
+ background-color: rgba(228, 233, 242, 0.5);
+ }
+ .table .thead-dark th {
+ color: #f5f7fa;
+ background-color: #2a2e30;
+ border-color: #3c4244;
+ }
+ .table .thead-light th {
+ color: #4e5154;
+ background-color: #98a4b8;
+ border-color: #98a4b8;
+ }
+ .table-dark {
+ color: #f5f7fa;
+ background-color: #2a2e30;
+ }
+ .table-dark td,
+ .table-dark th,
+ .table-dark thead th {
+ border-color: #3c4244;
+ }
+ .table-dark.table-bordered,
+ .table-responsive > .table-bordered {
+ border: 0;
+ }
+ .table-dark.table-striped tbody tr:nth-of-type(odd) {
+ background-color: rgba(255, 255, 255, 0.05);
+ }
+ .table-dark.table-hover tbody tr:hover {
+ color: #f5f7fa;
+ background-color: rgba(255, 255, 255, 0.075);
+ }
+ @media (max-width: 575.98px) {
+ .table-responsive-sm {
+ display: block;
+ width: 100%;
+ overflow-x: auto;
+ -webkit-overflow-scrolling: touch;
+ }
+ .table-responsive-sm > .table-bordered {
+ border: 0;
+ }
+ }
+ @media (max-width: 767.98px) {
+ .table-responsive-md {
+ display: block;
+ width: 100%;
+ overflow-x: auto;
+ -webkit-overflow-scrolling: touch;
+ }
+ .table-responsive-md > .table-bordered {
+ border: 0;
+ }
+ }
+ @media (max-width: 991.98px) {
+ .table-responsive-lg {
+ display: block;
+ width: 100%;
+ overflow-x: auto;
+ -webkit-overflow-scrolling: touch;
+ }
+ .table-responsive-lg > .table-bordered {
+ border: 0;
+ }
+ }
+ @media (max-width: 1199.98px) {
+ .table-responsive-xl {
+ display: block;
+ width: 100%;
+ overflow-x: auto;
+ -webkit-overflow-scrolling: touch;
+ }
+ .table-responsive-xl > .table-bordered {
+ border: 0;
+ }
+ }
+ @media (max-width: 1399.98px) {
+ .table-responsive-xxl {
+ display: block;
+ width: 100%;
+ overflow-x: auto;
+ -webkit-overflow-scrolling: touch;
+ }
+ .table-responsive-xxl > .table-bordered {
+ border: 0;
+ }
+ }
+ .table-responsive {
+ display: block;
+ width: 100%;
+ overflow-x: auto;
+ -webkit-overflow-scrolling: touch;
+ }
+ .accordion > .card,
+ .collapsing,
+ .modal-open,
+ .progress,
+ .progress-bar,
+ .toast {
+ overflow: hidden;
+ }
+ .form-control {
+ display: block;
+ width: 100%;
+ height: calc(2.75rem + 2px);
+ padding: 0.75rem 1rem;
+ font-size: 1rem;
+ line-height: 1.25;
+ color: #4e5154;
+ background-color: #fff;
+ background-clip: padding-box;
+ border: 1px solid #babfc7;
+ border-radius: 0.25rem;
+ -webkit-transition: border-color ease-in-out 0.15s,
+ box-shadow ease-in-out 0.15s;
+ transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
+ }
+ @media (prefers-reduced-motion: reduce) {
+ .form-control {
+ -webkit-transition: none;
+ transition: none;
+ }
+ }
+ .form-control::-ms-expand {
+ background-color: transparent;
+ border: 0;
+ }
+ .form-control:-moz-focusring {
+ color: transparent;
+ text-shadow: 0 0 0 #4e5154;
+ }
+ .form-control:focus {
+ color: #4e5154;
+ background-color: #fff;
+ border-color: #0677D4;
+ outline: 0;
+ box-shadow: none;
+ }
+ .form-control::-webkit-input-placeholder {
+ color: #babfc7;
+ opacity: 1;
+ }
+ .form-control::-moz-placeholder {
+ color: #babfc7;
+ opacity: 1;
+ }
+ .form-control:-ms-input-placeholder {
+ color: #babfc7;
+ opacity: 1;
+ }
+ .form-control::-ms-input-placeholder {
+ color: #babfc7;
+ opacity: 1;
+ }
+ .form-control::placeholder {
+ color: #babfc7;
+ opacity: 1;
+ }
+ .form-control:disabled,
+ .form-control[readonly] {
+ background-color: #eceff1;
+ opacity: 1;
+ }
+ select.form-control:focus::-ms-value {
+ color: #4e5154;
+ background-color: #fff;
+ }
+ .form-control-file,
+ .form-control-range {
+ display: block;
+ width: 100%;
+ }
+ .col-form-label {
+ padding-top: calc(0.75rem + 1px);
+ padding-bottom: calc(0.75rem + 1px);
+ margin-bottom: 0;
+ font-size: inherit;
+ line-height: 1.25;
+ }
+ .col-form-label-lg {
+ padding-top: calc(1rem + 1px);
+ padding-bottom: calc(1rem + 1px);
+ font-size: 1.25rem;
+ line-height: 1.25;
+ }
+ .col-form-label-sm {
+ padding-top: calc(0.25rem + 1px);
+ padding-bottom: calc(0.25rem + 1px);
+ font-size: 0.875rem;
+ line-height: 1;
+ }
+ .form-control-plaintext {
+ display: block;
+ width: 100%;
+ padding: 0.75rem 0;
+ margin-bottom: 0;
+ font-size: 1rem;
+ line-height: 1.25;
+ color: #404e67;
+ background-color: transparent;
+ border: solid transparent;
+ border-width: 1px 0;
+ }
+ .form-control-plaintext.form-control-lg,
+ .form-control-plaintext.form-control-sm {
+ padding-right: 0;
+ padding-left: 0;
+ }
+ .form-control-sm {
+ height: 2.25rem;
+ padding: 0.25rem 0.5rem;
+ font-size: 0.875rem;
+ line-height: 1;
+ border-radius: 0.21rem;
+ }
+ .form-control-lg {
+ height: calc(3.5625rem + 2px);
+ padding: 1rem 1.25rem;
+ font-size: 1.25rem;
+ line-height: 1.25;
+ border-radius: 0.27rem;
+ }
+ select.form-control[multiple],
+ select.form-control[size],
+ textarea.form-control {
+ height: auto;
+ }
+ .form-group {
+ margin-bottom: 1rem;
+ }
+ .form-text {
+ display: block;
+ margin-top: 0.25rem;
+ }
+ .form-row {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-flex-wrap: wrap;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ margin-right: -5px;
+ margin-left: -5px;
+ }
+ .form-row > .col,
+ .form-row > [class*="col-"] {
+ padding-right: 5px;
+ padding-left: 5px;
+ }
+ .form-check {
+ position: relative;
+ display: block;
+ padding-left: 1.25rem;
+ }
+ .form-check-input {
+ position: absolute;
+ margin-top: 0.25rem;
+ margin-left: -1.25rem;
+ }
+ .form-check-input:disabled ~ .form-check-label,
+ .form-check-input[disabled] ~ .form-check-label {
+ color: #404e67;
+ }
+ .form-check-label {
+ margin-bottom: 0;
+ }
+ .form-check-inline {
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ -webkit-box-align: center;
+ -webkit-align-items: center;
+ -ms-flex-align: center;
+ align-items: center;
+ padding-left: 0;
+ margin-right: 0.75rem;
+ }
+ .form-check-inline .form-check-input {
+ position: static;
+ margin-top: 0;
+ margin-right: 0.3125rem;
+ margin-left: 0;
+ }
+ .invalid-tooltip,
+ .valid-tooltip {
+ position: absolute;
+ z-index: 5;
+ max-width: 100%;
+ line-height: 1.45;
+ border-radius: 0.25rem;
+ top: 100%;
+ }
+ .valid-feedback {
+ display: none;
+ width: 100%;
+ margin-top: 0.25rem;
+ font-size: 80%;
+ color: #16d39a;
+ }
+ .valid-tooltip {
+ display: none;
+ padding: 0.25rem 0.5rem;
+ margin-top: 0.1rem;
+ font-size: 0.875rem;
+ color: #fff;
+ background-color: rgba(22, 211, 154, 0.9);
+ }
+ .form-check-input.is-valid ~ .valid-feedback,
+ .form-check-input.is-valid ~ .valid-tooltip,
+ .is-valid ~ .valid-feedback,
+ .is-valid ~ .valid-tooltip,
+ .was-validated .form-check-input:valid ~ .valid-feedback,
+ .was-validated .form-check-input:valid ~ .valid-tooltip,
+ .was-validated :valid ~ .valid-feedback,
+ .was-validated :valid ~ .valid-tooltip {
+ display: block;
+ }
+ .custom-control-input.is-valid ~ .custom-control-label,
+ .form-check-input.is-valid ~ .form-check-label,
+ .was-validated .custom-control-input:valid ~ .custom-control-label,
+ .was-validated .form-check-input:valid ~ .form-check-label {
+ color: #16d39a;
+ }
+ .form-control.is-valid,
+ .was-validated .form-control:valid {
+ border-color: #16d39a;
+ padding-right: 2.75rem;
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2316d39a' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
+ background-repeat: no-repeat;
+ background-position: right calc(0.3125em + 0.375rem) center;
+ background-size: calc(0.625em + 0.75rem) calc(0.625em + 0.75rem);
+ }
+ .form-control.is-valid:focus,
+ .was-validated .form-control:valid:focus {
+ border-color: #16d39a;
+ box-shadow: 0 0 0 0.2rem rgba(22, 211, 154, 0.25);
+ }
+ .was-validated textarea.form-control:valid,
+ textarea.form-control.is-valid {
+ padding-right: 2.75rem;
+ background-position: top calc(0.3125em + 0.375rem) right
+ calc(0.3125em + 0.375rem);
+ }
+ .custom-select.is-valid,
+ .was-validated .custom-select:valid {
+ border-color: #16d39a;
+ padding-right: calc(0.75em + 2.3125rem);
+ background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E")
+ right 0.75rem center/8px 10px no-repeat,
+ url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2316d39a' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e")
+ center right 1.75rem / calc(0.625em + 0.75rem) calc(0.625em + 0.75rem)
+ no-repeat #fff;
+ }
+ .custom-select.is-valid:focus,
+ .was-validated .custom-select:valid:focus {
+ border-color: #16d39a;
+ box-shadow: 0 0 0 0.2rem rgba(22, 211, 154, 0.25);
+ }
+ .custom-control-input.is-valid ~ .custom-control-label::before,
+ .was-validated .custom-control-input:valid ~ .custom-control-label::before {
+ border-color: #16d39a;
+ }
+ .custom-control-input.is-valid:checked ~ .custom-control-label::before,
+ .was-validated
+ .custom-control-input:valid:checked
+ ~ .custom-control-label::before {
+ border-color: #32eab2;
+ background-color: #32eab2;
+ }
+ .custom-control-input.is-valid:focus ~ .custom-control-label::before,
+ .was-validated
+ .custom-control-input:valid:focus
+ ~ .custom-control-label::before {
+ box-shadow: 0 0 0 0.2rem rgba(22, 211, 154, 0.25);
+ }
+ .custom-control-input.is-valid:focus:not(:checked)
+ ~ .custom-control-label::before,
+ .custom-file-input.is-valid ~ .custom-file-label,
+ .was-validated
+ .custom-control-input:valid:focus:not(:checked)
+ ~ .custom-control-label::before,
+ .was-validated .custom-file-input:valid ~ .custom-file-label {
+ border-color: #16d39a;
+ }
+ .custom-file-input.is-valid:focus ~ .custom-file-label,
+ .was-validated .custom-file-input:valid:focus ~ .custom-file-label {
+ border-color: #16d39a;
+ box-shadow: 0 0 0 0.2rem rgba(22, 211, 154, 0.25);
+ }
+ .invalid-feedback {
+ display: none;
+ width: 100%;
+ margin-top: 0.25rem;
+ font-size: 80%;
+ color: #F08080;
+ }
+ .invalid-tooltip {
+ display: none;
+ padding: 0.25rem 0.5rem;
+ margin-top: 0.1rem;
+ font-size: 0.875rem;
+ color: #2a2e30;
+ background-color: rgba(255, 117, 136, 0.9);
+ }
+ .collapsing,
+ .dropdown,
+ .dropleft,
+ .dropright,
+ .dropup {
+ position: relative;
+ }
+ .form-check-input.is-invalid ~ .invalid-feedback,
+ .form-check-input.is-invalid ~ .invalid-tooltip,
+ .is-invalid ~ .invalid-feedback,
+ .is-invalid ~ .invalid-tooltip,
+ .was-validated .form-check-input:invalid ~ .invalid-feedback,
+ .was-validated .form-check-input:invalid ~ .invalid-tooltip,
+ .was-validated :invalid ~ .invalid-feedback,
+ .was-validated :invalid ~ .invalid-tooltip {
+ display: block;
+ }
+ .custom-control-input.is-invalid ~ .custom-control-label,
+ .form-check-input.is-invalid ~ .form-check-label,
+ .was-validated .custom-control-input:invalid ~ .custom-control-label,
+ .was-validated .form-check-input:invalid ~ .form-check-label {
+ color: #F08080;
+ }
+ .form-control.is-invalid,
+ .was-validated .form-control:invalid {
+ border-color: #F08080;
+ padding-right: 2.75rem;
+ background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ff7588' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ff7588' stroke='none'/%3e%3c/svg%3e");
+ background-repeat: no-repeat;
+ background-position: right calc(0.3125em + 0.375rem) center;
+ background-size: calc(0.625em + 0.75rem) calc(0.625em + 0.75rem);
+ }
+ .form-control.is-invalid:focus,
+ .was-validated .form-control:invalid:focus {
+ border-color: #F08080;
+ box-shadow: 0 0 0 0.2rem rgba(255, 117, 136, 0.25);
+ }
+ .was-validated textarea.form-control:invalid,
+ textarea.form-control.is-invalid {
+ padding-right: 2.75rem;
+ background-position: top calc(0.3125em + 0.375rem) right
+ calc(0.3125em + 0.375rem);
+ }
+ .custom-select.is-invalid,
+ .was-validated .custom-select:invalid {
+ border-color: #F08080;
+ padding-right: calc(0.75em + 2.3125rem);
+ background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E")
+ right 0.75rem center/8px 10px no-repeat,
+ url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ff7588' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ff7588' stroke='none'/%3e%3c/svg%3e")
+ center right 1.75rem / calc(0.625em + 0.75rem) calc(0.625em + 0.75rem)
+ no-repeat #fff;
+ }
+ .custom-select.is-invalid:focus,
+ .was-validated .custom-select:invalid:focus {
+ border-color: #F08080;
+ box-shadow: 0 0 0 0.2rem rgba(255, 117, 136, 0.25);
+ }
+ .custom-control-input.is-invalid ~ .custom-control-label::before,
+ .was-validated .custom-control-input:invalid ~ .custom-control-label::before {
+ border-color: #F08080;
+ }
+ .custom-control-input.is-invalid:checked ~ .custom-control-label::before,
+ .was-validated
+ .custom-control-input:invalid:checked
+ ~ .custom-control-label::before {
+ border-color: #ffa8b4;
+ background-color: #ffa8b4;
+ }
+ .custom-control-input.is-invalid:focus ~ .custom-control-label::before,
+ .was-validated
+ .custom-control-input:invalid:focus
+ ~ .custom-control-label::before {
+ box-shadow: 0 0 0 0.2rem rgba(255, 117, 136, 0.25);
+ }
+ .custom-control-input.is-invalid:focus:not(:checked)
+ ~ .custom-control-label::before,
+ .custom-file-input.is-invalid ~ .custom-file-label,
+ .was-validated
+ .custom-control-input:invalid:focus:not(:checked)
+ ~ .custom-control-label::before,
+ .was-validated .custom-file-input:invalid ~ .custom-file-label {
+ border-color: #F08080;
+ }
+ .custom-file-input.is-invalid:focus ~ .custom-file-label,
+ .was-validated .custom-file-input:invalid:focus ~ .custom-file-label {
+ border-color: #F08080;
+ box-shadow: 0 0 0 0.2rem rgba(255, 117, 136, 0.25);
+ }
+ .form-inline {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -webkit-flex-flow: row wrap;
+ -ms-flex-flow: row wrap;
+ flex-flow: row wrap;
+ -webkit-box-align: center;
+ -webkit-align-items: center;
+ -ms-flex-align: center;
+ align-items: center;
+ }
+ .form-inline .form-check {
+ width: 100%;
+ }
+ @media (min-width: 576px) {
+ .form-inline label {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -webkit-align-items: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: center;
+ -webkit-justify-content: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ margin-bottom: 0;
+ }
+ .form-inline .form-group {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 auto;
+ -ms-flex: 0 0 auto;
+ flex: 0 0 auto;
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -webkit-flex-flow: row wrap;
+ -ms-flex-flow: row wrap;
+ flex-flow: row wrap;
+ -webkit-box-align: center;
+ -webkit-align-items: center;
+ -ms-flex-align: center;
+ align-items: center;
+ margin-bottom: 0;
+ }
+ .form-inline .form-control {
+ display: inline-block;
+ width: auto;
+ vertical-align: middle;
+ }
+ .form-inline .form-control-plaintext {
+ display: inline-block;
+ }
+ .form-inline .custom-select,
+ .form-inline .input-group {
+ width: auto;
+ }
+ .form-inline .form-check {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -webkit-align-items: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: center;
+ -webkit-justify-content: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ width: auto;
+ padding-left: 0;
+ }
+ .form-inline .form-check-input {
+ position: relative;
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+ margin-top: 0;
+ margin-right: 0.25rem;
+ margin-left: 0;
+ }
+ .form-inline .custom-control {
+ -webkit-box-align: center;
+ -webkit-align-items: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: center;
+ -webkit-justify-content: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ }
+ .form-inline .custom-control-label {
+ margin-bottom: 0;
+ }
+ }
+ .btn-block,
+ input[type="button"].btn-block,
+ input[type="reset"].btn-block,
+ input[type="submit"].btn-block {
+ width: 100%;
+ }
+ .btn {
+ display: inline-block;
+ color: #404e67;
+ text-align: center;
+ vertical-align: middle;
+ -webkit-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+ background-color: transparent;
+ border: 1px solid transparent;
+ padding: 0.75rem 1rem;
+ font-size: 1rem;
+ line-height: 1.25;
+ border-radius: 0.25rem;
+ -webkit-transition: background-color 0.15s ease-in-out,
+ border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
+ box-shadow 0.15s ease-in-out;
+ }
+
+ @media (prefers-reduced-motion: reduce) {
+ .btn {
+ -webkit-transition: none;
+ transition: none;
+ }
+ }
+ .btn:hover {
+ color: #404e67;
+ }
+ .btn.focus,
+ .btn:focus {
+ outline: 0;
+ box-shadow: none;
+ }
+ .btn-primary.focus,
+ .btn-primary:focus,
+ .btn-primary:not(:disabled):not(.disabled).active:focus,
+ .btn-primary:not(:disabled):not(.disabled):active:focus,
+
+ .btn.disabled,
+ .btn:disabled {
+ opacity: 0.65;
+ }
+ a.btn.disabled,
+ fieldset:disabled a.btn {
+ pointer-events: none;
+ }
+ .btn-primary {
+ color: #fff;
+ background-color: #0677D4;
+ border-color: #0677D4;
+ }
+ .btn-primary.focus,
+ .btn-primary:focus,
+ .btn-primary:hover {
+ background-color: #008f92;
+ border-color: #0278d5;
+ color: #fff;
+ }
+ .btn-primary.disabled,
+ .btn-primary:disabled {
+ color: #fff;
+ background-color: #0677D4;
+ border-color: #0677D4;
+ }
+ .btn-primary:not(:disabled):not(.disabled).active,
+ .btn-primary:not(:disabled):not(.disabled):active,
+
+ .btn-secondary.focus,
+ .btn-secondary:focus,
+ .btn-secondary:not(:disabled):not(.disabled).active:focus,
+ .btn-secondary:not(:disabled):not(.disabled):active:focus,
+
+ .btn-secondary {
+ color: #fff;
+ background-color: #404e67;
+ border-color: #404e67;
+ }
+ .btn-secondary.focus,
+ .btn-secondary:focus,
+ .btn-secondary:hover {
+ background-color: #313c4f;
+ border-color: #2c3648;
+ color: #fff;
+ }
+ .btn-secondary.disabled,
+ .btn-secondary:disabled {
+ color: #fff;
+ background-color: #404e67;
+ border-color: #404e67;
+ }
+ .btn-secondary:not(:disabled):not(.disabled).active,
+ .btn-secondary:not(:disabled):not(.disabled):active,
+
+ .btn-success.focus,
+ .btn-success:focus,
+ .btn-success:not(:disabled):not(.disabled).active:focus,
+ .btn-success:not(:disabled):not(.disabled):active:focus,
+
+ .btn-success {
+ color: #fff;
+ background-color: #16d39a;
+ border-color: #16d39a;
+ }
+ .btn-success.focus,
+ .btn-success:focus,
+ .btn-success:hover {
+ background-color: #12b081;
+ border-color: #11a578;
+ color: #fff;
+ }
+ .btn-success.disabled,
+ .btn-success:disabled {
+ color: #fff;
+ background-color: #16d39a;
+ border-color: #16d39a;
+ }
+ .btn-success:not(:disabled):not(.disabled).active,
+ .btn-success:not(:disabled):not(.disabled):active,
+
+ .btn-info.focus,
+ .btn-info:focus,
+ .btn-info:not(:disabled):not(.disabled).active:focus,
+ .btn-info:not(:disabled):not(.disabled):active:focus,
+
+ .btn-info {
+ color: #2a2e30;
+ background-color: #2dcee3;
+ border-color: #2dcee3;
+ }
+ .btn-info.focus,
+ .btn-info:focus,
+ .btn-info:hover {
+ color: #fff;
+ background-color: #1cbace;
+ border-color: #1ab0c3;
+ }
+ .btn-info.disabled,
+ .btn-info:disabled {
+ color: #2a2e30;
+ background-color: #2dcee3;
+ border-color: #2dcee3;
+ }
+ .btn-info:not(:disabled):not(.disabled).active,
+ .btn-info:not(:disabled):not(.disabled):active,
+
+ .btn-warning.focus,
+ .btn-warning:focus,
+ .btn-warning:not(:disabled):not(.disabled).active:focus,
+ .btn-warning:not(:disabled):not(.disabled):active:focus,
+
+ .btn-warning {
+ color: #2a2e30;
+ background-color: #ffa87d;
+ border-color: #ffa87d;
+ }
+ .btn-warning.focus,
+ .btn-warning:focus,
+ .btn-warning:hover {
+ background-color: #ff8e57;
+ border-color: #ff864a;
+ color: #2a2e30;
+ }
+ .btn-warning.disabled,
+ .btn-warning:disabled {
+ color: #2a2e30;
+ background-color: #ffa87d;
+ border-color: #ffa87d;
+ }
+ .btn-warning:not(:disabled):not(.disabled).active,
+ .btn-warning:not(:disabled):not(.disabled):active,
+
+ .btn-danger.focus,
+ .btn-danger:focus,
+ .btn-danger:not(:disabled):not(.disabled).active:focus,
+ .btn-danger:not(:disabled):not(.disabled):active:focus,
+
+ .btn-danger {
+ color: #2a2e30;
+ background-color: #F08080;
+ border-color: #F08080;
+ }
+ .btn-danger.focus,
+ .btn-danger:focus,
+ .btn-danger:hover {
+ color: #fff;
+ background-color: #ff4f67;
+ border-color: #ff425c;
+ }
+ .btn-danger.disabled,
+ .btn-danger:disabled {
+ color: #2a2e30;
+ background-color: #F08080;
+ border-color: #F08080;
+ }
+ .btn-danger:not(:disabled):not(.disabled).active,
+ .btn-danger:not(:disabled):not(.disabled):active,
+
+ .btn-light.focus,
+ .btn-light:focus,
+ .btn-light:not(:disabled):not(.disabled).active:focus,
+ .btn-light:not(:disabled):not(.disabled):active:focus,
+
+ .btn-light {
+ color: #2a2e30;
+ background-color: #dfdfdf;
+ border-color: #babfc7;
+ }
+ .btn-light.focus,
+ .btn-light:focus,
+ .btn-light:hover {
+ background-color: #a5abb6;
+ border-color: #9ea5b0;
+ color: #2a2e30;
+ }
+ .btn-light.disabled,
+ .btn-light:disabled {
+ color: #2a2e30;
+ background-color: #babfc7;
+ border-color: #babfc7;
+ }
+ .btn-light:not(:disabled):not(.disabled).active,
+ .btn-light:not(:disabled):not(.disabled):active,
+
+ .btn-dark.focus,
+ .btn-dark:focus,
+ .btn-dark:not(:disabled):not(.disabled).active:focus,
+ .btn-dark:not(:disabled):not(.disabled):active:focus,
+
+ .btn-dark {
+ color: #fff;
+ background-color: #1b2942;
+ border-color: #1b2942;
+ }
+ .btn-dark.focus,
+ .btn-dark:focus,
+ .btn-dark:hover {
+ background-color: #101827;
+ border-color: #0c131e;
+ color: #fff;
+ }
+ .btn-dark.disabled,
+ .btn-dark:disabled {
+ color: #fff;
+ background-color: #1b2942;
+ border-color: #1b2942;
+ }
+ .btn-dark:not(:disabled):not(.disabled).active,
+ .btn-dark:not(:disabled):not(.disabled):active,
+
+ .btn-outline-primary.focus,
+ .btn-outline-primary:focus,
+ .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
+ .btn-outline-primary:not(:disabled):not(.disabled):active:focus,
+
+ .btn-outline-primary {
+ color: #0677D4;
+ border-color: #0677D4;
+ }
+ .btn-outline-primary:hover {
+ color: #fff;
+ background-color: #0677D4;
+ border-color: #0677D4;
+ }
+ .btn-outline-primary.disabled,
+ .btn-outline-primary:disabled {
+ color: #0677D4;
+ background-color: transparent;
+ }
+ .btn-outline-primary:not(:disabled):not(.disabled).active,
+ .btn-outline-primary:not(:disabled):not(.disabled):active,
+
+ .btn-outline-secondary.focus,
+ .btn-outline-secondary:focus,
+ .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
+ .btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
+
+ .btn-outline-secondary {
+ color: #404e67;
+ border-color: #404e67;
+ }
+ .btn-outline-secondary:hover {
+ color: #fff;
+ background-color: #404e67;
+ border-color: #404e67;
+ }
+ .btn-outline-secondary.disabled,
+ .btn-outline-secondary:disabled {
+ color: #404e67;
+ background-color: transparent;
+ }
+ .btn-outline-secondary:not(:disabled):not(.disabled).active,
+ .btn-outline-secondary:not(:disabled):not(.disabled):active,
+
+ .btn-outline-success.focus,
+ .btn-outline-success:focus,
+ .btn-outline-success:not(:disabled):not(.disabled).active:focus,
+ .btn-outline-success:not(:disabled):not(.disabled):active:focus,
+
+ .btn-outline-success {
+ color: #16d39a;
+ border-color: #16d39a;
+ }
+ .btn-outline-success:hover {
+ color: #fff;
+ background-color: #16d39a;
+ border-color: #16d39a;
+ }
+ .btn-outline-success.disabled,
+ .btn-outline-success:disabled {
+ color: #16d39a;
+ background-color: transparent;
+ }
+ .btn-outline-success:not(:disabled):not(.disabled).active,
+ .btn-outline-success:not(:disabled):not(.disabled):active,
+
+ .btn-outline-info.focus,
+ .btn-outline-info:focus,
+ .btn-outline-info:not(:disabled):not(.disabled).active:focus,
+ .btn-outline-info:not(:disabled):not(.disabled):active:focus,
+
+ .btn-outline-info {
+ color: #2dcee3;
+ border-color: #2dcee3;
+ }
+ .btn-outline-info:hover {
+ color: #2a2e30;
+ background-color: #2dcee3;
+ border-color: #2dcee3;
+ }
+ .btn-outline-info.disabled,
+ .btn-outline-info:disabled {
+ color: #2dcee3;
+ background-color: transparent;
+ }
+ .btn-outline-info:not(:disabled):not(.disabled).active,
+ .btn-outline-info:not(:disabled):not(.disabled):active,
+
+ .btn-outline-warning.focus,
+ .btn-outline-warning:focus,
+ .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
+ .btn-outline-warning:not(:disabled):not(.disabled):active:focus,
+
+ .btn-outline-warning {
+ color: #ffa87d;
+ border-color: #ffa87d;
+ }
+ .btn-outline-warning:hover {
+ color: #2a2e30;
+ background-color: #ffa87d;
+ border-color: #ffa87d;
+ }
+ .btn-outline-warning.disabled,
+ .btn-outline-warning:disabled {
+ color: #ffa87d;
+ background-color: transparent;
+ }
+ .btn-outline-warning:not(:disabled):not(.disabled).active,
+ .btn-outline-warning:not(:disabled):not(.disabled):active,
+
+ .btn-outline-danger.focus,
+ .btn-outline-danger:focus,
+ .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
+ .btn-outline-danger:not(:disabled):not(.disabled):active:focus,
+
+ .btn-outline-danger {
+ color: #F08080;
+ border-color: #F08080;
+ }
+ .btn-outline-danger:hover {
+ color: #2a2e30;
+ background-color: #F08080;
+ border-color: #F08080;
+ }
+ .btn-outline-danger.disabled,
+ .btn-outline-danger:disabled {
+ color: #F08080;
+ background-color: transparent;
+ }
+ .btn-outline-danger:not(:disabled):not(.disabled).active,
+ .btn-outline-danger:not(:disabled):not(.disabled):active,
+
+ .btn-outline-light.focus,
+ .btn-outline-light:focus,
+ .btn-outline-light:not(:disabled):not(.disabled).active:focus,
+ .btn-outline-light:not(:disabled):not(.disabled):active:focus,
+
+ .btn-outline-light {
+ color: #babfc7;
+ border-color: #babfc7;
+ }
+ .btn-outline-light:hover {
+ color: #2a2e30;
+ background-color: #babfc7;
+ border-color: #babfc7;
+ }
+ .btn-outline-light.disabled,
+ .btn-outline-light:disabled {
+ color: #babfc7;
+ background-color: transparent;
+ }
+ .btn-outline-light:not(:disabled):not(.disabled).active,
+ .btn-outline-light:not(:disabled):not(.disabled):active,
+
+ .btn-outline-dark.focus,
+ .btn-outline-dark:focus,
+ .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
+ .btn-outline-dark:not(:disabled):not(.disabled):active:focus,
+
+ .btn-outline-dark {
+ color: #1b2942;
+ border-color: #1b2942;
+ }
+ .btn-outline-dark:hover {
+ color: #fff;
+ background-color: #1b2942;
+ border-color: #1b2942;
+ }
+ .btn-outline-dark.disabled,
+ .btn-outline-dark:disabled {
+ color: #1b2942;
+ background-color: transparent;
+ }
+ .btn-outline-dark:not(:disabled):not(.disabled).active,
+ .btn-outline-dark:not(:disabled):not(.disabled):active,
+
+ .btn-link {
+ color: #0278d5;
+ }
+ .btn-link:hover {
+ color: #0278d5;
+ }
+ .btn-link.focus,
+ .btn-link:focus {
+ box-shadow: none;
+ }
+ .btn-link.disabled,
+ .btn-link:disabled {
+ color: #404e67;
+ pointer-events: none;
+ }
+ .btn-group-lg > .btn,
+ .btn-lg {
+ padding: 1rem 1.25rem;
+ font-size: 1.25rem;
+ line-height: 1.25;
+ border-radius: 0.27rem;
+ }
+ .btn-group-sm > .btn,
+ .btn-sm {
+ padding: 0.25rem 0.5rem;
+ font-size: 0.875rem;
+ line-height: 1;
+ border-radius: 0.21rem;
+ }
+ .btn-block {
+ display: block;
+ }
+ .btn-block + .btn-block {
+ margin-top: 0.5rem;
+ }
+ .fade {
+ -webkit-transition: opacity 0.15s linear;
+ transition: opacity 0.15s linear;
+ }
+ @media (prefers-reduced-motion: reduce) {
+ .fade {
+ -webkit-transition: none;
+ transition: none;
+ }
+ }
+ .fade:not(.show) {
+ opacity: 0;
+ }
+ .collapse:not(.show) {
+ display: none;
+ }
+ .collapsing {
+ height: 0;
+ -webkit-transition: height 0.35s ease;
+ transition: height 0.35s ease;
+ }
+ @media (prefers-reduced-motion: reduce) {
+ .collapsing {
+ -webkit-transition: none;
+ transition: none;
+ }
+ }
+ .dropdown-menu {
+ position: absolute;
+ top: 100%;
+ left: 0;
+ z-index: 1000;
+ display: none;
+ float: left;
+ min-width: 10rem;
+ padding: 0.5rem 0;
+ margin: 0.125rem 0 0;
+ font-size: 1rem;
+ color: #404e67;
+ text-align: left;
+ background-color: #fff;
+ background-clip: padding-box;
+ border: 1px solid rgba(0, 0, 0, 0.15);
+ border-radius: 0.25rem;
+ }
+ .dropdown-menu-left {
+ right: auto;
+ left: 0;
+ }
+ .dropdown-menu-right {
+ right: 0;
+ left: auto;
+ }
+ @media (min-width: 576px) {
+ .dropdown-menu-sm-left {
+ right: auto;
+ left: 0;
+ }
+ .dropdown-menu-sm-right {
+ right: 0;
+ left: auto;
+ }
+ }
+ @media (min-width: 768px) {
+ .dropdown-menu-md-left {
+ right: auto;
+ left: 0;
+ }
+ .dropdown-menu-md-right {
+ right: 0;
+ left: auto;
+ }
+ }
+ @media (min-width: 992px) {
+ .dropdown-menu-lg-left {
+ right: auto;
+ left: 0;
+ }
+ .dropdown-menu-lg-right {
+ right: 0;
+ left: auto;
+ }
+ }
+ @media (min-width: 1200px) {
+ .dropdown-menu-xl-left {
+ right: auto;
+ left: 0;
+ }
+ .dropdown-menu-xl-right {
+ right: 0;
+ left: auto;
+ }
+ }
+ @media (min-width: 1400px) {
+ .dropdown-menu-xxl-left {
+ right: auto;
+ left: 0;
+ }
+ .dropdown-menu-xxl-right {
+ right: 0;
+ left: auto;
+ }
+ }
+ .dropup .dropdown-menu {
+ top: auto;
+ bottom: 100%;
+ margin-top: 0;
+ margin-bottom: 0.125rem;
+ }
+
+
+
+ .dropdown-menu[x-placement^="top"],
+ .dropdown-menu[x-placement^="right"],
+ .dropdown-menu[x-placement^="bottom"],
+ .dropdown-menu[x-placement^="left"] {
+ right: auto;
+ bottom: auto;
+ }
+ .dropdown-divider {
+ height: 0;
+ margin: 0.5rem 0;
+ overflow: hidden;
+ border-top: 1px solid rgba(0, 0, 0, 0.15);
+ }
+ .btn-group-toggle > .btn,
+ .btn-group-toggle > .btn-group > .btn,
+ .custom-control-label,
+ .custom-file,
+ .dropdown-header,
+ .input-group-text,
+ .nav {
+ margin-bottom: 0;
+ }
+ .btn-group > .btn-group:not(:last-child) > .btn,
+ .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
+ .input-group > .custom-file:not(:last-child) .custom-file-label,
+ .input-group > .custom-file:not(:last-child) .custom-file-label::after,
+ .input-group > .custom-select:not(:last-child),
+ .input-group > .form-control:not(:last-child) {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0;
+ }
+ .btn-group > .btn-group:not(:first-child) > .btn,
+ .btn-group > .btn:not(:first-child),
+ .input-group > .custom-file:not(:first-child) .custom-file-label,
+ .input-group > .custom-select:not(:first-child),
+ .input-group > .form-control:not(:first-child) {
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0;
+ }
+ .dropdown-item:focus,
+ .dropdown-item:hover {
+ color: #1e2122;
+ background-color: #f5f7fa;
+ }
+ .dropdown-item.active,
+ .dropdown-item:active {
+ color: #fff;
+ text-decoration: none;
+ background-color: #0677D4;
+ }
+ .dropdown-item.disabled,
+ .dropdown-item:disabled {
+ color: #404e67;
+ pointer-events: none;
+ background-color: transparent;
+ }
+ .dropdown-menu.show {
+ display: block;
+ }
+ .dropdown-header {
+ display: block;
+ padding: 0.5rem 1.5rem;
+ font-size: 0.875rem;
+ color: #404e67;
+ }
+ .dropdown-item-text {
+ display: block;
+ padding: 0.25rem 1.5rem;
+ color: #2a2e30;
+ }
+ .btn-group,
+ .btn-group-vertical {
+ position: relative;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ vertical-align: middle;
+ }
+ .btn-toolbar,
+ .input-group {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ }
+ .btn-group-vertical > .btn,
+ .btn-group > .btn {
+ position: relative;
+ -webkit-box-flex: 1;
+ -webkit-flex: 1 1 auto;
+ -ms-flex: 1 1 auto;
+ flex: 1 1 auto;
+ }
+ .btn-group-vertical > .btn.active,
+ .btn-group-vertical > .btn:active,
+ .btn-group-vertical > .btn:focus,
+ .btn-group-vertical > .btn:hover,
+ .btn-group > .btn.active,
+ .btn-group > .btn:active,
+ .btn-group > .btn:focus,
+ .btn-group > .btn:hover {
+ z-index: 1;
+ }
+ .btn-toolbar {
+ display: flex;
+ -webkit-flex-wrap: wrap;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ -webkit-box-pack: start;
+ -webkit-justify-content: flex-start;
+ -ms-flex-pack: start;
+ justify-content: flex-start;
+ }
+ .btn-toolbar .input-group {
+ width: auto;
+ }
+ .btn-group > .btn-group:not(:first-child),
+ .btn-group > .btn:not(:first-child) {
+ margin-left: -1px;
+ }
+ .input-group-append,
+ .input-group-append .btn + .btn,
+ .input-group-append .btn + .input-group-text,
+ .input-group-append .input-group-text + .btn,
+ .input-group-append .input-group-text + .input-group-text,
+ .input-group-prepend .btn + .btn,
+ .input-group-prepend .btn + .input-group-text,
+ .input-group-prepend .input-group-text + .btn,
+ .input-group-prepend .input-group-text + .input-group-text,
+ .input-group > .custom-file + .custom-file,
+ .input-group > .custom-file + .custom-select,
+ .input-group > .custom-file + .form-control,
+ .input-group > .custom-select + .custom-file,
+ .input-group > .custom-select + .custom-select,
+ .input-group > .custom-select + .form-control,
+ .input-group > .form-control + .custom-file,
+ .input-group > .form-control + .custom-select,
+ .input-group > .form-control + .form-control,
+ .input-group > .form-control-plaintext + .custom-file,
+ .input-group > .form-control-plaintext + .custom-select,
+ .input-group > .form-control-plaintext + .form-control {
+ margin-left: -1px;
+ }
+ .btn-group-vertical {
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -webkit-flex-direction: column;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ -webkit-box-align: start;
+ -webkit-align-items: flex-start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+ -webkit-box-pack: center;
+ -webkit-justify-content: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ }
+ .btn-group-vertical > .btn,
+ .btn-group-vertical > .btn-group {
+ width: 100%;
+ }
+ .btn-group-vertical > .btn-group:not(:first-child),
+ .btn-group-vertical > .btn:not(:first-child) {
+ margin-top: -1px;
+ }
+ .btn-group-vertical > .btn-group:not(:last-child) > .btn,
+ .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle) {
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0;
+ }
+ .btn-group-vertical > .btn-group:not(:first-child) > .btn,
+ .btn-group-vertical > .btn:not(:first-child) {
+ border-top-left-radius: 0;
+ border-top-right-radius: 0;
+ }
+ .btn-group-toggle > .btn input[type="checkbox"],
+ .btn-group-toggle > .btn input[type="radio"],
+ .btn-group-toggle > .btn-group > .btn input[type="checkbox"],
+ .btn-group-toggle > .btn-group > .btn input[type="radio"] {
+ position: absolute;
+ clip: rect(0, 0, 0, 0);
+ pointer-events: none;
+ }
+ .input-group {
+ position: relative;
+ display: flex;
+ -webkit-flex-wrap: wrap;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ -webkit-box-align: stretch;
+ -webkit-align-items: stretch;
+ -ms-flex-align: stretch;
+ align-items: stretch;
+ width: 100%;
+ }
+ .input-group > .custom-file,
+ .input-group > .custom-select,
+ .input-group > .form-control,
+ .input-group > .form-control-plaintext {
+ position: relative;
+ -webkit-box-flex: 1;
+ -webkit-flex: 1 1 0;
+ -ms-flex: 1 1 0;
+ flex: 1 1 0;
+ min-width: 0;
+ margin-bottom: 0;
+ }
+ .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label,
+ .input-group > .custom-select:focus,
+ .input-group > .form-control:focus {
+ z-index: 3;
+ }
+ .input-group > .custom-file .custom-file-input:focus {
+ z-index: 4;
+ }
+ .input-group > .custom-file {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -webkit-align-items: center;
+ -ms-flex-align: center;
+ align-items: center;
+ }
+ .input-group-append,
+ .input-group-prepend {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ }
+ .input-group-append .btn,
+ .input-group-prepend .btn {
+ position: relative;
+ z-index: 2;
+ }
+ .input-group-append .btn:focus,
+ .input-group-prepend .btn:focus {
+ z-index: 3;
+ }
+ .input-group-prepend {
+ margin-right: -1px;
+ }
+ .input-group-text {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -webkit-align-items: center;
+ -ms-flex-align: center;
+ align-items: center;
+ padding: 0.75rem 1rem;
+ font-size: 1rem;
+ line-height: 1.25;
+ color: #4e5154;
+ text-align: center;
+ background-color: #f5f7fa;
+ border: 1px solid #babfc7;
+ border-radius: 0.25rem;
+ }
+ .input-group-text input[type="checkbox"],
+ .input-group-text input[type="radio"] {
+ margin-top: 0;
+ }
+ .input-group-lg > .custom-select,
+ .input-group-lg > .form-control:not(textarea) {
+ height: calc(3.5625rem + 2px);
+ }
+ .input-group-lg > .custom-select,
+ .input-group-lg > .form-control,
+ .input-group-lg > .input-group-append > .btn,
+ .input-group-lg > .input-group-append > .input-group-text,
+ .input-group-lg > .input-group-prepend > .btn,
+ .input-group-lg > .input-group-prepend > .input-group-text {
+ padding: 1rem 1.25rem;
+ font-size: 1.25rem;
+ line-height: 1.25;
+ border-radius: 0.27rem;
+ }
+ .input-group-sm > .custom-select,
+ .input-group-sm > .form-control:not(textarea) {
+ height: 2.25rem;
+ }
+ .input-group-sm > .custom-select,
+ .input-group-sm > .form-control,
+ .input-group-sm > .input-group-append > .btn,
+ .input-group-sm > .input-group-append > .input-group-text,
+ .input-group-sm > .input-group-prepend > .btn,
+ .input-group-sm > .input-group-prepend > .input-group-text {
+ padding: 0.25rem 0.5rem;
+ font-size: 0.875rem;
+ line-height: 1;
+ border-radius: 0.21rem;
+ }
+ .input-group-lg > .custom-select,
+ .input-group-sm > .custom-select {
+ padding-right: 1.75rem;
+ }
+ .input-group
+ > .input-group-append:last-child
+ > .btn:not(:last-child):not(.dropdown-toggle),
+ .input-group
+ > .input-group-append:last-child
+ > .input-group-text:not(:last-child),
+ .input-group > .input-group-append:not(:last-child) > .btn,
+ .input-group > .input-group-append:not(:last-child) > .input-group-text,
+ .input-group > .input-group-prepend > .btn,
+ .input-group > .input-group-prepend > .input-group-text {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0;
+ }
+ .input-group > .input-group-append > .btn,
+ .input-group > .input-group-append > .input-group-text,
+ .input-group > .input-group-prepend:first-child > .btn:not(:first-child),
+ .input-group
+ > .input-group-prepend:first-child
+ > .input-group-text:not(:first-child),
+ .input-group > .input-group-prepend:not(:first-child) > .btn,
+ .input-group > .input-group-prepend:not(:first-child) > .input-group-text {
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0;
+ }
+ .custom-control {
+ position: relative;
+ display: block;
+ min-height: 1.45rem;
+ padding-left: 2.5rem;
+ }
+ .custom-control-inline {
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ margin-right: 1.1rem;
+ }
+ .custom-control-input {
+ position: absolute;
+ left: 0;
+ z-index: -1;
+ width: 1rem;
+ height: 1.225rem;
+ opacity: 0;
+ }
+ .custom-control-input:checked ~ .custom-control-label::before {
+ color: #fff;
+ border-color: #0677D4;
+ background-color: #0677D4;
+ }
+ .custom-control-input:focus ~ .custom-control-label::before {
+ box-shadow: 0 0 0 1px #f5f7fa, none;
+ }
+ .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
+ border-color: #0677D4;
+ }
+ .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
+ color: #fff;
+ background-color: #6cfdff;
+ border-color: #6cfdff;
+ }
+ .custom-control-input:disabled ~ .custom-control-label,
+ .custom-control-input[disabled] ~ .custom-control-label {
+ color: #404e67;
+ }
+ .custom-control-input:disabled ~ .custom-control-label::before,
+ .custom-control-input[disabled] ~ .custom-control-label::before {
+ background-color: #eceff1;
+ }
+ .custom-control-label {
+ position: relative;
+ vertical-align: top;
+ }
+ .custom-control-label::after,
+ .custom-control-label::before {
+ position: absolute;
+ top: 0.225rem;
+ left: -2.5rem;
+ display: block;
+ width: 1rem;
+ height: 1rem;
+ content: "";
+ }
+ .custom-control-label::before {
+ pointer-events: none;
+ background-color: #ddd;
+ border: 1px solid #adb5bd;
+ }
+ .custom-control-label::after {
+ background: 50%/50% 50% no-repeat;
+ }
+ .custom-checkbox .custom-control-label::before {
+ border-radius: 0.25rem;
+ }
+ .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
+ background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
+ }
+ .custom-checkbox
+ .custom-control-input:indeterminate
+ ~ .custom-control-label::before {
+ border-color: #0677D4;
+ background-color: #0677D4;
+ }
+ .custom-checkbox
+ .custom-control-input:disabled:checked
+ ~ .custom-control-label::before,
+ .custom-checkbox
+ .custom-control-input:disabled:indeterminate
+ ~ .custom-control-label::before,
+ .custom-radio
+ .custom-control-input:disabled:checked
+ ~ .custom-control-label::before {
+ background-color: rgba(0, 181, 184, 0.5);
+ }
+ .custom-checkbox
+ .custom-control-input:indeterminate
+ ~ .custom-control-label::after {
+ background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
+ }
+ .custom-radio .custom-control-label::before {
+ border-radius: 50%;
+ }
+ .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
+ background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
+ }
+ .custom-switch {
+ padding-left: 3.25rem;
+ }
+ .custom-switch .custom-control-label::before {
+ left: -3.25rem;
+ width: 1.75rem;
+ pointer-events: all;
+ border-radius: 0.5rem;
+ }
+ .custom-switch .custom-control-label::after {
+ top: calc(0.225rem + 2px);
+ left: calc(-3.25rem + 2px);
+ width: calc(1rem - 4px);
+ height: calc(1rem - 4px);
+ background-color: #adb5bd;
+ border-radius: 0.5rem;
+ -webkit-transition: background-color 0.15s ease-in-out,
+ border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
+ -webkit-transform 0.15s ease-in-out;
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
+ box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
+ transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out,
+ border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+ transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out,
+ border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
+ -webkit-transform 0.15s ease-in-out;
+ }
+ @media (prefers-reduced-motion: reduce) {
+ .custom-switch .custom-control-label::after {
+ -webkit-transition: none;
+ transition: none;
+ }
+ }
+ .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
+ background-color: #ddd;
+ -webkit-transform: translateX(0.75rem);
+ -ms-transform: translateX(0.75rem);
+ transform: translateX(0.75rem);
+ }
+ .custom-switch
+ .custom-control-input:disabled:checked
+ ~ .custom-control-label::before {
+ background-color: rgba(0, 181, 184, 0.5);
+ }
+ .custom-select {
+ display: inline-block;
+ width: 100%;
+ height: calc(2.75rem + 2px);
+ padding: 0.375rem 1.75rem 0.375rem 0.75rem;
+ font-size: 1rem;
+ line-height: 1.25;
+ color: #4e5154;
+ vertical-align: middle;
+ background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E")
+ right 0.75rem center/8px 10px no-repeat #fff;
+ border: 1px solid #babfc7;
+ border-radius: 0.25rem;
+ appearance: none;
+ }
+ .custom-select:focus {
+ border-color: #39fcff;
+ outline: 0;
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075),
+ 0 0 5px rgba(57, 252, 255, 0.5);
+ }
+ .custom-select:focus::-ms-value {
+ color: #4e5154;
+ background-color: #fff;
+ }
+ .custom-select[multiple],
+ .custom-select[size]:not([size="1"]) {
+ height: auto;
+ padding-right: 0.75rem;
+ background-image: none;
+ }
+ .custom-select:disabled {
+ color: #404e67;
+ background-color: #98a4b8;
+ }
+ .custom-select::-ms-expand {
+ display: none;
+ }
+ .custom-select:-moz-focusring {
+ color: transparent;
+ text-shadow: 0 0 0 #4e5154;
+ }
+ .custom-select-sm {
+ height: 2.25rem;
+ padding-top: 0.25rem;
+ padding-bottom: 0.25rem;
+ padding-left: 0.5rem;
+ font-size: 75%;
+ }
+ .custom-select-lg {
+ height: calc(3.5625rem + 2px);
+ padding-top: 1rem;
+ padding-bottom: 1rem;
+ padding-left: 1.25rem;
+ font-size: 125%;
+ }
+ .custom-file,
+ .custom-file-input,
+ .custom-file-label {
+ height: calc(2.75rem + 2px);
+ }
+ .custom-file {
+ position: relative;
+ display: inline-block;
+ width: 100%;
+ }
+ .custom-file-input {
+ position: relative;
+ z-index: 2;
+ width: 100%;
+ margin: 0;
+ opacity: 0;
+ }
+ .custom-file-label,
+ .custom-file-label::after {
+ position: absolute;
+ padding: 0.75rem 1rem;
+ line-height: 1.25;
+ color: #4e5154;
+ top: 0;
+ right: 0;
+ }
+ .custom-file-input:focus ~ .custom-file-label {
+ border-color: #0677D4;
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.2rem #0677D4;
+ }
+ .custom-file-input:disabled ~ .custom-file-label,
+ .custom-file-input[disabled] ~ .custom-file-label {
+ background-color: #eceff1;
+ }
+ .custom-file-input:lang(en) ~ .custom-file-label::after {
+ content: "Browse";
+ }
+ .custom-file-input ~ .custom-file-label[data-browse]::after {
+ content: attr(data-browse);
+ }
+ .custom-file-label {
+ left: 0;
+ z-index: 1;
+ font-weight: 400;
+ background-color: #fff;
+ border: 1px solid #babfc7;
+ border-radius: 0.25rem;
+ }
+ .alert-link,
+ .badge,
+ .close {
+ font-weight: 700;
+ }
+ .custom-file-label::after {
+ bottom: 0;
+ z-index: 3;
+ display: block;
+ height: 2.75rem;
+ content: "Browse";
+ background-color: #f5f7fa;
+ border-left: inherit;
+ border-radius: 0 0.25rem 0.25rem 0;
+ }
+ .nav,
+ .navbar {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ -webkit-flex-wrap: wrap;
+ }
+ .custom-range {
+ width: 100%;
+ height: 1.4rem;
+ padding: 0;
+ background-color: transparent;
+ appearance: none;
+ }
+ .custom-range:focus {
+ outline: 0;
+ }
+ .custom-range:focus::-webkit-slider-thumb {
+ box-shadow: 0 0 0 1px #f5f7fa, none;
+ }
+ .custom-range:focus::-moz-range-thumb {
+ box-shadow: 0 0 0 1px #f5f7fa, none;
+ }
+ .custom-range:focus::-ms-thumb {
+ box-shadow: 0 0 0 1px #f5f7fa, none;
+ }
+ .custom-range::-moz-focus-outer {
+ border: 0;
+ }
+ .custom-range::-webkit-slider-thumb {
+ width: 1rem;
+ height: 1rem;
+ margin-top: -0.25rem;
+ background-color: #0677D4;
+ border: 0;
+ border-radius: 1rem;
+ -webkit-transition: background-color 0.15s ease-in-out,
+ border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
+ box-shadow 0.15s ease-in-out;
+ -webkit-appearance: none;
+ appearance: none;
+ }
+ @media (prefers-reduced-motion: reduce) {
+ .custom-range::-webkit-slider-thumb {
+ -webkit-transition: none;
+ transition: none;
+ }
+ }
+ .custom-range::-webkit-slider-thumb:active {
+ background-color: #6cfdff;
+ }
+ .custom-range::-webkit-slider-runnable-track {
+ width: 100%;
+ height: 0.5rem;
+ color: transparent;
+ cursor: pointer;
+ background-color: #626e82;
+ border-color: transparent;
+ border-radius: 1rem;
+ }
+ .custom-range::-moz-range-thumb {
+ width: 1rem;
+ height: 1rem;
+ background-color: #0677D4;
+ border: 0;
+ border-radius: 1rem;
+ -moz-transition: background-color 0.15s ease-in-out,
+ border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
+ box-shadow 0.15s ease-in-out;
+ -moz-appearance: none;
+ appearance: none;
+ }
+ @media (prefers-reduced-motion: reduce) {
+ .custom-range::-moz-range-thumb {
+ -moz-transition: none;
+ transition: none;
+ }
+ }
+ .custom-range::-moz-range-thumb:active {
+ background-color: #6cfdff;
+ }
+ .custom-range::-moz-range-track {
+ width: 100%;
+ height: 0.5rem;
+ color: transparent;
+ cursor: pointer;
+ background-color: #626e82;
+ border-color: transparent;
+ border-radius: 1rem;
+ }
+ .custom-range::-ms-thumb {
+ width: 1rem;
+ height: 1rem;
+ margin-top: 0;
+ margin-right: 0.2rem;
+ margin-left: 0.2rem;
+ background-color: #0677D4;
+ border: 0;
+ border-radius: 1rem;
+ -ms-transition: background-color 0.15s ease-in-out,
+ border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
+ box-shadow 0.15s ease-in-out;
+ appearance: none;
+ }
+ @media (prefers-reduced-motion: reduce) {
+ .custom-range::-ms-thumb {
+ -ms-transition: none;
+ transition: none;
+ }
+ }
+ .custom-range::-ms-thumb:active {
+ background-color: #6cfdff;
+ }
+ .custom-range::-ms-track {
+ width: 100%;
+ height: 0.5rem;
+ color: transparent;
+ cursor: pointer;
+ background-color: transparent;
+ border-color: transparent;
+ border-width: 0.5rem;
+ }
+ .custom-range::-ms-fill-lower {
+ background-color: #626e82;
+ border-radius: 1rem;
+ }
+ .custom-range::-ms-fill-upper {
+ margin-right: 15px;
+ background-color: #626e82;
+ border-radius: 1rem;
+ }
+ .custom-range:disabled::-webkit-slider-thumb {
+ background-color: #adb5bd;
+ }
+ .custom-range:disabled::-webkit-slider-runnable-track {
+ cursor: default;
+ }
+ .custom-range:disabled::-moz-range-thumb {
+ background-color: #adb5bd;
+ }
+ .custom-range:disabled::-moz-range-track {
+ cursor: default;
+ }
+ .custom-range:disabled::-ms-thumb {
+ background-color: #adb5bd;
+ }
+ .custom-control-label::before,
+ .custom-file-label,
+ .custom-select {
+ -webkit-transition: background-color 0.15s ease-in-out,
+ border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
+ box-shadow 0.15s ease-in-out;
+ }
+ @media (prefers-reduced-motion: reduce) {
+ .custom-control-label::before,
+ .custom-file-label,
+ .custom-select {
+ -webkit-transition: none;
+ transition: none;
+ }
+ }
+ .nav {
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ padding-left: 0;
+ }
+ .nav-link,
+ .navbar {
+ padding: 0.5rem 1rem;
+ }
+ .nav-link {
+ display: block;
+ }
+ .nav-link.disabled {
+ color: #404e67;
+ pointer-events: none;
+ cursor: default;
+ }
+ .nav-tabs {
+ border-bottom: 1px solid #ddd;
+ }
+ .nav-tabs .nav-item {
+ margin-bottom: -1px;
+ }
+ .mat-tab-group.mat-primary .mat-ink-bar, .mat-tab-nav-bar.mat-primary .mat-ink-bar{
+ background: yellow;
+ height: 10px;
+}
+ .nav-tabs .nav-link {
+ border: 1px solid transparent;
+ border-top-left-radius: 0.25rem;
+ border-top-right-radius: 0.25rem;
+ }
+ .nav-tabs .nav-link:focus,
+ .nav-tabs .nav-link:hover {
+ border-color: #98a4b8 #98a4b8 #ddd;
+ }
+ .nav-tabs .nav-link.disabled {
+ color: #404e67;
+ background-color: transparent;
+ border-color: transparent;
+ }
+ .nav-tabs .nav-item.show .nav-link,
+ .nav-tabs .nav-link.active {
+ color: #4e5154;
+ background-color: #f5f7fa;
+ border-color: #ddd #ddd transparent;
+ }
+ .nav-tabs .dropdown-menu {
+ margin-top: -1px;
+ border-top-left-radius: 0;
+ border-top-right-radius: 0;
+ }
+ .nav-pills .nav-link {
+ border-radius: 0.25rem;
+ }
+ .nav-pills .nav-link.active,
+ .nav-pills .show > .nav-link {
+ color: #fff;
+ background-color: #0677D4;
+ }
+ .nav-fill .nav-item {
+ -webkit-box-flex: 1;
+ -webkit-flex: 1 1 auto;
+ -ms-flex: 1 1 auto;
+ flex: 1 1 auto;
+ text-align: center;
+ }
+ .nav-justified .nav-item {
+ -webkit-flex-basis: 0;
+ -ms-flex-preferred-size: 0;
+ flex-basis: 0;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ text-align: center;
+ }
+ .tab-content > .tab-pane {
+ display: none;
+ }
+ .tab-content > .active {
+ display: block;
+ }
+ .navbar {
+ position: relative;
+ display: flex;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ -webkit-box-align: center;
+ -webkit-align-items: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: justify;
+ -webkit-justify-content: space-between;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ }
+ .navbar .container,
+ .navbar .container-fluid,
+ .navbar .container-lg,
+ .navbar .container-md,
+ .navbar .container-sm,
+ .navbar .container-xl,
+ .navbar .container-xxl {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-flex-wrap: wrap;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ -webkit-box-align: center;
+ -webkit-align-items: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: justify;
+ -webkit-justify-content: space-between;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ }
+ .navbar-brand {
+ display: inline-block;
+ padding-top: 0.31875rem;
+ padding-bottom: 0.31875rem;
+ margin-right: 1rem;
+ font-size: 1.25rem;
+ line-height: inherit;
+ }
+ .navbar-nav {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -webkit-flex-direction: column;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ padding-left: 0;
+ margin-bottom: 0;
+ }
+ .navbar-expand,
+ .navbar-expand .navbar-nav {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ }
+ .navbar-nav .nav-link {
+ padding-right: 0;
+ padding-left: 0;
+ }
+ .navbar-nav .dropdown-menu {
+ position: static;
+ float: none;
+ }
+ .navbar-text {
+ display: inline-block;
+ padding-top: 0.5rem;
+ padding-bottom: 0.5rem;
+ }
+ .navbar-collapse {
+ -webkit-flex-basis: 100%;
+ -ms-flex-preferred-size: 100%;
+ flex-basis: 100%;
+ -webkit-box-flex: 1;
+ -webkit-flex-grow: 1;
+ -ms-flex-positive: 1;
+ flex-grow: 1;
+ -webkit-box-align: center;
+ -webkit-align-items: center;
+ -ms-flex-align: center;
+ align-items: center;
+ }
+ .navbar-toggler {
+ padding: 0.25rem 0.75rem;
+ font-size: 1.25rem;
+ line-height: 1;
+ background-color: transparent;
+ border: 1px solid transparent;
+ border-radius: 0.25rem;
+ }
+ .navbar-toggler-icon {
+ display: inline-block;
+ width: 1.5em;
+ height: 1.5em;
+ vertical-align: middle;
+ content: "";
+ background: center center no-repeat;
+ background-size: 100% 100%;
+ }
+ .card,
+ .card-footer,
+ .card-header {
+ background-color: #fff;
+ }
+ @media (max-width: 575.98px) {
+ .navbar-expand-sm > .container,
+ .navbar-expand-sm > .container-fluid,
+ .navbar-expand-sm > .container-lg,
+ .navbar-expand-sm > .container-md,
+ .navbar-expand-sm > .container-sm,
+ .navbar-expand-sm > .container-xl,
+ .navbar-expand-sm > .container-xxl {
+ padding-right: 0;
+ padding-left: 0;
+ }
+ }
+ @media (min-width: 576px) {
+ .navbar-expand-sm,
+ .navbar-expand-sm .navbar-nav {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ }
+ .navbar-expand-sm {
+ -webkit-flex-flow: row nowrap;
+ -ms-flex-flow: row nowrap;
+ flex-flow: row nowrap;
+ -webkit-box-pack: start;
+ -webkit-justify-content: flex-start;
+ -ms-flex-pack: start;
+ justify-content: flex-start;
+ }
+ .navbar-expand-sm .navbar-nav {
+ -webkit-flex-direction: row;
+ -ms-flex-direction: row;
+ flex-direction: row;
+ }
+ .navbar-expand-sm .navbar-nav .dropdown-menu {
+ position: absolute;
+ }
+ .navbar-expand-sm .navbar-nav .nav-link {
+ padding-right: 0.5rem;
+ padding-left: 0.5rem;
+ }
+ .navbar-expand-sm > .container,
+ .navbar-expand-sm > .container-fluid,
+ .navbar-expand-sm > .container-lg,
+ .navbar-expand-sm > .container-md,
+ .navbar-expand-sm > .container-sm,
+ .navbar-expand-sm > .container-xl,
+ .navbar-expand-sm > .container-xxl {
+ -webkit-flex-wrap: nowrap;
+ -ms-flex-wrap: nowrap;
+ flex-wrap: nowrap;
+ }
+ .navbar-expand-sm .navbar-collapse {
+ display: -webkit-box !important;
+ display: -webkit-flex !important;
+ display: -ms-flexbox !important;
+ display: flex !important;
+ -webkit-flex-basis: auto;
+ -ms-flex-preferred-size: auto;
+ flex-basis: auto;
+ }
+ .navbar-expand-sm .navbar-toggler {
+ display: none;
+ }
+ }
+ @media (max-width: 767.98px) {
+ .navbar-expand-md > .container,
+ .navbar-expand-md > .container-fluid,
+ .navbar-expand-md > .container-lg,
+ .navbar-expand-md > .container-md,
+ .navbar-expand-md > .container-sm,
+ .navbar-expand-md > .container-xl,
+ .navbar-expand-md > .container-xxl {
+ padding-right: 0;
+ padding-left: 0;
+ }
+ }
+ @media (min-width: 768px) {
+ .navbar-expand-md,
+ .navbar-expand-md .navbar-nav {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ }
+ .navbar-expand-md {
+ -webkit-flex-flow: row nowrap;
+ -ms-flex-flow: row nowrap;
+ flex-flow: row nowrap;
+ -webkit-box-pack: start;
+ -webkit-justify-content: flex-start;
+ -ms-flex-pack: start;
+ justify-content: flex-start;
+ }
+ .navbar-expand-md .navbar-nav {
+ -webkit-flex-direction: row;
+ -ms-flex-direction: row;
+ flex-direction: row;
+ }
+ .navbar-expand-md .navbar-nav .dropdown-menu {
+ position: absolute;
+ }
+ .navbar-expand-md .navbar-nav .nav-link {
+ padding-right: 0.5rem;
+ padding-left: 0.5rem;
+ }
+ .navbar-expand-md > .container,
+ .navbar-expand-md > .container-fluid,
+ .navbar-expand-md > .container-lg,
+ .navbar-expand-md > .container-md,
+ .navbar-expand-md > .container-sm,
+ .navbar-expand-md > .container-xl,
+ .navbar-expand-md > .container-xxl {
+ -webkit-flex-wrap: nowrap;
+ -ms-flex-wrap: nowrap;
+ flex-wrap: nowrap;
+ }
+ .navbar-expand-md .navbar-collapse {
+ display: -webkit-box !important;
+ display: -webkit-flex !important;
+ display: -ms-flexbox !important;
+ display: flex !important;
+ -webkit-flex-basis: auto;
+ -ms-flex-preferred-size: auto;
+ flex-basis: auto;
+ }
+ .navbar-expand-md .navbar-toggler {
+ display: none;
+ }
+ }
+ @media (max-width: 991.98px) {
+ .navbar-expand-lg > .container,
+ .navbar-expand-lg > .container-fluid,
+ .navbar-expand-lg > .container-lg,
+ .navbar-expand-lg > .container-md,
+ .navbar-expand-lg > .container-sm,
+ .navbar-expand-lg > .container-xl,
+ .navbar-expand-lg > .container-xxl {
+ padding-right: 0;
+ padding-left: 0;
+ }
+ }
+ @media (min-width: 992px) {
+ .navbar-expand-lg,
+ .navbar-expand-lg .navbar-nav {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ }
+ .navbar-expand-lg {
+ -webkit-flex-flow: row nowrap;
+ -ms-flex-flow: row nowrap;
+ flex-flow: row nowrap;
+ -webkit-box-pack: start;
+ -webkit-justify-content: flex-start;
+ -ms-flex-pack: start;
+ justify-content: flex-start;
+ }
+ .navbar-expand-lg .navbar-nav {
+ -webkit-flex-direction: row;
+ -ms-flex-direction: row;
+ flex-direction: row;
+ }
+ .navbar-expand-lg .navbar-nav .dropdown-menu {
+ position: absolute;
+ }
+ .navbar-expand-lg .navbar-nav .nav-link {
+ padding-right: 0.5rem;
+ padding-left: 0.5rem;
+ }
+ .navbar-expand-lg > .container,
+ .navbar-expand-lg > .container-fluid,
+ .navbar-expand-lg > .container-lg,
+ .navbar-expand-lg > .container-md,
+ .navbar-expand-lg > .container-sm,
+ .navbar-expand-lg > .container-xl,
+ .navbar-expand-lg > .container-xxl {
+ -webkit-flex-wrap: nowrap;
+ -ms-flex-wrap: nowrap;
+ flex-wrap: nowrap;
+ }
+ .navbar-expand-lg .navbar-collapse {
+ display: -webkit-box !important;
+ display: -webkit-flex !important;
+ display: -ms-flexbox !important;
+ display: flex !important;
+ -webkit-flex-basis: auto;
+ -ms-flex-preferred-size: auto;
+ flex-basis: auto;
+ }
+ .navbar-expand-lg .navbar-toggler {
+ display: none;
+ }
+ }
+ @media (max-width: 1199.98px) {
+ .navbar-expand-xl > .container,
+ .navbar-expand-xl > .container-fluid,
+ .navbar-expand-xl > .container-lg,
+ .navbar-expand-xl > .container-md,
+ .navbar-expand-xl > .container-sm,
+ .navbar-expand-xl > .container-xl,
+ .navbar-expand-xl > .container-xxl {
+ padding-right: 0;
+ padding-left: 0;
+ }
+ }
+ @media (min-width: 1200px) {
+ .navbar-expand-xl,
+ .navbar-expand-xl .navbar-nav {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ }
+ .navbar-expand-xl {
+ -webkit-flex-flow: row nowrap;
+ -ms-flex-flow: row nowrap;
+ flex-flow: row nowrap;
+ -webkit-box-pack: start;
+ -webkit-justify-content: flex-start;
+ -ms-flex-pack: start;
+ justify-content: flex-start;
+ }
+ .navbar-expand-xl .navbar-nav {
+ -webkit-flex-direction: row;
+ -ms-flex-direction: row;
+ flex-direction: row;
+ }
+ .navbar-expand-xl .navbar-nav .dropdown-menu {
+ position: absolute;
+ }
+ .navbar-expand-xl .navbar-nav .nav-link {
+ padding-right: 0.5rem;
+ padding-left: 0.5rem;
+ }
+ .navbar-expand-xl > .container,
+ .navbar-expand-xl > .container-fluid,
+ .navbar-expand-xl > .container-lg,
+ .navbar-expand-xl > .container-md,
+ .navbar-expand-xl > .container-sm,
+ .navbar-expand-xl > .container-xl,
+ .navbar-expand-xl > .container-xxl {
+ -webkit-flex-wrap: nowrap;
+ -ms-flex-wrap: nowrap;
+ flex-wrap: nowrap;
+ }
+ .navbar-expand-xl .navbar-collapse {
+ display: -webkit-box !important;
+ display: -webkit-flex !important;
+ display: -ms-flexbox !important;
+ display: flex !important;
+ -webkit-flex-basis: auto;
+ -ms-flex-preferred-size: auto;
+ flex-basis: auto;
+ }
+ .navbar-expand-xl .navbar-toggler {
+ display: none;
+ }
+ }
+ @media (max-width: 1399.98px) {
+ .navbar-expand-xxl > .container,
+ .navbar-expand-xxl > .container-fluid,
+ .navbar-expand-xxl > .container-lg,
+ .navbar-expand-xxl > .container-md,
+ .navbar-expand-xxl > .container-sm,
+ .navbar-expand-xxl > .container-xl,
+ .navbar-expand-xxl > .container-xxl {
+ padding-right: 0;
+ padding-left: 0;
+ }
+ }
+ @media (min-width: 1400px) {
+ .navbar-expand-xxl,
+ .navbar-expand-xxl .navbar-nav {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ }
+ .navbar-expand-xxl {
+ -webkit-flex-flow: row nowrap;
+ -ms-flex-flow: row nowrap;
+ flex-flow: row nowrap;
+ -webkit-box-pack: start;
+ -webkit-justify-content: flex-start;
+ -ms-flex-pack: start;
+ justify-content: flex-start;
+ }
+ .navbar-expand-xxl .navbar-nav {
+ -webkit-flex-direction: row;
+ -ms-flex-direction: row;
+ flex-direction: row;
+ }
+ .navbar-expand-xxl .navbar-nav .dropdown-menu {
+ position: absolute;
+ }
+ .navbar-expand-xxl .navbar-nav .nav-link {
+ padding-right: 0.5rem;
+ padding-left: 0.5rem;
+ }
+ .navbar-expand-xxl > .container,
+ .navbar-expand-xxl > .container-fluid,
+ .navbar-expand-xxl > .container-lg,
+ .navbar-expand-xxl > .container-md,
+ .navbar-expand-xxl > .container-sm,
+ .navbar-expand-xxl > .container-xl,
+ .navbar-expand-xxl > .container-xxl {
+ -webkit-flex-wrap: nowrap;
+ -ms-flex-wrap: nowrap;
+ flex-wrap: nowrap;
+ }
+ .navbar-expand-xxl .navbar-collapse {
+ display: -webkit-box !important;
+ display: -webkit-flex !important;
+ display: -ms-flexbox !important;
+ display: flex !important;
+ -webkit-flex-basis: auto;
+ -ms-flex-preferred-size: auto;
+ flex-basis: auto;
+ }
+ .navbar-expand-xxl .navbar-toggler {
+ display: none;
+ }
+ }
+ .navbar-expand {
+ -webkit-flex-flow: row nowrap;
+ -ms-flex-flow: row nowrap;
+ flex-flow: row nowrap;
+ -webkit-box-pack: start;
+ -webkit-justify-content: flex-start;
+ -ms-flex-pack: start;
+ justify-content: flex-start;
+ }
+ .navbar-expand > .container,
+ .navbar-expand > .container-fluid,
+ .navbar-expand > .container-lg,
+ .navbar-expand > .container-md,
+ .navbar-expand > .container-sm,
+ .navbar-expand > .container-xl,
+ .navbar-expand > .container-xxl {
+ padding-right: 0;
+ padding-left: 0;
+ }
+ .navbar-expand .navbar-nav {
+ -webkit-flex-direction: row;
+ -ms-flex-direction: row;
+ flex-direction: row;
+ }
+ .navbar-expand .navbar-nav .dropdown-menu {
+ position: absolute;
+ }
+ .navbar-expand .navbar-nav .nav-link {
+ padding-right: 0.5rem;
+ padding-left: 0.5rem;
+ }
+ .navbar-expand > .container,
+ .navbar-expand > .container-fluid,
+ .navbar-expand > .container-lg,
+ .navbar-expand > .container-md,
+ .navbar-expand > .container-sm,
+ .navbar-expand > .container-xl,
+ .navbar-expand > .container-xxl {
+ -webkit-flex-wrap: nowrap;
+ -ms-flex-wrap: nowrap;
+ flex-wrap: nowrap;
+ }
+ .navbar-expand .navbar-collapse {
+ display: -webkit-box !important;
+ display: -webkit-flex !important;
+ display: -ms-flexbox !important;
+ display: flex !important;
+ -webkit-flex-basis: auto;
+ -ms-flex-preferred-size: auto;
+ flex-basis: auto;
+ }
+ .navbar-expand .navbar-toggler {
+ display: none;
+ }
+ .navbar-light .navbar-brand,
+ .navbar-light .navbar-brand:focus,
+ .navbar-light .navbar-brand:hover {
+ color: #1b2942;
+ }
+ .navbar-light .navbar-nav .nav-link {
+ color: #404e67;
+ }
+ .navbar-light .navbar-nav .nav-link:focus,
+ .navbar-light .navbar-nav .nav-link:hover {
+ color: #626e82;
+ }
+ .navbar-light .navbar-nav .nav-link.disabled {
+ color: #f5f7fa;
+ }
+ .navbar-light .navbar-nav .active > .nav-link,
+ .navbar-light .navbar-nav .nav-link.active,
+ .navbar-light .navbar-nav .nav-link.show,
+ .navbar-light .navbar-nav .show > .nav-link {
+ color: #1b2942;
+ }
+ .navbar-light .navbar-toggler {
+ color: #404e67;
+ border-color: rgba(0, 0, 0, 0.1);
+ }
+ .navbar-light .navbar-toggler-icon {
+ background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23404e67' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
+ }
+ .navbar-light .navbar-text {
+ color: #404e67;
+ }
+ .navbar-light .navbar-text a,
+ .navbar-light .navbar-text a:focus,
+ .navbar-light .navbar-text a:hover {
+ color: #1b2942;
+ }
+ .navbar-dark .navbar-brand,
+ .navbar-dark .navbar-brand:focus,
+ .navbar-dark .navbar-brand:hover {
+ color: #fff;
+ }
+ .navbar-dark .navbar-nav .nav-link {
+ color: #fff;
+ }
+ .navbar-dark .navbar-nav .nav-link:focus,
+ .navbar-dark .navbar-nav .nav-link:hover {
+ color: rgba(255, 255, 255, 0.9);
+ }
+ .navbar-dark .navbar-nav .nav-link.disabled {
+ color: rgba(255, 255, 255, 0.5);
+ }
+ .navbar-dark .navbar-nav .active > .nav-link,
+ .navbar-dark .navbar-nav .nav-link.active,
+ .navbar-dark .navbar-nav .nav-link.show,
+ .navbar-dark .navbar-nav .show > .nav-link {
+ color: #fff;
+ }
+ .navbar-dark .navbar-toggler {
+ color: #fff;
+ border-color: rgba(255, 255, 255, 0.1);
+ }
+ .navbar-dark .navbar-toggler-icon {
+ background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
+ }
+ .navbar-dark .navbar-text {
+ color: #fff;
+ }
+ .navbar-dark .navbar-text a,
+ .navbar-dark .navbar-text a:focus,
+ .navbar-dark .navbar-text a:hover {
+ color: #fff;
+ }
+ .card {
+ position: relative;
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -webkit-flex-direction: column;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ min-width: 0;
+ background-clip: border-box;
+ border: 1px solid rgba(0, 0, 0, 0.06);
+ border-radius: 0.25rem;
+ }
+ .card > hr {
+ margin-right: 0;
+ margin-left: 0;
+ }
+ .card > .list-group:first-child .list-group-item:first-child {
+ border-top-left-radius: 0.25rem;
+ border-top-right-radius: 0.25rem;
+ }
+ .card > .list-group:last-child .list-group-item:last-child {
+ border-bottom-right-radius: 0.25rem;
+ border-bottom-left-radius: 0.25rem;
+ }
+ .card-body {
+ -webkit-box-flex: 1;
+ -webkit-flex: 1 1 auto;
+ -ms-flex: 1 1 auto;
+ flex: 1 1 auto;
+ min-height: 1px;
+ padding: 1.5rem;
+ }
+ .card-title {
+ margin-bottom: 1.5rem;
+ }
+ .card-header,
+ .card-subtitle,
+ .card-text:last-child {
+ margin-bottom: 0;
+ }
+ .card-subtitle {
+ margin-top: -0.75rem;
+ }
+ .card-link + .card-link {
+ margin-left: 1.5rem;
+ }
+ .card-header-pills,
+ .card-header-tabs {
+ margin-right: -0.75rem;
+ margin-left: -0.75rem;
+ }
+ .card-header {
+ padding: 1.5rem;
+ border-bottom: 1px solid rgba(0, 0, 0, 0.06);
+ }
+ .card-header:first-child {
+ border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
+ }
+ .card-header + .list-group .list-group-item:first-child {
+ border-top: 0;
+ }
+ .card-footer {
+ padding: 1.5rem;
+ border-top: 1px solid rgba(0, 0, 0, 0.06);
+ }
+ .card-footer:last-child {
+ border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
+ }
+ .card-header-tabs {
+ margin-bottom: -1.5rem;
+ border-bottom: 0;
+ }
+ .card-img-overlay {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ padding: 1.25rem;
+ }
+ .alert,
+ .btn .badge,
+ .page-link {
+ position: relative;
+ }
+ .card-img,
+ .card-img-bottom,
+ .card-img-top {
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+ width: 100%;
+ }
+ .card-img,
+ .card-img-top {
+ border-top-left-radius: calc(0.25rem - 1px);
+ border-top-right-radius: calc(0.25rem - 1px);
+ }
+ .card-img,
+ .card-img-bottom {
+ border-bottom-right-radius: calc(0.25rem - 1px);
+ border-bottom-left-radius: calc(0.25rem - 1px);
+ }
+ .card-deck .card {
+ margin-bottom: 15px;
+ }
+ @media (min-width: 576px) {
+ .card-deck {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -webkit-flex-flow: row wrap;
+ -ms-flex-flow: row wrap;
+ flex-flow: row wrap;
+ margin-right: -15px;
+ margin-left: -15px;
+ }
+ .card-deck .card {
+ -webkit-box-flex: 1;
+ -webkit-flex: 1 0 0;
+ -ms-flex: 1 0 0;
+ flex: 1 0 0;
+ margin-right: 15px;
+ margin-bottom: 0;
+ margin-left: 15px;
+ }
+ }
+ .card-group > .card {
+ margin-bottom: 15px;
+ }
+ @media (min-width: 576px) {
+ .card-group {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -webkit-flex-flow: row wrap;
+ -ms-flex-flow: row wrap;
+ flex-flow: row wrap;
+ }
+ .card-group > .card {
+ -webkit-box-flex: 1;
+ -webkit-flex: 1 0 0;
+ -ms-flex: 1 0 0;
+ flex: 1 0 0;
+ margin-bottom: 0;
+ }
+ .card-group > .card + .card {
+ margin-left: 0;
+ border-left: 0;
+ }
+ .card-group > .card:not(:last-child) {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0;
+ }
+ .card-group > .card:not(:last-child) .card-header,
+ .card-group > .card:not(:last-child) .card-img-top {
+ border-top-right-radius: 0;
+ }
+ .card-group > .card:not(:last-child) .card-footer,
+ .card-group > .card:not(:last-child) .card-img-bottom {
+ border-bottom-right-radius: 0;
+ }
+ .card-group > .card:not(:first-child) {
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0;
+ }
+ .card-group > .card:not(:first-child) .card-header,
+ .card-group > .card:not(:first-child) .card-img-top {
+ border-top-left-radius: 0;
+ }
+ .card-group > .card:not(:first-child) .card-footer,
+ .card-group > .card:not(:first-child) .card-img-bottom {
+ border-bottom-left-radius: 0;
+ }
+ .card-columns {
+ -webkit-column-count: 3;
+ -moz-column-count: 3;
+ column-count: 3;
+ -webkit-column-gap: 1.25rem;
+ -moz-column-gap: 1.25rem;
+ column-gap: 1.25rem;
+ orphans: 1;
+ widows: 1;
+ }
+ .card-columns .card {
+ display: inline-block;
+ width: 100%;
+ }
+ }
+ .list-group,
+ .progress-bar {
+ -webkit-box-orient: vertical;
+ }
+ .card-columns .card {
+ margin-bottom: 1.5rem;
+ }
+ .accordion > .card:not(:last-of-type) {
+ border-bottom: 0;
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0;
+ }
+ .accordion > .card:not(:first-of-type) {
+ border-top-left-radius: 0;
+ border-top-right-radius: 0;
+ }
+ .accordion > .card > .card-header {
+ border-radius: 0;
+ margin-bottom: -1px;
+ }
+ .breadcrumb,
+ .pagination {
+ border-radius: 0.25rem;
+ list-style: none;
+ }
+ .breadcrumb {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-flex-wrap: wrap;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ padding: 0.75rem 0;
+ margin-bottom: 1rem;
+ background-color: #98a4b8;
+ }
+ .breadcrumb-item + .breadcrumb-item {
+ padding-left: 0.5rem;
+ }
+ .breadcrumb-item + .breadcrumb-item::before {
+ display: inline-block;
+ padding-right: 0.5rem;
+ color: #404e67;
+ content: "/";
+ }
+ .pagination,
+ .progress {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ }
+ .breadcrumb-item.active {
+ color: #404e67;
+ }
+ .pagination {
+ display: flex;
+ padding-left: 0;
+ }
+ .page-link,
+ .popover-body,
+ .popover-header {
+ padding: 0.5rem 0.75rem;
+ }
+ .page-link {
+ display: block;
+ margin-left: -1px;
+ line-height: 1.25;
+ color: #0278d5;
+ background-color: #fff;
+ border: 1px solid #ddd;
+ }
+ .page-link:hover {
+ z-index: 2;
+ color: #0278d5;
+ background-color: #f5f7fa;
+ border-color: #ddd;
+ }
+ .page-link:focus {
+ z-index: 3;
+ outline: 0;
+ box-shadow: none;
+ }
+ .page-item:first-child .page-link {
+ margin-left: 0;
+ border-top-left-radius: 0.25rem;
+ border-bottom-left-radius: 0.25rem;
+ }
+ .page-item:last-child .page-link {
+ border-top-right-radius: 0.25rem;
+ border-bottom-right-radius: 0.25rem;
+ }
+ .page-item.active .page-link {
+ z-index: 3;
+ color: #fff;
+ background-color: #0677D4;
+ border-color: #0677D4;
+ }
+ .page-item.disabled .page-link {
+ color: #cfd8dc;
+ pointer-events: none;
+ cursor: auto;
+ background-color: #fff;
+ border-color: #cfd8dc;
+ }
+ .pagination-lg .page-link {
+ padding: 0.75rem 1.5rem;
+ font-size: 1.25rem;
+ line-height: 1.25;
+ }
+ .badge,
+ .close {
+ line-height: 1;
+ }
+ .pagination-lg .page-item:first-child .page-link {
+ border-top-left-radius: 0.27rem;
+ border-bottom-left-radius: 0.27rem;
+ }
+ .pagination-lg .page-item:last-child .page-link {
+ border-top-right-radius: 0.27rem;
+ border-bottom-right-radius: 0.27rem;
+ }
+ .pagination-sm .page-link {
+ padding: 0.25rem 0.5rem;
+ font-size: 0.875rem;
+ line-height: 1;
+ }
+ .pagination-sm .page-item:first-child .page-link {
+ border-top-left-radius: 0.21rem;
+ border-bottom-left-radius: 0.21rem;
+ }
+ .pagination-sm .page-item:last-child .page-link {
+ border-top-right-radius: 0.21rem;
+ border-bottom-right-radius: 0.21rem;
+ }
+ .badge {
+ display: inline-block;
+ padding: 0.35em 0.4em;
+ font-size: 85%;
+ text-align: center;
+ vertical-align: baseline;
+ border-radius: 0.25rem;
+ -webkit-transition: background-color 0.15s ease-in-out,
+ border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
+ transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
+ box-shadow 0.15s ease-in-out;
+ }
+ @media (prefers-reduced-motion: reduce) {
+ .badge {
+ -webkit-transition: none;
+ transition: none;
+ }
+ }
+ .badge:empty {
+ display: none;
+ }
+ .btn .badge {
+ top: -1px;
+ }
+ .badge-pill {
+ padding-right: 0.6em;
+ padding-left: 0.6em;
+ border-radius: 10rem;
+ }
+ .badge-primary {
+ color: #fff;
+ background-color: #0677D4;
+ }
+ a.badge-primary:focus,
+ a.badge-primary:hover {
+ color: #fff;
+ background-color: #0278d5;
+ }
+ a.badge-primary.focus,
+ a.badge-primary:focus {
+ outline: 0;
+ box-shadow: 0 0 0 0.2rem rgba(0, 181, 184, 0.5);
+ }
+ .badge-secondary {
+ color: #fff;
+ background-color: #404e67;
+ }
+ a.badge-secondary:focus,
+ a.badge-secondary:hover {
+ color: #fff;
+ background-color: #2c3648;
+ }
+ a.badge-secondary.focus,
+ a.badge-secondary:focus {
+ outline: 0;
+ box-shadow: 0 0 0 0.2rem rgba(64, 78, 103, 0.5);
+ }
+ .badge-success {
+ color: #fff;
+ background-color: #16d39a;
+ }
+ a.badge-success:focus,
+ a.badge-success:hover {
+ color: #fff;
+ background-color: #11a578;
+ }
+ a.badge-success.focus,
+ a.badge-success:focus {
+ outline: 0;
+ box-shadow: 0 0 0 0.2rem rgba(22, 211, 154, 0.5);
+ }
+ .badge-info {
+ color: #2a2e30;
+ background-color: #2dcee3;
+ }
+ a.badge-info:focus,
+ a.badge-info:hover {
+ color: #2a2e30;
+ background-color: #1ab0c3;
+ }
+ a.badge-info.focus,
+ a.badge-info:focus {
+ outline: 0;
+ box-shadow: 0 0 0 0.2rem rgba(45, 206, 227, 0.5);
+ }
+ .badge-warning {
+ color: #2a2e30;
+ background-color: #ffa87d;
+ }
+ a.badge-warning:focus,
+ a.badge-warning:hover {
+ color: #2a2e30;
+ background-color: #ff864a;
+ }
+ a.badge-warning.focus,
+ a.badge-warning:focus {
+ outline: 0;
+ box-shadow: 0 0 0 0.2rem rgba(255, 168, 125, 0.5);
+ }
+ .badge-danger {
+ color: #2a2e30;
+ background-color: #F08080;
+ }
+ a.badge-danger:focus,
+ a.badge-danger:hover {
+ color: #2a2e30;
+ background-color: #ff425c;
+ }
+ a.badge-danger.focus,
+ a.badge-danger:focus {
+ outline: 0;
+ box-shadow: 0 0 0 0.2rem rgba(255, 117, 136, 0.5);
+ }
+ .badge-light {
+ color: #2a2e30;
+ background-color: #babfc7;
+ }
+ a.badge-light:focus,
+ a.badge-light:hover {
+ color: #2a2e30;
+ background-color: #9ea5b0;
+ }
+ a.badge-light.focus,
+ a.badge-light:focus {
+ outline: 0;
+ box-shadow: 0 0 0 0.2rem rgba(186, 191, 199, 0.5);
+ }
+ .badge-dark {
+ color: #fff;
+ background-color: #1b2942;
+ }
+ a.badge-dark:focus,
+ a.badge-dark:hover {
+ color: #fff;
+ background-color: #0c131e;
+ }
+ a.badge-dark.focus,
+ a.badge-dark:focus {
+ outline: 0;
+ box-shadow: 0 0 0 0.2rem rgba(27, 41, 66, 0.5);
+ }
+ .jumbotron {
+ padding: 2rem 1rem;
+ margin-bottom: 2rem;
+ background-color: #98a4b8;
+ border-radius: 0.27rem;
+ }
+ @media (min-width: 576px) {
+ .jumbotron {
+ padding: 4rem 2rem;
+ }
+ }
+ .jumbotron-fluid {
+ padding-right: 0;
+ padding-left: 0;
+ border-radius: 0;
+ }
+ .alert {
+ padding: 0.75rem 1.25rem;
+ margin-bottom: 1rem;
+ border: 1px solid transparent;
+ border-radius: 0.25rem;
+ }
+ .alert-heading {
+ color: inherit;
+ }
+ .alert-dismissible {
+ padding-right: 4rem;
+ }
+ .alert-dismissible .close {
+ position: absolute;
+ top: 0;
+ right: 0;
+ padding: 0.75rem 1.25rem;
+ color: inherit;
+ }
+ .alert-primary {
+ color: #005e60;
+ background-color: #ccf0f1;
+ border-color: #b8eaeb;
+ }
+ .alert-primary hr {
+ border-top-color: #a4e4e5;
+ }
+ .alert-primary .alert-link {
+ color: #002c2d;
+ }
+ .alert-secondary {
+ color: #212936;
+ background-color: #d9dce1;
+ border-color: #cacdd4;
+ }
+ .alert-secondary hr {
+ border-top-color: #bcc0c9;
+ }
+ .alert-secondary .alert-link {
+ color: #0e1116;
+ }
+ .alert-success {
+ color: #0b6e50;
+ background-color: #d0f6eb;
+ border-color: #bef3e3;
+ }
+ .alert-success hr {
+ border-top-color: #a8efda;
+ }
+ .alert-success .alert-link {
+ color: #06402e;
+ }
+ .alert-info {
+ color: #176b76;
+ background-color: #d5f5f9;
+ border-color: #c4f1f7;
+ }
+ .alert-info hr {
+ border-top-color: #aeecf4;
+ }
+ .alert-info .alert-link {
+ color: #0f444b;
+ }
+ .alert-warning {
+ color: #855741;
+ background-color: #ffeee5;
+ border-color: #ffe7db;
+ }
+ .alert-warning hr {
+ border-top-color: #ffd6c2;
+ }
+ .alert-warning .alert-link {
+ color: #634130;
+ }
+ .alert-danger {
+ color: #853d47;
+ background-color: #ffe3e7;
+ border-color: #ffd8de;
+ }
+ .alert-danger hr {
+ border-top-color: #ffbfc8;
+ }
+ .alert-danger .alert-link {
+ color: #622d34;
+ }
+ .alert-light {
+ color: #616367;
+ background-color: #f1f2f4;
+ border-color: #ecedef;
+ }
+ .alert-light hr {
+ border-top-color: #dee0e3;
+ }
+ .alert-light .alert-link {
+ color: #484a4d;
+ }
+ .alert-dark {
+ color: #0e1522;
+ background-color: #d1d4d9;
+ border-color: #bfc3ca;
+ }
+ .alert-dark hr {
+ border-top-color: #b1b6be;
+ }
+ .alert-dark .alert-link {
+ color: #000;
+ }
+ @-webkit-keyframes progress-bar-stripes {
+ from {
+ background-position: 1rem 0;
+ }
+ to {
+ background-position: 0 0;
+ }
+ }
+ @keyframes progress-bar-stripes {
+ from {
+ background-position: 1rem 0;
+ }
+ to {
+ background-position: 0 0;
+ }
+ }
+ .progress {
+ display: flex;
+ height: 1rem;
+ font-size: 0.75rem;
+ background-color: #eee;
+ border-radius: 0.25rem;
+ }
+ .media,
+ .progress-bar {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ }
+ .progress-bar {
+ display: flex;
+ -webkit-box-direction: normal;
+ -webkit-flex-direction: column;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ -webkit-box-pack: center;
+ -webkit-justify-content: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ color: #fff;
+ text-align: center;
+ background-color: #0677D4;
+ -webkit-transition: width 0.6s ease;
+ transition: width 0.6s ease;
+ }
+ .progress-bar-striped {
+ background-image: -webkit-linear-gradient(
+ 45deg,
+ rgba(255, 255, 255, 0.15) 25%,
+ transparent 25%,
+ transparent 50%,
+ rgba(255, 255, 255, 0.15) 50%,
+ rgba(255, 255, 255, 0.15) 75%,
+ transparent 75%,
+ transparent
+ );
+ background-image: linear-gradient(
+ 45deg,
+ rgba(255, 255, 255, 0.15) 25%,
+ transparent 25%,
+ transparent 50%,
+ rgba(255, 255, 255, 0.15) 50%,
+ rgba(255, 255, 255, 0.15) 75%,
+ transparent 75%,
+ transparent
+ );
+ background-size: 1rem 1rem;
+ }
+ .progress-bar-animated {
+ -webkit-animation: progress-bar-stripes 1s linear infinite;
+ animation: progress-bar-stripes 1s linear infinite;
+ }
+ @media (prefers-reduced-motion: reduce) {
+ .progress-bar {
+ -webkit-transition: none;
+ transition: none;
+ }
+ .progress-bar-animated {
+ -webkit-animation: none;
+ animation: none;
+ }
+ }
+ .media {
+ display: flex;
+ -webkit-box-align: start;
+ -webkit-align-items: flex-start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+ }
+ .media-body {
+ -webkit-box-flex: 1;
+ -webkit-flex: 1;
+ -ms-flex: 1;
+ flex: 1;
+ }
+ .list-group,
+ .modal-dialog-centered.modal-dialog-scrollable {
+ -webkit-flex-direction: column;
+ -webkit-box-direction: normal;
+ }
+ .list-group {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ padding-left: 0;
+ margin-bottom: 0;
+ }
+ .list-group-item-action {
+ width: 100%;
+ color: #4e5154;
+ text-align: inherit;
+ }
+ .list-group-item-action:focus,
+ .list-group-item-action:hover {
+ z-index: 1;
+ color: #4e5154;
+ background-color: #f5f7fa;
+ }
+ .list-group-item-action:active {
+ color: #404e67;
+ background-color: #98a4b8;
+ }
+ .list-group-item {
+ position: relative;
+ display: block;
+ padding: 1.25rem;
+ background-color: #fff;
+ border: 1px solid #e4e7ed;
+ }
+ .list-group-item:first-child {
+ border-top-left-radius: 0.25rem;
+ border-top-right-radius: 0.25rem;
+ }
+ .list-group-item:last-child {
+ border-bottom-right-radius: 0.25rem;
+ border-bottom-left-radius: 0.25rem;
+ }
+ .list-group-item.disabled,
+ .list-group-item:disabled {
+ color: #404e67;
+ pointer-events: none;
+ background-color: #fff;
+ }
+ .list-group-item.active {
+ z-index: 2;
+ color: #fff;
+ background-color: #0677D4;
+ border-color: #0677D4;
+ }
+ .list-group-item + .list-group-item {
+ border-top-width: 0;
+ }
+ .list-group-item + .list-group-item.active {
+ margin-top: -1px;
+ border-top-width: 1px;
+ }
+ .list-group-horizontal {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -webkit-flex-direction: row;
+ -ms-flex-direction: row;
+ flex-direction: row;
+ }
+ .list-group-horizontal .list-group-item:first-child {
+ border-bottom-left-radius: 0.25rem;
+ border-top-right-radius: 0;
+ }
+ .list-group-horizontal .list-group-item:last-child {
+ border-top-right-radius: 0.25rem;
+ border-bottom-left-radius: 0;
+ }
+ .list-group-horizontal .list-group-item.active {
+ margin-top: 0;
+ }
+ .list-group-horizontal .list-group-item + .list-group-item {
+ border-top-width: 1px;
+ border-left-width: 0;
+ }
+ .list-group-horizontal .list-group-item + .list-group-item.active {
+ margin-left: -1px;
+ border-left-width: 1px;
+ }
+ @media (min-width: 576px) {
+ .list-group-horizontal-sm {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -webkit-flex-direction: row;
+ -ms-flex-direction: row;
+ flex-direction: row;
+ }
+ .list-group-horizontal-sm .list-group-item:first-child {
+ border-bottom-left-radius: 0.25rem;
+ border-top-right-radius: 0;
+ }
+ .list-group-horizontal-sm .list-group-item:last-child {
+ border-top-right-radius: 0.25rem;
+ border-bottom-left-radius: 0;
+ }
+ .list-group-horizontal-sm .list-group-item.active {
+ margin-top: 0;
+ }
+ .list-group-horizontal-sm .list-group-item + .list-group-item {
+ border-top-width: 1px;
+ border-left-width: 0;
+ }
+ .list-group-horizontal-sm .list-group-item + .list-group-item.active {
+ margin-left: -1px;
+ border-left-width: 1px;
+ }
+ }
+ @media (min-width: 768px) {
+ .list-group-horizontal-md {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -webkit-flex-direction: row;
+ -ms-flex-direction: row;
+ flex-direction: row;
+ }
+ .list-group-horizontal-md .list-group-item:first-child {
+ border-bottom-left-radius: 0.25rem;
+ border-top-right-radius: 0;
+ }
+ .list-group-horizontal-md .list-group-item:last-child {
+ border-top-right-radius: 0.25rem;
+ border-bottom-left-radius: 0;
+ }
+ .list-group-horizontal-md .list-group-item.active {
+ margin-top: 0;
+ }
+ .list-group-horizontal-md .list-group-item + .list-group-item {
+ border-top-width: 1px;
+ border-left-width: 0;
+ }
+ .list-group-horizontal-md .list-group-item + .list-group-item.active {
+ margin-left: -1px;
+ border-left-width: 1px;
+ }
+ }
+ @media (min-width: 992px) {
+ .list-group-horizontal-lg {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -webkit-flex-direction: row;
+ -ms-flex-direction: row;
+ flex-direction: row;
+ }
+ .list-group-horizontal-lg .list-group-item:first-child {
+ border-bottom-left-radius: 0.25rem;
+ border-top-right-radius: 0;
+ }
+ .list-group-horizontal-lg .list-group-item:last-child {
+ border-top-right-radius: 0.25rem;
+ border-bottom-left-radius: 0;
+ }
+ .list-group-horizontal-lg .list-group-item.active {
+ margin-top: 0;
+ }
+ .list-group-horizontal-lg .list-group-item + .list-group-item {
+ border-top-width: 1px;
+ border-left-width: 0;
+ }
+ .list-group-horizontal-lg .list-group-item + .list-group-item.active {
+ margin-left: -1px;
+ border-left-width: 1px;
+ }
+ }
+ @media (min-width: 1200px) {
+ .list-group-horizontal-xl {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -webkit-flex-direction: row;
+ -ms-flex-direction: row;
+ flex-direction: row;
+ }
+ .list-group-horizontal-xl .list-group-item:first-child {
+ border-bottom-left-radius: 0.25rem;
+ border-top-right-radius: 0;
+ }
+ .list-group-horizontal-xl .list-group-item:last-child {
+ border-top-right-radius: 0.25rem;
+ border-bottom-left-radius: 0;
+ }
+ .list-group-horizontal-xl .list-group-item.active {
+ margin-top: 0;
+ }
+ .list-group-horizontal-xl .list-group-item + .list-group-item {
+ border-top-width: 1px;
+ border-left-width: 0;
+ }
+ .list-group-horizontal-xl .list-group-item + .list-group-item.active {
+ margin-left: -1px;
+ border-left-width: 1px;
+ }
+ }
+ @media (min-width: 1400px) {
+ .list-group-horizontal-xxl {
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -webkit-flex-direction: row;
+ -ms-flex-direction: row;
+ flex-direction: row;
+ }
+ .list-group-horizontal-xxl .list-group-item:first-child {
+ border-bottom-left-radius: 0.25rem;
+ border-top-right-radius: 0;
+ }
+ .list-group-horizontal-xxl .list-group-item:last-child {
+ border-top-right-radius: 0.25rem;
+ border-bottom-left-radius: 0;
+ }
+ .list-group-horizontal-xxl .list-group-item.active {
+ margin-top: 0;
+ }
+ .list-group-horizontal-xxl .list-group-item + .list-group-item {
+ border-top-width: 1px;
+ border-left-width: 0;
+ }
+ .list-group-horizontal-xxl .list-group-item + .list-group-item.active {
+ margin-left: -1px;
+ border-left-width: 1px;
+ }
+ }
+ .list-group-flush .list-group-item {
+ border-right-width: 0;
+ border-left-width: 0;
+ border-radius: 0;
+ }
+ .list-group-flush .list-group-item:first-child {
+ border-top-width: 0;
+ }
+ .list-group-flush:last-child .list-group-item:last-child {
+ border-bottom-width: 0;
+ }
+ .list-group-item-primary {
+ color: #005e60;
+ background-color: #b8eaeb;
+ }
+ .list-group-item-primary.list-group-item-action:focus,
+ .list-group-item-primary.list-group-item-action:hover {
+ color: #005e60;
+ background-color: #a4e4e5;
+ }
+ .list-group-item-primary.list-group-item-action.active {
+ color: #fff;
+ background-color: #005e60;
+ border-color: #005e60;
+ }
+ .list-group-item-secondary {
+ color: #212936;
+ background-color: #cacdd4;
+ }
+ .list-group-item-secondary.list-group-item-action:focus,
+ .list-group-item-secondary.list-group-item-action:hover {
+ color: #212936;
+ background-color: #bcc0c9;
+ }
+ .list-group-item-secondary.list-group-item-action.active {
+ color: #fff;
+ background-color: #212936;
+ border-color: #212936;
+ }
+ .list-group-item-success {
+ color: #0b6e50;
+ background-color: #bef3e3;
+ }
+ .list-group-item-success.list-group-item-action:focus,
+ .list-group-item-success.list-group-item-action:hover {
+ color: #0b6e50;
+ background-color: #a8efda;
+ }
+ .list-group-item-success.list-group-item-action.active {
+ color: #fff;
+ background-color: #0b6e50;
+ border-color: #0b6e50;
+ }
+ .list-group-item-info {
+ color: #176b76;
+ background-color: #c4f1f7;
+ }
+ .list-group-item-info.list-group-item-action:focus,
+ .list-group-item-info.list-group-item-action:hover {
+ color: #176b76;
+ background-color: #aeecf4;
+ }
+ .list-group-item-info.list-group-item-action.active {
+ color: #fff;
+ background-color: #176b76;
+ border-color: #176b76;
+ }
+ .list-group-item-warning {
+ color: #855741;
+ background-color: #ffe7db;
+ }
+ .list-group-item-warning.list-group-item-action:focus,
+ .list-group-item-warning.list-group-item-action:hover {
+ color: #855741;
+ background-color: #ffd6c2;
+ }
+ .list-group-item-warning.list-group-item-action.active {
+ color: #fff;
+ background-color: #855741;
+ border-color: #855741;
+ }
+ .list-group-item-danger {
+ color: #853d47;
+ background-color: #ffd8de;
+ }
+ .list-group-item-danger.list-group-item-action:focus,
+ .list-group-item-danger.list-group-item-action:hover {
+ color: #853d47;
+ background-color: #ffbfc8;
+ }
+ .list-group-item-danger.list-group-item-action.active {
+ color: #fff;
+ background-color: #853d47;
+ border-color: #853d47;
+ }
+ .list-group-item-light {
+ color: #616367;
+ background-color: #ecedef;
+ }
+ .list-group-item-light.list-group-item-action:focus,
+ .list-group-item-light.list-group-item-action:hover {
+ color: #616367;
+ background-color: #dee0e3;
+ }
+ .list-group-item-light.list-group-item-action.active {
+ color: #fff;
+ background-color: #616367;
+ border-color: #616367;
+ }
+ .list-group-item-dark {
+ color: #0e1522;
+ background-color: #bfc3ca;
+ }
+ .list-group-item-dark.list-group-item-action:focus,
+ .list-group-item-dark.list-group-item-action:hover {
+ color: #0e1522;
+ background-color: #b1b6be;
+ }
+ .list-group-item-dark.list-group-item-action.active {
+ color: #fff;
+ background-color: #0e1522;
+ border-color: #0e1522;
+ }
+ .close {
+ float: right;
+ font-size: 1.5rem;
+ color: #000;
+ text-shadow: 0 1px 0 #fff;
+ opacity: 0.5;
+ }
+ .popover,
+ .tooltip {
+ font-family: Inter,sans-serif;
+ font-style: normal;
+ font-weight: 400;
+ text-transform: none;
+ letter-spacing: normal;
+ word-break: normal;
+ word-spacing: normal;
+ white-space: normal;
+ line-break: auto;
+ font-size: 0.875rem;
+ word-wrap: break-word;
+ text-decoration: none;
+ }
+ .modal-title,
+ .popover,
+ .tooltip {
+ line-height: 1.45;
+ }
+ .popover,
+ .text-hide,
+ .tooltip {
+ text-shadow: none;
+ }
+ .close:hover {
+ color: #000;
+ text-decoration: none;
+ }
+ .close:not(:disabled):not(.disabled):focus,
+ .close:not(:disabled):not(.disabled):hover {
+ opacity: 0.75;
+ }
+ button.close {
+ padding: 0;
+ background-color: transparent;
+ border: 0;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ appearance: none;
+ }
+ .toast,
+ .toast-header {
+ background-color: rgba(255, 255, 255, 0.85);
+ background-clip: padding-box;
+ }
+ a.close.disabled {
+ pointer-events: none;
+ }
+ .toast {
+ max-width: 350px;
+ font-size: 0.875rem;
+ border: 1px solid rgba(0, 0, 0, 0.1);
+ box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
+ -webkit-backdrop-filter: blur(10px);
+ backdrop-filter: blur(10px);
+ opacity: 0;
+ border-radius: 0.25rem;
+ }
+ .toast:not(:last-child) {
+ margin-bottom: 0.75rem;
+ }
+ .toast.showing {
+ opacity: 1;
+ }
+ .toast.show {
+ display: block;
+ opacity: 1;
+ }
+ .toast.hide {
+ display: none;
+ }
+ .modal-dialog-scrollable,
+ .toast-header {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ }
+ .toast-header {
+ display: flex;
+ -webkit-box-align: center;
+ -webkit-align-items: center;
+ -ms-flex-align: center;
+ align-items: center;
+ padding: 0.25rem 0.75rem;
+ color: #404e67;
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05);
+ }
+ .toast-body {
+ padding: 0.75rem;
+ }
+
+ .modal.show .modal-dialog {
+ -webkit-transform: none;
+ -ms-transform: none;
+ transform: none;
+ }
+ .modal.modal-static .modal-dialog {
+ -webkit-transform: scale(1.02);
+ -ms-transform: scale(1.02);
+ transform: scale(1.02);
+ }
+ .modal-dialog-scrollable {
+ display: flex;
+ max-height: calc(100% - 1rem);
+ }
+ .modal-dialog-scrollable .modal-content {
+ max-height: calc(100vh - 1rem);
+ overflow: hidden;
+ }
+ .modal-dialog-scrollable .modal-footer,
+ .modal-dialog-scrollable .modal-header {
+ -webkit-flex-shrink: 0;
+ -ms-flex-negative: 0;
+ flex-shrink: 0;
+ }
+ .modal-dialog-scrollable .modal-body {
+ overflow-y: auto;
+ }
+ .modal-dialog-centered {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -webkit-align-items: center;
+ -ms-flex-align: center;
+ align-items: center;
+ min-height: calc(100% - 1rem);
+ }
+ .modal-dialog-centered::before {
+ display: block;
+ height: calc(100vh - 1rem);
+ content: "";
+ }
+ .modal-content,
+ .modal-header {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ }
+ .modal-dialog-centered.modal-dialog-scrollable {
+ -webkit-box-orient: vertical;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ -webkit-box-pack: center;
+ -webkit-justify-content: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ height: 100%;
+ }
+ .modal-dialog-centered.modal-dialog-scrollable .modal-content {
+ max-height: none;
+ }
+ .modal-dialog-centered.modal-dialog-scrollable::before {
+ content: none;
+ }
+ .carousel-inner::after,
+ .clearfix::after,
+ .embed-responsive::before,
+ .popover .arrow::after,
+ .popover .arrow::before,
+ .stretched-link::after,
+ .tooltip .arrow::before {
+ content: "";
+ }
+
+ app-child .mat-tab-label.mat-tab-label-active {
+ padding: 0px 15px ;
+justify-content: flex-start;
+}
+
+app-child .mat-tab-label{
+ padding: 0px 15px ;
+justify-content: flex-start;
+}
+
+.mat-tab-group.mat-primary .mat-ink-bar, .mat-tab-nav-bar.mat-primary .mat-ink-bar{
+ background:#6168e7;
+}
+ .modal-content {
+ position: relative;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -webkit-flex-direction: column;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ width: 100%;
+ pointer-events: auto;
+ background-color: #fff;
+ background-clip: padding-box;
+ outline: 0;
+ }
+ .flex-column,
+ .flex-row {
+ -webkit-box-direction: normal !important;
+ }
+ .modal-header {
+ display: flex;
+ -webkit-box-align: start;
+ -webkit-align-items: flex-start;
+ -ms-flex-align: start;
+ align-items: flex-start;
+ -webkit-box-pack: justify;
+ -webkit-justify-content: space-between;
+ -ms-flex-pack: justify;
+ justify-content: space-between;
+ background-color: #f7f7f7;
+ padding: 1rem;
+ border-bottom: 1px solid #eceff1;
+ border-top-left-radius: calc(0.27rem - 1px);
+ border-top-right-radius: calc(0.27rem - 1px);
+ }
+ .modal-header .close {
+ padding: 1rem;
+ margin: -1rem -1rem -1rem auto;
+ }
+ .modal-title {
+ margin-bottom: 0;
+ }
+ .modal-body {
+ position: relative;
+ -webkit-box-flex: 1;
+ -webkit-flex: 1 1 auto;
+ -ms-flex: 1 1 auto;
+ flex: 1 1 auto;
+ padding: 1rem;
+ }
+ .modal-footer {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-flex-wrap: wrap;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ -webkit-box-align: center;
+ -webkit-align-items: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: end;
+ -webkit-justify-content: flex-end;
+ -ms-flex-pack: end;
+ justify-content: flex-end;
+ padding: 0.75rem;
+ border-top: 1px solid #eceff1;
+ border-bottom-right-radius: calc(0.27rem - 1px);
+ border-bottom-left-radius: calc(0.27rem - 1px);
+ }
+ .popover,
+ .popover .arrow,
+ .popover .arrow::after,
+ .popover .arrow::before,
+ .tooltip,
+ .tooltip .arrow {
+ position: absolute;
+ display: block;
+ }
+ .modal-footer > * {
+ margin: 0.25rem;
+ }
+ .modal-scrollbar-measure {
+ position: absolute;
+ top: -9999px;
+ width: 50px;
+ height: 50px;
+ overflow: scroll;
+ }
+ @media (min-width: 576px) {
+ .modal-dialog {
+ max-width: 500px;
+ margin: 1.75rem auto;
+ }
+ .modal-dialog-scrollable {
+ max-height: calc(100% - 3.5rem);
+ }
+ .modal-dialog-scrollable .modal-content {
+ max-height: calc(100vh - 3.5rem);
+ }
+ .modal-dialog-centered {
+ min-height: calc(100% - 3.5rem);
+ }
+ .modal-dialog-centered::before {
+ height: calc(100vh - 3.5rem);
+ }
+ .modal-sm {
+ max-width: 300px;
+ }
+ }
+ @media (min-width: 992px) {
+ .modal-lg,
+ .modal-xl {
+ max-width: 800px;
+ }
+ }
+ @media (min-width: 1200px) {
+ .modal-xl {
+ max-width: 1140px;
+ }
+ }
+ .tooltip {
+ z-index: 1070;
+ margin: 0;
+ text-align: left;
+ text-align: start;
+ opacity: 0;
+ }
+ .tooltip.show {
+ opacity: 0.9;
+ }
+ .tooltip .arrow {
+ width: 0.8rem;
+ height: 0.4rem;
+ }
+ .tooltip .arrow::before {
+ position: absolute;
+ border-color: transparent;
+ border-style: solid;
+ }
+ .bs-tooltip-auto[x-placement^="top"],
+ .bs-tooltip-top {
+ padding: 0.4rem 0;
+ }
+ .bs-tooltip-auto[x-placement^="top"] .arrow,
+ .bs-tooltip-top .arrow {
+ bottom: 0;
+ }
+ .bs-tooltip-auto[x-placement^="top"] .arrow::before,
+ .bs-tooltip-top .arrow::before {
+ top: 0;
+ border-width: 0.4rem 0.4rem 0;
+ border-top-color: #000;
+ }
+ .bs-tooltip-auto[x-placement^="right"],
+ .bs-tooltip-right {
+ padding: 0 0.4rem;
+ }
+ .bs-tooltip-auto[x-placement^="right"] .arrow,
+ .bs-tooltip-right .arrow {
+ left: 0;
+ width: 0.4rem;
+ height: 0.8rem;
+ }
+ .bs-tooltip-auto[x-placement^="right"] .arrow::before,
+ .bs-tooltip-right .arrow::before {
+ right: 0;
+ border-width: 0.4rem 0.4rem 0.4rem 0;
+ border-right-color: #000;
+ }
+ .bs-tooltip-auto[x-placement^="bottom"],
+ .bs-tooltip-bottom {
+ padding: 0.4rem 0;
+ }
+ .bs-tooltip-auto[x-placement^="bottom"] .arrow,
+ .bs-tooltip-bottom .arrow {
+ top: 0;
+ }
+ .bs-tooltip-auto[x-placement^="bottom"] .arrow::before,
+ .bs-tooltip-bottom .arrow::before {
+ bottom: 0;
+ border-width: 0 0.4rem 0.4rem;
+ border-bottom-color: #000;
+ }
+ .bs-tooltip-auto[x-placement^="left"],
+ .bs-tooltip-left {
+ padding: 0 0.4rem;
+ }
+ .bs-tooltip-auto[x-placement^="left"] .arrow,
+ .bs-tooltip-left .arrow {
+ right: 0;
+ width: 0.4rem;
+ height: 0.8rem;
+ }
+ .bs-tooltip-auto[x-placement^="left"] .arrow::before,
+ .bs-tooltip-left .arrow::before {
+ left: 0;
+ border-width: 0.4rem 0 0.4rem 0.4rem;
+ border-left-color: #000;
+ }
+ .tooltip-inner {
+ max-width: 200px;
+ padding: 0.25rem 0.5rem;
+ color: #fff;
+ text-align: center;
+ background-color: #000;
+ border-radius: 0.25rem;
+ }
+ .popover {
+ top: 0;
+ left: 0;
+ z-index: 1060;
+ max-width: 700px;
+ text-align: left;
+ text-align: start;
+ background-color: #fff;
+ background-clip: padding-box;
+ border: 1px solid rgba(0, 0, 0, 0.2);
+ border-radius: 0.27rem;
+ color: #0278d5;
+ }
+ .popover .arrow {
+ width: 1rem;
+ height: 0.5rem;
+ margin: 0 0.27rem;
+ }
+ .popover .arrow::after,
+ .popover .arrow::before {
+ border-color: transparent;
+ border-style: solid;
+ }
+ .bs-popover-auto[x-placement^="top"],
+ .bs-popover-top {
+ margin-bottom: 0.5rem;
+ }
+ .bs-popover-auto[x-placement^="top"] > .arrow,
+ .bs-popover-top > .arrow {
+ bottom: calc(-0.5rem - 1px);
+ }
+ .bs-popover-auto[x-placement^="top"] > .arrow::before,
+ .bs-popover-top > .arrow::before {
+ bottom: 0;
+ border-width: 0.5rem 0.5rem 0;
+ border-top-color: rgba(0, 0, 0, 0.25);
+ }
+ .bs-popover-auto[x-placement^="top"] > .arrow::after,
+ .bs-popover-top > .arrow::after {
+ bottom: 1px;
+ border-width: 0.5rem 0.5rem 0;
+ border-top-color: #fff;
+ }
+ .bs-popover-auto[x-placement^="right"],
+ .bs-popover-right {
+ margin-left: 0.5rem;
+ }
+ .bs-popover-auto[x-placement^="right"] > .arrow,
+ .bs-popover-right > .arrow {
+ left: calc(-0.5rem - 1px);
+ width: 0.5rem;
+ height: 1rem;
+ margin: 0.27rem 0;
+ }
+ .bs-popover-auto[x-placement^="right"] > .arrow::before,
+ .bs-popover-right > .arrow::before {
+ left: 0;
+ border-width: 0.5rem 0.5rem 0.5rem 0;
+ border-right-color: rgba(0, 0, 0, 0.25);
+ }
+ .bs-popover-auto[x-placement^="right"] > .arrow::after,
+ .bs-popover-right > .arrow::after {
+ left: 1px;
+ border-width: 0.5rem 0.5rem 0.5rem 0;
+ border-right-color: #fff;
+ }
+ .bs-popover-auto[x-placement^="bottom"],
+ .bs-popover-bottom {
+ margin-top: 0.5rem;
+ }
+ .bs-popover-auto[x-placement^="bottom"] > .arrow,
+ .bs-popover-bottom > .arrow {
+ top: calc(-0.5rem - 1px);
+ }
+ .bs-popover-auto[x-placement^="bottom"] > .arrow::before,
+ .bs-popover-bottom > .arrow::before {
+ top: 0;
+ border-width: 0 0.5rem 0.5rem;
+ border-bottom-color: rgba(0, 0, 0, 0.25);
+ }
+ .bs-popover-auto[x-placement^="bottom"] > .arrow::after,
+ .bs-popover-bottom > .arrow::after {
+ top: 1px;
+ border-width: 0 0.5rem 0.5rem;
+ border-bottom-color: #fff;
+ }
+ .bs-popover-auto[x-placement^="bottom"] .popover-header::before,
+ .bs-popover-bottom .popover-header::before {
+ position: absolute;
+ top: 0;
+ left: 50%;
+ display: block;
+ width: 1rem;
+ margin-left: -0.5rem;
+ content: "";
+ border-bottom: 1px solid #f7f7f7;
+ }
+ .carousel,
+ .carousel-inner,
+ .carousel-item {
+ position: relative;
+ }
+ .bs-popover-auto[x-placement^="left"],
+ .bs-popover-left {
+ margin-right: 0.5rem;
+ }
+ .bs-popover-auto[x-placement^="left"] > .arrow,
+ .bs-popover-left > .arrow {
+ right: calc(-0.5rem - 1px);
+ width: 0.5rem;
+ height: 1rem;
+ margin: 0.27rem 0;
+ }
+ .bs-popover-auto[x-placement^="left"] > .arrow::before,
+ .bs-popover-left > .arrow::before {
+ right: 0;
+ border-width: 0.5rem 0 0.5rem 0.5rem;
+ border-left-color: rgba(0, 0, 0, 0.25);
+ }
+ .bs-popover-auto[x-placement^="left"] > .arrow::after,
+ .bs-popover-left > .arrow::after {
+ right: 1px;
+ border-width: 0.5rem 0 0.5rem 0.5rem;
+ border-left-color: #fff;
+ }
+ .popover-header {
+ margin-bottom: 0;
+ font-size: 1rem;
+ color: inherit;
+ background-color: #f7f7f7;
+ border-bottom: 1px solid #ebebeb;
+ border-top-left-radius: calc(0.27rem - 1px);
+ border-top-right-radius: calc(0.27rem - 1px);
+ }
+ .popover-header:empty {
+ display: none;
+ }
+ .popover-body {
+ color: #404e67;
+ }
+ .carousel.pointer-event {
+ -ms-touch-action: pan-y;
+ touch-action: pan-y;
+ }
+ .carousel-inner {
+ width: 100%;
+ overflow: hidden;
+ }
+ .carousel-inner::after {
+ display: block;
+ clear: both;
+ }
+ .carousel-item {
+ display: none;
+ float: left;
+ width: 100%;
+ margin-right: -100%;
+ -webkit-backface-visibility: hidden;
+ backface-visibility: hidden;
+ -webkit-transition: -webkit-transform 0.6s ease;
+ transition: -webkit-transform 0.6s ease;
+ transition: transform 0.6s ease;
+ transition: transform 0.6s ease, -webkit-transform 0.6s ease;
+ }
+ @media (prefers-reduced-motion: reduce) {
+ .carousel-item {
+ -webkit-transition: none;
+ transition: none;
+ }
+ }
+ .carousel-item-next,
+ .carousel-item-prev,
+ .carousel-item.active {
+ display: block;
+ }
+ .active.carousel-item-right,
+ .carousel-item-next:not(.carousel-item-left) {
+ -webkit-transform: translateX(100%);
+ -ms-transform: translateX(100%);
+ transform: translateX(100%);
+ }
+ .active.carousel-item-left,
+ .carousel-item-prev:not(.carousel-item-right) {
+ -webkit-transform: translateX(-100%);
+ -ms-transform: translateX(-100%);
+ transform: translateX(-100%);
+ }
+ .carousel-fade .carousel-item {
+ opacity: 0;
+ -webkit-transition-property: opacity;
+ transition-property: opacity;
+ -webkit-transform: none;
+ -ms-transform: none;
+ transform: none;
+ }
+ .carousel-fade .carousel-item-next.carousel-item-left,
+ .carousel-fade .carousel-item-prev.carousel-item-right,
+ .carousel-fade .carousel-item.active {
+ z-index: 1;
+ opacity: 1;
+ }
+ .carousel-fade .active.carousel-item-left,
+ .carousel-fade .active.carousel-item-right {
+ z-index: 0;
+ opacity: 0;
+ -webkit-transition: opacity 0s 0.6s;
+ transition: opacity 0s 0.6s;
+ }
+ @media (prefers-reduced-motion: reduce) {
+ .carousel-fade .active.carousel-item-left,
+ .carousel-fade .active.carousel-item-right {
+ -webkit-transition: none;
+ transition: none;
+ }
+ }
+ .carousel-control-next,
+ .carousel-control-prev {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ z-index: 1;
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -webkit-align-items: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: center;
+ -webkit-justify-content: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ width: 15%;
+ color: #fff;
+ text-align: center;
+ opacity: 0.5;
+ -webkit-transition: opacity 0.15s ease;
+ transition: opacity 0.15s ease;
+ }
+ @media (prefers-reduced-motion: reduce) {
+ .carousel-control-next,
+ .carousel-control-prev {
+ -webkit-transition: none;
+ transition: none;
+ }
+ }
+ .carousel-control-next:focus,
+ .carousel-control-next:hover,
+ .carousel-control-prev:focus,
+ .carousel-control-prev:hover {
+ color: #fff;
+ text-decoration: none;
+ outline: 0;
+ opacity: 0.9;
+ }
+ .carousel-control-prev {
+ left: 0;
+ }
+ .carousel-control-next {
+ right: 0;
+ }
+ .carousel-control-next-icon,
+ .carousel-control-prev-icon {
+ display: inline-block;
+ width: 20px;
+ height: 20px;
+ background: 50%/100% 100% no-repeat;
+ }
+ .carousel-control-prev-icon {
+ background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
+ }
+ .carousel-control-next-icon {
+ background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
+ }
+ .carousel-indicators {
+ position: absolute;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 15;
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-pack: center;
+ -webkit-justify-content: center;
+ -ms-flex-pack: center;
+ justify-content: center;
+ padding-left: 0;
+ margin-right: 15%;
+ margin-left: 15%;
+ list-style: none;
+ }
+ .spinner-border,
+ .spinner-grow {
+ display: inline-block;
+ vertical-align: text-bottom;
+ }
+ .carousel-indicators li {
+ box-sizing: content-box;
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 1 auto;
+ -ms-flex: 0 1 auto;
+ flex: 0 1 auto;
+ width: 30px;
+ height: 3px;
+ margin-right: 3px;
+ margin-left: 3px;
+ text-indent: -999px;
+ cursor: pointer;
+ background-color: #fff;
+ background-clip: padding-box;
+ border-top: 10px solid transparent;
+ border-bottom: 10px solid transparent;
+ opacity: 0.5;
+ -webkit-transition: opacity 0.6s ease;
+ transition: opacity 0.6s ease;
+ }
+ @media (prefers-reduced-motion: reduce) {
+ .carousel-indicators li {
+ -webkit-transition: none;
+ transition: none;
+ }
+ }
+ .carousel-indicators .active {
+ opacity: 1;
+ }
+ .carousel-caption {
+ position: absolute;
+ right: 15%;
+ bottom: 20px;
+ left: 15%;
+ z-index: 10;
+ padding-top: 20px;
+ padding-bottom: 20px;
+ color: #fff;
+ text-align: center;
+ }
+ @-webkit-keyframes spinner-border {
+ to {
+ -webkit-transform: rotate(360deg);
+ transform: rotate(360deg);
+ }
+ }
+ @keyframes spinner-border {
+ to {
+ -webkit-transform: rotate(360deg);
+ transform: rotate(360deg);
+ }
+ }
+ .spinner-border {
+ width: 2rem;
+ height: 2rem;
+ border: 0.25em solid currentColor;
+ border-right-color: transparent;
+ border-radius: 50%;
+ -webkit-animation: spinner-border 0.75s linear infinite;
+ animation: spinner-border 0.75s linear infinite;
+ }
+ .spinner-border-sm {
+ width: 1rem;
+ height: 1rem;
+ border-width: 0.2em;
+ }
+ @-webkit-keyframes spinner-grow {
+ 0% {
+ -webkit-transform: scale(0);
+ transform: scale(0);
+ }
+ 50% {
+ opacity: 1;
+ }
+ }
+ @keyframes spinner-grow {
+ 0% {
+ -webkit-transform: scale(0);
+ transform: scale(0);
+ }
+ 50% {
+ opacity: 1;
+ }
+ }
+ .spinner-grow {
+ width: 2rem;
+ height: 2rem;
+ background-color: currentColor;
+ border-radius: 50%;
+ opacity: 0;
+ -webkit-animation: spinner-grow 0.75s linear infinite;
+ animation: spinner-grow 0.75s linear infinite;
+ }
+ .spinner-grow-sm {
+ width: 1rem;
+ height: 1rem;
+ }
+ .align-baseline {
+ vertical-align: baseline !important;
+ }
+ .align-top {
+ vertical-align: top !important;
+ }
+ .align-middle {
+ vertical-align: middle !important;
+ }
+ .align-bottom {
+ vertical-align: bottom !important;
+ }
+ .align-text-bottom {
+ vertical-align: text-bottom !important;
+ }
+ .align-text-top {
+ vertical-align: text-top !important;
+ }
+ .bg-primary {
+ background-color: #0677D4 !important;
+ }
+ a.bg-primary:focus,
+ a.bg-primary:hover,
+ button.bg-primary:focus,
+ button.bg-primary:hover {
+ background-color: #0278d5 !important;
+ }
+ .bg-secondary {
+ background-color: #404e67 !important;
+ }
+ a.bg-secondary:focus,
+ a.bg-secondary:hover,
+ button.bg-secondary:focus,
+ button.bg-secondary:hover {
+ background-color: #2c3648 !important;
+ }
+ .bg-success {
+ background-color: #16d39a !important;
+ }
+ a.bg-success:focus,
+ a.bg-success:hover,
+ button.bg-success:focus,
+ button.bg-success:hover {
+ background-color: #11a578 !important;
+ }
+ .bg-info {
+ background-color: #2dcee3 !important;
+ }
+ a.bg-info:focus,
+ a.bg-info:hover,
+ button.bg-info:focus,
+ button.bg-info:hover {
+ background-color: #1ab0c3 !important;
+ }
+ .bg-warning {
+ background-color: #ffa87d !important;
+ }
+ a.bg-warning:focus,
+ a.bg-warning:hover,
+ button.bg-warning:focus,
+ button.bg-warning:hover {
+ background-color: #ff864a !important;
+ }
+ .bg-danger {
+ background-color: #F08080 !important;
+ }
+ a.bg-danger:focus,
+ a.bg-danger:hover,
+ button.bg-danger:focus,
+ button.bg-danger:hover {
+ background-color: #ff425c !important;
+ }
+ .bg-light {
+ background-color: #babfc7 !important;
+ }
+ a.bg-light:focus,
+ a.bg-light:hover,
+ button.bg-light:focus,
+ button.bg-light:hover {
+ background-color: #9ea5b0 !important;
+ }
+ .bg-dark {
+ background-color: #1b2942 !important;
+ }
+ a.bg-dark:focus,
+ a.bg-dark:hover,
+ button.bg-dark:focus,
+ button.bg-dark:hover {
+ background-color: #0c131e !important;
+ }
+ .bg-white {
+ background-color: #fff !important;
+ }
+ .bg-transparent {
+ background-color: transparent !important;
+ }
+ .border {
+ border: 1px solid #e6e6e6 !important;
+ }
+ .border-top {
+ border-top: 1px solid #e6e6e6 !important;
+ }
+ .border-right {
+ border-right: 1px solid #e6e6e6 !important;
+ }
+ .border-bottom {
+ border-bottom: 1px solid #e6e6e6 !important;
+ }
+ .border-left {
+ border-left: 1px solid #e6e6e6 !important;
+ }
+ .border-0 {
+ border: 0 !important;
+ }
+ .border-top-0 {
+ border-top: 0 !important;
+ }
+ .border-right-0 {
+ border-right: 0 !important;
+ }
+ .border-bottom-0 {
+ border-bottom: 0 !important;
+ }
+ .border-left-0 {
+ border-left: 0 !important;
+ }
+ .border-primary {
+ border-color: #0677D4 !important;
+ }
+ .border-secondary {
+ border-color: #404e67 !important;
+ }
+ .border-success {
+ border-color: #16d39a !important;
+ }
+ .border-info {
+ border-color: #2dcee3 !important;
+ }
+ .border-warning {
+ border-color: #ffa87d !important;
+ }
+ .border-danger {
+ border-color: #F08080 !important;
+ }
+ .border-light {
+ border-color: #babfc7 !important;
+ }
+ .border-dark {
+ border-color: #1b2942 !important;
+ }
+ .border-white {
+ border-color: #fff !important;
+ }
+ .rounded-sm {
+ border-radius: 0.21rem !important;
+ }
+ .rounded-right,
+ .rounded-top {
+ border-top-right-radius: 0.25rem !important;
+ }
+ .rounded-bottom,
+ .rounded-right {
+ border-bottom-right-radius: 0.25rem !important;
+ }
+ .rounded-left,
+ .rounded-top {
+ border-top-left-radius: 0.25rem !important;
+ }
+ .rounded-bottom,
+ .rounded-left {
+ border-bottom-left-radius: 0.25rem !important;
+ }
+ .rounded {
+ border-radius: 0.25rem !important;
+ }
+ .rounded-lg {
+ border-radius: 0.27rem !important;
+ }
+ .rounded-circle {
+ border-radius: 50% !important;
+ }
+ .rounded-pill {
+ border-radius: 50rem !important;
+ }
+ .rounded-0 {
+ border-radius: 0 !important;
+ }
+ .clearfix::after {
+ display: block;
+ clear: both;
+ }
+ .d-none {
+ display: none !important;
+ }
+ .d-inline {
+ display: inline !important;
+ }
+ .d-inline-block {
+ display: inline-block !important;
+ }
+ .d-block {
+ display: block !important;
+ }
+ .d-table {
+ display: table !important;
+ }
+ .d-table-row {
+ display: table-row !important;
+ }
+ .d-table-cell {
+ display: table-cell !important;
+ }
+ .d-flex {
+ display: -webkit-box !important;
+ display: -webkit-flex !important;
+ display: -ms-flexbox !important;
+ display: flex !important;
+ }
+ .d-inline-flex {
+ display: -webkit-inline-box !important;
+ display: -webkit-inline-flex !important;
+ display: -ms-inline-flexbox !important;
+ display: inline-flex !important;
+ }
+ @media (min-width: 576px) {
+ .d-sm-none {
+ display: none !important;
+ }
+ .d-sm-inline {
+ display: inline !important;
+ }
+ .d-sm-inline-block {
+ display: inline-block !important;
+ }
+ .d-sm-block {
+ display: block !important;
+ }
+ .d-sm-table {
+ display: table !important;
+ }
+ .d-sm-table-row {
+ display: table-row !important;
+ }
+ .d-sm-table-cell {
+ display: table-cell !important;
+ }
+ .d-sm-flex {
+ display: -webkit-box !important;
+ display: -webkit-flex !important;
+ display: -ms-flexbox !important;
+ display: flex !important;
+ }
+ .d-sm-inline-flex {
+ display: -webkit-inline-box !important;
+ display: -webkit-inline-flex !important;
+ display: -ms-inline-flexbox !important;
+ display: inline-flex !important;
+ }
+ }
+ @media (min-width: 768px) {
+ .d-md-none {
+ display: none !important;
+ }
+ .d-md-inline {
+ display: inline !important;
+ }
+ .d-md-inline-block {
+ display: inline-block !important;
+ }
+ .d-md-block {
+ display: block !important;
+ }
+ .d-md-table {
+ display: table !important;
+ }
+ .d-md-table-row {
+ display: table-row !important;
+ }
+ .d-md-table-cell {
+ display: table-cell !important;
+ }
+ .d-md-flex {
+ display: -webkit-box !important;
+ display: -webkit-flex !important;
+ display: -ms-flexbox !important;
+ display: flex !important;
+ }
+ .d-md-inline-flex {
+ display: -webkit-inline-box !important;
+ display: -webkit-inline-flex !important;
+ display: -ms-inline-flexbox !important;
+ display: inline-flex !important;
+ }
+ }
+ @media (min-width: 992px) {
+ .d-lg-none {
+ display: none !important;
+ }
+ .d-lg-inline {
+ display: inline !important;
+ }
+ .d-lg-inline-block {
+ display: inline-block !important;
+ }
+ .d-lg-block {
+ display: block !important;
+ }
+ .d-lg-table {
+ display: table !important;
+ }
+ .d-lg-table-row {
+ display: table-row !important;
+ }
+ .d-lg-table-cell {
+ display: table-cell !important;
+ }
+ .d-lg-flex {
+ display: -webkit-box !important;
+ display: -webkit-flex !important;
+ display: -ms-flexbox !important;
+ display: flex !important;
+ }
+ .d-lg-inline-flex {
+ display: -webkit-inline-box !important;
+ display: -webkit-inline-flex !important;
+ display: -ms-inline-flexbox !important;
+ display: inline-flex !important;
+ }
+ }
+ @media (min-width: 1200px) {
+ .d-xl-none {
+ display: none !important;
+ }
+ .d-xl-inline {
+ display: inline !important;
+ }
+ .d-xl-inline-block {
+ display: inline-block !important;
+ }
+ .d-xl-block {
+ display: block !important;
+ }
+ .d-xl-table {
+ display: table !important;
+ }
+ .d-xl-table-row {
+ display: table-row !important;
+ }
+ .d-xl-table-cell {
+ display: table-cell !important;
+ }
+ .d-xl-flex {
+ display: -webkit-box !important;
+ display: -webkit-flex !important;
+ display: -ms-flexbox !important;
+ display: flex !important;
+ }
+ .d-xl-inline-flex {
+ display: -webkit-inline-box !important;
+ display: -webkit-inline-flex !important;
+ display: -ms-inline-flexbox !important;
+ display: inline-flex !important;
+ }
+ }
+ @media (min-width: 1400px) {
+ .d-xxl-none {
+ display: none !important;
+ }
+ .d-xxl-inline {
+ display: inline !important;
+ }
+ .d-xxl-inline-block {
+ display: inline-block !important;
+ }
+ .d-xxl-block {
+ display: block !important;
+ }
+ .d-xxl-table {
+ display: table !important;
+ }
+ .d-xxl-table-row {
+ display: table-row !important;
+ }
+ .d-xxl-table-cell {
+ display: table-cell !important;
+ }
+ .d-xxl-flex {
+ display: -webkit-box !important;
+ display: -webkit-flex !important;
+ display: -ms-flexbox !important;
+ display: flex !important;
+ }
+ .d-xxl-inline-flex {
+ display: -webkit-inline-box !important;
+ display: -webkit-inline-flex !important;
+ display: -ms-inline-flexbox !important;
+ display: inline-flex !important;
+ }
+ }
+ @media print {
+ .d-print-none {
+ display: none !important;
+ }
+ .d-print-inline {
+ display: inline !important;
+ }
+ .d-print-inline-block {
+ display: inline-block !important;
+ }
+ .d-print-block {
+ display: block !important;
+ }
+ .d-print-table {
+ display: table !important;
+ }
+ .d-print-table-row {
+ display: table-row !important;
+ }
+ .d-print-table-cell {
+ display: table-cell !important;
+ }
+ .d-print-flex {
+ display: -webkit-box !important;
+ display: -webkit-flex !important;
+ display: -ms-flexbox !important;
+ display: flex !important;
+ }
+ .d-print-inline-flex {
+ display: -webkit-inline-box !important;
+ display: -webkit-inline-flex !important;
+ display: -ms-inline-flexbox !important;
+ display: inline-flex !important;
+ }
+ }
+ .embed-responsive {
+ position: relative;
+ display: block;
+ width: 100%;
+ padding: 0;
+ overflow: hidden;
+ }
+ .embed-responsive::before {
+ display: block;
+ }
+ .embed-responsive .embed-responsive-item,
+ .embed-responsive embed,
+ .embed-responsive iframe,
+ .embed-responsive object,
+ .embed-responsive video {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ border: 0;
+ }
+ .embed-responsive-21by9::before {
+ padding-top: 42.85714%;
+ }
+ .embed-responsive-16by9::before {
+ padding-top: 56.25%;
+ }
+ .embed-responsive-4by3::before {
+ padding-top: 75%;
+ }
+ .embed-responsive-1by1::before {
+ padding-top: 100%;
+ }
+ .flex-row {
+ -webkit-box-orient: horizontal !important;
+ -webkit-flex-direction: row !important;
+ -ms-flex-direction: row !important;
+ flex-direction: row !important;
+ }
+ .flex-column {
+ -webkit-box-orient: vertical !important;
+ -webkit-flex-direction: column !important;
+ -ms-flex-direction: column !important;
+ flex-direction: column !important;
+ }
+ .flex-column-reverse,
+ .flex-row-reverse {
+ -webkit-box-direction: reverse !important;
+ }
+ .flex-row-reverse {
+ -webkit-box-orient: horizontal !important;
+ -webkit-flex-direction: row-reverse !important;
+ -ms-flex-direction: row-reverse !important;
+ flex-direction: row-reverse !important;
+ }
+ .flex-column-reverse {
+ -webkit-box-orient: vertical !important;
+ -webkit-flex-direction: column-reverse !important;
+ -ms-flex-direction: column-reverse !important;
+ flex-direction: column-reverse !important;
+ }
+ .flex-wrap {
+ -webkit-flex-wrap: wrap !important;
+ -ms-flex-wrap: wrap !important;
+ flex-wrap: wrap !important;
+ }
+ .flex-nowrap {
+ -webkit-flex-wrap: nowrap !important;
+ -ms-flex-wrap: nowrap !important;
+ flex-wrap: nowrap !important;
+ }
+ .flex-wrap-reverse {
+ -webkit-flex-wrap: wrap-reverse !important;
+ -ms-flex-wrap: wrap-reverse !important;
+ flex-wrap: wrap-reverse !important;
+ }
+ .flex-fill {
+ -webkit-box-flex: 1 !important;
+ -webkit-flex: 1 1 auto !important;
+ -ms-flex: 1 1 auto !important;
+ flex: 1 1 auto !important;
+ }
+ .flex-grow-0 {
+ -webkit-box-flex: 0 !important;
+ -webkit-flex-grow: 0 !important;
+ -ms-flex-positive: 0 !important;
+ flex-grow: 0 !important;
+ }
+ .flex-grow-1 {
+ -webkit-box-flex: 1 !important;
+ -webkit-flex-grow: 1 !important;
+ -ms-flex-positive: 1 !important;
+ flex-grow: 1 !important;
+ }
+ .flex-shrink-0 {
+ -webkit-flex-shrink: 0 !important;
+ -ms-flex-negative: 0 !important;
+ flex-shrink: 0 !important;
+ }
+ .flex-shrink-1 {
+ -webkit-flex-shrink: 1 !important;
+ -ms-flex-negative: 1 !important;
+ flex-shrink: 1 !important;
+ }
+ .justify-content-start {
+ -webkit-box-pack: start !important;
+ -webkit-justify-content: flex-start !important;
+ -ms-flex-pack: start !important;
+ justify-content: flex-start !important;
+ }
+ .justify-content-end {
+ -webkit-box-pack: end !important;
+ -webkit-justify-content: flex-end !important;
+ -ms-flex-pack: end !important;
+ justify-content: flex-end !important;
+ }
+ .justify-content-center {
+ -webkit-box-pack: center !important;
+ -webkit-justify-content: center !important;
+ -ms-flex-pack: center !important;
+ justify-content: center !important;
+ }
+ .justify-content-between {
+ -webkit-box-pack: justify !important;
+ -webkit-justify-content: space-between !important;
+ -ms-flex-pack: justify !important;
+ justify-content: space-between !important;
+ }
+ .justify-content-around {
+ -webkit-justify-content: space-around !important;
+ -ms-flex-pack: distribute !important;
+ justify-content: space-around !important;
+ }
+ .align-items-start {
+ -webkit-box-align: start !important;
+ -webkit-align-items: flex-start !important;
+ -ms-flex-align: start !important;
+ align-items: flex-start !important;
+ }
+ .align-items-end {
+ -webkit-box-align: end !important;
+ -webkit-align-items: flex-end !important;
+ -ms-flex-align: end !important;
+ align-items: flex-end !important;
+ }
+ .align-items-center {
+ -webkit-box-align: center !important;
+ -webkit-align-items: center !important;
+ -ms-flex-align: center !important;
+ align-items: center !important;
+ }
+ .align-items-baseline {
+ -webkit-box-align: baseline !important;
+ -webkit-align-items: baseline !important;
+ -ms-flex-align: baseline !important;
+ align-items: baseline !important;
+ }
+ .align-items-stretch {
+ -webkit-box-align: stretch !important;
+ -webkit-align-items: stretch !important;
+ -ms-flex-align: stretch !important;
+ align-items: stretch !important;
+ }
+ .align-content-start {
+ -webkit-align-content: flex-start !important;
+ -ms-flex-line-pack: start !important;
+ align-content: flex-start !important;
+ }
+ .align-content-end {
+ -webkit-align-content: flex-end !important;
+ -ms-flex-line-pack: end !important;
+ align-content: flex-end !important;
+ }
+ .align-content-center {
+ -webkit-align-content: center !important;
+ -ms-flex-line-pack: center !important;
+ align-content: center !important;
+ }
+ .align-content-between {
+ -webkit-align-content: space-between !important;
+ -ms-flex-line-pack: justify !important;
+ align-content: space-between !important;
+ }
+ .align-content-around {
+ -webkit-align-content: space-around !important;
+ -ms-flex-line-pack: distribute !important;
+ align-content: space-around !important;
+ }
+ .align-content-stretch {
+ -webkit-align-content: stretch !important;
+ -ms-flex-line-pack: stretch !important;
+ align-content: stretch !important;
+ }
+ .align-self-auto {
+ -webkit-align-self: auto !important;
+ -ms-flex-item-align: auto !important;
+ align-self: auto !important;
+ }
+ .align-self-start {
+ -webkit-align-self: flex-start !important;
+ -ms-flex-item-align: start !important;
+ align-self: flex-start !important;
+ }
+ .align-self-end {
+ -webkit-align-self: flex-end !important;
+ -ms-flex-item-align: end !important;
+ align-self: flex-end !important;
+ }
+ .align-self-center {
+ -webkit-align-self: center !important;
+ -ms-flex-item-align: center !important;
+ align-self: center !important;
+ }
+ .align-self-baseline {
+ -webkit-align-self: baseline !important;
+ -ms-flex-item-align: baseline !important;
+ align-self: baseline !important;
+ }
+ .align-self-stretch {
+ -webkit-align-self: stretch !important;
+ -ms-flex-item-align: stretch !important;
+ align-self: stretch !important;
+ }
+ .float-left {
+ float: left !important;
+ }
+ .float-right {
+ float: right !important;
+ }
+ .float-none {
+ float: none !important;
+ }
+ .overflow-auto {
+ overflow: auto !important;
+ }
+ .overflow-hidden {
+ overflow: hidden !important;
+ }
+ .position-static {
+ position: static !important;
+ }
+ .position-relative {
+ position: relative !important;
+ }
+ .position-absolute {
+ position: absolute !important;
+ }
+ .position-fixed {
+ position: fixed !important;
+ }
+ .position-sticky {
+ position: -webkit-sticky !important;
+ position: sticky !important;
+ }
+ .fixed-bottom,
+ .fixed-top {
+ position: fixed;
+ z-index: 1038;
+ right: 0;
+ left: 0;
+ }
+ .fixed-top {
+ top: 0;
+ }
+ .fixed-bottom {
+ bottom: 0;
+ }
+ @supports ((position: -webkit-sticky) or (position: sticky)) {
+ .sticky-top {
+ position: -webkit-sticky;
+ position: sticky;
+ top: 0;
+ z-index: 1020;
+ }
+ }
+ .sr-only {
+ position: absolute;
+ width: 1px;
+ height: 1px;
+ padding: 0;
+ margin: -1px;
+ overflow: hidden;
+ clip: rect(0, 0, 0, 0);
+ white-space: nowrap;
+ border: 0;
+ }
+ .sr-only-focusable:active,
+ .sr-only-focusable:focus {
+ position: static;
+ width: auto;
+ height: auto;
+ overflow: visible;
+ clip: auto;
+ white-space: normal;
+ }
+ .shadow-sm {
+ box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
+ }
+ .shadow {
+ box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
+ }
+ .shadow-lg {
+ box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
+ }
+ .shadow-none {
+ box-shadow: none !important;
+ }
+ .w-25 {
+ width: 25% !important;
+ }
+ .w-50 {
+ width: 50% !important;
+ }
+ .w-75 {
+ width: 75% !important;
+ }
+ .w-100 {
+ width: 100% !important;
+ }
+ .w-auto {
+ width: auto !important;
+ }
+ .h-25 {
+ height: 25% !important;
+ }
+ .h-50 {
+ height: 50% !important;
+ }
+ .h-75 {
+ height: 75% !important;
+ }
+ .h-100 {
+ height: 100% !important;
+ }
+ .h-auto {
+ height: auto !important;
+ }
+ .mw-100 {
+ max-width: 100% !important;
+ }
+ .mh-100 {
+ max-height: 100% !important;
+ }
+ .min-vw-100 {
+ min-width: 100vw !important;
+ }
+ .min-vh-100 {
+ min-height: 100vh !important;
+ }
+ .vw-100 {
+ width: 100vw !important;
+ }
+ .vh-100 {
+ height: 100vh !important;
+ }
+ .stretched-link::after {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 1;
+ pointer-events: auto;
+ background-color: rgba(0, 0, 0, 0);
+ }
+ .m-0 {
+ margin: 0 !important;
+ }
+ .mt-0,
+ .my-0 {
+ margin-top: 0 !important;
+ }
+ .mr-0,
+ .mx-0 {
+ margin-right: 0 !important;
+ }
+ .mb-0,
+ .my-0 {
+ margin-bottom: 0 !important;
+ }
+ .ml-0,
+ .mx-0 {
+ margin-left: 0 !important;
+ }
+ .m-1 {
+ margin: 1rem !important;
+ }
+ .mt-1,
+ .my-1 {
+ margin-top: 1rem !important;
+ }
+ .mr-1,
+ .mx-1 {
+ margin-right: 1rem !important;
+ }
+ .mb-1,
+ .my-1 {
+ margin-bottom: 1rem !important;
+ }
+ .ml-1,
+ .mx-1 {
+ margin-left: 1rem !important;
+ }
+ .m-2 {
+ margin: 1.5rem !important;
+ }
+ .mt-2,
+ .my-2 {
+ margin-top: 1.5rem !important;
+ }
+ .mr-2,
+ .mx-2 {
+ margin-right: 1.5rem !important;
+ }
+ .mb-2,
+ .my-2 {
+ margin-bottom: 1.5rem !important;
+ }
+ .ml-2,
+ .mx-2 {
+ margin-left: 1.5rem !important;
+ }
+ .m-3 {
+ margin: 3rem !important;
+ }
+ .mt-3,
+ .my-3 {
+ margin-top: 1rem !important;
+ }
+ .mr-3,
+ .mx-3 {
+ margin-right: 3rem !important;
+ }
+ .mb-3,
+ .my-3 {
+ margin-bottom: 3rem !important;
+ }
+ .ml-3,
+ .mx-3 {
+ margin-left: 3rem !important;
+ }
+ .m-4 {
+ margin: 3.5rem !important;
+ }
+ .mt-4,
+ .my-4 {
+ margin-top: 3.5rem !important;
+ }
+ .mr-4,
+ .mx-4 {
+ margin-right: 3.5rem !important;
+ }
+ .mb-4,
+ .my-4 {
+ margin-bottom: 3.5rem !important;
+ }
+ .ml-4,
+ .mx-4 {
+ margin-left: 3.5rem !important;
+ }
+ .m-5 {
+ margin: 4rem !important;
+ }
+ .mt-5,
+ .my-5 {
+ margin-top: 4rem !important;
+ }
+ .mr-5,
+ .mx-5 {
+ margin-right: 4rem !important;
+ }
+ .mb-5,
+ .my-5 {
+ margin-bottom: 4rem !important;
+ }
+ .ml-5,
+ .mx-5 {
+ margin-left: 4rem !important;
+ }
+ .m-25 {
+ margin: 0.25rem !important;
+ }
+ .mt-25,
+ .my-25 {
+ margin-top: 0.25rem !important;
+ }
+ .mr-25,
+ .mx-25 {
+ margin-right: 0.25rem !important;
+ }
+ .mb-25,
+ .my-25 {
+ margin-bottom: 0.25rem !important;
+ }
+ .ml-25,
+ .mx-25 {
+ margin-left: 0.25rem !important;
+ }
+ .m-50 {
+ margin: 0.5rem !important;
+ }
+ .mt-50,
+ .my-50 {
+ margin-top: 0.5rem !important;
+ }
+ .mr-50,
+ .mx-50 {
+ margin-right: 0.5rem !important;
+ }
+ .mb-50,
+ .my-50 {
+ margin-bottom: 0.5rem !important;
+ }
+ .ml-50,
+ .mx-50 {
+ margin-left: 0.5rem !important;
+ }
+ .m-75 {
+ margin: 0.75rem !important;
+ }
+ .mt-75,
+ .my-75 {
+ margin-top: 0.75rem !important;
+ }
+ .mr-75,
+ .mx-75 {
+ margin-right: 0.75rem !important;
+ }
+ .mb-75,
+ .my-75 {
+ margin-bottom: 0.75rem !important;
+ }
+ .ml-75,
+ .mx-75 {
+ margin-left: 0.75rem !important;
+ }
+ .p-0 {
+ padding: 0 !important;
+ }
+ .pt-0,
+ .py-0 {
+ padding-top: 0 !important;
+ }
+ .pr-0,
+ .px-0 {
+ padding-right: 0 !important;
+ }
+ .pb-0,
+ .py-0 {
+ padding-bottom: 0 !important;
+ }
+ .pl-0,
+ .px-0 {
+ padding-left: 0 !important;
+ }
+ .p-1 {
+ padding: 1rem !important;
+ }
+ .pt-1,
+ .py-1 {
+ padding-top: 1rem !important;
+ }
+ .pr-1,
+ .px-1 {
+ padding-right: 1rem !important;
+ }
+ .pb-1,
+ .py-1 {
+ padding-bottom: 1rem !important;
+ }
+ .pl-1,
+ .px-1 {
+ padding-left: 1rem !important;
+ }
+ .p-2 {
+ padding: 1.5rem !important;
+ }
+ .pt-2,
+ .py-2 {
+ padding-top: 1.5rem !important;
+ }
+ .pr-2,
+ .px-2 {
+ padding-right: 1.5rem !important;
+ }
+ .pb-2,
+ .py-2 {
+ padding-bottom: 1.5rem !important;
+ }
+ .pl-2,
+ .px-2 {
+ padding-left: 1.5rem !important;
+ }
+ .p-3 {
+ padding: 3rem !important;
+ }
+ .pt-3,
+ .py-3 {
+ padding-top: 3rem !important;
+ }
+ .pr-3,
+ .px-3 {
+ padding-right: 3rem !important;
+ }
+ .pb-3,
+ .py-3 {
+ padding-bottom: 3rem !important;
+ }
+ .pl-3,
+ .px-3 {
+ padding-left: 3rem !important;
+ }
+ .p-4 {
+ padding: 3.5rem !important;
+ }
+ .pt-4,
+ .py-4 {
+ padding-top: 3.5rem !important;
+ }
+ .pr-4,
+ .px-4 {
+ padding-right: 3.5rem !important;
+ }
+ .pb-4,
+ .py-4 {
+ padding-bottom: 3.5rem !important;
+ }
+ .pl-4,
+ .px-4 {
+ padding-left: 3.5rem !important;
+ }
+ .p-5 {
+ padding: 4rem !important;
+ }
+ .pt-5,
+ .py-5 {
+ padding-top: 4rem !important;
+ }
+ .pr-5,
+ .px-5 {
+ padding-right: 4rem !important;
+ }
+ .pb-5,
+ .py-5 {
+ padding-bottom: 4rem !important;
+ }
+ .pl-5,
+ .px-5 {
+ padding-left: 4rem !important;
+ }
+ .p-25 {
+ padding: 0.25rem !important;
+ }
+ .pt-25,
+ .py-25 {
+ padding-top: 0.25rem !important;
+ }
+ .pr-25,
+ .px-25 {
+ padding-right: 0.25rem !important;
+ }
+ .pb-25,
+ .py-25 {
+ padding-bottom: 0.25rem !important;
+ }
+ .pl-25,
+ .px-25 {
+ padding-left: 0.25rem !important;
+ }
+ .p-50 {
+ padding: 0.5rem !important;
+ }
+ .pt-50,
+ .py-50 {
+ padding-top: 0.5rem !important;
+ }
+ .pr-50,
+ .px-50 {
+ padding-right: 0.5rem !important;
+ }
+ .pb-50,
+ .py-50 {
+ padding-bottom: 0.5rem !important;
+ }
+ .pl-50,
+ .px-50 {
+ padding-left: 0.5rem !important;
+ }
+ .p-75 {
+ padding: 0.75rem !important;
+ }
+ .pt-75,
+ .py-75 {
+ padding-top: 0.75rem !important;
+ }
+ .pr-75,
+ .px-75 {
+ padding-right: 0.75rem !important;
+ }
+ .pb-75,
+ .py-75 {
+ padding-bottom: 0.75rem !important;
+ }
+ .pl-75,
+ .px-75 {
+ padding-left: 0.75rem !important;
+ }
+ .m-n1 {
+ margin: -1rem !important;
+ }
+ .mt-n1,
+ .my-n1 {
+ margin-top: -1rem !important;
+ }
+ .mr-n1,
+ .mx-n1 {
+ margin-right: -1rem !important;
+ }
+ .mb-n1,
+ .my-n1 {
+ margin-bottom: -1rem !important;
+ }
+ .ml-n1,
+ .mx-n1 {
+ margin-left: -1rem !important;
+ }
+ .m-n2 {
+ margin: -1.5rem !important;
+ }
+ .mt-n2,
+ .my-n2 {
+ margin-top: -1.5rem !important;
+ }
+ .mr-n2,
+ .mx-n2 {
+ margin-right: -1.5rem !important;
+ }
+ .mb-n2,
+ .my-n2 {
+ margin-bottom: -1.5rem !important;
+ }
+ .ml-n2,
+ .mx-n2 {
+ margin-left: -1.5rem !important;
+ }
+ .m-n3 {
+ margin: -3rem !important;
+ }
+ .mt-n3,
+ .my-n3 {
+ margin-top: -3rem !important;
+ }
+ .mr-n3,
+ .mx-n3 {
+ margin-right: -3rem !important;
+ }
+ .mb-n3,
+ .my-n3 {
+ margin-bottom: -3rem !important;
+ }
+ .ml-n3,
+ .mx-n3 {
+ margin-left: -3rem !important;
+ }
+ .m-n4 {
+ margin: -3.5rem !important;
+ }
+ .mt-n4,
+ .my-n4 {
+ margin-top: -3.5rem !important;
+ }
+ .mr-n4,
+ .mx-n4 {
+ margin-right: -3.5rem !important;
+ }
+ .mb-n4,
+ .my-n4 {
+ margin-bottom: -3.5rem !important;
+ }
+ .ml-n4,
+ .mx-n4 {
+ margin-left: -3.5rem !important;
+ }
+ .m-n5 {
+ margin: -4rem !important;
+ }
+ .mt-n5,
+ .my-n5 {
+ margin-top: -4rem !important;
+ }
+ .mr-n5,
+ .mx-n5 {
+ margin-right: -4rem !important;
+ }
+ .mb-n5,
+ .my-n5 {
+ margin-bottom: -4rem !important;
+ }
+ .ml-n5,
+ .mx-n5 {
+ margin-left: -4rem !important;
+ }
+ .m-n25 {
+ margin: -0.25rem !important;
+ }
+ .mt-n25,
+ .my-n25 {
+ margin-top: -0.25rem !important;
+ }
+ .mr-n25,
+ .mx-n25 {
+ margin-right: -0.25rem !important;
+ }
+ .mb-n25,
+ .my-n25 {
+ margin-bottom: -0.25rem !important;
+ }
+ .ml-n25,
+ .mx-n25 {
+ margin-left: -0.25rem !important;
+ }
+ .m-n50 {
+ margin: -0.5rem !important;
+ }
+ .mt-n50,
+ .my-n50 {
+ margin-top: -0.5rem !important;
+ }
+ .mr-n50,
+ .mx-n50 {
+ margin-right: -0.5rem !important;
+ }
+ .mb-n50,
+ .my-n50 {
+ margin-bottom: -0.5rem !important;
+ }
+ .ml-n50,
+ .mx-n50 {
+ margin-left: -0.5rem !important;
+ }
+ .m-n75 {
+ margin: -0.75rem !important;
+ }
+ .mt-n75,
+ .my-n75 {
+ margin-top: -0.75rem !important;
+ }
+ .mr-n75,
+ .mx-n75 {
+ margin-right: -0.75rem !important;
+ }
+ .mb-n75,
+ .my-n75 {
+ margin-bottom: -0.75rem !important;
+ }
+ .ml-n75,
+ .mx-n75 {
+ margin-left: -0.75rem !important;
+ }
+ .m-auto {
+ margin: auto !important;
+ }
+ .mt-auto,
+ .my-auto {
+ margin-top: auto !important;
+ }
+ .mr-auto,
+ .mx-auto {
+ margin-right: auto !important;
+ }
+ .mb-auto,
+ .my-auto {
+ margin-bottom: auto !important;
+ }
+ .ml-auto,
+ .mx-auto {
+ margin-left: auto !important;
+ }
+ .text-monospace {
+ font-family: Inter,sans-serif;
+ }
+ .text-justify {
+ text-align: justify !important;
+ }
+ .text-wrap {
+ white-space: normal !important;
+ }
+ .text-nowrap {
+ white-space: nowrap !important;
+ }
+ .text-truncate {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ }
+ .text-left {
+ text-align: left !important;
+ }
+ .text-right {
+ text-align: right !important;
+ }
+ .text-center {
+ text-align: center !important;
+ }
+ @media (min-width: 576px) {
+ .flex-sm-column,
+ .flex-sm-row {
+ -webkit-box-direction: normal !important;
+ }
+ .flex-sm-row {
+ -webkit-box-orient: horizontal !important;
+ -webkit-flex-direction: row !important;
+ -ms-flex-direction: row !important;
+ flex-direction: row !important;
+ }
+ .flex-sm-column {
+ -webkit-box-orient: vertical !important;
+ -webkit-flex-direction: column !important;
+ -ms-flex-direction: column !important;
+ flex-direction: column !important;
+ }
+ .flex-sm-row-reverse {
+ -webkit-box-orient: horizontal !important;
+ -webkit-box-direction: reverse !important;
+ -webkit-flex-direction: row-reverse !important;
+ -ms-flex-direction: row-reverse !important;
+ flex-direction: row-reverse !important;
+ }
+ .flex-sm-column-reverse {
+ -webkit-box-orient: vertical !important;
+ -webkit-box-direction: reverse !important;
+ -webkit-flex-direction: column-reverse !important;
+ -ms-flex-direction: column-reverse !important;
+ flex-direction: column-reverse !important;
+ }
+ .flex-sm-wrap {
+ -webkit-flex-wrap: wrap !important;
+ -ms-flex-wrap: wrap !important;
+ flex-wrap: wrap !important;
+ }
+ .flex-sm-nowrap {
+ -webkit-flex-wrap: nowrap !important;
+ -ms-flex-wrap: nowrap !important;
+ flex-wrap: nowrap !important;
+ }
+ .flex-sm-wrap-reverse {
+ -webkit-flex-wrap: wrap-reverse !important;
+ -ms-flex-wrap: wrap-reverse !important;
+ flex-wrap: wrap-reverse !important;
+ }
+ .flex-sm-fill {
+ -webkit-box-flex: 1 !important;
+ -webkit-flex: 1 1 auto !important;
+ -ms-flex: 1 1 auto !important;
+ flex: 1 1 auto !important;
+ }
+ .flex-sm-grow-0 {
+ -webkit-box-flex: 0 !important;
+ -webkit-flex-grow: 0 !important;
+ -ms-flex-positive: 0 !important;
+ flex-grow: 0 !important;
+ }
+ .flex-sm-grow-1 {
+ -webkit-box-flex: 1 !important;
+ -webkit-flex-grow: 1 !important;
+ -ms-flex-positive: 1 !important;
+ flex-grow: 1 !important;
+ }
+ .flex-sm-shrink-0 {
+ -webkit-flex-shrink: 0 !important;
+ -ms-flex-negative: 0 !important;
+ flex-shrink: 0 !important;
+ }
+ .flex-sm-shrink-1 {
+ -webkit-flex-shrink: 1 !important;
+ -ms-flex-negative: 1 !important;
+ flex-shrink: 1 !important;
+ }
+ .justify-content-sm-start {
+ -webkit-box-pack: start !important;
+ -webkit-justify-content: flex-start !important;
+ -ms-flex-pack: start !important;
+ justify-content: flex-start !important;
+ }
+ .justify-content-sm-end {
+ -webkit-box-pack: end !important;
+ -webkit-justify-content: flex-end !important;
+ -ms-flex-pack: end !important;
+ justify-content: flex-end !important;
+ }
+ .justify-content-sm-center {
+ -webkit-box-pack: center !important;
+ -webkit-justify-content: center !important;
+ -ms-flex-pack: center !important;
+ justify-content: center !important;
+ }
+ .justify-content-sm-between {
+ -webkit-box-pack: justify !important;
+ -webkit-justify-content: space-between !important;
+ -ms-flex-pack: justify !important;
+ justify-content: space-between !important;
+ }
+ .justify-content-sm-around {
+ -webkit-justify-content: space-around !important;
+ -ms-flex-pack: distribute !important;
+ justify-content: space-around !important;
+ }
+ .align-items-sm-start {
+ -webkit-box-align: start !important;
+ -webkit-align-items: flex-start !important;
+ -ms-flex-align: start !important;
+ align-items: flex-start !important;
+ }
+ .align-items-sm-end {
+ -webkit-box-align: end !important;
+ -webkit-align-items: flex-end !important;
+ -ms-flex-align: end !important;
+ align-items: flex-end !important;
+ }
+ .align-items-sm-center {
+ -webkit-box-align: center !important;
+ -webkit-align-items: center !important;
+ -ms-flex-align: center !important;
+ align-items: center !important;
+ }
+ .align-items-sm-baseline {
+ -webkit-box-align: baseline !important;
+ -webkit-align-items: baseline !important;
+ -ms-flex-align: baseline !important;
+ align-items: baseline !important;
+ }
+ .align-items-sm-stretch {
+ -webkit-box-align: stretch !important;
+ -webkit-align-items: stretch !important;
+ -ms-flex-align: stretch !important;
+ align-items: stretch !important;
+ }
+ .align-content-sm-start {
+ -webkit-align-content: flex-start !important;
+ -ms-flex-line-pack: start !important;
+ align-content: flex-start !important;
+ }
+ .align-content-sm-end {
+ -webkit-align-content: flex-end !important;
+ -ms-flex-line-pack: end !important;
+ align-content: flex-end !important;
+ }
+ .align-content-sm-center {
+ -webkit-align-content: center !important;
+ -ms-flex-line-pack: center !important;
+ align-content: center !important;
+ }
+ .align-content-sm-between {
+ -webkit-align-content: space-between !important;
+ -ms-flex-line-pack: justify !important;
+ align-content: space-between !important;
+ }
+ .align-content-sm-around {
+ -webkit-align-content: space-around !important;
+ -ms-flex-line-pack: distribute !important;
+ align-content: space-around !important;
+ }
+ .align-content-sm-stretch {
+ -webkit-align-content: stretch !important;
+ -ms-flex-line-pack: stretch !important;
+ align-content: stretch !important;
+ }
+ .align-self-sm-auto {
+ -webkit-align-self: auto !important;
+ -ms-flex-item-align: auto !important;
+ align-self: auto !important;
+ }
+ .align-self-sm-start {
+ -webkit-align-self: flex-start !important;
+ -ms-flex-item-align: start !important;
+ align-self: flex-start !important;
+ }
+ .align-self-sm-end {
+ -webkit-align-self: flex-end !important;
+ -ms-flex-item-align: end !important;
+ align-self: flex-end !important;
+ }
+ .align-self-sm-center {
+ -webkit-align-self: center !important;
+ -ms-flex-item-align: center !important;
+ align-self: center !important;
+ }
+ .align-self-sm-baseline {
+ -webkit-align-self: baseline !important;
+ -ms-flex-item-align: baseline !important;
+ align-self: baseline !important;
+ }
+ .align-self-sm-stretch {
+ -webkit-align-self: stretch !important;
+ -ms-flex-item-align: stretch !important;
+ align-self: stretch !important;
+ }
+ .float-sm-left {
+ float: left !important;
+ }
+ .float-sm-right {
+ float: right !important;
+ }
+ .float-sm-none {
+ float: none !important;
+ }
+ .m-sm-0 {
+ margin: 0 !important;
+ }
+ .mt-sm-0,
+ .my-sm-0 {
+ margin-top: 0 !important;
+ }
+ .mr-sm-0,
+ .mx-sm-0 {
+ margin-right: 0 !important;
+ }
+ .mb-sm-0,
+ .my-sm-0 {
+ margin-bottom: 0 !important;
+ }
+ .ml-sm-0,
+ .mx-sm-0 {
+ margin-left: 0 !important;
+ }
+ .m-sm-1 {
+ margin: 1rem !important;
+ }
+ .mt-sm-1,
+ .my-sm-1 {
+ margin-top: 1rem !important;
+ }
+ .mr-sm-1,
+ .mx-sm-1 {
+ margin-right: 1rem !important;
+ }
+ .mb-sm-1,
+ .my-sm-1 {
+ margin-bottom: 1rem !important;
+ }
+ .ml-sm-1,
+ .mx-sm-1 {
+ margin-left: 1rem !important;
+ }
+ .m-sm-2 {
+ margin: 1.5rem !important;
+ }
+ .mt-sm-2,
+ .my-sm-2 {
+ margin-top: 1.5rem !important;
+ }
+ .mr-sm-2,
+ .mx-sm-2 {
+ margin-right: 1.5rem !important;
+ }
+ .mb-sm-2,
+ .my-sm-2 {
+ margin-bottom: 1.5rem !important;
+ }
+ .ml-sm-2,
+ .mx-sm-2 {
+ margin-left: 1.5rem !important;
+ }
+ .m-sm-3 {
+ margin: 3rem !important;
+ }
+ .mt-sm-3,
+ .my-sm-3 {
+ margin-top: 3rem !important;
+ }
+ .mr-sm-3,
+ .mx-sm-3 {
+ margin-right: 3rem !important;
+ }
+ .mb-sm-3,
+ .my-sm-3 {
+ margin-bottom: 3rem !important;
+ }
+ .ml-sm-3,
+ .mx-sm-3 {
+ margin-left: 3rem !important;
+ }
+ .m-sm-4 {
+ margin: 3.5rem !important;
+ }
+ .mt-sm-4,
+ .my-sm-4 {
+ margin-top: 3.5rem !important;
+ }
+ .mr-sm-4,
+ .mx-sm-4 {
+ margin-right: 3.5rem !important;
+ }
+ .mb-sm-4,
+ .my-sm-4 {
+ margin-bottom: 3.5rem !important;
+ }
+ .ml-sm-4,
+ .mx-sm-4 {
+ margin-left: 3.5rem !important;
+ }
+ .m-sm-5 {
+ margin: 4rem !important;
+ }
+ .mt-sm-5,
+ .my-sm-5 {
+ margin-top: 4rem !important;
+ }
+ .mr-sm-5,
+ .mx-sm-5 {
+ margin-right: 4rem !important;
+ }
+ .mb-sm-5,
+ .my-sm-5 {
+ margin-bottom: 4rem !important;
+ }
+ .ml-sm-5,
+ .mx-sm-5 {
+ margin-left: 4rem !important;
+ }
+ .m-sm-25 {
+ margin: 0.25rem !important;
+ }
+ .mt-sm-25,
+ .my-sm-25 {
+ margin-top: 0.25rem !important;
+ }
+ .mr-sm-25,
+ .mx-sm-25 {
+ margin-right: 0.25rem !important;
+ }
+ .mb-sm-25,
+ .my-sm-25 {
+ margin-bottom: 0.25rem !important;
+ }
+ .ml-sm-25,
+ .mx-sm-25 {
+ margin-left: 0.25rem !important;
+ }
+ .m-sm-50 {
+ margin: 0.5rem !important;
+ }
+ .mt-sm-50,
+ .my-sm-50 {
+ margin-top: 0.5rem !important;
+ }
+ .mr-sm-50,
+ .mx-sm-50 {
+ margin-right: 0.5rem !important;
+ }
+ .mb-sm-50,
+ .my-sm-50 {
+ margin-bottom: 0.5rem !important;
+ }
+ .ml-sm-50,
+ .mx-sm-50 {
+ margin-left: 0.5rem !important;
+ }
+ .m-sm-75 {
+ margin: 0.75rem !important;
+ }
+ .mt-sm-75,
+ .my-sm-75 {
+ margin-top: 0.75rem !important;
+ }
+ .mr-sm-75,
+ .mx-sm-75 {
+ margin-right: 0.75rem !important;
+ }
+ .mb-sm-75,
+ .my-sm-75 {
+ margin-bottom: 0.75rem !important;
+ }
+ .ml-sm-75,
+ .mx-sm-75 {
+ margin-left: 0.75rem !important;
+ }
+ .p-sm-0 {
+ padding: 0 !important;
+ }
+ .pt-sm-0,
+ .py-sm-0 {
+ padding-top: 0 !important;
+ }
+ .pr-sm-0,
+ .px-sm-0 {
+ padding-right: 0 !important;
+ }
+ .pb-sm-0,
+ .py-sm-0 {
+ padding-bottom: 0 !important;
+ }
+ .pl-sm-0,
+ .px-sm-0 {
+ padding-left: 0 !important;
+ }
+ .p-sm-1 {
+ padding: 1rem !important;
+ }
+ .pt-sm-1,
+ .py-sm-1 {
+ padding-top: 1rem !important;
+ }
+ .pr-sm-1,
+ .px-sm-1 {
+ padding-right: 1rem !important;
+ }
+ .pb-sm-1,
+ .py-sm-1 {
+ padding-bottom: 1rem !important;
+ }
+ .pl-sm-1,
+ .px-sm-1 {
+ padding-left: 1rem !important;
+ }
+ .p-sm-2 {
+ padding: 1.5rem !important;
+ }
+ .pt-sm-2,
+ .py-sm-2 {
+ padding-top: 1.5rem !important;
+ }
+ .pr-sm-2,
+ .px-sm-2 {
+ padding-right: 1.5rem !important;
+ }
+ .pb-sm-2,
+ .py-sm-2 {
+ padding-bottom: 1.5rem !important;
+ }
+ .pl-sm-2,
+ .px-sm-2 {
+ padding-left: 1.5rem !important;
+ }
+ .p-sm-3 {
+ padding: 3rem !important;
+ }
+ .pt-sm-3,
+ .py-sm-3 {
+ padding-top: 3rem !important;
+ }
+ .pr-sm-3,
+ .px-sm-3 {
+ padding-right: 3rem !important;
+ }
+ .pb-sm-3,
+ .py-sm-3 {
+ padding-bottom: 3rem !important;
+ }
+ .pl-sm-3,
+ .px-sm-3 {
+ padding-left: 3rem !important;
+ }
+ .p-sm-4 {
+ padding: 3.5rem !important;
+ }
+ .pt-sm-4,
+ .py-sm-4 {
+ padding-top: 3.5rem !important;
+ }
+ .pr-sm-4,
+ .px-sm-4 {
+ padding-right: 3.5rem !important;
+ }
+ .pb-sm-4,
+ .py-sm-4 {
+ padding-bottom: 3.5rem !important;
+ }
+ .pl-sm-4,
+ .px-sm-4 {
+ padding-left: 3.5rem !important;
+ }
+ .p-sm-5 {
+ padding: 4rem !important;
+ }
+ .pt-sm-5,
+ .py-sm-5 {
+ padding-top: 4rem !important;
+ }
+ .pr-sm-5,
+ .px-sm-5 {
+ padding-right: 4rem !important;
+ }
+ .pb-sm-5,
+ .py-sm-5 {
+ padding-bottom: 4rem !important;
+ }
+ .pl-sm-5,
+ .px-sm-5 {
+ padding-left: 4rem !important;
+ }
+ .p-sm-25 {
+ padding: 0.25rem !important;
+ }
+ .pt-sm-25,
+ .py-sm-25 {
+ padding-top: 0.25rem !important;
+ }
+ .pr-sm-25,
+ .px-sm-25 {
+ padding-right: 0.25rem !important;
+ }
+ .pb-sm-25,
+ .py-sm-25 {
+ padding-bottom: 0.25rem !important;
+ }
+ .pl-sm-25,
+ .px-sm-25 {
+ padding-left: 0.25rem !important;
+ }
+ .p-sm-50 {
+ padding: 0.5rem !important;
+ }
+ .pt-sm-50,
+ .py-sm-50 {
+ padding-top: 0.5rem !important;
+ }
+ .pr-sm-50,
+ .px-sm-50 {
+ padding-right: 0.5rem !important;
+ }
+ .pb-sm-50,
+ .py-sm-50 {
+ padding-bottom: 0.5rem !important;
+ }
+ .pl-sm-50,
+ .px-sm-50 {
+ padding-left: 0.5rem !important;
+ }
+ .p-sm-75 {
+ padding: 0.75rem !important;
+ }
+ .pt-sm-75,
+ .py-sm-75 {
+ padding-top: 0.75rem !important;
+ }
+ .pr-sm-75,
+ .px-sm-75 {
+ padding-right: 0.75rem !important;
+ }
+ .pb-sm-75,
+ .py-sm-75 {
+ padding-bottom: 0.75rem !important;
+ }
+ .pl-sm-75,
+ .px-sm-75 {
+ padding-left: 0.75rem !important;
+ }
+ .m-sm-n1 {
+ margin: -1rem !important;
+ }
+ .mt-sm-n1,
+ .my-sm-n1 {
+ margin-top: -1rem !important;
+ }
+ .mr-sm-n1,
+ .mx-sm-n1 {
+ margin-right: -1rem !important;
+ }
+ .mb-sm-n1,
+ .my-sm-n1 {
+ margin-bottom: -1rem !important;
+ }
+ .ml-sm-n1,
+ .mx-sm-n1 {
+ margin-left: -1rem !important;
+ }
+ .m-sm-n2 {
+ margin: -1.5rem !important;
+ }
+ .mt-sm-n2,
+ .my-sm-n2 {
+ margin-top: -1.5rem !important;
+ }
+ .mr-sm-n2,
+ .mx-sm-n2 {
+ margin-right: -1.5rem !important;
+ }
+ .mb-sm-n2,
+ .my-sm-n2 {
+ margin-bottom: -1.5rem !important;
+ }
+ .ml-sm-n2,
+ .mx-sm-n2 {
+ margin-left: -1.5rem !important;
+ }
+ .m-sm-n3 {
+ margin: -3rem !important;
+ }
+ .mt-sm-n3,
+ .my-sm-n3 {
+ margin-top: -3rem !important;
+ }
+ .mr-sm-n3,
+ .mx-sm-n3 {
+ margin-right: -3rem !important;
+ }
+ .mb-sm-n3,
+ .my-sm-n3 {
+ margin-bottom: -3rem !important;
+ }
+ .ml-sm-n3,
+ .mx-sm-n3 {
+ margin-left: -3rem !important;
+ }
+ .m-sm-n4 {
+ margin: -3.5rem !important;
+ }
+ .mt-sm-n4,
+ .my-sm-n4 {
+ margin-top: -3.5rem !important;
+ }
+ .mr-sm-n4,
+ .mx-sm-n4 {
+ margin-right: -3.5rem !important;
+ }
+ .mb-sm-n4,
+ .my-sm-n4 {
+ margin-bottom: -3.5rem !important;
+ }
+ .ml-sm-n4,
+ .mx-sm-n4 {
+ margin-left: -3.5rem !important;
+ }
+ .m-sm-n5 {
+ margin: -4rem !important;
+ }
+ .mt-sm-n5,
+ .my-sm-n5 {
+ margin-top: -4rem !important;
+ }
+ .mr-sm-n5,
+ .mx-sm-n5 {
+ margin-right: -4rem !important;
+ }
+ .mb-sm-n5,
+ .my-sm-n5 {
+ margin-bottom: -4rem !important;
+ }
+ .ml-sm-n5,
+ .mx-sm-n5 {
+ margin-left: -4rem !important;
+ }
+ .m-sm-n25 {
+ margin: -0.25rem !important;
+ }
+ .mt-sm-n25,
+ .my-sm-n25 {
+ margin-top: -0.25rem !important;
+ }
+ .mr-sm-n25,
+ .mx-sm-n25 {
+ margin-right: -0.25rem !important;
+ }
+ .mb-sm-n25,
+ .my-sm-n25 {
+ margin-bottom: -0.25rem !important;
+ }
+ .ml-sm-n25,
+ .mx-sm-n25 {
+ margin-left: -0.25rem !important;
+ }
+ .m-sm-n50 {
+ margin: -0.5rem !important;
+ }
+ .mt-sm-n50,
+ .my-sm-n50 {
+ margin-top: -0.5rem !important;
+ }
+ .mr-sm-n50,
+ .mx-sm-n50 {
+ margin-right: -0.5rem !important;
+ }
+ .mb-sm-n50,
+ .my-sm-n50 {
+ margin-bottom: -0.5rem !important;
+ }
+ .ml-sm-n50,
+ .mx-sm-n50 {
+ margin-left: -0.5rem !important;
+ }
+ .m-sm-n75 {
+ margin: -0.75rem !important;
+ }
+ .mt-sm-n75,
+ .my-sm-n75 {
+ margin-top: -0.75rem !important;
+ }
+ .mr-sm-n75,
+ .mx-sm-n75 {
+ margin-right: -0.75rem !important;
+ }
+ .mb-sm-n75,
+ .my-sm-n75 {
+ margin-bottom: -0.75rem !important;
+ }
+ .ml-sm-n75,
+ .mx-sm-n75 {
+ margin-left: -0.75rem !important;
+ }
+ .m-sm-auto {
+ margin: auto !important;
+ }
+ .mt-sm-auto,
+ .my-sm-auto {
+ margin-top: auto !important;
+ }
+ .mr-sm-auto,
+ .mx-sm-auto {
+ margin-right: auto !important;
+ }
+ .mb-sm-auto,
+ .my-sm-auto {
+ margin-bottom: auto !important;
+ }
+ .ml-sm-auto,
+ .mx-sm-auto {
+ margin-left: auto !important;
+ }
+ .text-sm-left {
+ text-align: left !important;
+ }
+ .text-sm-right {
+ text-align: right !important;
+ }
+ .text-sm-center {
+ text-align: center !important;
+ }
+ }
+ @media (min-width: 768px) {
+ .flex-md-column,
+ .flex-md-row {
+ -webkit-box-direction: normal !important;
+ }
+ .flex-md-row {
+ -webkit-box-orient: horizontal !important;
+ -webkit-flex-direction: row !important;
+ -ms-flex-direction: row !important;
+ flex-direction: row !important;
+ }
+ .flex-md-column {
+ -webkit-box-orient: vertical !important;
+ -webkit-flex-direction: column !important;
+ -ms-flex-direction: column !important;
+ flex-direction: column !important;
+ }
+ .flex-md-row-reverse {
+ -webkit-box-orient: horizontal !important;
+ -webkit-box-direction: reverse !important;
+ -webkit-flex-direction: row-reverse !important;
+ -ms-flex-direction: row-reverse !important;
+ flex-direction: row-reverse !important;
+ }
+ .flex-md-column-reverse {
+ -webkit-box-orient: vertical !important;
+ -webkit-box-direction: reverse !important;
+ -webkit-flex-direction: column-reverse !important;
+ -ms-flex-direction: column-reverse !important;
+ flex-direction: column-reverse !important;
+ }
+ .flex-md-wrap {
+ -webkit-flex-wrap: wrap !important;
+ -ms-flex-wrap: wrap !important;
+ flex-wrap: wrap !important;
+ }
+ .flex-md-nowrap {
+ -webkit-flex-wrap: nowrap !important;
+ -ms-flex-wrap: nowrap !important;
+ flex-wrap: nowrap !important;
+ }
+ .flex-md-wrap-reverse {
+ -webkit-flex-wrap: wrap-reverse !important;
+ -ms-flex-wrap: wrap-reverse !important;
+ flex-wrap: wrap-reverse !important;
+ }
+ .flex-md-fill {
+ -webkit-box-flex: 1 !important;
+ -webkit-flex: 1 1 auto !important;
+ -ms-flex: 1 1 auto !important;
+ flex: 1 1 auto !important;
+ }
+ .flex-md-grow-0 {
+ -webkit-box-flex: 0 !important;
+ -webkit-flex-grow: 0 !important;
+ -ms-flex-positive: 0 !important;
+ flex-grow: 0 !important;
+ }
+ .flex-md-grow-1 {
+ -webkit-box-flex: 1 !important;
+ -webkit-flex-grow: 1 !important;
+ -ms-flex-positive: 1 !important;
+ flex-grow: 1 !important;
+ }
+ .flex-md-shrink-0 {
+ -webkit-flex-shrink: 0 !important;
+ -ms-flex-negative: 0 !important;
+ flex-shrink: 0 !important;
+ }
+ .flex-md-shrink-1 {
+ -webkit-flex-shrink: 1 !important;
+ -ms-flex-negative: 1 !important;
+ flex-shrink: 1 !important;
+ }
+ .justify-content-md-start {
+ -webkit-box-pack: start !important;
+ -webkit-justify-content: flex-start !important;
+ -ms-flex-pack: start !important;
+ justify-content: flex-start !important;
+ }
+ .justify-content-md-end {
+ -webkit-box-pack: end !important;
+ -webkit-justify-content: flex-end !important;
+ -ms-flex-pack: end !important;
+ justify-content: flex-end !important;
+ }
+ .justify-content-md-center {
+ -webkit-box-pack: center !important;
+ -webkit-justify-content: center !important;
+ -ms-flex-pack: center !important;
+ justify-content: center !important;
+ }
+ .justify-content-md-between {
+ -webkit-box-pack: justify !important;
+ -webkit-justify-content: space-between !important;
+ -ms-flex-pack: justify !important;
+ justify-content: space-between !important;
+ }
+ .justify-content-md-around {
+ -webkit-justify-content: space-around !important;
+ -ms-flex-pack: distribute !important;
+ justify-content: space-around !important;
+ }
+ .align-items-md-start {
+ -webkit-box-align: start !important;
+ -webkit-align-items: flex-start !important;
+ -ms-flex-align: start !important;
+ align-items: flex-start !important;
+ }
+ .align-items-md-end {
+ -webkit-box-align: end !important;
+ -webkit-align-items: flex-end !important;
+ -ms-flex-align: end !important;
+ align-items: flex-end !important;
+ }
+ .align-items-md-center {
+ -webkit-box-align: center !important;
+ -webkit-align-items: center !important;
+ -ms-flex-align: center !important;
+ align-items: center !important;
+ }
+ .align-items-md-baseline {
+ -webkit-box-align: baseline !important;
+ -webkit-align-items: baseline !important;
+ -ms-flex-align: baseline !important;
+ align-items: baseline !important;
+ }
+ .align-items-md-stretch {
+ -webkit-box-align: stretch !important;
+ -webkit-align-items: stretch !important;
+ -ms-flex-align: stretch !important;
+ align-items: stretch !important;
+ }
+ .align-content-md-start {
+ -webkit-align-content: flex-start !important;
+ -ms-flex-line-pack: start !important;
+ align-content: flex-start !important;
+ }
+ .align-content-md-end {
+ -webkit-align-content: flex-end !important;
+ -ms-flex-line-pack: end !important;
+ align-content: flex-end !important;
+ }
+ .align-content-md-center {
+ -webkit-align-content: center !important;
+ -ms-flex-line-pack: center !important;
+ align-content: center !important;
+ }
+ .align-content-md-between {
+ -webkit-align-content: space-between !important;
+ -ms-flex-line-pack: justify !important;
+ align-content: space-between !important;
+ }
+ .align-content-md-around {
+ -webkit-align-content: space-around !important;
+ -ms-flex-line-pack: distribute !important;
+ align-content: space-around !important;
+ }
+ .align-content-md-stretch {
+ -webkit-align-content: stretch !important;
+ -ms-flex-line-pack: stretch !important;
+ align-content: stretch !important;
+ }
+ .align-self-md-auto {
+ -webkit-align-self: auto !important;
+ -ms-flex-item-align: auto !important;
+ align-self: auto !important;
+ }
+ .align-self-md-start {
+ -webkit-align-self: flex-start !important;
+ -ms-flex-item-align: start !important;
+ align-self: flex-start !important;
+ }
+ .align-self-md-end {
+ -webkit-align-self: flex-end !important;
+ -ms-flex-item-align: end !important;
+ align-self: flex-end !important;
+ }
+ .align-self-md-center {
+ -webkit-align-self: center !important;
+ -ms-flex-item-align: center !important;
+ align-self: center !important;
+ }
+ .align-self-md-baseline {
+ -webkit-align-self: baseline !important;
+ -ms-flex-item-align: baseline !important;
+ align-self: baseline !important;
+ }
+ .align-self-md-stretch {
+ -webkit-align-self: stretch !important;
+ -ms-flex-item-align: stretch !important;
+ align-self: stretch !important;
+ }
+ .float-md-left {
+ float: left !important;
+ }
+ .float-md-right {
+ float: right !important;
+ }
+ .float-md-none {
+ float: none !important;
+ }
+ .m-md-0 {
+ margin: 0 !important;
+ }
+ .mt-md-0,
+ .my-md-0 {
+ margin-top: 0 !important;
+ }
+ .mr-md-0,
+ .mx-md-0 {
+ margin-right: 0 !important;
+ }
+ .mb-md-0,
+ .my-md-0 {
+ margin-bottom: 0 !important;
+ }
+ .ml-md-0,
+ .mx-md-0 {
+ margin-left: 0 !important;
+ }
+ .m-md-1 {
+ margin: 1rem !important;
+ }
+ .mt-md-1,
+ .my-md-1 {
+ margin-top: 1rem !important;
+ }
+ .mr-md-1,
+ .mx-md-1 {
+ margin-right: 1rem !important;
+ }
+ .mb-md-1,
+ .my-md-1 {
+ margin-bottom: 1rem !important;
+ }
+ .ml-md-1,
+ .mx-md-1 {
+ margin-left: 1rem !important;
+ }
+ .m-md-2 {
+ margin: 1.5rem !important;
+ }
+ .mt-md-2,
+ .my-md-2 {
+ margin-top: 1.5rem !important;
+ }
+ .mr-md-2,
+ .mx-md-2 {
+ margin-right: 1.5rem !important;
+ }
+ .mb-md-2,
+ .my-md-2 {
+ margin-bottom: 1.5rem !important;
+ }
+ .ml-md-2,
+ .mx-md-2 {
+ margin-left: 1.5rem !important;
+ }
+ .m-md-3 {
+ margin: 3rem !important;
+ }
+ .mt-md-3,
+ .my-md-3 {
+ margin-top: 3rem !important;
+ }
+ .mr-md-3,
+ .mx-md-3 {
+ margin-right: 3rem !important;
+ }
+ .mb-md-3,
+ .my-md-3 {
+ margin-bottom: 3rem !important;
+ }
+ .ml-md-3,
+ .mx-md-3 {
+ margin-left: 3rem !important;
+ }
+ .m-md-4 {
+ margin: 3.5rem !important;
+ }
+ .mt-md-4,
+ .my-md-4 {
+ margin-top: 3.5rem !important;
+ }
+ .mr-md-4,
+ .mx-md-4 {
+ margin-right: 3.5rem !important;
+ }
+ .mb-md-4,
+ .my-md-4 {
+ margin-bottom: 3.5rem !important;
+ }
+ .ml-md-4,
+ .mx-md-4 {
+ margin-left: 3.5rem !important;
+ }
+ .m-md-5 {
+ margin: 4rem !important;
+ }
+ .mt-md-5,
+ .my-md-5 {
+ margin-top: 4rem !important;
+ }
+ .mr-md-5,
+ .mx-md-5 {
+ margin-right: 4rem !important;
+ }
+ .mb-md-5,
+ .my-md-5 {
+ margin-bottom: 4rem !important;
+ }
+ .ml-md-5,
+ .mx-md-5 {
+ margin-left: 4rem !important;
+ }
+ .m-md-25 {
+ margin: 0.25rem !important;
+ }
+ .mt-md-25,
+ .my-md-25 {
+ margin-top: 0.25rem !important;
+ }
+ .mr-md-25,
+ .mx-md-25 {
+ margin-right: 0.25rem !important;
+ }
+ .mb-md-25,
+ .my-md-25 {
+ margin-bottom: 0.25rem !important;
+ }
+ .ml-md-25,
+ .mx-md-25 {
+ margin-left: 0.25rem !important;
+ }
+ .m-md-50 {
+ margin: 0.5rem !important;
+ }
+ .mt-md-50,
+ .my-md-50 {
+ margin-top: 0.5rem !important;
+ }
+ .mr-md-50,
+ .mx-md-50 {
+ margin-right: 0.5rem !important;
+ }
+ .mb-md-50,
+ .my-md-50 {
+ margin-bottom: 0.5rem !important;
+ }
+ .ml-md-50,
+ .mx-md-50 {
+ margin-left: 0.5rem !important;
+ }
+ .m-md-75 {
+ margin: 0.75rem !important;
+ }
+ .mt-md-75,
+ .my-md-75 {
+ margin-top: 0.75rem !important;
+ }
+ .mr-md-75,
+ .mx-md-75 {
+ margin-right: 0.75rem !important;
+ }
+ .mb-md-75,
+ .my-md-75 {
+ margin-bottom: 0.75rem !important;
+ }
+ .ml-md-75,
+ .mx-md-75 {
+ margin-left: 0.75rem !important;
+ }
+ .p-md-0 {
+ padding: 0 !important;
+ }
+ .pt-md-0,
+ .py-md-0 {
+ padding-top: 0 !important;
+ }
+ .pr-md-0,
+ .px-md-0 {
+ padding-right: 0 !important;
+ }
+ .pb-md-0,
+ .py-md-0 {
+ padding-bottom: 0 !important;
+ }
+ .pl-md-0,
+ .px-md-0 {
+ padding-left: 0 !important;
+ }
+ .p-md-1 {
+ padding: 1rem !important;
+ }
+ .pt-md-1,
+ .py-md-1 {
+ padding-top: 1rem !important;
+ }
+ .pr-md-1,
+ .px-md-1 {
+ padding-right: 1rem !important;
+ }
+ .pb-md-1,
+ .py-md-1 {
+ padding-bottom: 1rem !important;
+ }
+ .pl-md-1,
+ .px-md-1 {
+ padding-left: 1rem !important;
+ }
+ .p-md-2 {
+ padding: 1.5rem !important;
+ }
+ .pt-md-2,
+ .py-md-2 {
+ padding-top: 1.5rem !important;
+ }
+ .pr-md-2,
+ .px-md-2 {
+ padding-right: 1.5rem !important;
+ }
+ .pb-md-2,
+ .py-md-2 {
+ padding-bottom: 1.5rem !important;
+ }
+ .pl-md-2,
+ .px-md-2 {
+ padding-left: 1.5rem !important;
+ }
+ .p-md-3 {
+ padding: 3rem !important;
+ }
+ .pt-md-3,
+ .py-md-3 {
+ padding-top: 3rem !important;
+ }
+ .pr-md-3,
+ .px-md-3 {
+ padding-right: 3rem !important;
+ }
+ .pb-md-3,
+ .py-md-3 {
+ padding-bottom: 3rem !important;
+ }
+ .pl-md-3,
+ .px-md-3 {
+ padding-left: 3rem !important;
+ }
+ .p-md-4 {
+ padding: 3.5rem !important;
+ }
+ .pt-md-4,
+ .py-md-4 {
+ padding-top: 3.5rem !important;
+ }
+ .pr-md-4,
+ .px-md-4 {
+ padding-right: 3.5rem !important;
+ }
+ .pb-md-4,
+ .py-md-4 {
+ padding-bottom: 3.5rem !important;
+ }
+ .pl-md-4,
+ .px-md-4 {
+ padding-left: 3.5rem !important;
+ }
+ .p-md-5 {
+ padding: 4rem !important;
+ }
+ .pt-md-5,
+ .py-md-5 {
+ padding-top: 4rem !important;
+ }
+ .pr-md-5,
+ .px-md-5 {
+ padding-right: 4rem !important;
+ }
+ .pb-md-5,
+ .py-md-5 {
+ padding-bottom: 4rem !important;
+ }
+ .pl-md-5,
+ .px-md-5 {
+ padding-left: 4rem !important;
+ }
+ .p-md-25 {
+ padding: 0.25rem !important;
+ }
+ .pt-md-25,
+ .py-md-25 {
+ padding-top: 0.25rem !important;
+ }
+ .pr-md-25,
+ .px-md-25 {
+ padding-right: 0.25rem !important;
+ }
+ .pb-md-25,
+ .py-md-25 {
+ padding-bottom: 0.25rem !important;
+ }
+ .pl-md-25,
+ .px-md-25 {
+ padding-left: 0.25rem !important;
+ }
+ .p-md-50 {
+ padding: 0.5rem !important;
+ }
+ .pt-md-50,
+ .py-md-50 {
+ padding-top: 0.5rem !important;
+ }
+ .pr-md-50,
+ .px-md-50 {
+ padding-right: 0.5rem !important;
+ }
+ .pb-md-50,
+ .py-md-50 {
+ padding-bottom: 0.5rem !important;
+ }
+ .pl-md-50,
+ .px-md-50 {
+ padding-left: 0.5rem !important;
+ }
+ .p-md-75 {
+ padding: 0.75rem !important;
+ }
+ .pt-md-75,
+ .py-md-75 {
+ padding-top: 0.75rem !important;
+ }
+ .pr-md-75,
+ .px-md-75 {
+ padding-right: 0.75rem !important;
+ }
+ .pb-md-75,
+ .py-md-75 {
+ padding-bottom: 0.75rem !important;
+ }
+ .pl-md-75,
+ .px-md-75 {
+ padding-left: 0.75rem !important;
+ }
+ .m-md-n1 {
+ margin: -1rem !important;
+ }
+ .mt-md-n1,
+ .my-md-n1 {
+ margin-top: -1rem !important;
+ }
+ .mr-md-n1,
+ .mx-md-n1 {
+ margin-right: -1rem !important;
+ }
+ .mb-md-n1,
+ .my-md-n1 {
+ margin-bottom: -1rem !important;
+ }
+ .ml-md-n1,
+ .mx-md-n1 {
+ margin-left: -1rem !important;
+ }
+ .m-md-n2 {
+ margin: -1.5rem !important;
+ }
+ .mt-md-n2,
+ .my-md-n2 {
+ margin-top: -1.5rem !important;
+ }
+ .mr-md-n2,
+ .mx-md-n2 {
+ margin-right: -1.5rem !important;
+ }
+ .mb-md-n2,
+ .my-md-n2 {
+ margin-bottom: -1.5rem !important;
+ }
+ .ml-md-n2,
+ .mx-md-n2 {
+ margin-left: -1.5rem !important;
+ }
+ .m-md-n3 {
+ margin: -3rem !important;
+ }
+ .mt-md-n3,
+ .my-md-n3 {
+ margin-top: -3rem !important;
+ }
+ .mr-md-n3,
+ .mx-md-n3 {
+ margin-right: -3rem !important;
+ }
+ .mb-md-n3,
+ .my-md-n3 {
+ margin-bottom: -3rem !important;
+ }
+ .ml-md-n3,
+ .mx-md-n3 {
+ margin-left: -3rem !important;
+ }
+ .m-md-n4 {
+ margin: -3.5rem !important;
+ }
+ .mt-md-n4,
+ .my-md-n4 {
+ margin-top: -3.5rem !important;
+ }
+ .mr-md-n4,
+ .mx-md-n4 {
+ margin-right: -3.5rem !important;
+ }
+ .mb-md-n4,
+ .my-md-n4 {
+ margin-bottom: -3.5rem !important;
+ }
+ .ml-md-n4,
+ .mx-md-n4 {
+ margin-left: -3.5rem !important;
+ }
+ .m-md-n5 {
+ margin: -4rem !important;
+ }
+ .mt-md-n5,
+ .my-md-n5 {
+ margin-top: -4rem !important;
+ }
+ .mr-md-n5,
+ .mx-md-n5 {
+ margin-right: -4rem !important;
+ }
+ .mb-md-n5,
+ .my-md-n5 {
+ margin-bottom: -4rem !important;
+ }
+ .ml-md-n5,
+ .mx-md-n5 {
+ margin-left: -4rem !important;
+ }
+ .m-md-n25 {
+ margin: -0.25rem !important;
+ }
+ .mt-md-n25,
+ .my-md-n25 {
+ margin-top: -0.25rem !important;
+ }
+ .mr-md-n25,
+ .mx-md-n25 {
+ margin-right: -0.25rem !important;
+ }
+ .mb-md-n25,
+ .my-md-n25 {
+ margin-bottom: -0.25rem !important;
+ }
+ .ml-md-n25,
+ .mx-md-n25 {
+ margin-left: -0.25rem !important;
+ }
+ .m-md-n50 {
+ margin: -0.5rem !important;
+ }
+ .mt-md-n50,
+ .my-md-n50 {
+ margin-top: -0.5rem !important;
+ }
+ .mr-md-n50,
+ .mx-md-n50 {
+ margin-right: -0.5rem !important;
+ }
+ .mb-md-n50,
+ .my-md-n50 {
+ margin-bottom: -0.5rem !important;
+ }
+ .ml-md-n50,
+ .mx-md-n50 {
+ margin-left: -0.5rem !important;
+ }
+ .m-md-n75 {
+ margin: -0.75rem !important;
+ }
+ .mt-md-n75,
+ .my-md-n75 {
+ margin-top: -0.75rem !important;
+ }
+ .mr-md-n75,
+ .mx-md-n75 {
+ margin-right: -0.75rem !important;
+ }
+ .mb-md-n75,
+ .my-md-n75 {
+ margin-bottom: -0.75rem !important;
+ }
+ .ml-md-n75,
+ .mx-md-n75 {
+ margin-left: -0.75rem !important;
+ }
+ .m-md-auto {
+ margin: auto !important;
+ }
+ .mt-md-auto,
+ .my-md-auto {
+ margin-top: auto !important;
+ }
+ .mr-md-auto,
+ .mx-md-auto {
+ margin-right: auto !important;
+ }
+ .mb-md-auto,
+ .my-md-auto {
+ margin-bottom: auto !important;
+ }
+ .ml-md-auto,
+ .mx-md-auto {
+ margin-left: auto !important;
+ }
+ .text-md-left {
+ text-align: left !important;
+ }
+ .text-md-right {
+ text-align: right !important;
+ }
+ .text-md-center {
+ text-align: center !important;
+ }
+ }
+ @media (min-width: 992px) {
+ .flex-lg-column,
+ .flex-lg-row {
+ -webkit-box-direction: normal !important;
+ }
+ .flex-lg-row {
+ -webkit-box-orient: horizontal !important;
+ -webkit-flex-direction: row !important;
+ -ms-flex-direction: row !important;
+ flex-direction: row !important;
+ }
+ .flex-lg-column {
+ -webkit-box-orient: vertical !important;
+ -webkit-flex-direction: column !important;
+ -ms-flex-direction: column !important;
+ flex-direction: column !important;
+ }
+ .flex-lg-row-reverse {
+ -webkit-box-orient: horizontal !important;
+ -webkit-box-direction: reverse !important;
+ -webkit-flex-direction: row-reverse !important;
+ -ms-flex-direction: row-reverse !important;
+ flex-direction: row-reverse !important;
+ }
+ .flex-lg-column-reverse {
+ -webkit-box-orient: vertical !important;
+ -webkit-box-direction: reverse !important;
+ -webkit-flex-direction: column-reverse !important;
+ -ms-flex-direction: column-reverse !important;
+ flex-direction: column-reverse !important;
+ }
+ .flex-lg-wrap {
+ -webkit-flex-wrap: wrap !important;
+ -ms-flex-wrap: wrap !important;
+ flex-wrap: wrap !important;
+ }
+ .flex-lg-nowrap {
+ -webkit-flex-wrap: nowrap !important;
+ -ms-flex-wrap: nowrap !important;
+ flex-wrap: nowrap !important;
+ }
+ .flex-lg-wrap-reverse {
+ -webkit-flex-wrap: wrap-reverse !important;
+ -ms-flex-wrap: wrap-reverse !important;
+ flex-wrap: wrap-reverse !important;
+ }
+ .flex-lg-fill {
+ -webkit-box-flex: 1 !important;
+ -webkit-flex: 1 1 auto !important;
+ -ms-flex: 1 1 auto !important;
+ flex: 1 1 auto !important;
+ }
+ .flex-lg-grow-0 {
+ -webkit-box-flex: 0 !important;
+ -webkit-flex-grow: 0 !important;
+ -ms-flex-positive: 0 !important;
+ flex-grow: 0 !important;
+ }
+ .flex-lg-grow-1 {
+ -webkit-box-flex: 1 !important;
+ -webkit-flex-grow: 1 !important;
+ -ms-flex-positive: 1 !important;
+ flex-grow: 1 !important;
+ }
+ .flex-lg-shrink-0 {
+ -webkit-flex-shrink: 0 !important;
+ -ms-flex-negative: 0 !important;
+ flex-shrink: 0 !important;
+ }
+ .flex-lg-shrink-1 {
+ -webkit-flex-shrink: 1 !important;
+ -ms-flex-negative: 1 !important;
+ flex-shrink: 1 !important;
+ }
+ .justify-content-lg-start {
+ -webkit-box-pack: start !important;
+ -webkit-justify-content: flex-start !important;
+ -ms-flex-pack: start !important;
+ justify-content: flex-start !important;
+ }
+ .justify-content-lg-end {
+ -webkit-box-pack: end !important;
+ -webkit-justify-content: flex-end !important;
+ -ms-flex-pack: end !important;
+ justify-content: flex-end !important;
+ }
+ .justify-content-lg-center {
+ -webkit-box-pack: center !important;
+ -webkit-justify-content: center !important;
+ -ms-flex-pack: center !important;
+ justify-content: center !important;
+ }
+ .justify-content-lg-between {
+ -webkit-box-pack: justify !important;
+ -webkit-justify-content: space-between !important;
+ -ms-flex-pack: justify !important;
+ justify-content: space-between !important;
+ }
+ .justify-content-lg-around {
+ -webkit-justify-content: space-around !important;
+ -ms-flex-pack: distribute !important;
+ justify-content: space-around !important;
+ }
+ .align-items-lg-start {
+ -webkit-box-align: start !important;
+ -webkit-align-items: flex-start !important;
+ -ms-flex-align: start !important;
+ align-items: flex-start !important;
+ }
+ .align-items-lg-end {
+ -webkit-box-align: end !important;
+ -webkit-align-items: flex-end !important;
+ -ms-flex-align: end !important;
+ align-items: flex-end !important;
+ }
+ .align-items-lg-center {
+ -webkit-box-align: center !important;
+ -webkit-align-items: center !important;
+ -ms-flex-align: center !important;
+ align-items: center !important;
+ }
+ .align-items-lg-baseline {
+ -webkit-box-align: baseline !important;
+ -webkit-align-items: baseline !important;
+ -ms-flex-align: baseline !important;
+ align-items: baseline !important;
+ }
+ .align-items-lg-stretch {
+ -webkit-box-align: stretch !important;
+ -webkit-align-items: stretch !important;
+ -ms-flex-align: stretch !important;
+ align-items: stretch !important;
+ }
+ .align-content-lg-start {
+ -webkit-align-content: flex-start !important;
+ -ms-flex-line-pack: start !important;
+ align-content: flex-start !important;
+ }
+ .align-content-lg-end {
+ -webkit-align-content: flex-end !important;
+ -ms-flex-line-pack: end !important;
+ align-content: flex-end !important;
+ }
+ .align-content-lg-center {
+ -webkit-align-content: center !important;
+ -ms-flex-line-pack: center !important;
+ align-content: center !important;
+ }
+ .align-content-lg-between {
+ -webkit-align-content: space-between !important;
+ -ms-flex-line-pack: justify !important;
+ align-content: space-between !important;
+ }
+ .align-content-lg-around {
+ -webkit-align-content: space-around !important;
+ -ms-flex-line-pack: distribute !important;
+ align-content: space-around !important;
+ }
+ .align-content-lg-stretch {
+ -webkit-align-content: stretch !important;
+ -ms-flex-line-pack: stretch !important;
+ align-content: stretch !important;
+ }
+ .align-self-lg-auto {
+ -webkit-align-self: auto !important;
+ -ms-flex-item-align: auto !important;
+ align-self: auto !important;
+ }
+ .align-self-lg-start {
+ -webkit-align-self: flex-start !important;
+ -ms-flex-item-align: start !important;
+ align-self: flex-start !important;
+ }
+ .align-self-lg-end {
+ -webkit-align-self: flex-end !important;
+ -ms-flex-item-align: end !important;
+ align-self: flex-end !important;
+ }
+ .align-self-lg-center {
+ -webkit-align-self: center !important;
+ -ms-flex-item-align: center !important;
+ align-self: center !important;
+ }
+ .align-self-lg-baseline {
+ -webkit-align-self: baseline !important;
+ -ms-flex-item-align: baseline !important;
+ align-self: baseline !important;
+ }
+ .align-self-lg-stretch {
+ -webkit-align-self: stretch !important;
+ -ms-flex-item-align: stretch !important;
+ align-self: stretch !important;
+ }
+ .float-lg-left {
+ float: left !important;
+ }
+ .float-lg-right {
+ float: right !important;
+ }
+ .float-lg-none {
+ float: none !important;
+ }
+ .m-lg-0 {
+ margin: 0 !important;
+ }
+ .mt-lg-0,
+ .my-lg-0 {
+ margin-top: 0 !important;
+ }
+ .mr-lg-0,
+ .mx-lg-0 {
+ margin-right: 0 !important;
+ }
+ .mb-lg-0,
+ .my-lg-0 {
+ margin-bottom: 0 !important;
+ }
+ .ml-lg-0,
+ .mx-lg-0 {
+ margin-left: 0 !important;
+ }
+ .m-lg-1 {
+ margin: 1rem !important;
+ }
+ .mt-lg-1,
+ .my-lg-1 {
+ margin-top: 1rem !important;
+ }
+ .mr-lg-1,
+ .mx-lg-1 {
+ margin-right: 1rem !important;
+ }
+ .mb-lg-1,
+ .my-lg-1 {
+ margin-bottom: 1rem !important;
+ }
+ .ml-lg-1,
+ .mx-lg-1 {
+ margin-left: 1rem !important;
+ }
+ .m-lg-2 {
+ margin: 1.5rem !important;
+ }
+ .mt-lg-2,
+ .my-lg-2 {
+ margin-top: 1.5rem !important;
+ }
+ .mr-lg-2,
+ .mx-lg-2 {
+ margin-right: 1.5rem !important;
+ }
+ .mb-lg-2,
+ .my-lg-2 {
+ margin-bottom: 1.5rem !important;
+ }
+ .ml-lg-2,
+ .mx-lg-2 {
+ margin-left: 1.5rem !important;
+ }
+ .m-lg-3 {
+ margin: 3rem !important;
+ }
+ .mt-lg-3,
+ .my-lg-3 {
+ margin-top: 3rem !important;
+ }
+ .mr-lg-3,
+ .mx-lg-3 {
+ margin-right: 3rem !important;
+ }
+ .mb-lg-3,
+ .my-lg-3 {
+ margin-bottom: 3rem !important;
+ }
+ .ml-lg-3,
+ .mx-lg-3 {
+ margin-left: 3rem !important;
+ }
+ .m-lg-4 {
+ margin: 3.5rem !important;
+ }
+ .mt-lg-4,
+ .my-lg-4 {
+ margin-top: 3.5rem !important;
+ }
+ .mr-lg-4,
+ .mx-lg-4 {
+ margin-right: 3.5rem !important;
+ }
+ .mb-lg-4,
+ .my-lg-4 {
+ margin-bottom: 3.5rem !important;
+ }
+ .ml-lg-4,
+ .mx-lg-4 {
+ margin-left: 3.5rem !important;
+ }
+ .m-lg-5 {
+ margin: 4rem !important;
+ }
+ .mt-lg-5,
+ .my-lg-5 {
+ margin-top: 4rem !important;
+ }
+ .mr-lg-5,
+ .mx-lg-5 {
+ margin-right: 4rem !important;
+ }
+ .mb-lg-5,
+ .my-lg-5 {
+ margin-bottom: 4rem !important;
+ }
+ .ml-lg-5,
+ .mx-lg-5 {
+ margin-left: 4rem !important;
+ }
+ .m-lg-25 {
+ margin: 0.25rem !important;
+ }
+ .mt-lg-25,
+ .my-lg-25 {
+ margin-top: 0.25rem !important;
+ }
+ .mr-lg-25,
+ .mx-lg-25 {
+ margin-right: 0.25rem !important;
+ }
+ .mb-lg-25,
+ .my-lg-25 {
+ margin-bottom: 0.25rem !important;
+ }
+ .ml-lg-25,
+ .mx-lg-25 {
+ margin-left: 0.25rem !important;
+ }
+ .m-lg-50 {
+ margin: 0.5rem !important;
+ }
+ .mt-lg-50,
+ .my-lg-50 {
+ margin-top: 0.5rem !important;
+ }
+ .mr-lg-50,
+ .mx-lg-50 {
+ margin-right: 0.5rem !important;
+ }
+ .mb-lg-50,
+ .my-lg-50 {
+ margin-bottom: 0.5rem !important;
+ }
+ .ml-lg-50,
+ .mx-lg-50 {
+ margin-left: 0.5rem !important;
+ }
+ .m-lg-75 {
+ margin: 0.75rem !important;
+ }
+ .mt-lg-75,
+ .my-lg-75 {
+ margin-top: 0.75rem !important;
+ }
+ .mr-lg-75,
+ .mx-lg-75 {
+ margin-right: 0.75rem !important;
+ }
+ .mb-lg-75,
+ .my-lg-75 {
+ margin-bottom: 0.75rem !important;
+ }
+ .ml-lg-75,
+ .mx-lg-75 {
+ margin-left: 0.75rem !important;
+ }
+ .p-lg-0 {
+ padding: 0 !important;
+ }
+ .pt-lg-0,
+ .py-lg-0 {
+ padding-top: 0 !important;
+ }
+ .pr-lg-0,
+ .px-lg-0 {
+ padding-right: 0 !important;
+ }
+ .pb-lg-0,
+ .py-lg-0 {
+ padding-bottom: 0 !important;
+ }
+ .pl-lg-0,
+ .px-lg-0 {
+ padding-left: 0 !important;
+ }
+ .p-lg-1 {
+ padding: 1rem !important;
+ }
+ .pt-lg-1,
+ .py-lg-1 {
+ padding-top: 1rem !important;
+ }
+ .pr-lg-1,
+ .px-lg-1 {
+ padding-right: 1rem !important;
+ }
+ .pb-lg-1,
+ .py-lg-1 {
+ padding-bottom: 1rem !important;
+ }
+ .pl-lg-1,
+ .px-lg-1 {
+ padding-left: 1rem !important;
+ }
+ .p-lg-2 {
+ padding: 1.5rem !important;
+ }
+ .pt-lg-2,
+ .py-lg-2 {
+ padding-top: 1.5rem !important;
+ }
+ .pr-lg-2,
+ .px-lg-2 {
+ padding-right: 1.5rem !important;
+ }
+ .pb-lg-2,
+ .py-lg-2 {
+ padding-bottom: 1.5rem !important;
+ }
+ .pl-lg-2,
+ .px-lg-2 {
+ padding-left: 1.5rem !important;
+ }
+ .p-lg-3 {
+ padding: 3rem !important;
+ }
+ .pt-lg-3,
+ .py-lg-3 {
+ padding-top: 3rem !important;
+ }
+ .pr-lg-3,
+ .px-lg-3 {
+ padding-right: 3rem !important;
+ }
+ .pb-lg-3,
+ .py-lg-3 {
+ padding-bottom: 3rem !important;
+ }
+ .pl-lg-3,
+ .px-lg-3 {
+ padding-left: 3rem !important;
+ }
+ .p-lg-4 {
+ padding: 3.5rem !important;
+ }
+ .pt-lg-4,
+ .py-lg-4 {
+ padding-top: 3.5rem !important;
+ }
+ .pr-lg-4,
+ .px-lg-4 {
+ padding-right: 3.5rem !important;
+ }
+ .pb-lg-4,
+ .py-lg-4 {
+ padding-bottom: 3.5rem !important;
+ }
+ .pl-lg-4,
+ .px-lg-4 {
+ padding-left: 3.5rem !important;
+ }
+ .p-lg-5 {
+ padding: 4rem !important;
+ }
+ .pt-lg-5,
+ .py-lg-5 {
+ padding-top: 4rem !important;
+ }
+ .pr-lg-5,
+ .px-lg-5 {
+ padding-right: 4rem !important;
+ }
+ .pb-lg-5,
+ .py-lg-5 {
+ padding-bottom: 4rem !important;
+ }
+ .pl-lg-5,
+ .px-lg-5 {
+ padding-left: 4rem !important;
+ }
+ .p-lg-25 {
+ padding: 0.25rem !important;
+ }
+ .pt-lg-25,
+ .py-lg-25 {
+ padding-top: 0.25rem !important;
+ }
+ .pr-lg-25,
+ .px-lg-25 {
+ padding-right: 0.25rem !important;
+ }
+ .pb-lg-25,
+ .py-lg-25 {
+ padding-bottom: 0.25rem !important;
+ }
+ .pl-lg-25,
+ .px-lg-25 {
+ padding-left: 0.25rem !important;
+ }
+ .p-lg-50 {
+ padding: 0.5rem !important;
+ }
+ .pt-lg-50,
+ .py-lg-50 {
+ padding-top: 0.5rem !important;
+ }
+ .pr-lg-50,
+ .px-lg-50 {
+ padding-right: 0.5rem !important;
+ }
+ .pb-lg-50,
+ .py-lg-50 {
+ padding-bottom: 0.5rem !important;
+ }
+ .pl-lg-50,
+ .px-lg-50 {
+ padding-left: 0.5rem !important;
+ }
+ .p-lg-75 {
+ padding: 0.75rem !important;
+ }
+ .pt-lg-75,
+ .py-lg-75 {
+ padding-top: 0.75rem !important;
+ }
+ .pr-lg-75,
+ .px-lg-75 {
+ padding-right: 0.75rem !important;
+ }
+ .pb-lg-75,
+ .py-lg-75 {
+ padding-bottom: 0.75rem !important;
+ }
+ .pl-lg-75,
+ .px-lg-75 {
+ padding-left: 0.75rem !important;
+ }
+ .m-lg-n1 {
+ margin: -1rem !important;
+ }
+ .mt-lg-n1,
+ .my-lg-n1 {
+ margin-top: -1rem !important;
+ }
+ .mr-lg-n1,
+ .mx-lg-n1 {
+ margin-right: -1rem !important;
+ }
+ .mb-lg-n1,
+ .my-lg-n1 {
+ margin-bottom: -1rem !important;
+ }
+ .ml-lg-n1,
+ .mx-lg-n1 {
+ margin-left: -1rem !important;
+ }
+ .m-lg-n2 {
+ margin: -1.5rem !important;
+ }
+ .mt-lg-n2,
+ .my-lg-n2 {
+ margin-top: -1.5rem !important;
+ }
+ .mr-lg-n2,
+ .mx-lg-n2 {
+ margin-right: -1.5rem !important;
+ }
+ .mb-lg-n2,
+ .my-lg-n2 {
+ margin-bottom: -1.5rem !important;
+ }
+ .ml-lg-n2,
+ .mx-lg-n2 {
+ margin-left: -1.5rem !important;
+ }
+ .m-lg-n3 {
+ margin: -3rem !important;
+ }
+ .mt-lg-n3,
+ .my-lg-n3 {
+ margin-top: -3rem !important;
+ }
+ .mr-lg-n3,
+ .mx-lg-n3 {
+ margin-right: -3rem !important;
+ }
+ .mb-lg-n3,
+ .my-lg-n3 {
+ margin-bottom: -3rem !important;
+ }
+ .ml-lg-n3,
+ .mx-lg-n3 {
+ margin-left: -3rem !important;
+ }
+ .m-lg-n4 {
+ margin: -3.5rem !important;
+ }
+ .mt-lg-n4,
+ .my-lg-n4 {
+ margin-top: -3.5rem !important;
+ }
+ .mr-lg-n4,
+ .mx-lg-n4 {
+ margin-right: -3.5rem !important;
+ }
+ .mb-lg-n4,
+ .my-lg-n4 {
+ margin-bottom: -3.5rem !important;
+ }
+ .ml-lg-n4,
+ .mx-lg-n4 {
+ margin-left: -3.5rem !important;
+ }
+ .m-lg-n5 {
+ margin: -4rem !important;
+ }
+ .mt-lg-n5,
+ .my-lg-n5 {
+ margin-top: -4rem !important;
+ }
+ .mr-lg-n5,
+ .mx-lg-n5 {
+ margin-right: -4rem !important;
+ }
+ .mb-lg-n5,
+ .my-lg-n5 {
+ margin-bottom: -4rem !important;
+ }
+ .ml-lg-n5,
+ .mx-lg-n5 {
+ margin-left: -4rem !important;
+ }
+ .m-lg-n25 {
+ margin: -0.25rem !important;
+ }
+ .mt-lg-n25,
+ .my-lg-n25 {
+ margin-top: -0.25rem !important;
+ }
+ .mr-lg-n25,
+ .mx-lg-n25 {
+ margin-right: -0.25rem !important;
+ }
+ .mb-lg-n25,
+ .my-lg-n25 {
+ margin-bottom: -0.25rem !important;
+ }
+ .ml-lg-n25,
+ .mx-lg-n25 {
+ margin-left: -0.25rem !important;
+ }
+ .m-lg-n50 {
+ margin: -0.5rem !important;
+ }
+ .mt-lg-n50,
+ .my-lg-n50 {
+ margin-top: -0.5rem !important;
+ }
+ .mr-lg-n50,
+ .mx-lg-n50 {
+ margin-right: -0.5rem !important;
+ }
+ .mb-lg-n50,
+ .my-lg-n50 {
+ margin-bottom: -0.5rem !important;
+ }
+ .ml-lg-n50,
+ .mx-lg-n50 {
+ margin-left: -0.5rem !important;
+ }
+ .m-lg-n75 {
+ margin: -0.75rem !important;
+ }
+ .mt-lg-n75,
+ .my-lg-n75 {
+ margin-top: -0.75rem !important;
+ }
+ .mr-lg-n75,
+ .mx-lg-n75 {
+ margin-right: -0.75rem !important;
+ }
+ .mb-lg-n75,
+ .my-lg-n75 {
+ margin-bottom: -0.75rem !important;
+ }
+ .ml-lg-n75,
+ .mx-lg-n75 {
+ margin-left: -0.75rem !important;
+ }
+ .m-lg-auto {
+ margin: auto !important;
+ }
+ .mt-lg-auto,
+ .my-lg-auto {
+ margin-top: auto !important;
+ }
+ .mr-lg-auto,
+ .mx-lg-auto {
+ margin-right: auto !important;
+ }
+ .mb-lg-auto,
+ .my-lg-auto {
+ margin-bottom: auto !important;
+ }
+ .ml-lg-auto,
+ .mx-lg-auto {
+ margin-left: auto !important;
+ }
+ .text-lg-left {
+ text-align: left !important;
+ }
+ .text-lg-right {
+ text-align: right !important;
+ }
+ .text-lg-center {
+ text-align: center !important;
+ }
+ }
+ @media (min-width: 1200px) {
+ .flex-xl-column,
+ .flex-xl-row {
+ -webkit-box-direction: normal !important;
+ }
+ .flex-xl-row {
+ -webkit-box-orient: horizontal !important;
+ -webkit-flex-direction: row !important;
+ -ms-flex-direction: row !important;
+ flex-direction: row !important;
+ }
+ .flex-xl-column {
+ -webkit-box-orient: vertical !important;
+ -webkit-flex-direction: column !important;
+ -ms-flex-direction: column !important;
+ flex-direction: column !important;
+ }
+ .flex-xl-row-reverse {
+ -webkit-box-orient: horizontal !important;
+ -webkit-box-direction: reverse !important;
+ -webkit-flex-direction: row-reverse !important;
+ -ms-flex-direction: row-reverse !important;
+ flex-direction: row-reverse !important;
+ }
+ .flex-xl-column-reverse {
+ -webkit-box-orient: vertical !important;
+ -webkit-box-direction: reverse !important;
+ -webkit-flex-direction: column-reverse !important;
+ -ms-flex-direction: column-reverse !important;
+ flex-direction: column-reverse !important;
+ }
+ .flex-xl-wrap {
+ -webkit-flex-wrap: wrap !important;
+ -ms-flex-wrap: wrap !important;
+ flex-wrap: wrap !important;
+ }
+ .flex-xl-nowrap {
+ -webkit-flex-wrap: nowrap !important;
+ -ms-flex-wrap: nowrap !important;
+ flex-wrap: nowrap !important;
+ }
+ .flex-xl-wrap-reverse {
+ -webkit-flex-wrap: wrap-reverse !important;
+ -ms-flex-wrap: wrap-reverse !important;
+ flex-wrap: wrap-reverse !important;
+ }
+ .flex-xl-fill {
+ -webkit-box-flex: 1 !important;
+ -webkit-flex: 1 1 auto !important;
+ -ms-flex: 1 1 auto !important;
+ flex: 1 1 auto !important;
+ }
+ .flex-xl-grow-0 {
+ -webkit-box-flex: 0 !important;
+ -webkit-flex-grow: 0 !important;
+ -ms-flex-positive: 0 !important;
+ flex-grow: 0 !important;
+ }
+ .flex-xl-grow-1 {
+ -webkit-box-flex: 1 !important;
+ -webkit-flex-grow: 1 !important;
+ -ms-flex-positive: 1 !important;
+ flex-grow: 1 !important;
+ }
+ .flex-xl-shrink-0 {
+ -webkit-flex-shrink: 0 !important;
+ -ms-flex-negative: 0 !important;
+ flex-shrink: 0 !important;
+ }
+ .flex-xl-shrink-1 {
+ -webkit-flex-shrink: 1 !important;
+ -ms-flex-negative: 1 !important;
+ flex-shrink: 1 !important;
+ }
+ .justify-content-xl-start {
+ -webkit-box-pack: start !important;
+ -webkit-justify-content: flex-start !important;
+ -ms-flex-pack: start !important;
+ justify-content: flex-start !important;
+ }
+ .justify-content-xl-end {
+ -webkit-box-pack: end !important;
+ -webkit-justify-content: flex-end !important;
+ -ms-flex-pack: end !important;
+ justify-content: flex-end !important;
+ }
+ .justify-content-xl-center {
+ -webkit-box-pack: center !important;
+ -webkit-justify-content: center !important;
+ -ms-flex-pack: center !important;
+ justify-content: center !important;
+ }
+ .justify-content-xl-between {
+ -webkit-box-pack: justify !important;
+ -webkit-justify-content: space-between !important;
+ -ms-flex-pack: justify !important;
+ justify-content: space-between !important;
+ }
+ .justify-content-xl-around {
+ -webkit-justify-content: space-around !important;
+ -ms-flex-pack: distribute !important;
+ justify-content: space-around !important;
+ }
+ .align-items-xl-start {
+ -webkit-box-align: start !important;
+ -webkit-align-items: flex-start !important;
+ -ms-flex-align: start !important;
+ align-items: flex-start !important;
+ }
+ .align-items-xl-end {
+ -webkit-box-align: end !important;
+ -webkit-align-items: flex-end !important;
+ -ms-flex-align: end !important;
+ align-items: flex-end !important;
+ }
+ .align-items-xl-center {
+ -webkit-box-align: center !important;
+ -webkit-align-items: center !important;
+ -ms-flex-align: center !important;
+ align-items: center !important;
+ }
+ .align-items-xl-baseline {
+ -webkit-box-align: baseline !important;
+ -webkit-align-items: baseline !important;
+ -ms-flex-align: baseline !important;
+ align-items: baseline !important;
+ }
+ .align-items-xl-stretch {
+ -webkit-box-align: stretch !important;
+ -webkit-align-items: stretch !important;
+ -ms-flex-align: stretch !important;
+ align-items: stretch !important;
+ }
+ .align-content-xl-start {
+ -webkit-align-content: flex-start !important;
+ -ms-flex-line-pack: start !important;
+ align-content: flex-start !important;
+ }
+ .align-content-xl-end {
+ -webkit-align-content: flex-end !important;
+ -ms-flex-line-pack: end !important;
+ align-content: flex-end !important;
+ }
+ .align-content-xl-center {
+ -webkit-align-content: center !important;
+ -ms-flex-line-pack: center !important;
+ align-content: center !important;
+ }
+ .align-content-xl-between {
+ -webkit-align-content: space-between !important;
+ -ms-flex-line-pack: justify !important;
+ align-content: space-between !important;
+ }
+ .align-content-xl-around {
+ -webkit-align-content: space-around !important;
+ -ms-flex-line-pack: distribute !important;
+ align-content: space-around !important;
+ }
+ .align-content-xl-stretch {
+ -webkit-align-content: stretch !important;
+ -ms-flex-line-pack: stretch !important;
+ align-content: stretch !important;
+ }
+ .align-self-xl-auto {
+ -webkit-align-self: auto !important;
+ -ms-flex-item-align: auto !important;
+ align-self: auto !important;
+ }
+ .align-self-xl-start {
+ -webkit-align-self: flex-start !important;
+ -ms-flex-item-align: start !important;
+ align-self: flex-start !important;
+ }
+ .align-self-xl-end {
+ -webkit-align-self: flex-end !important;
+ -ms-flex-item-align: end !important;
+ align-self: flex-end !important;
+ }
+ .align-self-xl-center {
+ -webkit-align-self: center !important;
+ -ms-flex-item-align: center !important;
+ align-self: center !important;
+ }
+ .align-self-xl-baseline {
+ -webkit-align-self: baseline !important;
+ -ms-flex-item-align: baseline !important;
+ align-self: baseline !important;
+ }
+ .align-self-xl-stretch {
+ -webkit-align-self: stretch !important;
+ -ms-flex-item-align: stretch !important;
+ align-self: stretch !important;
+ }
+ .float-xl-left {
+ float: left !important;
+ }
+ .float-xl-right {
+ float: right !important;
+ }
+ .float-xl-none {
+ float: none !important;
+ }
+ .m-xl-0 {
+ margin: 0 !important;
+ }
+ .mt-xl-0,
+ .my-xl-0 {
+ margin-top: 0 !important;
+ }
+ .mr-xl-0,
+ .mx-xl-0 {
+ margin-right: 0 !important;
+ }
+ .mb-xl-0,
+ .my-xl-0 {
+ margin-bottom: 0 !important;
+ }
+ .ml-xl-0,
+ .mx-xl-0 {
+ margin-left: 0 !important;
+ }
+ .m-xl-1 {
+ margin: 1rem !important;
+ }
+ .mt-xl-1,
+ .my-xl-1 {
+ margin-top: 1rem !important;
+ }
+ .mr-xl-1,
+ .mx-xl-1 {
+ margin-right: 1rem !important;
+ }
+ .mb-xl-1,
+ .my-xl-1 {
+ margin-bottom: 1rem !important;
+ }
+ .ml-xl-1,
+ .mx-xl-1 {
+ margin-left: 1rem !important;
+ }
+ .m-xl-2 {
+ margin: 1.5rem !important;
+ }
+ .mt-xl-2,
+ .my-xl-2 {
+ margin-top: 1.5rem !important;
+ }
+ .mr-xl-2,
+ .mx-xl-2 {
+ margin-right: 1.5rem !important;
+ }
+ .mb-xl-2,
+ .my-xl-2 {
+ margin-bottom: 1.5rem !important;
+ }
+ .ml-xl-2,
+ .mx-xl-2 {
+ margin-left: 1.5rem !important;
+ }
+ .m-xl-3 {
+ margin: 3rem !important;
+ }
+ .mt-xl-3,
+ .my-xl-3 {
+ margin-top: 3rem !important;
+ }
+ .mr-xl-3,
+ .mx-xl-3 {
+ margin-right: 3rem !important;
+ }
+ .mb-xl-3,
+ .my-xl-3 {
+ margin-bottom: 3rem !important;
+ }
+ .ml-xl-3,
+ .mx-xl-3 {
+ margin-left: 3rem !important;
+ }
+ .m-xl-4 {
+ margin: 3.5rem !important;
+ }
+ .mt-xl-4,
+ .my-xl-4 {
+ margin-top: 3.5rem !important;
+ }
+ .mr-xl-4,
+ .mx-xl-4 {
+ margin-right: 3.5rem !important;
+ }
+ .mb-xl-4,
+ .my-xl-4 {
+ margin-bottom: 3.5rem !important;
+ }
+ .ml-xl-4,
+ .mx-xl-4 {
+ margin-left: 3.5rem !important;
+ }
+ .m-xl-5 {
+ margin: 4rem !important;
+ }
+ .mt-xl-5,
+ .my-xl-5 {
+ margin-top: 4rem !important;
+ }
+ .mr-xl-5,
+ .mx-xl-5 {
+ margin-right: 4rem !important;
+ }
+ .mb-xl-5,
+ .my-xl-5 {
+ margin-bottom: 4rem !important;
+ }
+ .ml-xl-5,
+ .mx-xl-5 {
+ margin-left: 4rem !important;
+ }
+ .m-xl-25 {
+ margin: 0.25rem !important;
+ }
+ .mt-xl-25,
+ .my-xl-25 {
+ margin-top: 0.25rem !important;
+ }
+ .mr-xl-25,
+ .mx-xl-25 {
+ margin-right: 0.25rem !important;
+ }
+ .mb-xl-25,
+ .my-xl-25 {
+ margin-bottom: 0.25rem !important;
+ }
+ .ml-xl-25,
+ .mx-xl-25 {
+ margin-left: 0.25rem !important;
+ }
+ .m-xl-50 {
+ margin: 0.5rem !important;
+ }
+ .mt-xl-50,
+ .my-xl-50 {
+ margin-top: 0.5rem !important;
+ }
+ .mr-xl-50,
+ .mx-xl-50 {
+ margin-right: 0.5rem !important;
+ }
+ .mb-xl-50,
+ .my-xl-50 {
+ margin-bottom: 0.5rem !important;
+ }
+ .ml-xl-50,
+ .mx-xl-50 {
+ margin-left: 0.5rem !important;
+ }
+ .m-xl-75 {
+ margin: 0.75rem !important;
+ }
+ .mt-xl-75,
+ .my-xl-75 {
+ margin-top: 0.75rem !important;
+ }
+ .mr-xl-75,
+ .mx-xl-75 {
+ margin-right: 0.75rem !important;
+ }
+ .mb-xl-75,
+ .my-xl-75 {
+ margin-bottom: 0.75rem !important;
+ }
+ .ml-xl-75,
+ .mx-xl-75 {
+ margin-left: 0.75rem !important;
+ }
+ .p-xl-0 {
+ padding: 0 !important;
+ }
+ .pt-xl-0,
+ .py-xl-0 {
+ padding-top: 0 !important;
+ }
+ .pr-xl-0,
+ .px-xl-0 {
+ padding-right: 0 !important;
+ }
+ .pb-xl-0,
+ .py-xl-0 {
+ padding-bottom: 0 !important;
+ }
+ .pl-xl-0,
+ .px-xl-0 {
+ padding-left: 0 !important;
+ }
+ .p-xl-1 {
+ padding: 1rem !important;
+ }
+ .pt-xl-1,
+ .py-xl-1 {
+ padding-top: 1rem !important;
+ }
+ .pr-xl-1,
+ .px-xl-1 {
+ padding-right: 1rem !important;
+ }
+ .pb-xl-1,
+ .py-xl-1 {
+ padding-bottom: 1rem !important;
+ }
+ .pl-xl-1,
+ .px-xl-1 {
+ padding-left: 1rem !important;
+ }
+ .p-xl-2 {
+ padding: 1.5rem !important;
+ }
+ .pt-xl-2,
+ .py-xl-2 {
+ padding-top: 1.5rem !important;
+ }
+ .pr-xl-2,
+ .px-xl-2 {
+ padding-right: 1.5rem !important;
+ }
+ .pb-xl-2,
+ .py-xl-2 {
+ padding-bottom: 1.5rem !important;
+ }
+ .pl-xl-2,
+ .px-xl-2 {
+ padding-left: 1.5rem !important;
+ }
+ .p-xl-3 {
+ padding: 3rem !important;
+ }
+ .pt-xl-3,
+ .py-xl-3 {
+ padding-top: 3rem !important;
+ }
+ .pr-xl-3,
+ .px-xl-3 {
+ padding-right: 3rem !important;
+ }
+ .pb-xl-3,
+ .py-xl-3 {
+ padding-bottom: 3rem !important;
+ }
+ .pl-xl-3,
+ .px-xl-3 {
+ padding-left: 3rem !important;
+ }
+ .p-xl-4 {
+ padding: 3.5rem !important;
+ }
+ .pt-xl-4,
+ .py-xl-4 {
+ padding-top: 3.5rem !important;
+ }
+ .pr-xl-4,
+ .px-xl-4 {
+ padding-right: 3.5rem !important;
+ }
+ .pb-xl-4,
+ .py-xl-4 {
+ padding-bottom: 3.5rem !important;
+ }
+ .pl-xl-4,
+ .px-xl-4 {
+ padding-left: 3.5rem !important;
+ }
+ .p-xl-5 {
+ padding: 4rem !important;
+ }
+ .pt-xl-5,
+ .py-xl-5 {
+ padding-top: 4rem !important;
+ }
+ .pr-xl-5,
+ .px-xl-5 {
+ padding-right: 4rem !important;
+ }
+ .pb-xl-5,
+ .py-xl-5 {
+ padding-bottom: 4rem !important;
+ }
+ .pl-xl-5,
+ .px-xl-5 {
+ padding-left: 4rem !important;
+ }
+ .p-xl-25 {
+ padding: 0.25rem !important;
+ }
+ .pt-xl-25,
+ .py-xl-25 {
+ padding-top: 0.25rem !important;
+ }
+ .pr-xl-25,
+ .px-xl-25 {
+ padding-right: 0.25rem !important;
+ }
+ .pb-xl-25,
+ .py-xl-25 {
+ padding-bottom: 0.25rem !important;
+ }
+ .pl-xl-25,
+ .px-xl-25 {
+ padding-left: 0.25rem !important;
+ }
+ .p-xl-50 {
+ padding: 0.5rem !important;
+ }
+ .pt-xl-50,
+ .py-xl-50 {
+ padding-top: 0.5rem !important;
+ }
+ .pr-xl-50,
+ .px-xl-50 {
+ padding-right: 0.5rem !important;
+ }
+ .pb-xl-50,
+ .py-xl-50 {
+ padding-bottom: 0.5rem !important;
+ }
+ .pl-xl-50,
+ .px-xl-50 {
+ padding-left: 0.5rem !important;
+ }
+ .p-xl-75 {
+ padding: 0.75rem !important;
+ }
+ .pt-xl-75,
+ .py-xl-75 {
+ padding-top: 0.75rem !important;
+ }
+ .pr-xl-75,
+ .px-xl-75 {
+ padding-right: 0.75rem !important;
+ }
+ .pb-xl-75,
+ .py-xl-75 {
+ padding-bottom: 0.75rem !important;
+ }
+ .pl-xl-75,
+ .px-xl-75 {
+ padding-left: 0.75rem !important;
+ }
+ .m-xl-n1 {
+ margin: -1rem !important;
+ }
+ .mt-xl-n1,
+ .my-xl-n1 {
+ margin-top: -1rem !important;
+ }
+ .mr-xl-n1,
+ .mx-xl-n1 {
+ margin-right: -1rem !important;
+ }
+ .mb-xl-n1,
+ .my-xl-n1 {
+ margin-bottom: -1rem !important;
+ }
+ .ml-xl-n1,
+ .mx-xl-n1 {
+ margin-left: -1rem !important;
+ }
+ .m-xl-n2 {
+ margin: -1.5rem !important;
+ }
+ .mt-xl-n2,
+ .my-xl-n2 {
+ margin-top: -1.5rem !important;
+ }
+ .mr-xl-n2,
+ .mx-xl-n2 {
+ margin-right: -1.5rem !important;
+ }
+ .mb-xl-n2,
+ .my-xl-n2 {
+ margin-bottom: -1.5rem !important;
+ }
+ .ml-xl-n2,
+ .mx-xl-n2 {
+ margin-left: -1.5rem !important;
+ }
+ .m-xl-n3 {
+ margin: -3rem !important;
+ }
+ .mt-xl-n3,
+ .my-xl-n3 {
+ margin-top: -3rem !important;
+ }
+ .mr-xl-n3,
+ .mx-xl-n3 {
+ margin-right: -3rem !important;
+ }
+ .mb-xl-n3,
+ .my-xl-n3 {
+ margin-bottom: -3rem !important;
+ }
+ .ml-xl-n3,
+ .mx-xl-n3 {
+ margin-left: -3rem !important;
+ }
+ .m-xl-n4 {
+ margin: -3.5rem !important;
+ }
+ .mt-xl-n4,
+ .my-xl-n4 {
+ margin-top: -3.5rem !important;
+ }
+ .mr-xl-n4,
+ .mx-xl-n4 {
+ margin-right: -3.5rem !important;
+ }
+ .mb-xl-n4,
+ .my-xl-n4 {
+ margin-bottom: -3.5rem !important;
+ }
+ .ml-xl-n4,
+ .mx-xl-n4 {
+ margin-left: -3.5rem !important;
+ }
+ .m-xl-n5 {
+ margin: -4rem !important;
+ }
+ .mt-xl-n5,
+ .my-xl-n5 {
+ margin-top: -4rem !important;
+ }
+ .mr-xl-n5,
+ .mx-xl-n5 {
+ margin-right: -4rem !important;
+ }
+ .mb-xl-n5,
+ .my-xl-n5 {
+ margin-bottom: -4rem !important;
+ }
+ .ml-xl-n5,
+ .mx-xl-n5 {
+ margin-left: -4rem !important;
+ }
+ .m-xl-n25 {
+ margin: -0.25rem !important;
+ }
+ .mt-xl-n25,
+ .my-xl-n25 {
+ margin-top: -0.25rem !important;
+ }
+ .mr-xl-n25,
+ .mx-xl-n25 {
+ margin-right: -0.25rem !important;
+ }
+ .mb-xl-n25,
+ .my-xl-n25 {
+ margin-bottom: -0.25rem !important;
+ }
+ .ml-xl-n25,
+ .mx-xl-n25 {
+ margin-left: -0.25rem !important;
+ }
+ .m-xl-n50 {
+ margin: -0.5rem !important;
+ }
+ .mt-xl-n50,
+ .my-xl-n50 {
+ margin-top: -0.5rem !important;
+ }
+ .mr-xl-n50,
+ .mx-xl-n50 {
+ margin-right: -0.5rem !important;
+ }
+ .mb-xl-n50,
+ .my-xl-n50 {
+ margin-bottom: -0.5rem !important;
+ }
+ .ml-xl-n50,
+ .mx-xl-n50 {
+ margin-left: -0.5rem !important;
+ }
+ .m-xl-n75 {
+ margin: -0.75rem !important;
+ }
+ .mt-xl-n75,
+ .my-xl-n75 {
+ margin-top: -0.75rem !important;
+ }
+ .mr-xl-n75,
+ .mx-xl-n75 {
+ margin-right: -0.75rem !important;
+ }
+ .mb-xl-n75,
+ .my-xl-n75 {
+ margin-bottom: -0.75rem !important;
+ }
+ .ml-xl-n75,
+ .mx-xl-n75 {
+ margin-left: -0.75rem !important;
+ }
+ .m-xl-auto {
+ margin: auto !important;
+ }
+ .mt-xl-auto,
+ .my-xl-auto {
+ margin-top: auto !important;
+ }
+ .mr-xl-auto,
+ .mx-xl-auto {
+ margin-right: auto !important;
+ }
+ .mb-xl-auto,
+ .my-xl-auto {
+ margin-bottom: auto !important;
+ }
+ .ml-xl-auto,
+ .mx-xl-auto {
+ margin-left: auto !important;
+ }
+ .text-xl-left {
+ text-align: left !important;
+ }
+ .text-xl-right {
+ text-align: right !important;
+ }
+ .text-xl-center {
+ text-align: center !important;
+ }
+ }
+ @media (min-width: 1400px) {
+ .flex-xxl-column,
+ .flex-xxl-row {
+ -webkit-box-direction: normal !important;
+ }
+ .flex-xxl-row {
+ -webkit-box-orient: horizontal !important;
+ -webkit-flex-direction: row !important;
+ -ms-flex-direction: row !important;
+ flex-direction: row !important;
+ }
+ .flex-xxl-column {
+ -webkit-box-orient: vertical !important;
+ -webkit-flex-direction: column !important;
+ -ms-flex-direction: column !important;
+ flex-direction: column !important;
+ }
+ .flex-xxl-row-reverse {
+ -webkit-box-orient: horizontal !important;
+ -webkit-box-direction: reverse !important;
+ -webkit-flex-direction: row-reverse !important;
+ -ms-flex-direction: row-reverse !important;
+ flex-direction: row-reverse !important;
+ }
+ .flex-xxl-column-reverse {
+ -webkit-box-orient: vertical !important;
+ -webkit-box-direction: reverse !important;
+ -webkit-flex-direction: column-reverse !important;
+ -ms-flex-direction: column-reverse !important;
+ flex-direction: column-reverse !important;
+ }
+ .flex-xxl-wrap {
+ -webkit-flex-wrap: wrap !important;
+ -ms-flex-wrap: wrap !important;
+ flex-wrap: wrap !important;
+ }
+ .flex-xxl-nowrap {
+ -webkit-flex-wrap: nowrap !important;
+ -ms-flex-wrap: nowrap !important;
+ flex-wrap: nowrap !important;
+ }
+ .flex-xxl-wrap-reverse {
+ -webkit-flex-wrap: wrap-reverse !important;
+ -ms-flex-wrap: wrap-reverse !important;
+ flex-wrap: wrap-reverse !important;
+ }
+ .flex-xxl-fill {
+ -webkit-box-flex: 1 !important;
+ -webkit-flex: 1 1 auto !important;
+ -ms-flex: 1 1 auto !important;
+ flex: 1 1 auto !important;
+ }
+ .flex-xxl-grow-0 {
+ -webkit-box-flex: 0 !important;
+ -webkit-flex-grow: 0 !important;
+ -ms-flex-positive: 0 !important;
+ flex-grow: 0 !important;
+ }
+ .flex-xxl-grow-1 {
+ -webkit-box-flex: 1 !important;
+ -webkit-flex-grow: 1 !important;
+ -ms-flex-positive: 1 !important;
+ flex-grow: 1 !important;
+ }
+ .flex-xxl-shrink-0 {
+ -webkit-flex-shrink: 0 !important;
+ -ms-flex-negative: 0 !important;
+ flex-shrink: 0 !important;
+ }
+ .flex-xxl-shrink-1 {
+ -webkit-flex-shrink: 1 !important;
+ -ms-flex-negative: 1 !important;
+ flex-shrink: 1 !important;
+ }
+ .justify-content-xxl-start {
+ -webkit-box-pack: start !important;
+ -webkit-justify-content: flex-start !important;
+ -ms-flex-pack: start !important;
+ justify-content: flex-start !important;
+ }
+ .justify-content-xxl-end {
+ -webkit-box-pack: end !important;
+ -webkit-justify-content: flex-end !important;
+ -ms-flex-pack: end !important;
+ justify-content: flex-end !important;
+ }
+ .justify-content-xxl-center {
+ -webkit-box-pack: center !important;
+ -webkit-justify-content: center !important;
+ -ms-flex-pack: center !important;
+ justify-content: center !important;
+ }
+ .justify-content-xxl-between {
+ -webkit-box-pack: justify !important;
+ -webkit-justify-content: space-between !important;
+ -ms-flex-pack: justify !important;
+ justify-content: space-between !important;
+ }
+ .justify-content-xxl-around {
+ -webkit-justify-content: space-around !important;
+ -ms-flex-pack: distribute !important;
+ justify-content: space-around !important;
+ }
+ .align-items-xxl-start {
+ -webkit-box-align: start !important;
+ -webkit-align-items: flex-start !important;
+ -ms-flex-align: start !important;
+ align-items: flex-start !important;
+ }
+ .align-items-xxl-end {
+ -webkit-box-align: end !important;
+ -webkit-align-items: flex-end !important;
+ -ms-flex-align: end !important;
+ align-items: flex-end !important;
+ }
+ .align-items-xxl-center {
+ -webkit-box-align: center !important;
+ -webkit-align-items: center !important;
+ -ms-flex-align: center !important;
+ align-items: center !important;
+ }
+ .align-items-xxl-baseline {
+ -webkit-box-align: baseline !important;
+ -webkit-align-items: baseline !important;
+ -ms-flex-align: baseline !important;
+ align-items: baseline !important;
+ }
+ .align-items-xxl-stretch {
+ -webkit-box-align: stretch !important;
+ -webkit-align-items: stretch !important;
+ -ms-flex-align: stretch !important;
+ align-items: stretch !important;
+ }
+ .align-content-xxl-start {
+ -webkit-align-content: flex-start !important;
+ -ms-flex-line-pack: start !important;
+ align-content: flex-start !important;
+ }
+ .align-content-xxl-end {
+ -webkit-align-content: flex-end !important;
+ -ms-flex-line-pack: end !important;
+ align-content: flex-end !important;
+ }
+ .align-content-xxl-center {
+ -webkit-align-content: center !important;
+ -ms-flex-line-pack: center !important;
+ align-content: center !important;
+ }
+ .align-content-xxl-between {
+ -webkit-align-content: space-between !important;
+ -ms-flex-line-pack: justify !important;
+ align-content: space-between !important;
+ }
+ .align-content-xxl-around {
+ -webkit-align-content: space-around !important;
+ -ms-flex-line-pack: distribute !important;
+ align-content: space-around !important;
+ }
+ .align-content-xxl-stretch {
+ -webkit-align-content: stretch !important;
+ -ms-flex-line-pack: stretch !important;
+ align-content: stretch !important;
+ }
+ .align-self-xxl-auto {
+ -webkit-align-self: auto !important;
+ -ms-flex-item-align: auto !important;
+ align-self: auto !important;
+ }
+ .align-self-xxl-start {
+ -webkit-align-self: flex-start !important;
+ -ms-flex-item-align: start !important;
+ align-self: flex-start !important;
+ }
+ .align-self-xxl-end {
+ -webkit-align-self: flex-end !important;
+ -ms-flex-item-align: end !important;
+ align-self: flex-end !important;
+ }
+ .align-self-xxl-center {
+ -webkit-align-self: center !important;
+ -ms-flex-item-align: center !important;
+ align-self: center !important;
+ }
+ .align-self-xxl-baseline {
+ -webkit-align-self: baseline !important;
+ -ms-flex-item-align: baseline !important;
+ align-self: baseline !important;
+ }
+ .align-self-xxl-stretch {
+ -webkit-align-self: stretch !important;
+ -ms-flex-item-align: stretch !important;
+ align-self: stretch !important;
+ }
+ .float-xxl-left {
+ float: left !important;
+ }
+ .float-xxl-right {
+ float: right !important;
+ }
+ .float-xxl-none {
+ float: none !important;
+ }
+ .m-xxl-0 {
+ margin: 0 !important;
+ }
+ .mt-xxl-0,
+ .my-xxl-0 {
+ margin-top: 0 !important;
+ }
+ .mr-xxl-0,
+ .mx-xxl-0 {
+ margin-right: 0 !important;
+ }
+ .mb-xxl-0,
+ .my-xxl-0 {
+ margin-bottom: 0 !important;
+ }
+ .ml-xxl-0,
+ .mx-xxl-0 {
+ margin-left: 0 !important;
+ }
+ .m-xxl-1 {
+ margin: 1rem !important;
+ }
+ .mt-xxl-1,
+ .my-xxl-1 {
+ margin-top: 1rem !important;
+ }
+ .mr-xxl-1,
+ .mx-xxl-1 {
+ margin-right: 1rem !important;
+ }
+ .mb-xxl-1,
+ .my-xxl-1 {
+ margin-bottom: 1rem !important;
+ }
+ .ml-xxl-1,
+ .mx-xxl-1 {
+ margin-left: 1rem !important;
+ }
+ .m-xxl-2 {
+ margin: 1.5rem !important;
+ }
+ .mt-xxl-2,
+ .my-xxl-2 {
+ margin-top: 1.5rem !important;
+ }
+ .mr-xxl-2,
+ .mx-xxl-2 {
+ margin-right: 1.5rem !important;
+ }
+ .mb-xxl-2,
+ .my-xxl-2 {
+ margin-bottom: 1.5rem !important;
+ }
+ .ml-xxl-2,
+ .mx-xxl-2 {
+ margin-left: 1.5rem !important;
+ }
+ .m-xxl-3 {
+ margin: 3rem !important;
+ }
+ .mt-xxl-3,
+ .my-xxl-3 {
+ margin-top: 3rem !important;
+ }
+ .mr-xxl-3,
+ .mx-xxl-3 {
+ margin-right: 3rem !important;
+ }
+ .mb-xxl-3,
+ .my-xxl-3 {
+ margin-bottom: 3rem !important;
+ }
+ .ml-xxl-3,
+ .mx-xxl-3 {
+ margin-left: 3rem !important;
+ }
+ .m-xxl-4 {
+ margin: 3.5rem !important;
+ }
+ .mt-xxl-4,
+ .my-xxl-4 {
+ margin-top: 3.5rem !important;
+ }
+ .mr-xxl-4,
+ .mx-xxl-4 {
+ margin-right: 3.5rem !important;
+ }
+ .mb-xxl-4,
+ .my-xxl-4 {
+ margin-bottom: 3.5rem !important;
+ }
+ .ml-xxl-4,
+ .mx-xxl-4 {
+ margin-left: 3.5rem !important;
+ }
+ .m-xxl-5 {
+ margin: 4rem !important;
+ }
+ .mt-xxl-5,
+ .my-xxl-5 {
+ margin-top: 4rem !important;
+ }
+ .mr-xxl-5,
+ .mx-xxl-5 {
+ margin-right: 4rem !important;
+ }
+ .mb-xxl-5,
+ .my-xxl-5 {
+ margin-bottom: 4rem !important;
+ }
+ .ml-xxl-5,
+ .mx-xxl-5 {
+ margin-left: 4rem !important;
+ }
+ .m-xxl-25 {
+ margin: 0.25rem !important;
+ }
+ .mt-xxl-25,
+ .my-xxl-25 {
+ margin-top: 0.25rem !important;
+ }
+ .mr-xxl-25,
+ .mx-xxl-25 {
+ margin-right: 0.25rem !important;
+ }
+ .mb-xxl-25,
+ .my-xxl-25 {
+ margin-bottom: 0.25rem !important;
+ }
+ .ml-xxl-25,
+ .mx-xxl-25 {
+ margin-left: 0.25rem !important;
+ }
+ .m-xxl-50 {
+ margin: 0.5rem !important;
+ }
+ .mt-xxl-50,
+ .my-xxl-50 {
+ margin-top: 0.5rem !important;
+ }
+ .mr-xxl-50,
+ .mx-xxl-50 {
+ margin-right: 0.5rem !important;
+ }
+ .mb-xxl-50,
+ .my-xxl-50 {
+ margin-bottom: 0.5rem !important;
+ }
+ .ml-xxl-50,
+ .mx-xxl-50 {
+ margin-left: 0.5rem !important;
+ }
+ .m-xxl-75 {
+ margin: 0.75rem !important;
+ }
+ .mt-xxl-75,
+ .my-xxl-75 {
+ margin-top: 0.75rem !important;
+ }
+ .mr-xxl-75,
+ .mx-xxl-75 {
+ margin-right: 0.75rem !important;
+ }
+ .mb-xxl-75,
+ .my-xxl-75 {
+ margin-bottom: 0.75rem !important;
+ }
+ .ml-xxl-75,
+ .mx-xxl-75 {
+ margin-left: 0.75rem !important;
+ }
+ .p-xxl-0 {
+ padding: 0 !important;
+ }
+ .pt-xxl-0,
+ .py-xxl-0 {
+ padding-top: 0 !important;
+ }
+ .pr-xxl-0,
+ .px-xxl-0 {
+ padding-right: 0 !important;
+ }
+ .pb-xxl-0,
+ .py-xxl-0 {
+ padding-bottom: 0 !important;
+ }
+ .pl-xxl-0,
+ .px-xxl-0 {
+ padding-left: 0 !important;
+ }
+ .p-xxl-1 {
+ padding: 1rem !important;
+ }
+ .pt-xxl-1,
+ .py-xxl-1 {
+ padding-top: 1rem !important;
+ }
+ .pr-xxl-1,
+ .px-xxl-1 {
+ padding-right: 1rem !important;
+ }
+ .pb-xxl-1,
+ .py-xxl-1 {
+ padding-bottom: 1rem !important;
+ }
+ .pl-xxl-1,
+ .px-xxl-1 {
+ padding-left: 1rem !important;
+ }
+ .p-xxl-2 {
+ padding: 1.5rem !important;
+ }
+ .pt-xxl-2,
+ .py-xxl-2 {
+ padding-top: 1.5rem !important;
+ }
+ .pr-xxl-2,
+ .px-xxl-2 {
+ padding-right: 1.5rem !important;
+ }
+ .pb-xxl-2,
+ .py-xxl-2 {
+ padding-bottom: 1.5rem !important;
+ }
+ .pl-xxl-2,
+ .px-xxl-2 {
+ padding-left: 1.5rem !important;
+ }
+ .p-xxl-3 {
+ padding: 3rem !important;
+ }
+ .pt-xxl-3,
+ .py-xxl-3 {
+ padding-top: 3rem !important;
+ }
+ .pr-xxl-3,
+ .px-xxl-3 {
+ padding-right: 3rem !important;
+ }
+ .pb-xxl-3,
+ .py-xxl-3 {
+ padding-bottom: 3rem !important;
+ }
+ .pl-xxl-3,
+ .px-xxl-3 {
+ padding-left: 3rem !important;
+ }
+ .p-xxl-4 {
+ padding: 3.5rem !important;
+ }
+ .pt-xxl-4,
+ .py-xxl-4 {
+ padding-top: 3.5rem !important;
+ }
+ .pr-xxl-4,
+ .px-xxl-4 {
+ padding-right: 3.5rem !important;
+ }
+ .pb-xxl-4,
+ .py-xxl-4 {
+ padding-bottom: 3.5rem !important;
+ }
+ .pl-xxl-4,
+ .px-xxl-4 {
+ padding-left: 3.5rem !important;
+ }
+ .p-xxl-5 {
+ padding: 4rem !important;
+ }
+ .pt-xxl-5,
+ .py-xxl-5 {
+ padding-top: 4rem !important;
+ }
+ .pr-xxl-5,
+ .px-xxl-5 {
+ padding-right: 4rem !important;
+ }
+ .pb-xxl-5,
+ .py-xxl-5 {
+ padding-bottom: 4rem !important;
+ }
+ .pl-xxl-5,
+ .px-xxl-5 {
+ padding-left: 4rem !important;
+ }
+ .p-xxl-25 {
+ padding: 0.25rem !important;
+ }
+ .pt-xxl-25,
+ .py-xxl-25 {
+ padding-top: 0.25rem !important;
+ }
+ .pr-xxl-25,
+ .px-xxl-25 {
+ padding-right: 0.25rem !important;
+ }
+ .pb-xxl-25,
+ .py-xxl-25 {
+ padding-bottom: 0.25rem !important;
+ }
+ .pl-xxl-25,
+ .px-xxl-25 {
+ padding-left: 0.25rem !important;
+ }
+ .p-xxl-50 {
+ padding: 0.5rem !important;
+ }
+ .pt-xxl-50,
+ .py-xxl-50 {
+ padding-top: 0.5rem !important;
+ }
+ .pr-xxl-50,
+ .px-xxl-50 {
+ padding-right: 0.5rem !important;
+ }
+ .pb-xxl-50,
+ .py-xxl-50 {
+ padding-bottom: 0.5rem !important;
+ }
+ .pl-xxl-50,
+ .px-xxl-50 {
+ padding-left: 0.5rem !important;
+ }
+ .p-xxl-75 {
+ padding: 0.75rem !important;
+ }
+ .pt-xxl-75,
+ .py-xxl-75 {
+ padding-top: 0.75rem !important;
+ }
+ .pr-xxl-75,
+ .px-xxl-75 {
+ padding-right: 0.75rem !important;
+ }
+ .pb-xxl-75,
+ .py-xxl-75 {
+ padding-bottom: 0.75rem !important;
+ }
+ .pl-xxl-75,
+ .px-xxl-75 {
+ padding-left: 0.75rem !important;
+ }
+ .m-xxl-n1 {
+ margin: -1rem !important;
+ }
+ .mt-xxl-n1,
+ .my-xxl-n1 {
+ margin-top: -1rem !important;
+ }
+ .mr-xxl-n1,
+ .mx-xxl-n1 {
+ margin-right: -1rem !important;
+ }
+ .mb-xxl-n1,
+ .my-xxl-n1 {
+ margin-bottom: -1rem !important;
+ }
+ .ml-xxl-n1,
+ .mx-xxl-n1 {
+ margin-left: -1rem !important;
+ }
+ .m-xxl-n2 {
+ margin: -1.5rem !important;
+ }
+ .mt-xxl-n2,
+ .my-xxl-n2 {
+ margin-top: -1.5rem !important;
+ }
+ .mr-xxl-n2,
+ .mx-xxl-n2 {
+ margin-right: -1.5rem !important;
+ }
+ .mb-xxl-n2,
+ .my-xxl-n2 {
+ margin-bottom: -1.5rem !important;
+ }
+ .ml-xxl-n2,
+ .mx-xxl-n2 {
+ margin-left: -1.5rem !important;
+ }
+ .m-xxl-n3 {
+ margin: -3rem !important;
+ }
+ .mt-xxl-n3,
+ .my-xxl-n3 {
+ margin-top: -3rem !important;
+ }
+ .mr-xxl-n3,
+ .mx-xxl-n3 {
+ margin-right: -3rem !important;
+ }
+ .mb-xxl-n3,
+ .my-xxl-n3 {
+ margin-bottom: -3rem !important;
+ }
+ .ml-xxl-n3,
+ .mx-xxl-n3 {
+ margin-left: -3rem !important;
+ }
+ .m-xxl-n4 {
+ margin: -3.5rem !important;
+ }
+ .mt-xxl-n4,
+ .my-xxl-n4 {
+ margin-top: -3.5rem !important;
+ }
+ .mr-xxl-n4,
+ .mx-xxl-n4 {
+ margin-right: -3.5rem !important;
+ }
+ .mb-xxl-n4,
+ .my-xxl-n4 {
+ margin-bottom: -3.5rem !important;
+ }
+ .ml-xxl-n4,
+ .mx-xxl-n4 {
+ margin-left: -3.5rem !important;
+ }
+ .m-xxl-n5 {
+ margin: -4rem !important;
+ }
+ .mt-xxl-n5,
+ .my-xxl-n5 {
+ margin-top: -4rem !important;
+ }
+ .mr-xxl-n5,
+ .mx-xxl-n5 {
+ margin-right: -4rem !important;
+ }
+ .mb-xxl-n5,
+ .my-xxl-n5 {
+ margin-bottom: -4rem !important;
+ }
+ .ml-xxl-n5,
+ .mx-xxl-n5 {
+ margin-left: -4rem !important;
+ }
+ .m-xxl-n25 {
+ margin: -0.25rem !important;
+ }
+ .mt-xxl-n25,
+ .my-xxl-n25 {
+ margin-top: -0.25rem !important;
+ }
+ .mr-xxl-n25,
+ .mx-xxl-n25 {
+ margin-right: -0.25rem !important;
+ }
+ .mb-xxl-n25,
+ .my-xxl-n25 {
+ margin-bottom: -0.25rem !important;
+ }
+ .ml-xxl-n25,
+ .mx-xxl-n25 {
+ margin-left: -0.25rem !important;
+ }
+ .m-xxl-n50 {
+ margin: -0.5rem !important;
+ }
+ .mt-xxl-n50,
+ .my-xxl-n50 {
+ margin-top: -0.5rem !important;
+ }
+ .mr-xxl-n50,
+ .mx-xxl-n50 {
+ margin-right: -0.5rem !important;
+ }
+ .mb-xxl-n50,
+ .my-xxl-n50 {
+ margin-bottom: -0.5rem !important;
+ }
+ .ml-xxl-n50,
+ .mx-xxl-n50 {
+ margin-left: -0.5rem !important;
+ }
+ .m-xxl-n75 {
+ margin: -0.75rem !important;
+ }
+ .mt-xxl-n75,
+ .my-xxl-n75 {
+ margin-top: -0.75rem !important;
+ }
+ .mr-xxl-n75,
+ .mx-xxl-n75 {
+ margin-right: -0.75rem !important;
+ }
+ .mb-xxl-n75,
+ .my-xxl-n75 {
+ margin-bottom: -0.75rem !important;
+ }
+ .ml-xxl-n75,
+ .mx-xxl-n75 {
+ margin-left: -0.75rem !important;
+ }
+ .m-xxl-auto {
+ margin: auto !important;
+ }
+ .mt-xxl-auto,
+ .my-xxl-auto {
+ margin-top: auto !important;
+ }
+ .mr-xxl-auto,
+ .mx-xxl-auto {
+ margin-right: auto !important;
+ }
+ .mb-xxl-auto,
+ .my-xxl-auto {
+ margin-bottom: auto !important;
+ }
+ .ml-xxl-auto,
+ .mx-xxl-auto {
+ margin-left: auto !important;
+ }
+ .text-xxl-left {
+ text-align: left !important;
+ }
+ .text-xxl-right {
+ text-align: right !important;
+ }
+ .text-xxl-center {
+ text-align: center !important;
+ }
+ }
+ .text-lowercase {
+ text-transform: lowercase !important;
+ }
+ .text-uppercase {
+ text-transform: uppercase !important;
+ }
+ .text-capitalize {
+ text-transform: capitalize !important;
+ }
+ .font-weight-light {
+ font-weight: 300 !important;
+ }
+ .font-weight-lighter {
+ font-weight: lighter !important;
+ }
+ .font-weight-normal {
+ font-weight: 400 !important;
+ }
+ .font-weight-bold {
+ font-weight: 700 !important;
+ }
+ .font-weight-bolder {
+ font-weight: bolder !important;
+ }
+ .font-italic {
+ font-style: italic !important;
+ }
+ .text-white {
+ color: #fff !important;
+ }
+ .text-primary {
+ color: #0677D4 !important;
+ }
+ a.text-primary:focus,
+ a.text-primary:hover {
+ color: #004ba4 !important;
+ }
+ .text-secondary {
+ color: #404e67 !important;
+ }
+ a.text-secondary:focus,
+ a.text-secondary:hover {
+ color: #232a38 !important;
+ }
+ .text-success {
+ color: #16d39a !important;
+ }
+ a.text-success:focus,
+ a.text-success:hover {
+ color: #0f8e67 !important;
+ }
+ .text-info {
+ color: #2dcee3 !important;
+ }
+ a.text-info:focus,
+ a.text-info:hover {
+ color: #179bad !important;
+ }
+ .text-warning {
+ color: #ffa87d !important;
+ }
+ a.text-warning:focus,
+ a.text-warning:hover {
+ color: #ff7531 !important;
+ }
+ .text-danger {
+ color: #F08080 !important;
+ }
+ a.text-danger:focus,
+ a.text-danger:hover {
+ color: #ff2946 !important;
+ }
+ .text-light {
+ color: #babfc7 !important;
+ }
+ a.text-light:focus,
+ a.text-light:hover {
+ color: #9098a5 !important;
+ }
+ .text-dark {
+ color: #1b2942 !important;
+ }
+ a.text-dark:focus,
+ a.text-dark:hover {
+ color: #05070c !important;
+ }
+ .text-body,
+ .text-muted {
+ color: #404e67 !important;
+ }
+ .text-black-50 {
+ color: rgba(0, 0, 0, 0.5) !important;
+ }
+ .text-white-50 {
+ color: rgba(255, 255, 255, 0.5) !important;
+ }
+ .text-hide {
+ font: 0/0 a;
+ color: transparent;
+ background-color: transparent;
+ border: 0;
+ }
+ .text-decoration-none {
+ text-decoration: none !important;
+ }
+ .text-break {
+ word-break: break-word !important;
+ overflow-wrap: break-word !important;
+ }
+ .text-reset {
+ color: inherit !important;
+ }
+ .visible {
+ visibility: visible !important;
+ }
+ .invisible {
+ visibility: hidden !important;
+ }
+ @media print {
+ blockquote,
+ img,
+ pre,
+ tr {
+ page-break-inside: avoid;
+ }
+ *,
+ ::after,
+ ::before {
+ text-shadow: none !important;
+ box-shadow: none !important;
+ }
+ a:not(.btn) {
+ text-decoration: underline;
+ }
+ abbr[title]::after {
+ content: " (" attr(title) ")";
+ }
+ pre {
+ white-space: pre-wrap !important;
+ }
+ blockquote,
+ pre {
+ border: 1px solid #adb5bd;
+ }
+ thead {
+ display: table-header-group;
+ }
+ h2,
+ h3,
+ p {
+ orphans: 3;
+ widows: 3;
+ }
+ h2,
+ h3 {
+ page-break-after: avoid;
+ }
+ @page {
+ size: a3;
+ }
+ .container,
+ body {
+ min-width: 992px !important;
+ max-width: 100%;
+ }
+ .navbar {
+ display: none;
+ }
+ .badge {
+ border: 1px solid #000;
+ }
+ .table {
+ border-collapse: collapse !important;
+ }
+ .table td,
+ .table th {
+ background-color: #fff !important;
+ }
+ .table-bordered td,
+ .table-bordered th {
+ border: 1px solid #626e82 !important;
+ }
+ .table-dark {
+ color: inherit;
+ }
+ .table-dark tbody + tbody,
+ .table-dark td,
+ .table-dark th,
+ .table-dark thead th {
+ border-color: #98a4b8;
+ }
+ .table .thead-dark th {
+ color: inherit;
+ border-color: #98a4b8;
+ }
+ }
+
+ .white {
+ color: #fff !important;
+ }
+ .bg-white {
+ background-color: #fff !important;
+ }
+ .bg-white .card-footer,
+ .bg-white .card-header {
+ background-color: transparent;
+ }
+ .alert-white {
+ border-color: #fff !important;
+ background-color: #fff !important;
+ color: #a6a6a6 !important;
+ }
+ .alert-white .alert-link {
+ color: #919191 !important;
+ }
+ .bullet.bullet-white {
+ background-color: #fff;
+ }
+ .bg-light-white {
+ background-color: rgba(255, 255, 255, 0.15);
+ }
+ .bg-white.badge-glow,
+ .border-white.badge-glow {
+ box-shadow: 0 0 10px #fff;
+ }
+ .overlay-white {
+ background: #fff;
+ background: rgba(255, 255, 255, 0.8);
+ }
+ .btn-white {
+ background-color: #fff !important;
+ color: #fff;
+ }
+ .btn-white:active,
+ .btn-white:focus,
+ .btn-white:hover {
+ color: #fff !important;
+ }
+ .btn-outline-white {
+ border-color: #fff;
+ background-color: transparent;
+ color: #fff;
+ }
+ .btn-outline-white:hover {
+ background-color: #fff;
+ color: #fff !important;
+ }
+ .alert-black,
+ .alert-black .alert-link,
+ .black {
+ color: #000 !important;
+ }
+ .widget-timeline .timeline-items.timeline-icon-white:before {
+ background-color: #fff;
+ }
+ input[type="checkbox"].bg-white + .custom-control-label:before,
+ input[type="radio"].bg-white + .custom-control-label:before {
+ background-color: #fff !important;
+ }
+ input:focus ~ .bg-white {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #fff !important;
+ }
+ .border-white {
+ border: 1px solid #fff !important;
+ }
+ .kanban-container .kanban-board .kanban-item[data-border="white"]:before {
+ background-color: #fff;
+ }
+ .bg-black {
+ background-color: #000 !important;
+ }
+ .bg-black .card-footer,
+ .bg-black .card-header {
+ background-color: transparent;
+ }
+ .alert-black {
+ border-color: #242424 !important;
+ background-color: #242424 !important;
+ }
+ .bullet.bullet-black {
+ background-color: #000;
+ }
+ .bg-light-black {
+ background-color: rgba(0, 0, 0, 0.15);
+ }
+ .bg-black.badge-glow,
+ .border-black.badge-glow {
+ box-shadow: 0 0 10px #000;
+ }
+ .overlay-black {
+ background: #000;
+ background: rgba(0, 0, 0, 0.8);
+ }
+ .btn-black {
+ background-color: #000 !important;
+ color: #fff;
+ }
+ .btn-black:active,
+ .btn-black:focus,
+ .btn-black:hover {
+ color: #fff !important;
+ }
+ .btn-outline-black {
+ border-color: #000;
+ background-color: transparent;
+ color: #000;
+ }
+ .btn-outline-black:hover {
+ background-color: #000;
+ color: #fff !important;
+ }
+ .widget-timeline .timeline-items.timeline-icon-black:before {
+ background-color: #000;
+ }
+ input[type="checkbox"].bg-black + .custom-control-label:before,
+ input[type="radio"].bg-black + .custom-control-label:before {
+ background-color: #000 !important;
+ }
+ input:focus ~ .bg-black {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #000 !important;
+ }
+ .border-black {
+ border: 1px solid #000 !important;
+ }
+ .kanban-container .kanban-board .kanban-item[data-border="black"]:before {
+ background-color: #000;
+ }
+ .bg-primary.bg-lighten-5,
+ .btn-primary.btn-lighten-5 {
+ background-color: #39fcff !important;
+ }
+ .primary.lighten-5 {
+ color: #39fcff !important;
+ }
+ .btn-primary.btn-lighten-5 {
+ border-color: #0278d5 !important;
+ }
+ .btn-primary.btn-lighten-5:hover {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ }
+ .btn-primary.btn-lighten-5:active,
+ .btn-primary.btn-lighten-5:focus {
+ border-color: #004ba4 !important;
+ background-color: #005152 !important;
+ }
+ .btn-outline-primary.btn-outline-lighten-5 {
+ border-color: #39fcff !important;
+ color: #39fcff !important;
+ }
+ .btn-outline-primary.btn-outline-lighten-5:hover {
+ background-color: #39fcff !important;
+ }
+ .border-primary.border-lighten-5 {
+ border: 1px solid #39fcff !important;
+ }
+ .border-top-primary.border-top-lighten-5 {
+ border-top: 1px solid #39fcff !important;
+ }
+ .border-bottom-primary.border-bottom-lighten-5 {
+ border-bottom: 1px solid #39fcff !important;
+ }
+ .border-left-primary.border-left-lighten-5 {
+ border-left: 1px solid #39fcff !important;
+ }
+ .border-right-primary.border-right-lighten-5 {
+ border-right: 1px solid #39fcff !important;
+ }
+ .overlay-primary.overlay-lighten-5 {
+ background: #39fcff;
+ background: rgba(57, 252, 255, 0.8);
+ }
+ .bg-primary.bg-lighten-4,
+ .btn-primary.btn-lighten-4 {
+ background-color: #1ffbff !important;
+ }
+ .primary.lighten-4 {
+ color: #1ffbff !important;
+ }
+ .btn-primary.btn-lighten-4 {
+ border-color: #0278d5 !important;
+ }
+ .btn-primary.btn-lighten-4:hover {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ }
+ .btn-primary.btn-lighten-4:active,
+ .btn-primary.btn-lighten-4:focus {
+ border-color: #004ba4 !important;
+ background-color: #005152 !important;
+ }
+ .btn-outline-primary.btn-outline-lighten-4 {
+ border-color: #1ffbff !important;
+ color: #1ffbff !important;
+ }
+ .btn-outline-primary.btn-outline-lighten-4:hover {
+ background-color: #1ffbff !important;
+ }
+ .border-primary.border-lighten-4 {
+ border: 1px solid #1ffbff !important;
+ }
+ .border-top-primary.border-top-lighten-4 {
+ border-top: 1px solid #1ffbff !important;
+ }
+ .border-bottom-primary.border-bottom-lighten-4 {
+ border-bottom: 1px solid #1ffbff !important;
+ }
+ .border-left-primary.border-left-lighten-4 {
+ border-left: 1px solid #1ffbff !important;
+ }
+ .border-right-primary.border-right-lighten-4 {
+ border-right: 1px solid #1ffbff !important;
+ }
+ .overlay-primary.overlay-lighten-4 {
+ background: #1ffbff;
+ background: rgba(31, 251, 255, 0.8);
+ }
+ .bg-primary.bg-lighten-3,
+ .btn-primary.btn-lighten-3 {
+ background-color: #06fbff !important;
+ }
+ .primary.lighten-3 {
+ color: #06fbff !important;
+ }
+ .btn-primary.btn-lighten-3 {
+ border-color: #0278d5 !important;
+ }
+ .btn-primary.btn-lighten-3:hover {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ }
+ .btn-primary.btn-lighten-3:active,
+ .btn-primary.btn-lighten-3:focus {
+ border-color: #004ba4 !important;
+ background-color: #005152 !important;
+ }
+ .btn-outline-primary.btn-outline-lighten-3 {
+ border-color: #06fbff !important;
+ color: #06fbff !important;
+ }
+ .btn-outline-primary.btn-outline-lighten-3:hover {
+ background-color: #06fbff !important;
+ }
+ .border-primary.border-lighten-3 {
+ border: 1px solid #06fbff !important;
+ }
+ .border-top-primary.border-top-lighten-3 {
+ border-top: 1px solid #06fbff !important;
+ }
+ .border-bottom-primary.border-bottom-lighten-3 {
+ border-bottom: 1px solid #06fbff !important;
+ }
+ .border-left-primary.border-left-lighten-3 {
+ border-left: 1px solid #06fbff !important;
+ }
+ .border-right-primary.border-right-lighten-3 {
+ border-right: 1px solid #06fbff !important;
+ }
+ .overlay-primary.overlay-lighten-3 {
+ background: #06fbff;
+ background: rgba(6, 251, 255, 0.8);
+ }
+ .bg-primary.bg-lighten-2,
+ .btn-primary.btn-lighten-2 {
+ background-color: #00e7eb !important;
+ }
+ .primary.lighten-2 {
+ color: #00e7eb !important;
+ }
+ .btn-primary.btn-lighten-2 {
+ border-color: #0278d5 !important;
+ }
+ .btn-primary.btn-lighten-2:hover {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ }
+ .btn-primary.btn-lighten-2:active,
+ .btn-primary.btn-lighten-2:focus {
+ border-color: #004ba4 !important;
+ background-color: #005152 !important;
+ }
+ .btn-outline-primary.btn-outline-lighten-2 {
+ border-color: #00e7eb !important;
+ color: #00e7eb !important;
+ }
+ .btn-outline-primary.btn-outline-lighten-2:hover {
+ background-color: #00e7eb !important;
+ }
+ .border-primary.border-lighten-2 {
+ border: 1px solid #00e7eb !important;
+ }
+ .border-top-primary.border-top-lighten-2 {
+ border-top: 1px solid #00e7eb !important;
+ }
+ .border-bottom-primary.border-bottom-lighten-2 {
+ border-bottom: 1px solid #00e7eb !important;
+ }
+ .border-left-primary.border-left-lighten-2 {
+ border-left: 1px solid #00e7eb !important;
+ }
+ .border-right-primary.border-right-lighten-2 {
+ border-right: 1px solid #00e7eb !important;
+ }
+ .overlay-primary.overlay-lighten-2 {
+ background: #00e7eb;
+ background: rgba(0, 231, 235, 0.8);
+ }
+ .bg-primary.bg-lighten-1,
+ .btn-primary.btn-lighten-1 {
+ background-color: #004ba4 !important;
+ }
+ .primary.lighten-1 {
+ color: #004ba4 !important;
+ }
+ .btn-primary.btn-lighten-1 {
+ border-color: #0278d5 !important;
+ }
+ .btn-primary.btn-lighten-1:hover {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ }
+ .btn-primary.btn-lighten-1:active,
+ .btn-primary.btn-lighten-1:focus {
+ border-color: #004ba4 !important;
+ background-color: #005152 !important;
+ }
+ .btn-outline-primary.btn-outline-lighten-1 {
+ border-color: #004ba4 !important;
+ color: #004ba4 !important;
+ }
+ .btn-outline-primary.btn-outline-lighten-1:hover {
+ background-color: #004ba4 !important;
+ }
+ .border-primary.border-lighten-1 {
+ border: 1px solid #004ba4 !important;
+ }
+ .border-top-primary.border-top-lighten-1 {
+ border-top: 1px solid #004ba4 !important;
+ }
+ .border-bottom-primary.border-bottom-lighten-1 {
+ border-bottom: 1px solid #004ba4 !important;
+ }
+ .border-left-primary.border-left-lighten-1 {
+ border-left: 1px solid #004ba4 !important;
+ }
+ .border-right-primary.border-right-lighten-1 {
+ border-right: 1px solid #004ba4 !important;
+ }
+ .overlay-primary.overlay-lighten-1 {
+ background: #004ba4;
+ background: rgba(0, 206, 210, 0.8);
+ }
+ .primary {
+ color: #0677D4 !important;
+ }
+ .bg-primary {
+ background-color: #0677D4 !important;
+ }
+ .bg-primary .card-footer,
+ .bg-primary .card-header {
+ background-color: transparent;
+ }
+ .alert-primary {
+ border-color: #00fbff !important;
+ background-color: #00fbff !important;
+ color: #000506 !important;
+ }
+ .alert-primary .alert-link {
+ color: #000 !important;
+ }
+ .bullet.bullet-primary {
+ background-color: #0677D4;
+ }
+ .bg-light-primary {
+ background-color: rgba(0, 181, 184, 0.15);
+ }
+ .bg-primary.badge-glow,
+ .border-primary.badge-glow {
+ box-shadow: 0 0 10px #0677D4;
+ }
+ .overlay-primary {
+ background: #0677D4;
+ background: rgba(0, 181, 184, 0.8);
+ }
+ .btn-primary {
+ background-color: #0677D4 !important;
+ color: #fff;
+ }
+ .btn-primary:hover {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ color: #fff !important;
+ }
+ .btn-primary:active,
+ .btn-primary:focus {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ color: #fff !important;
+ }
+ .btn-outline-primary {
+ border-color: #0677D4;
+ background-color: transparent;
+ color: #0677D4;
+ }
+ .btn-outline-primary:hover {
+ background-color: #0677D4;
+ color: #fff !important;
+ }
+ .widget-timeline .timeline-items.timeline-icon-primary:before {
+ background-color: #0677D4;
+ }
+ input[type="checkbox"].bg-primary + .custom-control-label:before,
+ input[type="radio"].bg-primary + .custom-control-label:before {
+ background-color: #0677D4 !important;
+ }
+ .bg-primary.bg-darken-1,
+ .btn-primary.btn-darken-1 {
+ background-color: #0278d5 !important;
+ }
+ .border-primary {
+ border: 1px solid #0677D4 !important;
+ }
+ .border-top-primary {
+ border-top: 1px solid #0677D4;
+ }
+ .border-bottom-primary {
+ border-bottom: 1px solid #0677D4;
+ }
+ .border-left-primary {
+ border-left: 1px solid #0677D4;
+ }
+ .border-right-primary {
+ border-right: 1px solid #0677D4;
+ }
+ .primary.darken-1 {
+ color: #0278d5 !important;
+ }
+ .btn-primary.btn-darken-1 {
+ border-color: #0278d5 !important;
+ }
+ .btn-primary.btn-darken-1:hover {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ }
+ .btn-primary.btn-darken-1:active,
+ .btn-primary.btn-darken-1:focus {
+ border-color: #004ba4 !important;
+ background-color: #005152 !important;
+ }
+ .btn-outline-primary.btn-outline-darken-1 {
+ border-color: #0278d5 !important;
+ color: #0278d5 !important;
+ }
+ .btn-outline-primary.btn-outline-darken-1:hover {
+ background-color: #0278d5 !important;
+ }
+ .border-primary.border-darken-1 {
+ border: 1px solid #0278d5 !important;
+ }
+ .border-top-primary.border-top-darken-1 {
+ border-top: 1px solid #0278d5 !important;
+ }
+ .border-bottom-primary.border-bottom-darken-1 {
+ border-bottom: 1px solid #0278d5 !important;
+ }
+ .border-left-primary.border-left-darken-1 {
+ border-left: 1px solid #0278d5 !important;
+ }
+ .border-right-primary.border-right-darken-1 {
+ border-right: 1px solid #0278d5 !important;
+ }
+ .overlay-primary.overlay-darken-1 {
+ background: #0278d5;
+ background: rgba(0, 156, 159, 0.8);
+ }
+ .bg-primary.bg-darken-2,
+ .btn-primary.btn-darken-2 {
+ background-color: #0278d5 !important;
+ }
+ .primary.darken-2 {
+ color: #0278d5 !important;
+ }
+ .btn-primary.btn-darken-2 {
+ border-color: #0278d5 !important;
+ }
+ .btn-primary.btn-darken-2:hover {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ }
+ .btn-primary.btn-darken-2:active,
+ .btn-primary.btn-darken-2:focus {
+ border-color: #004ba4 !important;
+ background-color: #005152 !important;
+ }
+ .btn-outline-primary.btn-outline-darken-2 {
+ border-color: #0278d5 !important;
+ color: #0278d5 !important;
+ }
+ .btn-outline-primary.btn-outline-darken-2:hover {
+ background-color: #0278d5 !important;
+ }
+ .border-primary.border-darken-2 {
+ border: 1px solid #0278d5 !important;
+ }
+ .border-top-primary.border-top-darken-2 {
+ border-top: 1px solid #0278d5 !important;
+ }
+ .border-bottom-primary.border-bottom-darken-2 {
+ border-bottom: 1px solid #0278d5 !important;
+ }
+ .border-left-primary.border-left-darken-2 {
+ border-left: 1px solid #0278d5 !important;
+ }
+ .border-right-primary.border-right-darken-2 {
+ border-right: 1px solid #0278d5 !important;
+ }
+ .overlay-primary.overlay-darken-2 {
+ background: #0278d5;
+ background: rgba(0, 131, 133, 0.8);
+ }
+ .primary.darken-3 {
+ color: #004ba4 !important;
+ }
+ .bg-primary.bg-darken-3 {
+ background-color: #004ba4 !important;
+ }
+ .btn-primary.btn-darken-3,
+ .btn-primary.btn-darken-3:hover {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ }
+ .btn-primary.btn-darken-3:active,
+ .btn-primary.btn-darken-3:focus {
+ border-color: #004ba4 !important;
+ background-color: #005152 !important;
+ }
+ .btn-outline-primary.btn-outline-darken-3 {
+ border-color: #004ba4 !important;
+ color: #004ba4 !important;
+ }
+ .btn-outline-primary.btn-outline-darken-3:hover {
+ background-color: #004ba4 !important;
+ }
+ .border-primary.border-darken-3 {
+ border: 1px solid #004ba4 !important;
+ }
+ .border-top-primary.border-top-darken-3 {
+ border-top: 1px solid #004ba4 !important;
+ }
+ .border-bottom-primary.border-bottom-darken-3 {
+ border-bottom: 1px solid #004ba4 !important;
+ }
+ .border-left-primary.border-left-darken-3 {
+ border-left: 1px solid #004ba4 !important;
+ }
+ .border-right-primary.border-right-darken-3 {
+ border-right: 1px solid #004ba4 !important;
+ }
+ .overlay-primary.overlay-darken-3 {
+ background: #004ba4;
+ background: rgba(0, 106, 108, 0.8);
+ }
+ .bg-primary.bg-darken-4,
+ .btn-primary.btn-darken-4 {
+ background-color: #005152 !important;
+ }
+ .primary.darken-4 {
+ color: #005152 !important;
+ }
+ .btn-primary.btn-darken-4 {
+ border-color: #0278d5 !important;
+ }
+ .btn-primary.btn-darken-4:hover {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ }
+ .btn-primary.btn-darken-4:active,
+ .btn-primary.btn-darken-4:focus {
+ border-color: #004ba4 !important;
+ background-color: #005152 !important;
+ }
+ .btn-outline-primary.btn-outline-darken-4 {
+ border-color: #005152 !important;
+ color: #005152 !important;
+ }
+ .btn-outline-primary.btn-outline-darken-4:hover {
+ background-color: #005152 !important;
+ }
+ .border-primary.border-darken-4 {
+ border: 1px solid #005152 !important;
+ }
+ .border-top-primary.border-top-darken-4 {
+ border-top: 1px solid #005152 !important;
+ }
+ .border-bottom-primary.border-bottom-darken-4 {
+ border-bottom: 1px solid #005152 !important;
+ }
+ .border-left-primary.border-left-darken-4 {
+ border-left: 1px solid #005152 !important;
+ }
+ .border-right-primary.border-right-darken-4 {
+ border-right: 1px solid #005152 !important;
+ }
+ .overlay-primary.overlay-darken-4 {
+ background: #005152;
+ background: rgba(0, 81, 82, 0.8);
+ }
+ .bg-primary.bg-accent-1,
+ .btn-primary.btn-accent-1 {
+ background-color: #bdfdff !important;
+ }
+ .primary.accent-1 {
+ color: #bdfdff !important;
+ }
+ .btn-primary.btn-accent-1 {
+ border-color: #0278d5 !important;
+ }
+ .btn-primary.btn-accent-1:hover {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ }
+ .btn-primary.btn-accent-1:active,
+ .btn-primary.btn-accent-1:focus {
+ border-color: #004ba4 !important;
+ background-color: #005152 !important;
+ }
+ .btn-outline-primary.btn-outline-accent-1 {
+ border-color: #bdfdff !important;
+ color: #bdfdff !important;
+ }
+ .btn-outline-primary.btn-outline-accent-1:hover {
+ background-color: #bdfdff !important;
+ }
+ .border-primary.border-accent-1 {
+ border: 1px solid #bdfdff !important;
+ }
+ .border-top-primary.border-top-accent-1 {
+ border-top: 1px solid #bdfdff !important;
+ }
+ .border-bottom-primary.border-bottom-accent-1 {
+ border-bottom: 1px solid #bdfdff !important;
+ }
+ .border-left-primary.border-left-accent-1 {
+ border-left: 1px solid #bdfdff !important;
+ }
+ .border-right-primary.border-right-accent-1 {
+ border-right: 1px solid #bdfdff !important;
+ }
+ .overlay-primary.overlay-accent-1 {
+ background: #bdfdff;
+ background: rgba(189, 253, 255, 0.8);
+ }
+ .bg-primary.bg-accent-2,
+ .btn-primary.btn-accent-2 {
+ background-color: #8afbff !important;
+ }
+ .primary.accent-2 {
+ color: #8afbff !important;
+ }
+ .btn-primary.btn-accent-2 {
+ border-color: #0278d5 !important;
+ }
+ .btn-primary.btn-accent-2:hover {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ }
+ .btn-primary.btn-accent-2:active,
+ .btn-primary.btn-accent-2:focus {
+ border-color: #004ba4 !important;
+ background-color: #005152 !important;
+ }
+ .btn-outline-primary.btn-outline-accent-2 {
+ border-color: #8afbff !important;
+ color: #8afbff !important;
+ }
+ .btn-outline-primary.btn-outline-accent-2:hover {
+ background-color: #8afbff !important;
+ }
+ .border-primary.border-accent-2 {
+ border: 1px solid #8afbff !important;
+ }
+ .border-top-primary.border-top-accent-2 {
+ border-top: 1px solid #8afbff !important;
+ }
+ .border-bottom-primary.border-bottom-accent-2 {
+ border-bottom: 1px solid #8afbff !important;
+ }
+ .border-left-primary.border-left-accent-2 {
+ border-left: 1px solid #8afbff !important;
+ }
+ .border-right-primary.border-right-accent-2 {
+ border-right: 1px solid #8afbff !important;
+ }
+ .overlay-primary.overlay-accent-2 {
+ background: #8afbff;
+ background: rgba(138, 251, 255, 0.8);
+ }
+ .bg-primary.bg-accent-3,
+ .btn-primary.btn-accent-3 {
+ background-color: #57faff !important;
+ }
+ .primary.accent-3 {
+ color: #57faff !important;
+ }
+ .btn-primary.btn-accent-3 {
+ border-color: #0278d5 !important;
+ }
+ .btn-primary.btn-accent-3:hover {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ }
+ .btn-primary.btn-accent-3:active,
+ .btn-primary.btn-accent-3:focus {
+ border-color: #004ba4 !important;
+ background-color: #005152 !important;
+ }
+ .btn-outline-primary.btn-outline-accent-3 {
+ border-color: #57faff !important;
+ color: #57faff !important;
+ }
+ .btn-outline-primary.btn-outline-accent-3:hover {
+ background-color: #57faff !important;
+ }
+ .border-primary.border-accent-3 {
+ border: 1px solid #57faff !important;
+ }
+ .border-top-primary.border-top-accent-3 {
+ border-top: 1px solid #57faff !important;
+ }
+ .border-bottom-primary.border-bottom-accent-3 {
+ border-bottom: 1px solid #57faff !important;
+ }
+ .border-left-primary.border-left-accent-3 {
+ border-left: 1px solid #57faff !important;
+ }
+ .border-right-primary.border-right-accent-3 {
+ border-right: 1px solid #57faff !important;
+ }
+ .overlay-primary.overlay-accent-3 {
+ background: #57faff;
+ background: rgba(87, 250, 255, 0.8);
+ }
+ .bg-primary.bg-accent-4,
+ .btn-primary.btn-accent-4 {
+ background-color: #3df9ff !important;
+ }
+ .primary.accent-4 {
+ color: #3df9ff !important;
+ }
+ .btn-primary.btn-accent-4 {
+ border-color: #0278d5 !important;
+ }
+ .btn-primary.btn-accent-4:hover {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ }
+ .btn-primary.btn-accent-4:active,
+ .btn-primary.btn-accent-4:focus {
+ border-color: #004ba4 !important;
+ background-color: #005152 !important;
+ }
+ .btn-outline-primary.btn-outline-accent-4 {
+ border-color: #3df9ff !important;
+ color: #3df9ff !important;
+ }
+ .btn-outline-primary.btn-outline-accent-4:hover {
+ background-color: #3df9ff !important;
+ }
+ input:focus ~ .bg-primary {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #3df9ff !important;
+ }
+ .border-primary.border-accent-4 {
+ border: 1px solid #3df9ff !important;
+ }
+ .border-top-primary.border-top-accent-4 {
+ border-top: 1px solid #3df9ff !important;
+ }
+ .border-bottom-primary.border-bottom-accent-4 {
+ border-bottom: 1px solid #3df9ff !important;
+ }
+ .border-left-primary.border-left-accent-4 {
+ border-left: 1px solid #3df9ff !important;
+ }
+ .border-right-primary.border-right-accent-4 {
+ border-right: 1px solid #3df9ff !important;
+ }
+ .overlay-primary.overlay-accent-4 {
+ background: #3df9ff;
+ background: rgba(61, 249, 255, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="primary"]:before {
+ background-color: #3df9ff;
+ }
+ .bg-secondary.bg-lighten-5,
+ .btn-secondary.btn-lighten-5 {
+ background-color: #7a8cac !important;
+ }
+ .secondary.lighten-5 {
+ color: #7a8cac !important;
+ }
+ .btn-secondary.btn-lighten-5 {
+ border-color: #2c3648 !important;
+ }
+ .btn-secondary.btn-lighten-5:hover {
+ border-color: #2c3648 !important;
+ background-color: #232a38 !important;
+ }
+ .btn-secondary.btn-lighten-5:active,
+ .btn-secondary.btn-lighten-5:focus {
+ border-color: #232a38 !important;
+ background-color: #191e28 !important;
+ }
+ .btn-outline-secondary.btn-outline-lighten-5 {
+ border-color: #7a8cac !important;
+ color: #7a8cac !important;
+ }
+ .btn-outline-secondary.btn-outline-lighten-5:hover {
+ background-color: #7a8cac !important;
+ }
+ .border-secondary.border-lighten-5 {
+ border: 1px solid #7a8cac !important;
+ }
+ .border-top-secondary.border-top-lighten-5 {
+ border-top: 1px solid #7a8cac !important;
+ }
+ .border-bottom-secondary.border-bottom-lighten-5 {
+ border-bottom: 1px solid #7a8cac !important;
+ }
+ .border-left-secondary.border-left-lighten-5 {
+ border-left: 1px solid #7a8cac !important;
+ }
+ .border-right-secondary.border-right-lighten-5 {
+ border-right: 1px solid #7a8cac !important;
+ }
+ .overlay-secondary.overlay-lighten-5 {
+ background: #7a8cac;
+ background: rgba(122, 140, 172, 0.8);
+ }
+ .bg-secondary.bg-lighten-4,
+ .btn-secondary.btn-lighten-4 {
+ background-color: #6a7fa3 !important;
+ }
+ .secondary.lighten-4 {
+ color: #6a7fa3 !important;
+ }
+ .btn-secondary.btn-lighten-4 {
+ border-color: #2c3648 !important;
+ }
+ .btn-secondary.btn-lighten-4:hover {
+ border-color: #2c3648 !important;
+ background-color: #232a38 !important;
+ }
+ .btn-secondary.btn-lighten-4:active,
+ .btn-secondary.btn-lighten-4:focus {
+ border-color: #232a38 !important;
+ background-color: #191e28 !important;
+ }
+ .btn-outline-secondary.btn-outline-lighten-4 {
+ border-color: #6a7fa3 !important;
+ color: #6a7fa3 !important;
+ }
+ .btn-outline-secondary.btn-outline-lighten-4:hover {
+ background-color: #6a7fa3 !important;
+ }
+ .border-secondary.border-lighten-4 {
+ border: 1px solid #6a7fa3 !important;
+ }
+ .border-top-secondary.border-top-lighten-4 {
+ border-top: 1px solid #6a7fa3 !important;
+ }
+ .border-bottom-secondary.border-bottom-lighten-4 {
+ border-bottom: 1px solid #6a7fa3 !important;
+ }
+ .border-left-secondary.border-left-lighten-4 {
+ border-left: 1px solid #6a7fa3 !important;
+ }
+ .border-right-secondary.border-right-lighten-4 {
+ border-right: 1px solid #6a7fa3 !important;
+ }
+ .overlay-secondary.overlay-lighten-4 {
+ background: #6a7fa3;
+ background: rgba(106, 127, 163, 0.8);
+ }
+ .bg-secondary.bg-lighten-3,
+ .btn-secondary.btn-lighten-3 {
+ background-color: #5d7296 !important;
+ }
+ .secondary.lighten-3 {
+ color: #5d7296 !important;
+ }
+ .btn-secondary.btn-lighten-3 {
+ border-color: #2c3648 !important;
+ }
+ .btn-secondary.btn-lighten-3:hover {
+ border-color: #2c3648 !important;
+ background-color: #232a38 !important;
+ }
+ .btn-secondary.btn-lighten-3:active,
+ .btn-secondary.btn-lighten-3:focus {
+ border-color: #232a38 !important;
+ background-color: #191e28 !important;
+ }
+ .btn-outline-secondary.btn-outline-lighten-3 {
+ border-color: #5d7296 !important;
+ color: #5d7296 !important;
+ }
+ .btn-outline-secondary.btn-outline-lighten-3:hover {
+ background-color: #5d7296 !important;
+ }
+ .border-secondary.border-lighten-3 {
+ border: 1px solid #5d7296 !important;
+ }
+ .border-top-secondary.border-top-lighten-3 {
+ border-top: 1px solid #5d7296 !important;
+ }
+ .border-bottom-secondary.border-bottom-lighten-3 {
+ border-bottom: 1px solid #5d7296 !important;
+ }
+ .border-left-secondary.border-left-lighten-3 {
+ border-left: 1px solid #5d7296 !important;
+ }
+ .border-right-secondary.border-right-lighten-3 {
+ border-right: 1px solid #5d7296 !important;
+ }
+ .overlay-secondary.overlay-lighten-3 {
+ background: #5d7296;
+ background: rgba(93, 114, 150, 0.8);
+ }
+ .bg-secondary.bg-lighten-2,
+ .btn-secondary.btn-lighten-2 {
+ background-color: #546686 !important;
+ }
+ .secondary.lighten-2 {
+ color: #546686 !important;
+ }
+ .btn-secondary.btn-lighten-2 {
+ border-color: #2c3648 !important;
+ }
+ .btn-secondary.btn-lighten-2:hover {
+ border-color: #2c3648 !important;
+ background-color: #232a38 !important;
+ }
+ .btn-secondary.btn-lighten-2:active,
+ .btn-secondary.btn-lighten-2:focus {
+ border-color: #232a38 !important;
+ background-color: #191e28 !important;
+ }
+ .btn-outline-secondary.btn-outline-lighten-2 {
+ border-color: #546686 !important;
+ color: #546686 !important;
+ }
+ .btn-outline-secondary.btn-outline-lighten-2:hover {
+ background-color: #546686 !important;
+ }
+ .border-secondary.border-lighten-2 {
+ border: 1px solid #546686 !important;
+ }
+ .border-top-secondary.border-top-lighten-2 {
+ border-top: 1px solid #546686 !important;
+ }
+ .border-bottom-secondary.border-bottom-lighten-2 {
+ border-bottom: 1px solid #546686 !important;
+ }
+ .border-left-secondary.border-left-lighten-2 {
+ border-left: 1px solid #546686 !important;
+ }
+ .border-right-secondary.border-right-lighten-2 {
+ border-right: 1px solid #546686 !important;
+ }
+ .overlay-secondary.overlay-lighten-2 {
+ background: #546686;
+ background: rgba(84, 102, 134, 0.8);
+ }
+ .bg-secondary.bg-lighten-1,
+ .btn-secondary.btn-lighten-1 {
+ background-color: #4a5a77 !important;
+ }
+ .secondary.lighten-1 {
+ color: #4a5a77 !important;
+ }
+ .btn-secondary.btn-lighten-1 {
+ border-color: #2c3648 !important;
+ }
+ .btn-secondary.btn-lighten-1:hover {
+ border-color: #2c3648 !important;
+ background-color: #232a38 !important;
+ }
+ .btn-secondary.btn-lighten-1:active,
+ .btn-secondary.btn-lighten-1:focus {
+ border-color: #232a38 !important;
+ background-color: #191e28 !important;
+ }
+ .btn-outline-secondary.btn-outline-lighten-1 {
+ border-color: #4a5a77 !important;
+ color: #4a5a77 !important;
+ }
+ .btn-outline-secondary.btn-outline-lighten-1:hover {
+ background-color: #4a5a77 !important;
+ }
+ .border-secondary.border-lighten-1 {
+ border: 1px solid #4a5a77 !important;
+ }
+ .border-top-secondary.border-top-lighten-1 {
+ border-top: 1px solid #4a5a77 !important;
+ }
+ .border-bottom-secondary.border-bottom-lighten-1 {
+ border-bottom: 1px solid #4a5a77 !important;
+ }
+ .border-left-secondary.border-left-lighten-1 {
+ border-left: 1px solid #4a5a77 !important;
+ }
+ .border-right-secondary.border-right-lighten-1 {
+ border-right: 1px solid #4a5a77 !important;
+ }
+ .overlay-secondary.overlay-lighten-1 {
+ background: #4a5a77;
+ background: rgba(74, 90, 119, 0.8);
+ }
+ .secondary {
+ color: #404e67 !important;
+ }
+ .alert-secondary,
+ .alert-secondary .alert-link {
+ color: #000 !important;
+ }
+ .bg-secondary {
+ background-color: #404e67 !important;
+ }
+ .bg-secondary .card-footer,
+ .bg-secondary .card-header {
+ background-color: transparent;
+ }
+ .alert-secondary {
+ border-color: #5b6f93 !important;
+ background-color: #5b6f93 !important;
+ }
+ .bullet.bullet-secondary {
+ background-color: #404e67;
+ }
+ .bg-light-secondary {
+ background-color: rgba(64, 78, 103, 0.15);
+ }
+ .bg-secondary.badge-glow,
+ .border-secondary.badge-glow {
+ box-shadow: 0 0 10px #404e67;
+ }
+ .overlay-secondary {
+ background: #404e67;
+ background: rgba(64, 78, 103, 0.8);
+ }
+ .btn-secondary {
+ background-color: #404e67 !important;
+ color: #fff;
+ }
+ .btn-secondary:hover {
+ border-color: #364257 !important;
+ background-color: #4a5a77 !important;
+ color: #fff !important;
+ }
+ .btn-secondary:active,
+ .btn-secondary:focus {
+ border-color: #2c3648 !important;
+ background-color: #232a38 !important;
+ color: #fff !important;
+ }
+ .btn-outline-secondary {
+ border-color: #404e67;
+ background-color: transparent;
+ color: #404e67;
+ }
+ .btn-outline-secondary:hover {
+ background-color: #404e67;
+ color: #fff !important;
+ }
+ .widget-timeline .timeline-items.timeline-icon-secondary:before {
+ background-color: #404e67;
+ }
+ input[type="checkbox"].bg-secondary + .custom-control-label:before,
+ input[type="radio"].bg-secondary + .custom-control-label:before {
+ background-color: #404e67 !important;
+ }
+ .bg-secondary.bg-darken-1,
+ .btn-secondary.btn-darken-1 {
+ background-color: #364257 !important;
+ }
+ .border-secondary {
+ border: 1px solid #404e67 !important;
+ }
+ .border-top-secondary {
+ border-top: 1px solid #404e67;
+ }
+ .border-bottom-secondary {
+ border-bottom: 1px solid #404e67;
+ }
+ .border-left-secondary {
+ border-left: 1px solid #404e67;
+ }
+ .border-right-secondary {
+ border-right: 1px solid #404e67;
+ }
+ .secondary.darken-1 {
+ color: #364257 !important;
+ }
+ .btn-secondary.btn-darken-1 {
+ border-color: #2c3648 !important;
+ }
+ .btn-secondary.btn-darken-1:hover {
+ border-color: #2c3648 !important;
+ background-color: #232a38 !important;
+ }
+ .btn-secondary.btn-darken-1:active,
+ .btn-secondary.btn-darken-1:focus {
+ border-color: #232a38 !important;
+ background-color: #191e28 !important;
+ }
+ .btn-outline-secondary.btn-outline-darken-1 {
+ border-color: #364257 !important;
+ color: #364257 !important;
+ }
+ .btn-outline-secondary.btn-outline-darken-1:hover {
+ background-color: #364257 !important;
+ }
+ .border-secondary.border-darken-1 {
+ border: 1px solid #364257 !important;
+ }
+ .border-top-secondary.border-top-darken-1 {
+ border-top: 1px solid #364257 !important;
+ }
+ .border-bottom-secondary.border-bottom-darken-1 {
+ border-bottom: 1px solid #364257 !important;
+ }
+ .border-left-secondary.border-left-darken-1 {
+ border-left: 1px solid #364257 !important;
+ }
+ .border-right-secondary.border-right-darken-1 {
+ border-right: 1px solid #364257 !important;
+ }
+ .overlay-secondary.overlay-darken-1 {
+ background: #364257;
+ background: rgba(54, 66, 87, 0.8);
+ }
+ .bg-secondary.bg-darken-2,
+ .btn-secondary.btn-darken-2 {
+ background-color: #2c3648 !important;
+ }
+ .secondary.darken-2 {
+ color: #2c3648 !important;
+ }
+ .btn-secondary.btn-darken-2 {
+ border-color: #2c3648 !important;
+ }
+ .btn-secondary.btn-darken-2:hover {
+ border-color: #2c3648 !important;
+ background-color: #232a38 !important;
+ }
+ .btn-secondary.btn-darken-2:active,
+ .btn-secondary.btn-darken-2:focus {
+ border-color: #232a38 !important;
+ background-color: #191e28 !important;
+ }
+ .btn-outline-secondary.btn-outline-darken-2 {
+ border-color: #2c3648 !important;
+ color: #2c3648 !important;
+ }
+ .btn-outline-secondary.btn-outline-darken-2:hover {
+ background-color: #2c3648 !important;
+ }
+ .border-secondary.border-darken-2 {
+ border: 1px solid #2c3648 !important;
+ }
+ .border-top-secondary.border-top-darken-2 {
+ border-top: 1px solid #2c3648 !important;
+ }
+ .border-bottom-secondary.border-bottom-darken-2 {
+ border-bottom: 1px solid #2c3648 !important;
+ }
+ .border-left-secondary.border-left-darken-2 {
+ border-left: 1px solid #2c3648 !important;
+ }
+ .border-right-secondary.border-right-darken-2 {
+ border-right: 1px solid #2c3648 !important;
+ }
+ .overlay-secondary.overlay-darken-2 {
+ background: #2c3648;
+ background: rgba(44, 54, 72, 0.8);
+ }
+ .secondary.darken-3 {
+ color: #232a38 !important;
+ }
+ .bg-secondary.bg-darken-3 {
+ background-color: #232a38 !important;
+ }
+ .btn-secondary.btn-darken-3,
+ .btn-secondary.btn-darken-3:hover {
+ border-color: #2c3648 !important;
+ background-color: #232a38 !important;
+ }
+ .btn-secondary.btn-darken-3:active,
+ .btn-secondary.btn-darken-3:focus {
+ border-color: #232a38 !important;
+ background-color: #191e28 !important;
+ }
+ .btn-outline-secondary.btn-outline-darken-3 {
+ border-color: #232a38 !important;
+ color: #232a38 !important;
+ }
+ .btn-outline-secondary.btn-outline-darken-3:hover {
+ background-color: #232a38 !important;
+ }
+ .border-secondary.border-darken-3 {
+ border: 1px solid #232a38 !important;
+ }
+ .border-top-secondary.border-top-darken-3 {
+ border-top: 1px solid #232a38 !important;
+ }
+ .border-bottom-secondary.border-bottom-darken-3 {
+ border-bottom: 1px solid #232a38 !important;
+ }
+ .border-left-secondary.border-left-darken-3 {
+ border-left: 1px solid #232a38 !important;
+ }
+ .border-right-secondary.border-right-darken-3 {
+ border-right: 1px solid #232a38 !important;
+ }
+ .overlay-secondary.overlay-darken-3 {
+ background: #232a38;
+ background: rgba(35, 42, 56, 0.8);
+ }
+ .bg-secondary.bg-darken-4,
+ .btn-secondary.btn-darken-4 {
+ background-color: #191e28 !important;
+ }
+ .secondary.darken-4 {
+ color: #191e28 !important;
+ }
+ .btn-secondary.btn-darken-4 {
+ border-color: #2c3648 !important;
+ }
+ .btn-secondary.btn-darken-4:hover {
+ border-color: #2c3648 !important;
+ background-color: #232a38 !important;
+ }
+ .btn-secondary.btn-darken-4:active,
+ .btn-secondary.btn-darken-4:focus {
+ border-color: #232a38 !important;
+ background-color: #191e28 !important;
+ }
+ .btn-outline-secondary.btn-outline-darken-4 {
+ border-color: #191e28 !important;
+ color: #191e28 !important;
+ }
+ .btn-outline-secondary.btn-outline-darken-4:hover {
+ background-color: #191e28 !important;
+ }
+ input:focus ~ .bg-secondary {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #191e28 !important;
+ }
+ .border-secondary.border-darken-4 {
+ border: 1px solid #191e28 !important;
+ }
+ .border-top-secondary.border-top-darken-4 {
+ border-top: 1px solid #191e28 !important;
+ }
+ .border-bottom-secondary.border-bottom-darken-4 {
+ border-bottom: 1px solid #191e28 !important;
+ }
+ .border-left-secondary.border-left-darken-4 {
+ border-left: 1px solid #191e28 !important;
+ }
+ .border-right-secondary.border-right-darken-4 {
+ border-right: 1px solid #191e28 !important;
+ }
+ .overlay-secondary.overlay-darken-4 {
+ background: #191e28;
+ background: rgba(25, 30, 40, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="secondary"]:before {
+ background-color: #191e28;
+ }
+ .bg-success.bg-lighten-5,
+ .btn-success.btn-lighten-5 {
+ background-color: #78f1cc !important;
+ }
+ .success.lighten-5 {
+ color: #78f1cc !important;
+ }
+ .btn-success.btn-lighten-5 {
+ border-color: #11a578 !important;
+ }
+ .btn-success.btn-lighten-5:hover {
+ border-color: #11a578 !important;
+ background-color: #0f8e67 !important;
+ }
+ .btn-success.btn-lighten-5:active,
+ .btn-success.btn-lighten-5:focus {
+ border-color: #0f8e67 !important;
+ background-color: #0c7757 !important;
+ }
+ .btn-outline-success.btn-outline-lighten-5 {
+ border-color: #78f1cc !important;
+ color: #78f1cc !important;
+ }
+ .btn-outline-success.btn-outline-lighten-5:hover {
+ background-color: #78f1cc !important;
+ }
+ .border-success.border-lighten-5 {
+ border: 1px solid #78f1cc !important;
+ }
+ .border-top-success.border-top-lighten-5 {
+ border-top: 1px solid #78f1cc !important;
+ }
+ .border-bottom-success.border-bottom-lighten-5 {
+ border-bottom: 1px solid #78f1cc !important;
+ }
+ .border-left-success.border-left-lighten-5 {
+ border-left: 1px solid #78f1cc !important;
+ }
+ .border-right-success.border-right-lighten-5 {
+ border-right: 1px solid #78f1cc !important;
+ }
+ .overlay-success.overlay-lighten-5 {
+ background: #78f1cc;
+ background: rgba(120, 241, 204, 0.8);
+ }
+ .bg-success.bg-lighten-4,
+ .btn-success.btn-lighten-4 {
+ background-color: #61eec4 !important;
+ }
+ .success.lighten-4 {
+ color: #61eec4 !important;
+ }
+ .btn-success.btn-lighten-4 {
+ border-color: #11a578 !important;
+ }
+ .btn-success.btn-lighten-4:hover {
+ border-color: #11a578 !important;
+ background-color: #0f8e67 !important;
+ }
+ .btn-success.btn-lighten-4:active,
+ .btn-success.btn-lighten-4:focus {
+ border-color: #0f8e67 !important;
+ background-color: #0c7757 !important;
+ }
+ .btn-outline-success.btn-outline-lighten-4 {
+ border-color: #61eec4 !important;
+ color: #61eec4 !important;
+ }
+ .btn-outline-success.btn-outline-lighten-4:hover {
+ background-color: #61eec4 !important;
+ }
+ .border-success.border-lighten-4 {
+ border: 1px solid #61eec4 !important;
+ }
+ .border-top-success.border-top-lighten-4 {
+ border-top: 1px solid #61eec4 !important;
+ }
+ .border-bottom-success.border-bottom-lighten-4 {
+ border-bottom: 1px solid #61eec4 !important;
+ }
+ .border-left-success.border-left-lighten-4 {
+ border-left: 1px solid #61eec4 !important;
+ }
+ .border-right-success.border-right-lighten-4 {
+ border-right: 1px solid #61eec4 !important;
+ }
+ .overlay-success.overlay-lighten-4 {
+ background: #61eec4;
+ background: rgba(97, 238, 196, 0.8);
+ }
+ .bg-success.bg-lighten-3,
+ .btn-success.btn-lighten-3 {
+ background-color: #49ecbb !important;
+ }
+ .success.lighten-3 {
+ color: #49ecbb !important;
+ }
+ .btn-success.btn-lighten-3 {
+ border-color: #11a578 !important;
+ }
+ .btn-success.btn-lighten-3:hover {
+ border-color: #11a578 !important;
+ background-color: #0f8e67 !important;
+ }
+ .btn-success.btn-lighten-3:active,
+ .btn-success.btn-lighten-3:focus {
+ border-color: #0f8e67 !important;
+ background-color: #0c7757 !important;
+ }
+ .btn-outline-success.btn-outline-lighten-3 {
+ border-color: #49ecbb !important;
+ color: #49ecbb !important;
+ }
+ .btn-outline-success.btn-outline-lighten-3:hover {
+ background-color: #49ecbb !important;
+ }
+ .border-success.border-lighten-3 {
+ border: 1px solid #49ecbb !important;
+ }
+ .border-top-success.border-top-lighten-3 {
+ border-top: 1px solid #49ecbb !important;
+ }
+ .border-bottom-success.border-bottom-lighten-3 {
+ border-bottom: 1px solid #49ecbb !important;
+ }
+ .border-left-success.border-left-lighten-3 {
+ border-left: 1px solid #49ecbb !important;
+ }
+ .border-right-success.border-right-lighten-3 {
+ border-right: 1px solid #49ecbb !important;
+ }
+ .overlay-success.overlay-lighten-3 {
+ background: #49ecbb;
+ background: rgba(73, 236, 187, 0.8);
+ }
+ .bg-success.bg-lighten-2,
+ .btn-success.btn-lighten-2 {
+ background-color: #32eab2 !important;
+ }
+ .success.lighten-2 {
+ color: #32eab2 !important;
+ }
+ .btn-success.btn-lighten-2 {
+ border-color: #11a578 !important;
+ }
+ .btn-success.btn-lighten-2:hover {
+ border-color: #11a578 !important;
+ background-color: #0f8e67 !important;
+ }
+ .btn-success.btn-lighten-2:active,
+ .btn-success.btn-lighten-2:focus {
+ border-color: #0f8e67 !important;
+ background-color: #0c7757 !important;
+ }
+ .btn-outline-success.btn-outline-lighten-2 {
+ border-color: #32eab2 !important;
+ color: #32eab2 !important;
+ }
+ .btn-outline-success.btn-outline-lighten-2:hover {
+ background-color: #32eab2 !important;
+ }
+ .border-success.border-lighten-2 {
+ border: 1px solid #32eab2 !important;
+ }
+ .border-top-success.border-top-lighten-2 {
+ border-top: 1px solid #32eab2 !important;
+ }
+ .border-bottom-success.border-bottom-lighten-2 {
+ border-bottom: 1px solid #32eab2 !important;
+ }
+ .border-left-success.border-left-lighten-2 {
+ border-left: 1px solid #32eab2 !important;
+ }
+ .border-right-success.border-right-lighten-2 {
+ border-right: 1px solid #32eab2 !important;
+ }
+ .overlay-success.overlay-lighten-2 {
+ background: #32eab2;
+ background: rgba(50, 234, 178, 0.8);
+ }
+ .bg-success.bg-lighten-1,
+ .btn-success.btn-lighten-1 {
+ background-color: #1be7aa !important;
+ }
+ .success.lighten-1 {
+ color: #1be7aa !important;
+ }
+ .btn-success.btn-lighten-1 {
+ border-color: #11a578 !important;
+ }
+ .btn-success.btn-lighten-1:hover {
+ border-color: #11a578 !important;
+ background-color: #0f8e67 !important;
+ }
+ .btn-success.btn-lighten-1:active,
+ .btn-success.btn-lighten-1:focus {
+ border-color: #0f8e67 !important;
+ background-color: #0c7757 !important;
+ }
+ .btn-outline-success.btn-outline-lighten-1 {
+ border-color: #1be7aa !important;
+ color: #1be7aa !important;
+ }
+ .btn-outline-success.btn-outline-lighten-1:hover {
+ background-color: #1be7aa !important;
+ }
+ .border-success.border-lighten-1 {
+ border: 1px solid #1be7aa !important;
+ }
+ .border-top-success.border-top-lighten-1 {
+ border-top: 1px solid #1be7aa !important;
+ }
+ .border-bottom-success.border-bottom-lighten-1 {
+ border-bottom: 1px solid #1be7aa !important;
+ }
+ .border-left-success.border-left-lighten-1 {
+ border-left: 1px solid #1be7aa !important;
+ }
+ .border-right-success.border-right-lighten-1 {
+ border-right: 1px solid #1be7aa !important;
+ }
+ .overlay-success.overlay-lighten-1 {
+ background: #1be7aa;
+ background: rgba(27, 231, 170, 0.8);
+ }
+ .success {
+ color: #16d39a !important;
+ }
+ .bg-success {
+ background-color: #16d39a !important;
+ }
+ .bg-success .card-footer,
+ .bg-success .card-header {
+ background-color: transparent;
+ }
+ .alert-success {
+ border-color: #45ecb9 !important;
+ background-color: #45ecb9 !important;
+ color: #053124 !important;
+ }
+ .alert-success .alert-link {
+ color: #010c09 !important;
+ }
+ .bullet.bullet-success {
+ background-color: #16d39a;
+ }
+ .bg-light-success {
+ background-color: rgba(22, 211, 154, 0.15);
+ }
+ .bg-success.badge-glow,
+ .border-success.badge-glow {
+ box-shadow: 0 0 10px #16d39a;
+ }
+ .overlay-success {
+ background: #16d39a;
+ background: rgba(22, 211, 154, 0.8);
+ }
+ .btn-success {
+ background-color: #16d39a !important;
+ color: #fff;
+ }
+ .btn-success:hover {
+ border-color: #14bc89 !important;
+ background-color: #1be7aa !important;
+ color: #fff !important;
+ }
+ .btn-success:active,
+ .btn-success:focus {
+ border-color: #11a578 !important;
+ background-color: #0f8e67 !important;
+ color: #fff !important;
+ }
+ .btn-outline-success {
+ border-color: #16d39a;
+ background-color: transparent;
+ color: #16d39a;
+ }
+ .btn-outline-success:hover {
+ background-color: #16d39a;
+ color: #fff !important;
+ }
+ .widget-timeline .timeline-items.timeline-icon-success:before {
+ background-color: #16d39a;
+ }
+ input[type="checkbox"].bg-success + .custom-control-label:before,
+ input[type="radio"].bg-success + .custom-control-label:before {
+ background-color: #16d39a !important;
+ }
+ .bg-success.bg-darken-1,
+ .btn-success.btn-darken-1 {
+ background-color: #14bc89 !important;
+ }
+ .border-success {
+ border: 1px solid #16d39a !important;
+ }
+ .border-top-success {
+ border-top: 1px solid #16d39a;
+ }
+ .border-bottom-success {
+ border-bottom: 1px solid #16d39a;
+ }
+ .border-left-success {
+ border-left: 1px solid #16d39a;
+ }
+ .border-right-success {
+ border-right: 1px solid #16d39a;
+ }
+ .success.darken-1 {
+ color: #14bc89 !important;
+ }
+ .btn-success.btn-darken-1 {
+ border-color: #11a578 !important;
+ }
+ .btn-success.btn-darken-1:hover {
+ border-color: #11a578 !important;
+ background-color: #0f8e67 !important;
+ }
+ .btn-success.btn-darken-1:active,
+ .btn-success.btn-darken-1:focus {
+ border-color: #0f8e67 !important;
+ background-color: #0c7757 !important;
+ }
+ .btn-outline-success.btn-outline-darken-1 {
+ border-color: #14bc89 !important;
+ color: #14bc89 !important;
+ }
+ .btn-outline-success.btn-outline-darken-1:hover {
+ background-color: #14bc89 !important;
+ }
+ .border-success.border-darken-1 {
+ border: 1px solid #14bc89 !important;
+ }
+ .border-top-success.border-top-darken-1 {
+ border-top: 1px solid #14bc89 !important;
+ }
+ .border-bottom-success.border-bottom-darken-1 {
+ border-bottom: 1px solid #14bc89 !important;
+ }
+ .border-left-success.border-left-darken-1 {
+ border-left: 1px solid #14bc89 !important;
+ }
+ .border-right-success.border-right-darken-1 {
+ border-right: 1px solid #14bc89 !important;
+ }
+ .overlay-success.overlay-darken-1 {
+ background: #14bc89;
+ background: rgba(20, 188, 137, 0.8);
+ }
+ .bg-success.bg-darken-2,
+ .btn-success.btn-darken-2 {
+ background-color: #11a578 !important;
+ }
+ .success.darken-2 {
+ color: #11a578 !important;
+ }
+ .btn-success.btn-darken-2 {
+ border-color: #11a578 !important;
+ }
+ .btn-success.btn-darken-2:hover {
+ border-color: #11a578 !important;
+ background-color: #0f8e67 !important;
+ }
+ .btn-success.btn-darken-2:active,
+ .btn-success.btn-darken-2:focus {
+ border-color: #0f8e67 !important;
+ background-color: #0c7757 !important;
+ }
+ .btn-outline-success.btn-outline-darken-2 {
+ border-color: #11a578 !important;
+ color: #11a578 !important;
+ }
+ .btn-outline-success.btn-outline-darken-2:hover {
+ background-color: #11a578 !important;
+ }
+ .border-success.border-darken-2 {
+ border: 1px solid #11a578 !important;
+ }
+ .border-top-success.border-top-darken-2 {
+ border-top: 1px solid #11a578 !important;
+ }
+ .border-bottom-success.border-bottom-darken-2 {
+ border-bottom: 1px solid #11a578 !important;
+ }
+ .border-left-success.border-left-darken-2 {
+ border-left: 1px solid #11a578 !important;
+ }
+ .border-right-success.border-right-darken-2 {
+ border-right: 1px solid #11a578 !important;
+ }
+ .overlay-success.overlay-darken-2 {
+ background: #11a578;
+ background: rgba(17, 165, 120, 0.8);
+ }
+ .success.darken-3 {
+ color: #0f8e67 !important;
+ }
+ .bg-success.bg-darken-3 {
+ background-color: #0f8e67 !important;
+ }
+ .btn-success.btn-darken-3,
+ .btn-success.btn-darken-3:hover {
+ border-color: #11a578 !important;
+ background-color: #0f8e67 !important;
+ }
+ .btn-success.btn-darken-3:active,
+ .btn-success.btn-darken-3:focus {
+ border-color: #0f8e67 !important;
+ background-color: #0c7757 !important;
+ }
+ .btn-outline-success.btn-outline-darken-3 {
+ border-color: #0f8e67 !important;
+ color: #0f8e67 !important;
+ }
+ .btn-outline-success.btn-outline-darken-3:hover {
+ background-color: #0f8e67 !important;
+ }
+ .border-success.border-darken-3 {
+ border: 1px solid #0f8e67 !important;
+ }
+ .border-top-success.border-top-darken-3 {
+ border-top: 1px solid #0f8e67 !important;
+ }
+ .border-bottom-success.border-bottom-darken-3 {
+ border-bottom: 1px solid #0f8e67 !important;
+ }
+ .border-left-success.border-left-darken-3 {
+ border-left: 1px solid #0f8e67 !important;
+ }
+ .border-right-success.border-right-darken-3 {
+ border-right: 1px solid #0f8e67 !important;
+ }
+ .overlay-success.overlay-darken-3 {
+ background: #0f8e67;
+ background: rgba(15, 142, 103, 0.8);
+ }
+ .bg-success.bg-darken-4,
+ .btn-success.btn-darken-4 {
+ background-color: #0c7757 !important;
+ }
+ .success.darken-4 {
+ color: #0c7757 !important;
+ }
+ .btn-success.btn-darken-4 {
+ border-color: #11a578 !important;
+ }
+ .btn-success.btn-darken-4:hover {
+ border-color: #11a578 !important;
+ background-color: #0f8e67 !important;
+ }
+ .btn-success.btn-darken-4:active,
+ .btn-success.btn-darken-4:focus {
+ border-color: #0f8e67 !important;
+ background-color: #0c7757 !important;
+ }
+ .btn-outline-success.btn-outline-darken-4 {
+ border-color: #0c7757 !important;
+ color: #0c7757 !important;
+ }
+ .btn-outline-success.btn-outline-darken-4:hover {
+ background-color: #0c7757 !important;
+ }
+ .border-success.border-darken-4 {
+ border: 1px solid #0c7757 !important;
+ }
+ .border-top-success.border-top-darken-4 {
+ border-top: 1px solid #0c7757 !important;
+ }
+ .border-bottom-success.border-bottom-darken-4 {
+ border-bottom: 1px solid #0c7757 !important;
+ }
+ .border-left-success.border-left-darken-4 {
+ border-left: 1px solid #0c7757 !important;
+ }
+ .border-right-success.border-right-darken-4 {
+ border-right: 1px solid #0c7757 !important;
+ }
+ .overlay-success.overlay-darken-4 {
+ background: #0c7757;
+ background: rgba(12, 119, 87, 0.8);
+ }
+ .bg-success.bg-accent-1,
+ .btn-success.btn-accent-1 {
+ background-color: #e1fff1 !important;
+ }
+ .success.accent-1 {
+ color: #e1fff1 !important;
+ }
+ .btn-success.btn-accent-1 {
+ border-color: #11a578 !important;
+ }
+ .btn-success.btn-accent-1:hover {
+ border-color: #11a578 !important;
+ background-color: #0f8e67 !important;
+ }
+ .btn-success.btn-accent-1:active,
+ .btn-success.btn-accent-1:focus {
+ border-color: #0f8e67 !important;
+ background-color: #0c7757 !important;
+ }
+ .btn-outline-success.btn-outline-accent-1 {
+ border-color: #e1fff1 !important;
+ color: #e1fff1 !important;
+ }
+ .btn-outline-success.btn-outline-accent-1:hover {
+ background-color: #e1fff1 !important;
+ }
+ .border-success.border-accent-1 {
+ border: 1px solid #e1fff1 !important;
+ }
+ .border-top-success.border-top-accent-1 {
+ border-top: 1px solid #e1fff1 !important;
+ }
+ .border-bottom-success.border-bottom-accent-1 {
+ border-bottom: 1px solid #e1fff1 !important;
+ }
+ .border-left-success.border-left-accent-1 {
+ border-left: 1px solid #e1fff1 !important;
+ }
+ .border-right-success.border-right-accent-1 {
+ border-right: 1px solid #e1fff1 !important;
+ }
+ .overlay-success.overlay-accent-1 {
+ background: #e1fff1;
+ background: rgba(225, 255, 241, 0.8);
+ }
+ .bg-success.bg-accent-2,
+ .btn-success.btn-accent-2 {
+ background-color: #aeffd9 !important;
+ }
+ .success.accent-2 {
+ color: #aeffd9 !important;
+ }
+ .btn-success.btn-accent-2 {
+ border-color: #11a578 !important;
+ }
+ .btn-success.btn-accent-2:hover {
+ border-color: #11a578 !important;
+ background-color: #0f8e67 !important;
+ }
+ .btn-success.btn-accent-2:active,
+ .btn-success.btn-accent-2:focus {
+ border-color: #0f8e67 !important;
+ background-color: #0c7757 !important;
+ }
+ .btn-outline-success.btn-outline-accent-2 {
+ border-color: #aeffd9 !important;
+ color: #aeffd9 !important;
+ }
+ .btn-outline-success.btn-outline-accent-2:hover {
+ background-color: #aeffd9 !important;
+ }
+ .border-success.border-accent-2 {
+ border: 1px solid #aeffd9 !important;
+ }
+ .border-top-success.border-top-accent-2 {
+ border-top: 1px solid #aeffd9 !important;
+ }
+ .border-bottom-success.border-bottom-accent-2 {
+ border-bottom: 1px solid #aeffd9 !important;
+ }
+ .border-left-success.border-left-accent-2 {
+ border-left: 1px solid #aeffd9 !important;
+ }
+ .border-right-success.border-right-accent-2 {
+ border-right: 1px solid #aeffd9 !important;
+ }
+ .overlay-success.overlay-accent-2 {
+ background: #aeffd9;
+ background: rgba(174, 255, 217, 0.8);
+ }
+ .bg-success.bg-accent-3,
+ .btn-success.btn-accent-3 {
+ background-color: #7bffc1 !important;
+ }
+ .success.accent-3 {
+ color: #7bffc1 !important;
+ }
+ .btn-success.btn-accent-3 {
+ border-color: #11a578 !important;
+ }
+ .btn-success.btn-accent-3:hover {
+ border-color: #11a578 !important;
+ background-color: #0f8e67 !important;
+ }
+ .btn-success.btn-accent-3:active,
+ .btn-success.btn-accent-3:focus {
+ border-color: #0f8e67 !important;
+ background-color: #0c7757 !important;
+ }
+ .btn-outline-success.btn-outline-accent-3 {
+ border-color: #7bffc1 !important;
+ color: #7bffc1 !important;
+ }
+ .btn-outline-success.btn-outline-accent-3:hover {
+ background-color: #7bffc1 !important;
+ }
+ .border-success.border-accent-3 {
+ border: 1px solid #7bffc1 !important;
+ }
+ .border-top-success.border-top-accent-3 {
+ border-top: 1px solid #7bffc1 !important;
+ }
+ .border-bottom-success.border-bottom-accent-3 {
+ border-bottom: 1px solid #7bffc1 !important;
+ }
+ .border-left-success.border-left-accent-3 {
+ border-left: 1px solid #7bffc1 !important;
+ }
+ .border-right-success.border-right-accent-3 {
+ border-right: 1px solid #7bffc1 !important;
+ }
+ .overlay-success.overlay-accent-3 {
+ background: #7bffc1;
+ background: rgba(123, 255, 193, 0.8);
+ }
+ .bg-success.bg-accent-4,
+ .btn-success.btn-accent-4 {
+ background-color: #62ffb5 !important;
+ }
+ .success.accent-4 {
+ color: #62ffb5 !important;
+ }
+ .btn-success.btn-accent-4 {
+ border-color: #11a578 !important;
+ }
+ .btn-success.btn-accent-4:hover {
+ border-color: #11a578 !important;
+ background-color: #0f8e67 !important;
+ }
+ .btn-success.btn-accent-4:active,
+ .btn-success.btn-accent-4:focus {
+ border-color: #0f8e67 !important;
+ background-color: #0c7757 !important;
+ }
+ .btn-outline-success.btn-outline-accent-4 {
+ border-color: #62ffb5 !important;
+ color: #62ffb5 !important;
+ }
+ .btn-outline-success.btn-outline-accent-4:hover {
+ background-color: #62ffb5 !important;
+ }
+ input:focus ~ .bg-success {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #62ffb5 !important;
+ }
+ .border-success.border-accent-4 {
+ border: 1px solid #62ffb5 !important;
+ }
+ .border-top-success.border-top-accent-4 {
+ border-top: 1px solid #62ffb5 !important;
+ }
+ .border-bottom-success.border-bottom-accent-4 {
+ border-bottom: 1px solid #62ffb5 !important;
+ }
+ .border-left-success.border-left-accent-4 {
+ border-left: 1px solid #62ffb5 !important;
+ }
+ .border-right-success.border-right-accent-4 {
+ border-right: 1px solid #62ffb5 !important;
+ }
+ .btn-info.btn-lighten-5,
+ .btn-info.btn-lighten-5:hover {
+ border-color: #1ab0c3 !important;
+ }
+ .overlay-success.overlay-accent-4 {
+ background: #62ffb5;
+ background: rgba(98, 255, 181, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="success"]:before {
+ background-color: #62ffb5;
+ }
+ .bg-info.bg-lighten-5,
+ .btn-info.btn-lighten-5 {
+ background-color: #9ee8f2 !important;
+ }
+ .info.lighten-5 {
+ color: #9ee8f2 !important;
+ }
+ .btn-info.btn-lighten-5:hover {
+ background-color: #179bad !important;
+ }
+ .btn-info.btn-lighten-5:active,
+ .btn-info.btn-lighten-5:focus {
+ border-color: #179bad !important;
+ background-color: #148796 !important;
+ }
+ .btn-outline-info.btn-outline-lighten-5 {
+ border-color: #9ee8f2 !important;
+ color: #9ee8f2 !important;
+ }
+ .btn-outline-info.btn-outline-lighten-5:hover {
+ background-color: #9ee8f2 !important;
+ }
+ .border-info.border-lighten-5 {
+ border: 1px solid #9ee8f2 !important;
+ }
+ .border-top-info.border-top-lighten-5 {
+ border-top: 1px solid #9ee8f2 !important;
+ }
+ .border-bottom-info.border-bottom-lighten-5 {
+ border-bottom: 1px solid #9ee8f2 !important;
+ }
+ .border-left-info.border-left-lighten-5 {
+ border-left: 1px solid #9ee8f2 !important;
+ }
+ .border-right-info.border-right-lighten-5 {
+ border-right: 1px solid #9ee8f2 !important;
+ }
+ .btn-info.btn-lighten-4,
+ .btn-info.btn-lighten-4:hover {
+ border-color: #1ab0c3 !important;
+ }
+ .overlay-info.overlay-lighten-5 {
+ background: #9ee8f2;
+ background: rgba(158, 232, 242, 0.8);
+ }
+ .bg-info.bg-lighten-4,
+ .btn-info.btn-lighten-4 {
+ background-color: #87e3ef !important;
+ }
+ .info.lighten-4 {
+ color: #87e3ef !important;
+ }
+ .btn-info.btn-lighten-4:hover {
+ background-color: #179bad !important;
+ }
+ .btn-info.btn-lighten-4:active,
+ .btn-info.btn-lighten-4:focus {
+ border-color: #179bad !important;
+ background-color: #148796 !important;
+ }
+ .btn-outline-info.btn-outline-lighten-4 {
+ border-color: #87e3ef !important;
+ color: #87e3ef !important;
+ }
+ .btn-outline-info.btn-outline-lighten-4:hover {
+ background-color: #87e3ef !important;
+ }
+ .border-info.border-lighten-4 {
+ border: 1px solid #87e3ef !important;
+ }
+ .border-top-info.border-top-lighten-4 {
+ border-top: 1px solid #87e3ef !important;
+ }
+ .border-bottom-info.border-bottom-lighten-4 {
+ border-bottom: 1px solid #87e3ef !important;
+ }
+ .border-left-info.border-left-lighten-4 {
+ border-left: 1px solid #87e3ef !important;
+ }
+ .border-right-info.border-right-lighten-4 {
+ border-right: 1px solid #87e3ef !important;
+ }
+ .btn-info.btn-lighten-3,
+ .btn-info.btn-lighten-3:hover {
+ border-color: #1ab0c3 !important;
+ }
+ .overlay-info.overlay-lighten-4 {
+ background: #87e3ef;
+ background: rgba(135, 227, 239, 0.8);
+ }
+ .bg-info.bg-lighten-3,
+ .btn-info.btn-lighten-3 {
+ background-color: #71deec !important;
+ }
+ .info.lighten-3 {
+ color: #71deec !important;
+ }
+ .btn-info.btn-lighten-3:hover {
+ background-color: #179bad !important;
+ }
+ .btn-info.btn-lighten-3:active,
+ .btn-info.btn-lighten-3:focus {
+ border-color: #179bad !important;
+ background-color: #148796 !important;
+ }
+ .btn-outline-info.btn-outline-lighten-3 {
+ border-color: #71deec !important;
+ color: #71deec !important;
+ }
+ .btn-outline-info.btn-outline-lighten-3:hover {
+ background-color: #71deec !important;
+ }
+ .border-info.border-lighten-3 {
+ border: 1px solid #71deec !important;
+ }
+ .border-top-info.border-top-lighten-3 {
+ border-top: 1px solid #71deec !important;
+ }
+ .border-bottom-info.border-bottom-lighten-3 {
+ border-bottom: 1px solid #71deec !important;
+ }
+ .border-left-info.border-left-lighten-3 {
+ border-left: 1px solid #71deec !important;
+ }
+ .border-right-info.border-right-lighten-3 {
+ border-right: 1px solid #71deec !important;
+ }
+ .btn-info.btn-lighten-2,
+ .btn-info.btn-lighten-2:hover {
+ border-color: #1ab0c3 !important;
+ }
+ .overlay-info.overlay-lighten-3 {
+ background: #71deec;
+ background: rgba(113, 222, 236, 0.8);
+ }
+ .bg-info.bg-lighten-2,
+ .btn-info.btn-lighten-2 {
+ background-color: #5ad9e9 !important;
+ }
+ .info.lighten-2 {
+ color: #5ad9e9 !important;
+ }
+ .btn-info.btn-lighten-2:hover {
+ background-color: #179bad !important;
+ }
+ .btn-info.btn-lighten-2:active,
+ .btn-info.btn-lighten-2:focus {
+ border-color: #179bad !important;
+ background-color: #148796 !important;
+ }
+ .btn-outline-info.btn-outline-lighten-2 {
+ border-color: #5ad9e9 !important;
+ color: #5ad9e9 !important;
+ }
+ .btn-outline-info.btn-outline-lighten-2:hover {
+ background-color: #5ad9e9 !important;
+ }
+ .border-info.border-lighten-2 {
+ border: 1px solid #5ad9e9 !important;
+ }
+ .border-top-info.border-top-lighten-2 {
+ border-top: 1px solid #5ad9e9 !important;
+ }
+ .border-bottom-info.border-bottom-lighten-2 {
+ border-bottom: 1px solid #5ad9e9 !important;
+ }
+ .border-left-info.border-left-lighten-2 {
+ border-left: 1px solid #5ad9e9 !important;
+ }
+ .border-right-info.border-right-lighten-2 {
+ border-right: 1px solid #5ad9e9 !important;
+ }
+ .btn-info.btn-lighten-1,
+ .btn-info.btn-lighten-1:hover {
+ border-color: #1ab0c3 !important;
+ }
+ .overlay-info.overlay-lighten-2 {
+ background: #5ad9e9;
+ background: rgba(90, 217, 233, 0.8);
+ }
+ .bg-info.bg-lighten-1,
+ .btn-info.btn-lighten-1 {
+ background-color: #44d3e6 !important;
+ }
+ .info.lighten-1 {
+ color: #44d3e6 !important;
+ }
+ .btn-info.btn-lighten-1:hover {
+ background-color: #179bad !important;
+ }
+ .btn-info.btn-lighten-1:active,
+ .btn-info.btn-lighten-1:focus {
+ border-color: #179bad !important;
+ background-color: #148796 !important;
+ }
+ .btn-outline-info.btn-outline-lighten-1 {
+ border-color: #44d3e6 !important;
+ color: #44d3e6 !important;
+ }
+ .btn-outline-info.btn-outline-lighten-1:hover {
+ background-color: #44d3e6 !important;
+ }
+ .border-info.border-lighten-1 {
+ border: 1px solid #44d3e6 !important;
+ }
+ .border-top-info.border-top-lighten-1 {
+ border-top: 1px solid #44d3e6 !important;
+ }
+ .border-bottom-info.border-bottom-lighten-1 {
+ border-bottom: 1px solid #44d3e6 !important;
+ }
+ .border-left-info.border-left-lighten-1 {
+ border-left: 1px solid #44d3e6 !important;
+ }
+ .border-right-info.border-right-lighten-1 {
+ border-right: 1px solid #44d3e6 !important;
+ }
+ .overlay-info.overlay-lighten-1 {
+ background: #44d3e6;
+ background: rgba(68, 211, 230, 0.8);
+ }
+ .info {
+ color: #2dcee3 !important;
+ }
+ .bg-info {
+ background-color: #2dcee3 !important;
+ }
+ .bg-info .card-footer,
+ .bg-info .card-header {
+ background-color: transparent;
+ }
+ .alert-info {
+ border-color: #6cddeb !important;
+ background-color: #6cddeb !important;
+ color: #0b4a53 !important;
+ }
+ .alert-info .alert-link {
+ color: #062a2f !important;
+ }
+ .bullet.bullet-info {
+ background-color: #2dcee3;
+ }
+ .bg-light-info {
+ background-color: rgba(45, 206, 227, 0.15);
+ }
+ .bg-info.badge-glow,
+ .border-info.badge-glow {
+ box-shadow: 0 0 10px #2dcee3;
+ }
+ .overlay-info {
+ background: #2dcee3;
+ background: rgba(45, 206, 227, 0.8);
+ }
+ .btn-info {
+ background-color: #2dcee3 !important;
+ color: #fff;
+ }
+ .btn-info:hover {
+ border-color: #1dc4da !important;
+ background-color: #44d3e6 !important;
+ color: #fff !important;
+ }
+ .btn-info:active,
+ .btn-info:focus {
+ border-color: #1ab0c3 !important;
+ background-color: #179bad !important;
+ color: #fff !important;
+ }
+ .btn-outline-info {
+ border-color: #2dcee3;
+ background-color: transparent;
+ color: #2dcee3;
+ }
+ .btn-outline-info:hover,
+ .widget-timeline .timeline-items.timeline-icon-info:before {
+ background-color: #2dcee3;
+ }
+ .btn-outline-info:hover {
+ color: #fff !important;
+ }
+ input[type="checkbox"].bg-info + .custom-control-label:before,
+ input[type="radio"].bg-info + .custom-control-label:before {
+ background-color: #2dcee3 !important;
+ }
+ .bg-info.bg-darken-1,
+ .btn-info.btn-darken-1 {
+ background-color: #1dc4da !important;
+ }
+ .border-info {
+ border: 1px solid #2dcee3 !important;
+ }
+ .border-top-info {
+ border-top: 1px solid #2dcee3;
+ }
+ .border-bottom-info {
+ border-bottom: 1px solid #2dcee3;
+ }
+ .border-left-info {
+ border-left: 1px solid #2dcee3;
+ }
+ .border-right-info {
+ border-right: 1px solid #2dcee3;
+ }
+ .info.darken-1 {
+ color: #1dc4da !important;
+ }
+ .btn-info.btn-darken-1 {
+ border-color: #1ab0c3 !important;
+ }
+ .btn-info.btn-darken-1:hover {
+ border-color: #1ab0c3 !important;
+ background-color: #179bad !important;
+ }
+ .btn-info.btn-darken-1:active,
+ .btn-info.btn-darken-1:focus {
+ border-color: #179bad !important;
+ background-color: #148796 !important;
+ }
+ .btn-outline-info.btn-outline-darken-1 {
+ border-color: #1dc4da !important;
+ color: #1dc4da !important;
+ }
+ .btn-outline-info.btn-outline-darken-1:hover {
+ background-color: #1dc4da !important;
+ }
+ .border-info.border-darken-1 {
+ border: 1px solid #1dc4da !important;
+ }
+ .border-top-info.border-top-darken-1 {
+ border-top: 1px solid #1dc4da !important;
+ }
+ .border-bottom-info.border-bottom-darken-1 {
+ border-bottom: 1px solid #1dc4da !important;
+ }
+ .border-left-info.border-left-darken-1 {
+ border-left: 1px solid #1dc4da !important;
+ }
+ .border-right-info.border-right-darken-1 {
+ border-right: 1px solid #1dc4da !important;
+ }
+ .btn-info.btn-darken-2,
+ .btn-info.btn-darken-2:hover {
+ border-color: #1ab0c3 !important;
+ }
+ .overlay-info.overlay-darken-1 {
+ background: #1dc4da;
+ background: rgba(29, 196, 218, 0.8);
+ }
+ .bg-info.bg-darken-2,
+ .btn-info.btn-darken-2 {
+ background-color: #1ab0c3 !important;
+ }
+ .info.darken-2 {
+ color: #1ab0c3 !important;
+ }
+ .btn-info.btn-darken-2:hover {
+ background-color: #179bad !important;
+ }
+ .btn-info.btn-darken-2:active,
+ .btn-info.btn-darken-2:focus {
+ border-color: #179bad !important;
+ background-color: #148796 !important;
+ }
+ .btn-outline-info.btn-outline-darken-2 {
+ border-color: #1ab0c3 !important;
+ color: #1ab0c3 !important;
+ }
+ .btn-outline-info.btn-outline-darken-2:hover {
+ background-color: #1ab0c3 !important;
+ }
+ .border-info.border-darken-2 {
+ border: 1px solid #1ab0c3 !important;
+ }
+ .border-top-info.border-top-darken-2 {
+ border-top: 1px solid #1ab0c3 !important;
+ }
+ .border-bottom-info.border-bottom-darken-2 {
+ border-bottom: 1px solid #1ab0c3 !important;
+ }
+ .border-left-info.border-left-darken-2 {
+ border-left: 1px solid #1ab0c3 !important;
+ }
+ .border-right-info.border-right-darken-2 {
+ border-right: 1px solid #1ab0c3 !important;
+ }
+ .overlay-info.overlay-darken-2 {
+ background: #1ab0c3;
+ background: rgba(26, 176, 195, 0.8);
+ }
+ .info.darken-3 {
+ color: #179bad !important;
+ }
+ .bg-info.bg-darken-3 {
+ background-color: #179bad !important;
+ }
+ .btn-info.btn-darken-3,
+ .btn-info.btn-darken-3:hover {
+ border-color: #1ab0c3 !important;
+ background-color: #179bad !important;
+ }
+ .btn-info.btn-darken-3:active,
+ .btn-info.btn-darken-3:focus {
+ border-color: #179bad !important;
+ background-color: #148796 !important;
+ }
+ .btn-outline-info.btn-outline-darken-3 {
+ border-color: #179bad !important;
+ color: #179bad !important;
+ }
+ .btn-outline-info.btn-outline-darken-3:hover {
+ background-color: #179bad !important;
+ }
+ .border-info.border-darken-3 {
+ border: 1px solid #179bad !important;
+ }
+ .border-top-info.border-top-darken-3 {
+ border-top: 1px solid #179bad !important;
+ }
+ .border-bottom-info.border-bottom-darken-3 {
+ border-bottom: 1px solid #179bad !important;
+ }
+ .border-left-info.border-left-darken-3 {
+ border-left: 1px solid #179bad !important;
+ }
+ .border-right-info.border-right-darken-3 {
+ border-right: 1px solid #179bad !important;
+ }
+ .btn-info.btn-darken-4,
+ .btn-info.btn-darken-4:hover {
+ border-color: #1ab0c3 !important;
+ }
+ .overlay-info.overlay-darken-3 {
+ background: #179bad;
+ background: rgba(23, 155, 173, 0.8);
+ }
+ .bg-info.bg-darken-4,
+ .btn-info.btn-darken-4 {
+ background-color: #148796 !important;
+ }
+ .info.darken-4 {
+ color: #148796 !important;
+ }
+ .btn-info.btn-darken-4:hover {
+ background-color: #179bad !important;
+ }
+ .btn-info.btn-darken-4:active,
+ .btn-info.btn-darken-4:focus {
+ border-color: #179bad !important;
+ background-color: #148796 !important;
+ }
+ .btn-outline-info.btn-outline-darken-4 {
+ border-color: #148796 !important;
+ color: #148796 !important;
+ }
+ .btn-outline-info.btn-outline-darken-4:hover {
+ background-color: #148796 !important;
+ }
+ .border-info.border-darken-4 {
+ border: 1px solid #148796 !important;
+ }
+ .border-top-info.border-top-darken-4 {
+ border-top: 1px solid #148796 !important;
+ }
+ .border-bottom-info.border-bottom-darken-4 {
+ border-bottom: 1px solid #148796 !important;
+ }
+ .border-left-info.border-left-darken-4 {
+ border-left: 1px solid #148796 !important;
+ }
+ .border-right-info.border-right-darken-4 {
+ border-right: 1px solid #148796 !important;
+ }
+ .btn-info.btn-accent-1,
+ .btn-info.btn-accent-1:hover {
+ border-color: #1ab0c3 !important;
+ }
+ .overlay-info.overlay-darken-4 {
+ background: #148796;
+ background: rgba(20, 135, 150, 0.8);
+ }
+ .bg-info.bg-accent-1,
+ .btn-info.btn-accent-1 {
+ background-color: #feffff !important;
+ }
+ .info.accent-1 {
+ color: #feffff !important;
+ }
+ .btn-info.btn-accent-1:hover {
+ background-color: #179bad !important;
+ }
+ .btn-info.btn-accent-1:active,
+ .btn-info.btn-accent-1:focus {
+ border-color: #179bad !important;
+ background-color: #148796 !important;
+ }
+ .btn-outline-info.btn-outline-accent-1 {
+ border-color: #feffff !important;
+ color: #feffff !important;
+ }
+ .btn-outline-info.btn-outline-accent-1:hover {
+ background-color: #feffff !important;
+ }
+ .border-info.border-accent-1 {
+ border: 1px solid #feffff !important;
+ }
+ .border-top-info.border-top-accent-1 {
+ border-top: 1px solid #feffff !important;
+ }
+ .border-bottom-info.border-bottom-accent-1 {
+ border-bottom: 1px solid #feffff !important;
+ }
+ .border-left-info.border-left-accent-1 {
+ border-left: 1px solid #feffff !important;
+ }
+ .border-right-info.border-right-accent-1 {
+ border-right: 1px solid #feffff !important;
+ }
+ .btn-info.btn-accent-2,
+ .btn-info.btn-accent-2:hover {
+ border-color: #1ab0c3 !important;
+ }
+ .overlay-info.overlay-accent-1 {
+ background: #feffff;
+ background: rgba(254, 255, 255, 0.8);
+ }
+ .bg-info.bg-accent-2,
+ .btn-info.btn-accent-2 {
+ background-color: #cbf5ff !important;
+ }
+ .info.accent-2 {
+ color: #cbf5ff !important;
+ }
+ .btn-info.btn-accent-2:hover {
+ background-color: #179bad !important;
+ }
+ .btn-info.btn-accent-2:active,
+ .btn-info.btn-accent-2:focus {
+ border-color: #179bad !important;
+ background-color: #148796 !important;
+ }
+ .btn-outline-info.btn-outline-accent-2 {
+ border-color: #cbf5ff !important;
+ color: #cbf5ff !important;
+ }
+ .btn-outline-info.btn-outline-accent-2:hover {
+ background-color: #cbf5ff !important;
+ }
+ .border-info.border-accent-2 {
+ border: 1px solid #cbf5ff !important;
+ }
+ .border-top-info.border-top-accent-2 {
+ border-top: 1px solid #cbf5ff !important;
+ }
+ .border-bottom-info.border-bottom-accent-2 {
+ border-bottom: 1px solid #cbf5ff !important;
+ }
+ .border-left-info.border-left-accent-2 {
+ border-left: 1px solid #cbf5ff !important;
+ }
+ .border-right-info.border-right-accent-2 {
+ border-right: 1px solid #cbf5ff !important;
+ }
+ .btn-info.btn-accent-3,
+ .btn-info.btn-accent-3:hover {
+ border-color: #1ab0c3 !important;
+ }
+ .overlay-info.overlay-accent-2 {
+ background: #cbf5ff;
+ background: rgba(203, 245, 255, 0.8);
+ }
+ .bg-info.bg-accent-3,
+ .btn-info.btn-accent-3 {
+ background-color: #98ecff !important;
+ }
+ .info.accent-3 {
+ color: #98ecff !important;
+ }
+ .btn-info.btn-accent-3:hover {
+ background-color: #179bad !important;
+ }
+ .btn-info.btn-accent-3:active,
+ .btn-info.btn-accent-3:focus {
+ border-color: #179bad !important;
+ background-color: #148796 !important;
+ }
+ .btn-outline-info.btn-outline-accent-3 {
+ border-color: #98ecff !important;
+ color: #98ecff !important;
+ }
+ .btn-outline-info.btn-outline-accent-3:hover {
+ background-color: #98ecff !important;
+ }
+ .border-info.border-accent-3 {
+ border: 1px solid #98ecff !important;
+ }
+ .border-top-info.border-top-accent-3 {
+ border-top: 1px solid #98ecff !important;
+ }
+ .border-bottom-info.border-bottom-accent-3 {
+ border-bottom: 1px solid #98ecff !important;
+ }
+ .border-left-info.border-left-accent-3 {
+ border-left: 1px solid #98ecff !important;
+ }
+ .border-right-info.border-right-accent-3 {
+ border-right: 1px solid #98ecff !important;
+ }
+ .btn-info.btn-accent-4,
+ .btn-info.btn-accent-4:hover {
+ border-color: #1ab0c3 !important;
+ }
+ .overlay-info.overlay-accent-3 {
+ background: #98ecff;
+ background: rgba(152, 236, 255, 0.8);
+ }
+ .bg-info.bg-accent-4,
+ .btn-info.btn-accent-4 {
+ background-color: #7fe7ff !important;
+ }
+ .info.accent-4 {
+ color: #7fe7ff !important;
+ }
+ .btn-info.btn-accent-4:hover {
+ background-color: #179bad !important;
+ }
+ .btn-info.btn-accent-4:active,
+ .btn-info.btn-accent-4:focus {
+ border-color: #179bad !important;
+ background-color: #148796 !important;
+ }
+ .btn-outline-info.btn-outline-accent-4 {
+ border-color: #7fe7ff !important;
+ color: #7fe7ff !important;
+ }
+ .btn-outline-info.btn-outline-accent-4:hover {
+ background-color: #7fe7ff !important;
+ }
+ input:focus ~ .bg-info {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #7fe7ff !important;
+ }
+ .border-info.border-accent-4 {
+ border: 1px solid #7fe7ff !important;
+ }
+ .border-top-info.border-top-accent-4 {
+ border-top: 1px solid #7fe7ff !important;
+ }
+ .border-bottom-info.border-bottom-accent-4 {
+ border-bottom: 1px solid #7fe7ff !important;
+ }
+ .border-left-info.border-left-accent-4 {
+ border-left: 1px solid #7fe7ff !important;
+ }
+ .border-right-info.border-right-accent-4 {
+ border-right: 1px solid #7fe7ff !important;
+ }
+ .overlay-info.overlay-accent-4 {
+ background: #7fe7ff;
+ background: rgba(127, 231, 255, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="info"]:before {
+ background-color: #7fe7ff;
+ }
+ .bg-warning.bg-lighten-5,
+ .btn-warning.btn-lighten-5 {
+ background-color: #fffdfd !important;
+ }
+ .warning.lighten-5 {
+ color: #fffdfd !important;
+ }
+ .btn-warning.btn-lighten-5 {
+ border-color: #ff864a !important;
+ }
+ .btn-warning.btn-lighten-5:hover {
+ border-color: #ff864a !important;
+ background-color: #ff7531 !important;
+ }
+ .btn-warning.btn-lighten-5:active,
+ .btn-warning.btn-lighten-5:focus {
+ border-color: #ff7531 !important;
+ background-color: #ff6417 !important;
+ }
+ .btn-outline-warning.btn-outline-lighten-5 {
+ border-color: #fffdfd !important;
+ color: #fffdfd !important;
+ }
+ .btn-outline-warning.btn-outline-lighten-5:hover {
+ background-color: #fffdfd !important;
+ }
+ .border-warning.border-lighten-5 {
+ border: 1px solid #fffdfd !important;
+ }
+ .border-top-warning.border-top-lighten-5 {
+ border-top: 1px solid #fffdfd !important;
+ }
+ .border-bottom-warning.border-bottom-lighten-5 {
+ border-bottom: 1px solid #fffdfd !important;
+ }
+ .border-left-warning.border-left-lighten-5 {
+ border-left: 1px solid #fffdfd !important;
+ }
+ .border-right-warning.border-right-lighten-5 {
+ border-right: 1px solid #fffdfd !important;
+ }
+ .overlay-warning.overlay-lighten-5 {
+ background: #fffdfd;
+ background: rgba(255, 253, 253, 0.8);
+ }
+ .bg-warning.bg-lighten-4,
+ .btn-warning.btn-lighten-4 {
+ background-color: #ffece3 !important;
+ }
+ .warning.lighten-4 {
+ color: #ffece3 !important;
+ }
+ .btn-warning.btn-lighten-4 {
+ border-color: #ff864a !important;
+ }
+ .btn-warning.btn-lighten-4:hover {
+ border-color: #ff864a !important;
+ background-color: #ff7531 !important;
+ }
+ .btn-warning.btn-lighten-4:active,
+ .btn-warning.btn-lighten-4:focus {
+ border-color: #ff7531 !important;
+ background-color: #ff6417 !important;
+ }
+ .btn-outline-warning.btn-outline-lighten-4 {
+ border-color: #ffece3 !important;
+ color: #ffece3 !important;
+ }
+ .btn-outline-warning.btn-outline-lighten-4:hover {
+ background-color: #ffece3 !important;
+ }
+ .border-warning.border-lighten-4 {
+ border: 1px solid #ffece3 !important;
+ }
+ .border-top-warning.border-top-lighten-4 {
+ border-top: 1px solid #ffece3 !important;
+ }
+ .border-bottom-warning.border-bottom-lighten-4 {
+ border-bottom: 1px solid #ffece3 !important;
+ }
+ .border-left-warning.border-left-lighten-4 {
+ border-left: 1px solid #ffece3 !important;
+ }
+ .border-right-warning.border-right-lighten-4 {
+ border-right: 1px solid #ffece3 !important;
+ }
+ .overlay-warning.overlay-lighten-4 {
+ background: #ffece3;
+ background: rgba(255, 236, 227, 0.8);
+ }
+ .bg-warning.bg-lighten-3,
+ .btn-warning.btn-lighten-3 {
+ background-color: #ffdbca !important;
+ }
+ .warning.lighten-3 {
+ color: #ffdbca !important;
+ }
+ .btn-warning.btn-lighten-3 {
+ border-color: #ff864a !important;
+ }
+ .btn-warning.btn-lighten-3:hover {
+ border-color: #ff864a !important;
+ background-color: #ff7531 !important;
+ }
+ .btn-warning.btn-lighten-3:active,
+ .btn-warning.btn-lighten-3:focus {
+ border-color: #ff7531 !important;
+ background-color: #ff6417 !important;
+ }
+ .btn-outline-warning.btn-outline-lighten-3 {
+ border-color: #ffdbca !important;
+ color: #ffdbca !important;
+ }
+ .btn-outline-warning.btn-outline-lighten-3:hover {
+ background-color: #ffdbca !important;
+ }
+ .border-warning.border-lighten-3 {
+ border: 1px solid #ffdbca !important;
+ }
+ .border-top-warning.border-top-lighten-3 {
+ border-top: 1px solid #ffdbca !important;
+ }
+ .border-bottom-warning.border-bottom-lighten-3 {
+ border-bottom: 1px solid #ffdbca !important;
+ }
+ .border-left-warning.border-left-lighten-3 {
+ border-left: 1px solid #ffdbca !important;
+ }
+ .border-right-warning.border-right-lighten-3 {
+ border-right: 1px solid #ffdbca !important;
+ }
+ .overlay-warning.overlay-lighten-3 {
+ background: #ffdbca;
+ background: rgba(255, 219, 202, 0.8);
+ }
+ .bg-warning.bg-lighten-2,
+ .btn-warning.btn-lighten-2 {
+ background-color: #ffcab0 !important;
+ }
+ .warning.lighten-2 {
+ color: #ffcab0 !important;
+ }
+ .btn-warning.btn-lighten-2 {
+ border-color: #ff864a !important;
+ }
+ .btn-warning.btn-lighten-2:hover {
+ border-color: #ff864a !important;
+ background-color: #ff7531 !important;
+ }
+ .btn-warning.btn-lighten-2:active,
+ .btn-warning.btn-lighten-2:focus {
+ border-color: #ff7531 !important;
+ background-color: #ff6417 !important;
+ }
+ .btn-outline-warning.btn-outline-lighten-2 {
+ border-color: #ffcab0 !important;
+ color: #ffcab0 !important;
+ }
+ .btn-outline-warning.btn-outline-lighten-2:hover {
+ background-color: #ffcab0 !important;
+ }
+ .border-warning.border-lighten-2 {
+ border: 1px solid #ffcab0 !important;
+ }
+ .border-top-warning.border-top-lighten-2 {
+ border-top: 1px solid #ffcab0 !important;
+ }
+ .border-bottom-warning.border-bottom-lighten-2 {
+ border-bottom: 1px solid #ffcab0 !important;
+ }
+ .border-left-warning.border-left-lighten-2 {
+ border-left: 1px solid #ffcab0 !important;
+ }
+ .border-right-warning.border-right-lighten-2 {
+ border-right: 1px solid #ffcab0 !important;
+ }
+ .overlay-warning.overlay-lighten-2 {
+ background: #ffcab0;
+ background: rgba(255, 202, 176, 0.8);
+ }
+ .bg-warning.bg-lighten-1,
+ .btn-warning.btn-lighten-1 {
+ background-color: #ffb997 !important;
+ }
+ .warning.lighten-1 {
+ color: #ffb997 !important;
+ }
+ .btn-warning.btn-lighten-1 {
+ border-color: #ff864a !important;
+ }
+ .btn-warning.btn-lighten-1:hover {
+ border-color: #ff864a !important;
+ background-color: #ff7531 !important;
+ }
+ .btn-warning.btn-lighten-1:active,
+ .btn-warning.btn-lighten-1:focus {
+ border-color: #ff7531 !important;
+ background-color: #ff6417 !important;
+ }
+ .btn-outline-warning.btn-outline-lighten-1 {
+ border-color: #ffb997 !important;
+ color: #ffb997 !important;
+ }
+ .btn-outline-warning.btn-outline-lighten-1:hover {
+ background-color: #ffb997 !important;
+ }
+ .border-warning.border-lighten-1 {
+ border: 1px solid #ffb997 !important;
+ }
+ .border-top-warning.border-top-lighten-1 {
+ border-top: 1px solid #ffb997 !important;
+ }
+ .border-bottom-warning.border-bottom-lighten-1 {
+ border-bottom: 1px solid #ffb997 !important;
+ }
+ .border-left-warning.border-left-lighten-1 {
+ border-left: 1px solid #ffb997 !important;
+ }
+ .border-right-warning.border-right-lighten-1 {
+ border-right: 1px solid #ffb997 !important;
+ }
+ .overlay-warning.overlay-lighten-1 {
+ background: #ffb997;
+ background: rgba(255, 185, 151, 0.8);
+ }
+ .warning {
+ color: #ffa87d !important;
+ }
+ .bg-warning {
+ background-color: #ffa87d !important;
+ }
+ .bg-warning .card-footer,
+ .bg-warning .card-header {
+ background-color: transparent;
+ }
+ .alert-warning {
+ border-color: #ffd8c4 !important;
+ background-color: #ffd8c4 !important;
+ color: #ca4300 !important;
+ }
+ .alert-warning .alert-link {
+ color: #a13500 !important;
+ }
+ .bullet.bullet-warning {
+ background-color: #ffa87d;
+ }
+ .bg-light-warning {
+ background-color: rgba(255, 168, 125, 0.15);
+ }
+ .bg-warning.badge-glow,
+ .border-warning.badge-glow {
+ box-shadow: 0 0 10px #ffa87d;
+ }
+ .overlay-warning {
+ background: #ffa87d;
+ background: rgba(255, 168, 125, 0.8);
+ }
+ .btn-warning {
+ background-color: #ffa87d !important;
+ color: #fff;
+ }
+ .btn-warning:hover {
+ border-color: #ff9764 !important;
+ background-color: #ffb997 !important;
+ color: #fff !important;
+ }
+ .btn-warning:active,
+ .btn-warning:focus {
+ border-color: #ff864a !important;
+ background-color: #ff7531 !important;
+ color: #fff !important;
+ }
+ .btn-outline-warning {
+ border-color: #ffa87d;
+ background-color: transparent;
+ color: #ffa87d;
+ }
+ .btn-outline-warning:hover {
+ background-color: #ffa87d;
+ color: #fff !important;
+ }
+ .widget-timeline .timeline-items.timeline-icon-warning:before {
+ background-color: #ffa87d;
+ }
+ input[type="checkbox"].bg-warning + .custom-control-label:before,
+ input[type="radio"].bg-warning + .custom-control-label:before {
+ background-color: #ffa87d !important;
+ }
+ .bg-warning.bg-darken-1,
+ .btn-warning.btn-darken-1 {
+ background-color: #ff9764 !important;
+ }
+ .border-warning {
+ border: 1px solid #ffa87d !important;
+ }
+ .border-top-warning {
+ border-top: 1px solid #ffa87d;
+ }
+ .border-bottom-warning {
+ border-bottom: 1px solid #ffa87d;
+ }
+ .border-left-warning {
+ border-left: 1px solid #ffa87d;
+ }
+ .border-right-warning {
+ border-right: 1px solid #ffa87d;
+ }
+ .warning.darken-1 {
+ color: #ff9764 !important;
+ }
+ .btn-warning.btn-darken-1 {
+ border-color: #ff864a !important;
+ }
+ .btn-warning.btn-darken-1:hover {
+ border-color: #ff864a !important;
+ background-color: #ff7531 !important;
+ }
+ .btn-warning.btn-darken-1:active,
+ .btn-warning.btn-darken-1:focus {
+ border-color: #ff7531 !important;
+ background-color: #ff6417 !important;
+ }
+ .btn-outline-warning.btn-outline-darken-1 {
+ border-color: #ff9764 !important;
+ color: #ff9764 !important;
+ }
+ .btn-outline-warning.btn-outline-darken-1:hover {
+ background-color: #ff9764 !important;
+ }
+ .border-warning.border-darken-1 {
+ border: 1px solid #ff9764 !important;
+ }
+ .border-top-warning.border-top-darken-1 {
+ border-top: 1px solid #ff9764 !important;
+ }
+ .border-bottom-warning.border-bottom-darken-1 {
+ border-bottom: 1px solid #ff9764 !important;
+ }
+ .border-left-warning.border-left-darken-1 {
+ border-left: 1px solid #ff9764 !important;
+ }
+ .border-right-warning.border-right-darken-1 {
+ border-right: 1px solid #ff9764 !important;
+ }
+ .overlay-warning.overlay-darken-1 {
+ background: #ff9764;
+ background: rgba(255, 151, 100, 0.8);
+ }
+ .bg-warning.bg-darken-2,
+ .btn-warning.btn-darken-2 {
+ background-color: #ff864a !important;
+ }
+ .warning.darken-2 {
+ color: #ff864a !important;
+ }
+ .btn-warning.btn-darken-2 {
+ border-color: #ff864a !important;
+ }
+ .btn-warning.btn-darken-2:hover {
+ border-color: #ff864a !important;
+ background-color: #ff7531 !important;
+ }
+ .btn-warning.btn-darken-2:active,
+ .btn-warning.btn-darken-2:focus {
+ border-color: #ff7531 !important;
+ background-color: #ff6417 !important;
+ }
+ .btn-outline-warning.btn-outline-darken-2 {
+ border-color: #ff864a !important;
+ color: #ff864a !important;
+ }
+ .btn-outline-warning.btn-outline-darken-2:hover {
+ background-color: #ff864a !important;
+ }
+ .border-warning.border-darken-2 {
+ border: 1px solid #ff864a !important;
+ }
+ .border-top-warning.border-top-darken-2 {
+ border-top: 1px solid #ff864a !important;
+ }
+ .border-bottom-warning.border-bottom-darken-2 {
+ border-bottom: 1px solid #ff864a !important;
+ }
+ .border-left-warning.border-left-darken-2 {
+ border-left: 1px solid #ff864a !important;
+ }
+ .border-right-warning.border-right-darken-2 {
+ border-right: 1px solid #ff864a !important;
+ }
+ .overlay-warning.overlay-darken-2 {
+ background: #ff864a;
+ background: rgba(255, 134, 74, 0.8);
+ }
+ .warning.darken-3 {
+ color: #ff7531 !important;
+ }
+ .bg-warning.bg-darken-3 {
+ background-color: #ff7531 !important;
+ }
+ .btn-warning.btn-darken-3,
+ .btn-warning.btn-darken-3:hover {
+ border-color: #ff864a !important;
+ background-color: #ff7531 !important;
+ }
+ .btn-warning.btn-darken-3:active,
+ .btn-warning.btn-darken-3:focus {
+ border-color: #ff7531 !important;
+ background-color: #ff6417 !important;
+ }
+ .btn-outline-warning.btn-outline-darken-3 {
+ border-color: #ff7531 !important;
+ color: #ff7531 !important;
+ }
+ .btn-outline-warning.btn-outline-darken-3:hover {
+ background-color: #ff7531 !important;
+ }
+ .border-warning.border-darken-3 {
+ border: 1px solid #ff7531 !important;
+ }
+ .border-top-warning.border-top-darken-3 {
+ border-top: 1px solid #ff7531 !important;
+ }
+ .border-bottom-warning.border-bottom-darken-3 {
+ border-bottom: 1px solid #ff7531 !important;
+ }
+ .border-left-warning.border-left-darken-3 {
+ border-left: 1px solid #ff7531 !important;
+ }
+ .border-right-warning.border-right-darken-3 {
+ border-right: 1px solid #ff7531 !important;
+ }
+ .overlay-warning.overlay-darken-3 {
+ background: #ff7531;
+ background: rgba(255, 117, 49, 0.8);
+ }
+ .bg-warning.bg-darken-4,
+ .btn-warning.btn-darken-4 {
+ background-color: #ff6417 !important;
+ }
+ .warning.darken-4 {
+ color: #ff6417 !important;
+ }
+ .btn-warning.btn-darken-4 {
+ border-color: #ff864a !important;
+ }
+ .btn-warning.btn-darken-4:hover {
+ border-color: #ff864a !important;
+ background-color: #ff7531 !important;
+ }
+ .btn-warning.btn-darken-4:active,
+ .btn-warning.btn-darken-4:focus {
+ border-color: #ff7531 !important;
+ background-color: #ff6417 !important;
+ }
+ .btn-outline-warning.btn-outline-darken-4 {
+ border-color: #ff6417 !important;
+ color: #ff6417 !important;
+ }
+ .btn-outline-warning.btn-outline-darken-4:hover {
+ background-color: #ff6417 !important;
+ }
+ .border-warning.border-darken-4 {
+ border: 1px solid #ff6417 !important;
+ }
+ .border-top-warning.border-top-darken-4 {
+ border-top: 1px solid #ff6417 !important;
+ }
+ .border-bottom-warning.border-bottom-darken-4 {
+ border-bottom: 1px solid #ff6417 !important;
+ }
+ .border-left-warning.border-left-darken-4 {
+ border-left: 1px solid #ff6417 !important;
+ }
+ .border-right-warning.border-right-darken-4 {
+ border-right: 1px solid #ff6417 !important;
+ }
+ .overlay-warning.overlay-darken-4 {
+ background: #ff6417;
+ background: rgba(255, 100, 23, 0.8);
+ }
+ .bg-warning.bg-accent-1,
+ .btn-warning.btn-accent-1 {
+ background-color: #fff5ef !important;
+ }
+ .warning.accent-1 {
+ color: #fff5ef !important;
+ }
+ .btn-warning.btn-accent-1 {
+ border-color: #ff864a !important;
+ }
+ .btn-warning.btn-accent-1:hover {
+ border-color: #ff864a !important;
+ background-color: #ff7531 !important;
+ }
+ .btn-warning.btn-accent-1:active,
+ .btn-warning.btn-accent-1:focus {
+ border-color: #ff7531 !important;
+ background-color: #ff6417 !important;
+ }
+ .btn-outline-warning.btn-outline-accent-1 {
+ border-color: #fff5ef !important;
+ color: #fff5ef !important;
+ }
+ .btn-outline-warning.btn-outline-accent-1:hover {
+ background-color: #fff5ef !important;
+ }
+ .border-warning.border-accent-1 {
+ border: 1px solid #fff5ef !important;
+ }
+ .border-top-warning.border-top-accent-1 {
+ border-top: 1px solid #fff5ef !important;
+ }
+ .border-bottom-warning.border-bottom-accent-1 {
+ border-bottom: 1px solid #fff5ef !important;
+ }
+ .border-left-warning.border-left-accent-1 {
+ border-left: 1px solid #fff5ef !important;
+ }
+ .border-right-warning.border-right-accent-1 {
+ border-right: 1px solid #fff5ef !important;
+ }
+ .overlay-warning.overlay-accent-1 {
+ background: #fff5ef;
+ background: rgba(255, 245, 239, 0.8);
+ }
+ .bg-warning.bg-accent-2,
+ .btn-warning.btn-accent-2 {
+ background-color: #ffe5d8 !important;
+ }
+ .warning.accent-2 {
+ color: #ffe5d8 !important;
+ }
+ .btn-warning.btn-accent-2 {
+ border-color: #ff864a !important;
+ }
+ .btn-warning.btn-accent-2:hover {
+ border-color: #ff864a !important;
+ background-color: #ff7531 !important;
+ }
+ .btn-warning.btn-accent-2:active,
+ .btn-warning.btn-accent-2:focus {
+ border-color: #ff7531 !important;
+ background-color: #ff6417 !important;
+ }
+ .btn-outline-warning.btn-outline-accent-2 {
+ border-color: #ffe5d8 !important;
+ color: #ffe5d8 !important;
+ }
+ .btn-outline-warning.btn-outline-accent-2:hover {
+ background-color: #ffe5d8 !important;
+ }
+ .border-warning.border-accent-2 {
+ border: 1px solid #ffe5d8 !important;
+ }
+ .border-top-warning.border-top-accent-2 {
+ border-top: 1px solid #ffe5d8 !important;
+ }
+ .border-bottom-warning.border-bottom-accent-2 {
+ border-bottom: 1px solid #ffe5d8 !important;
+ }
+ .border-left-warning.border-left-accent-2 {
+ border-left: 1px solid #ffe5d8 !important;
+ }
+ .border-right-warning.border-right-accent-2 {
+ border-right: 1px solid #ffe5d8 !important;
+ }
+ .overlay-warning.overlay-accent-2 {
+ background: #ffe5d8;
+ background: rgba(255, 229, 216, 0.8);
+ }
+ .bg-warning.bg-accent-3,
+ .btn-warning.btn-accent-3 {
+ background-color: #fff6f3 !important;
+ }
+ .warning.accent-3 {
+ color: #fff6f3 !important;
+ }
+ .btn-warning.btn-accent-3 {
+ border-color: #ff864a !important;
+ }
+ .btn-warning.btn-accent-3:hover {
+ border-color: #ff864a !important;
+ background-color: #ff7531 !important;
+ }
+ .btn-warning.btn-accent-3:active,
+ .btn-warning.btn-accent-3:focus {
+ border-color: #ff7531 !important;
+ background-color: #ff6417 !important;
+ }
+ .btn-outline-warning.btn-outline-accent-3 {
+ border-color: #fff6f3 !important;
+ color: #fff6f3 !important;
+ }
+ .btn-outline-warning.btn-outline-accent-3:hover {
+ background-color: #fff6f3 !important;
+ }
+ .border-warning.border-accent-3 {
+ border: 1px solid #fff6f3 !important;
+ }
+ .border-top-warning.border-top-accent-3 {
+ border-top: 1px solid #fff6f3 !important;
+ }
+ .border-bottom-warning.border-bottom-accent-3 {
+ border-bottom: 1px solid #fff6f3 !important;
+ }
+ .border-left-warning.border-left-accent-3 {
+ border-left: 1px solid #fff6f3 !important;
+ }
+ .border-right-warning.border-right-accent-3 {
+ border-right: 1px solid #fff6f3 !important;
+ }
+ .overlay-warning.overlay-accent-3 {
+ background: #fff6f3;
+ background: rgba(255, 246, 243, 0.8);
+ }
+ .bg-warning.bg-accent-4,
+ .btn-warning.btn-accent-4 {
+ background-color: #ffe3da !important;
+ }
+ .warning.accent-4 {
+ color: #ffe3da !important;
+ }
+ .btn-warning.btn-accent-4 {
+ border-color: #ff864a !important;
+ }
+ .btn-warning.btn-accent-4:hover {
+ border-color: #ff864a !important;
+ background-color: #ff7531 !important;
+ }
+ .btn-warning.btn-accent-4:active,
+ .btn-warning.btn-accent-4:focus {
+ border-color: #ff7531 !important;
+ background-color: #ff6417 !important;
+ }
+ .btn-outline-warning.btn-outline-accent-4 {
+ border-color: #ffe3da !important;
+ color: #ffe3da !important;
+ }
+ .btn-outline-warning.btn-outline-accent-4:hover {
+ background-color: #ffe3da !important;
+ }
+ input:focus ~ .bg-warning {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #ffe3da !important;
+ }
+ .border-warning.border-accent-4 {
+ border: 1px solid #ffe3da !important;
+ }
+ .border-top-warning.border-top-accent-4 {
+ border-top: 1px solid #ffe3da !important;
+ }
+ .border-bottom-warning.border-bottom-accent-4 {
+ border-bottom: 1px solid #ffe3da !important;
+ }
+ .border-left-warning.border-left-accent-4 {
+ border-left: 1px solid #ffe3da !important;
+ }
+ .border-right-warning.border-right-accent-4 {
+ border-right: 1px solid #ffe3da !important;
+ }
+ .overlay-warning.overlay-accent-4 {
+ background: #ffe3da;
+ background: rgba(255, 227, 218, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="warning"]:before {
+ background-color: #ffe3da;
+ }
+ .bg-danger.bg-lighten-5,
+ .btn-danger.btn-lighten-5 {
+ background-color: #fff5f6 !important;
+ }
+ .danger.lighten-5 {
+ color: #fff5f6 !important;
+ }
+ .btn-danger.btn-lighten-5 {
+ border-color: #ff425c !important;
+ }
+ .btn-danger.btn-lighten-5:hover {
+ border-color: #ff425c !important;
+ background-color: #ff2946 !important;
+ }
+ .btn-danger.btn-lighten-5:active,
+ .btn-danger.btn-lighten-5:focus {
+ border-color: #ff2946 !important;
+ background-color: #ff0f30 !important;
+ }
+ .btn-outline-danger.btn-outline-lighten-5 {
+ border-color: #fff5f6 !important;
+ color: #fff5f6 !important;
+ }
+ .btn-outline-danger.btn-outline-lighten-5:hover {
+ background-color: #fff5f6 !important;
+ }
+ .border-danger.border-lighten-5 {
+ border: 1px solid #fff5f6 !important;
+ }
+ .border-top-danger.border-top-lighten-5 {
+ border-top: 1px solid #fff5f6 !important;
+ }
+ .border-bottom-danger.border-bottom-lighten-5 {
+ border-bottom: 1px solid #fff5f6 !important;
+ }
+ .border-left-danger.border-left-lighten-5 {
+ border-left: 1px solid #fff5f6 !important;
+ }
+ .border-right-danger.border-right-lighten-5 {
+ border-right: 1px solid #fff5f6 !important;
+ }
+ .overlay-danger.overlay-lighten-5 {
+ background: #fff5f6;
+ background: rgba(255, 245, 246, 0.8);
+ }
+ .bg-danger.bg-lighten-4,
+ .btn-danger.btn-lighten-4 {
+ background-color: #ffdbe0 !important;
+ }
+ .danger.lighten-4 {
+ color: #ffdbe0 !important;
+ }
+ .btn-danger.btn-lighten-4 {
+ border-color: #ff425c !important;
+ }
+ .btn-danger.btn-lighten-4:hover {
+ border-color: #ff425c !important;
+ background-color: #ff2946 !important;
+ }
+ .btn-danger.btn-lighten-4:active,
+ .btn-danger.btn-lighten-4:focus {
+ border-color: #ff2946 !important;
+ background-color: #ff0f30 !important;
+ }
+ .btn-outline-danger.btn-outline-lighten-4 {
+ border-color: #ffdbe0 !important;
+ color: #ffdbe0 !important;
+ }
+ .btn-outline-danger.btn-outline-lighten-4:hover {
+ background-color: #ffdbe0 !important;
+ }
+ .border-danger.border-lighten-4 {
+ border: 1px solid #ffdbe0 !important;
+ }
+ .border-top-danger.border-top-lighten-4 {
+ border-top: 1px solid #ffdbe0 !important;
+ }
+ .border-bottom-danger.border-bottom-lighten-4 {
+ border-bottom: 1px solid #ffdbe0 !important;
+ }
+ .border-left-danger.border-left-lighten-4 {
+ border-left: 1px solid #ffdbe0 !important;
+ }
+ .border-right-danger.border-right-lighten-4 {
+ border-right: 1px solid #ffdbe0 !important;
+ }
+ .overlay-danger.overlay-lighten-4 {
+ background: #ffdbe0;
+ background: rgba(255, 219, 224, 0.8);
+ }
+ .bg-danger.bg-lighten-3,
+ .btn-danger.btn-lighten-3 {
+ background-color: #ffc2ca !important;
+ }
+ .danger.lighten-3 {
+ color: #ffc2ca !important;
+ }
+ .btn-danger.btn-lighten-3 {
+ border-color: #ff425c !important;
+ }
+ .btn-danger.btn-lighten-3:hover {
+ border-color: #ff425c !important;
+ background-color: #ff2946 !important;
+ }
+ .btn-danger.btn-lighten-3:active,
+ .btn-danger.btn-lighten-3:focus {
+ border-color: #ff2946 !important;
+ background-color: #ff0f30 !important;
+ }
+ .btn-outline-danger.btn-outline-lighten-3 {
+ border-color: #ffc2ca !important;
+ color: #ffc2ca !important;
+ }
+ .btn-outline-danger.btn-outline-lighten-3:hover {
+ background-color: #ffc2ca !important;
+ }
+ .border-danger.border-lighten-3 {
+ border: 1px solid #ffc2ca !important;
+ }
+ .border-top-danger.border-top-lighten-3 {
+ border-top: 1px solid #ffc2ca !important;
+ }
+ .border-bottom-danger.border-bottom-lighten-3 {
+ border-bottom: 1px solid #ffc2ca !important;
+ }
+ .border-left-danger.border-left-lighten-3 {
+ border-left: 1px solid #ffc2ca !important;
+ }
+ .border-right-danger.border-right-lighten-3 {
+ border-right: 1px solid #ffc2ca !important;
+ }
+ .overlay-danger.overlay-lighten-3 {
+ background: #ffc2ca;
+ background: rgba(255, 194, 202, 0.8);
+ }
+ .bg-danger.bg-lighten-2,
+ .btn-danger.btn-lighten-2 {
+ background-color: #ffa8b4 !important;
+ }
+ .danger.lighten-2 {
+ color: #ffa8b4 !important;
+ }
+ .btn-danger.btn-lighten-2 {
+ border-color: #ff425c !important;
+ }
+ .btn-danger.btn-lighten-2:hover {
+ border-color: #ff425c !important;
+ background-color: #ff2946 !important;
+ }
+ .btn-danger.btn-lighten-2:active,
+ .btn-danger.btn-lighten-2:focus {
+ border-color: #ff2946 !important;
+ background-color: #ff0f30 !important;
+ }
+ .btn-outline-danger.btn-outline-lighten-2 {
+ border-color: #ffa8b4 !important;
+ color: #ffa8b4 !important;
+ }
+ .btn-outline-danger.btn-outline-lighten-2:hover {
+ background-color: #ffa8b4 !important;
+ }
+ .border-danger.border-lighten-2 {
+ border: 1px solid #ffa8b4 !important;
+ }
+ .border-top-danger.border-top-lighten-2 {
+ border-top: 1px solid #ffa8b4 !important;
+ }
+ .border-bottom-danger.border-bottom-lighten-2 {
+ border-bottom: 1px solid #ffa8b4 !important;
+ }
+ .border-left-danger.border-left-lighten-2 {
+ border-left: 1px solid #ffa8b4 !important;
+ }
+ .border-right-danger.border-right-lighten-2 {
+ border-right: 1px solid #ffa8b4 !important;
+ }
+ .overlay-danger.overlay-lighten-2 {
+ background: #ffa8b4;
+ background: rgba(255, 168, 180, 0.8);
+ }
+ .bg-danger.bg-lighten-1,
+ .btn-danger.btn-lighten-1 {
+ background-color: #ff8f9e !important;
+ }
+ .danger.lighten-1 {
+ color: #ff8f9e !important;
+ }
+ .btn-danger.btn-lighten-1 {
+ border-color: #ff425c !important;
+ }
+ .btn-danger.btn-lighten-1:hover {
+ border-color: #ff425c !important;
+ background-color: #ff2946 !important;
+ }
+ .btn-danger.btn-lighten-1:active,
+ .btn-danger.btn-lighten-1:focus {
+ border-color: #ff2946 !important;
+ background-color: #ff0f30 !important;
+ }
+ .btn-outline-danger.btn-outline-lighten-1 {
+ border-color: #ff8f9e !important;
+ color: #ff8f9e !important;
+ }
+ .btn-outline-danger.btn-outline-lighten-1:hover {
+ background-color: #ff8f9e !important;
+ }
+ .border-danger.border-lighten-1 {
+ border: 1px solid #ff8f9e !important;
+ }
+ .border-top-danger.border-top-lighten-1 {
+ border-top: 1px solid #ff8f9e !important;
+ }
+ .border-bottom-danger.border-bottom-lighten-1 {
+ border-bottom: 1px solid #ff8f9e !important;
+ }
+ .border-left-danger.border-left-lighten-1 {
+ border-left: 1px solid #ff8f9e !important;
+ }
+ .border-right-danger.border-right-lighten-1 {
+ border-right: 1px solid #ff8f9e !important;
+ }
+ .overlay-danger.overlay-lighten-1 {
+ background: #ff8f9e;
+ background: rgba(255, 143, 158, 0.8);
+ }
+ .danger {
+ color: #F08080 !important;
+ }
+ .bg-danger {
+ background-color: #F08080 !important;
+ }
+ .bg-danger .card-footer,
+ .bg-danger .card-header {
+ background-color: transparent;
+ }
+ .alert-danger {
+ border-color: #ffbcc6 !important;
+ background-color: #ffbcc6 !important;
+ color: #c2001b !important;
+ }
+ .alert-danger .alert-link {
+ color: #990015 !important;
+ }
+ .bullet.bullet-danger {
+ background-color: #F08080;
+ }
+ .bg-light-danger {
+ background-color: rgba(255, 117, 136, 0.15);
+ }
+ .bg-danger.badge-glow,
+ .border-danger.badge-glow {
+ box-shadow: 0 0 10px #F08080;
+ }
+ .overlay-danger {
+ background: #F08080;
+ background: rgba(255, 117, 136, 0.8);
+ }
+ .btn-danger {
+ background-color: #F08080 !important;
+ color: #fff;
+ }
+ .btn-danger:hover {
+ border-color: #ff5c72 !important;
+ background-color: #ff8f9e !important;
+ color: #fff !important;
+ }
+ .btn-danger:active,
+ .btn-danger:focus {
+ border-color: #ff425c !important;
+ background-color: #ff2946 !important;
+ color: #fff !important;
+ }
+ .btn-outline-danger {
+ border-color: #F08080;
+ background-color: transparent;
+ color: #F08080;
+ }
+ .btn-outline-danger:hover {
+ background-color: #F08080;
+ color: #fff !important;
+ }
+ .widget-timeline .timeline-items.timeline-icon-danger:before {
+ background-color: #F08080;
+ }
+ input[type="checkbox"].bg-danger + .custom-control-label:before,
+ input[type="radio"].bg-danger + .custom-control-label:before {
+ background-color: #F08080 !important;
+ }
+ .bg-danger.bg-darken-1,
+ .btn-danger.btn-darken-1 {
+ background-color: #ff5c72 !important;
+ }
+ .border-danger {
+ border: 1px solid #F08080 !important;
+ }
+ .border-top-danger {
+ border-top: 1px solid #F08080;
+ }
+ .border-bottom-danger {
+ border-bottom: 1px solid #F08080;
+ }
+ .border-left-danger {
+ border-left: 1px solid #F08080;
+ }
+ .border-right-danger {
+ border-right: 1px solid #F08080;
+ }
+ .danger.darken-1 {
+ color: #ff5c72 !important;
+ }
+ .btn-danger.btn-darken-1 {
+ border-color: #ff425c !important;
+ }
+ .btn-danger.btn-darken-1:hover {
+ border-color: #ff425c !important;
+ background-color: #ff2946 !important;
+ }
+ .btn-danger.btn-darken-1:active,
+ .btn-danger.btn-darken-1:focus {
+ border-color: #ff2946 !important;
+ background-color: #ff0f30 !important;
+ }
+ .btn-outline-danger.btn-outline-darken-1 {
+ border-color: #ff5c72 !important;
+ color: #ff5c72 !important;
+ }
+ .btn-outline-danger.btn-outline-darken-1:hover {
+ background-color: #ff5c72 !important;
+ }
+ .border-danger.border-darken-1 {
+ border: 1px solid #ff5c72 !important;
+ }
+ .border-top-danger.border-top-darken-1 {
+ border-top: 1px solid #ff5c72 !important;
+ }
+ .border-bottom-danger.border-bottom-darken-1 {
+ border-bottom: 1px solid #ff5c72 !important;
+ }
+ .border-left-danger.border-left-darken-1 {
+ border-left: 1px solid #ff5c72 !important;
+ }
+ .border-right-danger.border-right-darken-1 {
+ border-right: 1px solid #ff5c72 !important;
+ }
+ .btn-danger.btn-darken-2,
+ .btn-danger.btn-darken-2:hover {
+ border-color: #ff425c !important;
+ }
+ .overlay-danger.overlay-darken-1 {
+ background: #ff5c72;
+ background: rgba(255, 92, 114, 0.8);
+ }
+ .bg-danger.bg-darken-2,
+ .btn-danger.btn-darken-2 {
+ background-color: #ff425c !important;
+ }
+ .danger.darken-2 {
+ color: #ff425c !important;
+ }
+ .btn-danger.btn-darken-2:hover {
+ background-color: #ff2946 !important;
+ }
+ .btn-danger.btn-darken-2:active,
+ .btn-danger.btn-darken-2:focus {
+ border-color: #ff2946 !important;
+ background-color: #ff0f30 !important;
+ }
+ .btn-outline-danger.btn-outline-darken-2 {
+ border-color: #ff425c !important;
+ color: #ff425c !important;
+ }
+ .btn-outline-danger.btn-outline-darken-2:hover {
+ background-color: #ff425c !important;
+ }
+ .border-danger.border-darken-2 {
+ border: 1px solid #ff425c !important;
+ }
+ .border-top-danger.border-top-darken-2 {
+ border-top: 1px solid #ff425c !important;
+ }
+ .border-bottom-danger.border-bottom-darken-2 {
+ border-bottom: 1px solid #ff425c !important;
+ }
+ .border-left-danger.border-left-darken-2 {
+ border-left: 1px solid #ff425c !important;
+ }
+ .border-right-danger.border-right-darken-2 {
+ border-right: 1px solid #ff425c !important;
+ }
+ .overlay-danger.overlay-darken-2 {
+ background: #ff425c;
+ background: rgba(255, 66, 92, 0.8);
+ }
+ .danger.darken-3 {
+ color: #ff2946 !important;
+ }
+ .bg-danger.bg-darken-3 {
+ background-color: #ff2946 !important;
+ }
+ .btn-danger.btn-darken-3,
+ .btn-danger.btn-darken-3:hover {
+ border-color: #ff425c !important;
+ background-color: #ff2946 !important;
+ }
+ .btn-danger.btn-darken-3:active,
+ .btn-danger.btn-darken-3:focus {
+ border-color: #ff2946 !important;
+ background-color: #ff0f30 !important;
+ }
+ .btn-outline-danger.btn-outline-darken-3 {
+ border-color: #ff2946 !important;
+ color: #ff2946 !important;
+ }
+ .btn-outline-danger.btn-outline-darken-3:hover {
+ background-color: #ff2946 !important;
+ }
+ .border-danger.border-darken-3 {
+ border: 1px solid #ff2946 !important;
+ }
+ .border-top-danger.border-top-darken-3 {
+ border-top: 1px solid #ff2946 !important;
+ }
+ .border-bottom-danger.border-bottom-darken-3 {
+ border-bottom: 1px solid #ff2946 !important;
+ }
+ .border-left-danger.border-left-darken-3 {
+ border-left: 1px solid #ff2946 !important;
+ }
+ .border-right-danger.border-right-darken-3 {
+ border-right: 1px solid #ff2946 !important;
+ }
+ .btn-danger.btn-darken-4,
+ .btn-danger.btn-darken-4:hover {
+ border-color: #ff425c !important;
+ }
+ .overlay-danger.overlay-darken-3 {
+ background: #ff2946;
+ background: rgba(255, 41, 70, 0.8);
+ }
+ .bg-danger.bg-darken-4,
+ .btn-danger.btn-darken-4 {
+ background-color: #ff0f30 !important;
+ }
+ .danger.darken-4 {
+ color: #ff0f30 !important;
+ }
+ .btn-danger.btn-darken-4:hover {
+ background-color: #ff2946 !important;
+ }
+ .btn-danger.btn-darken-4:active,
+ .btn-danger.btn-darken-4:focus {
+ border-color: #ff2946 !important;
+ background-color: #ff0f30 !important;
+ }
+ .btn-outline-danger.btn-outline-darken-4 {
+ border-color: #ff0f30 !important;
+ color: #ff0f30 !important;
+ }
+ .btn-outline-danger.btn-outline-darken-4:hover {
+ background-color: #ff0f30 !important;
+ }
+ .border-danger.border-darken-4 {
+ border: 1px solid #ff0f30 !important;
+ }
+ .border-top-danger.border-top-darken-4 {
+ border-top: 1px solid #ff0f30 !important;
+ }
+ .border-bottom-danger.border-bottom-darken-4 {
+ border-bottom: 1px solid #ff0f30 !important;
+ }
+ .border-left-danger.border-left-darken-4 {
+ border-left: 1px solid #ff0f30 !important;
+ }
+ .border-right-danger.border-right-darken-4 {
+ border-right: 1px solid #ff0f30 !important;
+ }
+ .btn-danger.btn-accent-1,
+ .btn-danger.btn-accent-1:hover {
+ border-color: #ff425c !important;
+ }
+ .overlay-danger.overlay-darken-4 {
+ background: #ff0f30;
+ background: rgba(255, 15, 48, 0.8);
+ }
+ .bg-danger.bg-accent-1,
+ .btn-danger.btn-accent-1 {
+ background-color: #ffeef1 !important;
+ }
+ .danger.accent-1 {
+ color: #ffeef1 !important;
+ }
+ .btn-danger.btn-accent-1:hover {
+ background-color: #ff2946 !important;
+ }
+ .btn-danger.btn-accent-1:active,
+ .btn-danger.btn-accent-1:focus {
+ border-color: #ff2946 !important;
+ background-color: #ff0f30 !important;
+ }
+ .btn-outline-danger.btn-outline-accent-1 {
+ border-color: #ffeef1 !important;
+ color: #ffeef1 !important;
+ }
+ .btn-outline-danger.btn-outline-accent-1:hover {
+ background-color: #ffeef1 !important;
+ }
+ .border-danger.border-accent-1 {
+ border: 1px solid #ffeef1 !important;
+ }
+ .border-top-danger.border-top-accent-1 {
+ border-top: 1px solid #ffeef1 !important;
+ }
+ .border-bottom-danger.border-bottom-accent-1 {
+ border-bottom: 1px solid #ffeef1 !important;
+ }
+ .border-left-danger.border-left-accent-1 {
+ border-left: 1px solid #ffeef1 !important;
+ }
+ .border-right-danger.border-right-accent-1 {
+ border-right: 1px solid #ffeef1 !important;
+ }
+ .btn-danger.btn-accent-2,
+ .btn-danger.btn-accent-2:hover {
+ border-color: #ff425c !important;
+ }
+ .overlay-danger.overlay-accent-1 {
+ background: #ffeef1;
+ background: rgba(255, 238, 241, 0.8);
+ }
+ .bg-danger.bg-accent-2,
+ .btn-danger.btn-accent-2 {
+ background-color: #ffd6db !important;
+ }
+ .danger.accent-2 {
+ color: #ffd6db !important;
+ }
+ .btn-danger.btn-accent-2:hover {
+ background-color: #ff2946 !important;
+ }
+ .btn-danger.btn-accent-2:active,
+ .btn-danger.btn-accent-2:focus {
+ border-color: #ff2946 !important;
+ background-color: #ff0f30 !important;
+ }
+ .btn-outline-danger.btn-outline-accent-2 {
+ border-color: #ffd6db !important;
+ color: #ffd6db !important;
+ }
+ .btn-outline-danger.btn-outline-accent-2:hover {
+ background-color: #ffd6db !important;
+ }
+ .border-danger.border-accent-2 {
+ border: 1px solid #ffd6db !important;
+ }
+ .border-top-danger.border-top-accent-2 {
+ border-top: 1px solid #ffd6db !important;
+ }
+ .border-bottom-danger.border-bottom-accent-2 {
+ border-bottom: 1px solid #ffd6db !important;
+ }
+ .border-left-danger.border-left-accent-2 {
+ border-left: 1px solid #ffd6db !important;
+ }
+ .border-right-danger.border-right-accent-2 {
+ border-right: 1px solid #ffd6db !important;
+ }
+ .btn-danger.btn-accent-3,
+ .btn-danger.btn-accent-3:hover {
+ border-color: #ff425c !important;
+ }
+ .overlay-danger.overlay-accent-2 {
+ background: #ffd6db;
+ background: rgba(255, 214, 219, 0.8);
+ }
+ .bg-danger.bg-accent-3,
+ .btn-danger.btn-accent-3 {
+ background-color: #ffecee !important;
+ }
+ .danger.accent-3 {
+ color: #ffecee !important;
+ }
+ .btn-danger.btn-accent-3:hover {
+ background-color: #ff2946 !important;
+ }
+ .btn-danger.btn-accent-3:active,
+ .btn-danger.btn-accent-3:focus {
+ border-color: #ff2946 !important;
+ background-color: #ff0f30 !important;
+ }
+ .btn-outline-danger.btn-outline-accent-3 {
+ border-color: #ffecee !important;
+ color: #ffecee !important;
+ }
+ .btn-outline-danger.btn-outline-accent-3:hover {
+ background-color: #ffecee !important;
+ }
+ .border-danger.border-accent-3 {
+ border: 1px solid #ffecee !important;
+ }
+ .border-top-danger.border-top-accent-3 {
+ border-top: 1px solid #ffecee !important;
+ }
+ .border-bottom-danger.border-bottom-accent-3 {
+ border-bottom: 1px solid #ffecee !important;
+ }
+ .border-left-danger.border-left-accent-3 {
+ border-left: 1px solid #ffecee !important;
+ }
+ .border-right-danger.border-right-accent-3 {
+ border-right: 1px solid #ffecee !important;
+ }
+ .btn-danger.btn-accent-4,
+ .btn-danger.btn-accent-4:hover {
+ border-color: #ff425c !important;
+ }
+ .overlay-danger.overlay-accent-3 {
+ background: #ffecee;
+ background: rgba(255, 236, 238, 0.8);
+ }
+ .bg-danger.bg-accent-4,
+ .btn-danger.btn-accent-4 {
+ background-color: #ffd3d7 !important;
+ }
+ .danger.accent-4 {
+ color: #ffd3d7 !important;
+ }
+ .btn-danger.btn-accent-4:hover {
+ background-color: #ff2946 !important;
+ }
+ .btn-danger.btn-accent-4:active,
+ .btn-danger.btn-accent-4:focus {
+ border-color: #ff2946 !important;
+ background-color: #ff0f30 !important;
+ }
+ .btn-outline-danger.btn-outline-accent-4 {
+ border-color: #ffd3d7 !important;
+ color: #ffd3d7 !important;
+ }
+ .btn-outline-danger.btn-outline-accent-4:hover {
+ background-color: #ffd3d7 !important;
+ }
+ input:focus ~ .bg-danger {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #ffd3d7 !important;
+ }
+ .border-danger.border-accent-4 {
+ border: 1px solid #ffd3d7 !important;
+ }
+ .border-top-danger.border-top-accent-4 {
+ border-top: 1px solid #ffd3d7 !important;
+ }
+ .border-bottom-danger.border-bottom-accent-4 {
+ border-bottom: 1px solid #ffd3d7 !important;
+ }
+ .border-left-danger.border-left-accent-4 {
+ border-left: 1px solid #ffd3d7 !important;
+ }
+ .border-right-danger.border-right-accent-4 {
+ border-right: 1px solid #ffd3d7 !important;
+ }
+ .btn-red.btn-lighten-5,
+ .btn-red.btn-lighten-5:hover {
+ border-color: #d32f2f !important;
+ }
+ .overlay-danger.overlay-accent-4 {
+ background: #ffd3d7;
+ background: rgba(255, 211, 215, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="danger"]:before {
+ background-color: #ffd3d7;
+ }
+ .bg-red.bg-lighten-5,
+ .btn-red.btn-lighten-5 {
+ background-color: #ffebee !important;
+ }
+ .red.lighten-5 {
+ color: #ffebee !important;
+ }
+ .btn-red.btn-lighten-5:hover {
+ background-color: #c62828 !important;
+ }
+ .btn-red.btn-lighten-5:active,
+ .btn-red.btn-lighten-5:focus {
+ border-color: #c62828 !important;
+ background-color: #b71c1c !important;
+ }
+ .btn-outline-red.btn-outline-lighten-5 {
+ border-color: #ffebee !important;
+ color: #ffebee !important;
+ }
+ .btn-outline-red.btn-outline-lighten-5:hover {
+ background-color: #ffebee !important;
+ }
+ .border-red.border-lighten-5 {
+ border: 1px solid #ffebee !important;
+ }
+ .border-top-red.border-top-lighten-5 {
+ border-top: 1px solid #ffebee !important;
+ }
+ .border-bottom-red.border-bottom-lighten-5 {
+ border-bottom: 1px solid #ffebee !important;
+ }
+ .border-left-red.border-left-lighten-5 {
+ border-left: 1px solid #ffebee !important;
+ }
+ .border-right-red.border-right-lighten-5 {
+ border-right: 1px solid #ffebee !important;
+ }
+ .btn-red.btn-lighten-4,
+ .btn-red.btn-lighten-4:hover {
+ border-color: #d32f2f !important;
+ }
+ .overlay-red.overlay-lighten-5 {
+ background: #ffebee;
+ background: rgba(255, 235, 238, 0.8);
+ }
+ .bg-red.bg-lighten-4,
+ .btn-red.btn-lighten-4 {
+ background-color: #ffcdd2 !important;
+ }
+ .red.lighten-4 {
+ color: #ffcdd2 !important;
+ }
+ .btn-red.btn-lighten-4:hover {
+ background-color: #c62828 !important;
+ }
+ .btn-red.btn-lighten-4:active,
+ .btn-red.btn-lighten-4:focus {
+ border-color: #c62828 !important;
+ background-color: #b71c1c !important;
+ }
+ .btn-outline-red.btn-outline-lighten-4 {
+ border-color: #ffcdd2 !important;
+ color: #ffcdd2 !important;
+ }
+ .btn-outline-red.btn-outline-lighten-4:hover {
+ background-color: #ffcdd2 !important;
+ }
+ .border-red.border-lighten-4 {
+ border: 1px solid #ffcdd2 !important;
+ }
+ .border-top-red.border-top-lighten-4 {
+ border-top: 1px solid #ffcdd2 !important;
+ }
+ .border-bottom-red.border-bottom-lighten-4 {
+ border-bottom: 1px solid #ffcdd2 !important;
+ }
+ .border-left-red.border-left-lighten-4 {
+ border-left: 1px solid #ffcdd2 !important;
+ }
+ .border-right-red.border-right-lighten-4 {
+ border-right: 1px solid #ffcdd2 !important;
+ }
+ .btn-red.btn-lighten-3,
+ .btn-red.btn-lighten-3:hover {
+ border-color: #d32f2f !important;
+ }
+ .overlay-red.overlay-lighten-4 {
+ background: #ffcdd2;
+ background: rgba(255, 205, 210, 0.8);
+ }
+ .bg-red.bg-lighten-3,
+ .btn-red.btn-lighten-3 {
+ background-color: #ef9a9a !important;
+ }
+ .red.lighten-3 {
+ color: #ef9a9a !important;
+ }
+ .btn-red.btn-lighten-3:hover {
+ background-color: #c62828 !important;
+ }
+ .btn-red.btn-lighten-3:active,
+ .btn-red.btn-lighten-3:focus {
+ border-color: #c62828 !important;
+ background-color: #b71c1c !important;
+ }
+ .btn-outline-red.btn-outline-lighten-3 {
+ border-color: #ef9a9a !important;
+ color: #ef9a9a !important;
+ }
+ .btn-outline-red.btn-outline-lighten-3:hover {
+ background-color: #ef9a9a !important;
+ }
+ .border-red.border-lighten-3 {
+ border: 1px solid #ef9a9a !important;
+ }
+ .border-top-red.border-top-lighten-3 {
+ border-top: 1px solid #ef9a9a !important;
+ }
+ .border-bottom-red.border-bottom-lighten-3 {
+ border-bottom: 1px solid #ef9a9a !important;
+ }
+ .border-left-red.border-left-lighten-3 {
+ border-left: 1px solid #ef9a9a !important;
+ }
+ .border-right-red.border-right-lighten-3 {
+ border-right: 1px solid #ef9a9a !important;
+ }
+ .btn-red.btn-lighten-2,
+ .btn-red.btn-lighten-2:hover {
+ border-color: #d32f2f !important;
+ }
+ .overlay-red.overlay-lighten-3 {
+ background: #ef9a9a;
+ background: rgba(239, 154, 154, 0.8);
+ }
+ .bg-red.bg-lighten-2,
+ .btn-red.btn-lighten-2 {
+ background-color: #e57373 !important;
+ }
+ .red.lighten-2 {
+ color: #e57373 !important;
+ }
+ .btn-red.btn-lighten-2:hover {
+ background-color: #c62828 !important;
+ }
+ .btn-red.btn-lighten-2:active,
+ .btn-red.btn-lighten-2:focus {
+ border-color: #c62828 !important;
+ background-color: #b71c1c !important;
+ }
+ .btn-outline-red.btn-outline-lighten-2 {
+ border-color: #e57373 !important;
+ color: #e57373 !important;
+ }
+ .btn-outline-red.btn-outline-lighten-2:hover {
+ background-color: #e57373 !important;
+ }
+ .border-red.border-lighten-2 {
+ border: 1px solid #e57373 !important;
+ }
+ .border-top-red.border-top-lighten-2 {
+ border-top: 1px solid #e57373 !important;
+ }
+ .border-bottom-red.border-bottom-lighten-2 {
+ border-bottom: 1px solid #e57373 !important;
+ }
+ .border-left-red.border-left-lighten-2 {
+ border-left: 1px solid #e57373 !important;
+ }
+ .border-right-red.border-right-lighten-2 {
+ border-right: 1px solid #e57373 !important;
+ }
+ .btn-red.btn-lighten-1,
+ .btn-red.btn-lighten-1:hover {
+ border-color: #d32f2f !important;
+ }
+ .overlay-red.overlay-lighten-2 {
+ background: #e57373;
+ background: rgba(229, 115, 115, 0.8);
+ }
+ .bg-red.bg-lighten-1,
+ .btn-red.btn-lighten-1 {
+ background-color: #ef5350 !important;
+ }
+ .red.lighten-1 {
+ color: #ef5350 !important;
+ }
+ .btn-red.btn-lighten-1:hover {
+ background-color: #c62828 !important;
+ }
+ .btn-red.btn-lighten-1:active,
+ .btn-red.btn-lighten-1:focus {
+ border-color: #c62828 !important;
+ background-color: #b71c1c !important;
+ }
+ .btn-outline-red.btn-outline-lighten-1 {
+ border-color: #ef5350 !important;
+ color: #ef5350 !important;
+ }
+ .btn-outline-red.btn-outline-lighten-1:hover {
+ background-color: #ef5350 !important;
+ }
+ .border-red.border-lighten-1 {
+ border: 1px solid #ef5350 !important;
+ }
+ .border-top-red.border-top-lighten-1 {
+ border-top: 1px solid #ef5350 !important;
+ }
+ .border-bottom-red.border-bottom-lighten-1 {
+ border-bottom: 1px solid #ef5350 !important;
+ }
+ .border-left-red.border-left-lighten-1 {
+ border-left: 1px solid #ef5350 !important;
+ }
+ .border-right-red.border-right-lighten-1 {
+ border-right: 1px solid #ef5350 !important;
+ }
+ .overlay-red.overlay-lighten-1 {
+ background: #ef5350;
+ background: rgba(239, 83, 80, 0.8);
+ }
+ .red {
+ color: #f44336 !important;
+ }
+ .bg-red {
+ background-color: #f44336 !important;
+ }
+ .bg-red .card-footer,
+ .bg-red .card-header {
+ background-color: transparent;
+ }
+ .alert-red {
+ border-color: #f8827a !important;
+ background-color: #f8827a !important;
+ color: #710e06 !important;
+ }
+ .alert-red .alert-link {
+ color: #4b0904 !important;
+ }
+ .bullet.bullet-red {
+ background-color: #f44336;
+ }
+ .bg-light-red {
+ background-color: rgba(244, 67, 54, 0.15);
+ }
+ .bg-red.badge-glow,
+ .border-red.badge-glow {
+ box-shadow: 0 0 10px #f44336;
+ }
+ .overlay-red {
+ background: #f44336;
+ background: rgba(244, 67, 54, 0.8);
+ }
+ .btn-red {
+ background-color: #f44336 !important;
+ color: #fff;
+ }
+ .btn-red:hover {
+ border-color: #e53935 !important;
+ background-color: #ef5350 !important;
+ color: #fff !important;
+ }
+ .btn-red:active,
+ .btn-red:focus {
+ border-color: #d32f2f !important;
+ background-color: #c62828 !important;
+ color: #fff !important;
+ }
+ .btn-outline-red {
+ border-color: #f44336;
+ background-color: transparent;
+ color: #f44336;
+ }
+ .btn-outline-red:hover,
+ .widget-timeline .timeline-items.timeline-icon-red:before {
+ background-color: #f44336;
+ }
+ .btn-outline-red:hover {
+ color: #fff !important;
+ }
+ input[type="checkbox"].bg-red + .custom-control-label:before,
+ input[type="radio"].bg-red + .custom-control-label:before {
+ background-color: #f44336 !important;
+ }
+ .bg-red.bg-darken-1,
+ .btn-red.btn-darken-1 {
+ background-color: #e53935 !important;
+ }
+ .border-red {
+ border: 1px solid #f44336 !important;
+ }
+ .border-top-red {
+ border-top: 1px solid #f44336;
+ }
+ .border-bottom-red {
+ border-bottom: 1px solid #f44336;
+ }
+ .border-left-red {
+ border-left: 1px solid #f44336;
+ }
+ .border-right-red {
+ border-right: 1px solid #f44336;
+ }
+ .red.darken-1 {
+ color: #e53935 !important;
+ }
+ .btn-red.btn-darken-1 {
+ border-color: #d32f2f !important;
+ }
+ .btn-red.btn-darken-1:hover {
+ border-color: #d32f2f !important;
+ background-color: #c62828 !important;
+ }
+ .btn-red.btn-darken-1:active,
+ .btn-red.btn-darken-1:focus {
+ border-color: #c62828 !important;
+ background-color: #b71c1c !important;
+ }
+ .btn-outline-red.btn-outline-darken-1 {
+ border-color: #e53935 !important;
+ color: #e53935 !important;
+ }
+ .btn-outline-red.btn-outline-darken-1:hover {
+ background-color: #e53935 !important;
+ }
+ .border-red.border-darken-1 {
+ border: 1px solid #e53935 !important;
+ }
+ .border-top-red.border-top-darken-1 {
+ border-top: 1px solid #e53935 !important;
+ }
+ .border-bottom-red.border-bottom-darken-1 {
+ border-bottom: 1px solid #e53935 !important;
+ }
+ .border-left-red.border-left-darken-1 {
+ border-left: 1px solid #e53935 !important;
+ }
+ .border-right-red.border-right-darken-1 {
+ border-right: 1px solid #e53935 !important;
+ }
+ .btn-red.btn-darken-2,
+ .btn-red.btn-darken-2:hover {
+ border-color: #d32f2f !important;
+ }
+ .overlay-red.overlay-darken-1 {
+ background: #e53935;
+ background: rgba(229, 57, 53, 0.8);
+ }
+ .bg-red.bg-darken-2,
+ .btn-red.btn-darken-2 {
+ background-color: #d32f2f !important;
+ }
+ .red.darken-2 {
+ color: #d32f2f !important;
+ }
+ .btn-red.btn-darken-2:hover {
+ background-color: #c62828 !important;
+ }
+ .btn-red.btn-darken-2:active,
+ .btn-red.btn-darken-2:focus {
+ border-color: #c62828 !important;
+ background-color: #b71c1c !important;
+ }
+ .btn-outline-red.btn-outline-darken-2 {
+ border-color: #d32f2f !important;
+ color: #d32f2f !important;
+ }
+ .btn-outline-red.btn-outline-darken-2:hover {
+ background-color: #d32f2f !important;
+ }
+ .border-red.border-darken-2 {
+ border: 1px solid #d32f2f !important;
+ }
+ .border-top-red.border-top-darken-2 {
+ border-top: 1px solid #d32f2f !important;
+ }
+ .border-bottom-red.border-bottom-darken-2 {
+ border-bottom: 1px solid #d32f2f !important;
+ }
+ .border-left-red.border-left-darken-2 {
+ border-left: 1px solid #d32f2f !important;
+ }
+ .border-right-red.border-right-darken-2 {
+ border-right: 1px solid #d32f2f !important;
+ }
+ .overlay-red.overlay-darken-2 {
+ background: #d32f2f;
+ background: rgba(211, 47, 47, 0.8);
+ }
+ .red.darken-3 {
+ color: #c62828 !important;
+ }
+ .bg-red.bg-darken-3 {
+ background-color: #c62828 !important;
+ }
+ .btn-red.btn-darken-3,
+ .btn-red.btn-darken-3:hover {
+ border-color: #d32f2f !important;
+ background-color: #c62828 !important;
+ }
+ .btn-red.btn-darken-3:active,
+ .btn-red.btn-darken-3:focus {
+ border-color: #c62828 !important;
+ background-color: #b71c1c !important;
+ }
+ .btn-outline-red.btn-outline-darken-3 {
+ border-color: #c62828 !important;
+ color: #c62828 !important;
+ }
+ .btn-outline-red.btn-outline-darken-3:hover {
+ background-color: #c62828 !important;
+ }
+ .border-red.border-darken-3 {
+ border: 1px solid #c62828 !important;
+ }
+ .border-top-red.border-top-darken-3 {
+ border-top: 1px solid #c62828 !important;
+ }
+ .border-bottom-red.border-bottom-darken-3 {
+ border-bottom: 1px solid #c62828 !important;
+ }
+ .border-left-red.border-left-darken-3 {
+ border-left: 1px solid #c62828 !important;
+ }
+ .border-right-red.border-right-darken-3 {
+ border-right: 1px solid #c62828 !important;
+ }
+ .btn-red.btn-darken-4,
+ .btn-red.btn-darken-4:hover {
+ border-color: #d32f2f !important;
+ }
+ .overlay-red.overlay-darken-3 {
+ background: #c62828;
+ background: rgba(198, 40, 40, 0.8);
+ }
+ .bg-red.bg-darken-4,
+ .btn-red.btn-darken-4 {
+ background-color: #b71c1c !important;
+ }
+ .red.darken-4 {
+ color: #b71c1c !important;
+ }
+ .btn-red.btn-darken-4:hover {
+ background-color: #c62828 !important;
+ }
+ .btn-red.btn-darken-4:active,
+ .btn-red.btn-darken-4:focus {
+ border-color: #c62828 !important;
+ background-color: #b71c1c !important;
+ }
+ .btn-outline-red.btn-outline-darken-4 {
+ border-color: #b71c1c !important;
+ color: #b71c1c !important;
+ }
+ .btn-outline-red.btn-outline-darken-4:hover {
+ background-color: #b71c1c !important;
+ }
+ .border-red.border-darken-4 {
+ border: 1px solid #b71c1c !important;
+ }
+ .border-top-red.border-top-darken-4 {
+ border-top: 1px solid #b71c1c !important;
+ }
+ .border-bottom-red.border-bottom-darken-4 {
+ border-bottom: 1px solid #b71c1c !important;
+ }
+ .border-left-red.border-left-darken-4 {
+ border-left: 1px solid #b71c1c !important;
+ }
+ .border-right-red.border-right-darken-4 {
+ border-right: 1px solid #b71c1c !important;
+ }
+ .btn-red.btn-accent-1,
+ .btn-red.btn-accent-1:hover {
+ border-color: #d32f2f !important;
+ }
+ .overlay-red.overlay-darken-4 {
+ background: #b71c1c;
+ background: rgba(183, 28, 28, 0.8);
+ }
+ .bg-red.bg-accent-1,
+ .btn-red.btn-accent-1 {
+ background-color: #ff8a80 !important;
+ }
+ .red.accent-1 {
+ color: #ff8a80 !important;
+ }
+ .btn-red.btn-accent-1:hover {
+ background-color: #c62828 !important;
+ }
+ .btn-red.btn-accent-1:active,
+ .btn-red.btn-accent-1:focus {
+ border-color: #c62828 !important;
+ background-color: #b71c1c !important;
+ }
+ .btn-outline-red.btn-outline-accent-1 {
+ border-color: #ff8a80 !important;
+ color: #ff8a80 !important;
+ }
+ .btn-outline-red.btn-outline-accent-1:hover {
+ background-color: #ff8a80 !important;
+ }
+ .border-red.border-accent-1 {
+ border: 1px solid #ff8a80 !important;
+ }
+ .border-top-red.border-top-accent-1 {
+ border-top: 1px solid #ff8a80 !important;
+ }
+ .border-bottom-red.border-bottom-accent-1 {
+ border-bottom: 1px solid #ff8a80 !important;
+ }
+ .border-left-red.border-left-accent-1 {
+ border-left: 1px solid #ff8a80 !important;
+ }
+ .border-right-red.border-right-accent-1 {
+ border-right: 1px solid #ff8a80 !important;
+ }
+ .btn-red.btn-accent-2,
+ .btn-red.btn-accent-2:hover {
+ border-color: #d32f2f !important;
+ }
+ .overlay-red.overlay-accent-1 {
+ background: #ff8a80;
+ background: rgba(255, 138, 128, 0.8);
+ }
+ .bg-red.bg-accent-2,
+ .btn-red.btn-accent-2 {
+ background-color: #ff5252 !important;
+ }
+ .red.accent-2 {
+ color: #ff5252 !important;
+ }
+ .btn-red.btn-accent-2:hover {
+ background-color: #c62828 !important;
+ }
+ .btn-red.btn-accent-2:active,
+ .btn-red.btn-accent-2:focus {
+ border-color: #c62828 !important;
+ background-color: #b71c1c !important;
+ }
+ .btn-outline-red.btn-outline-accent-2 {
+ border-color: #ff5252 !important;
+ color: #ff5252 !important;
+ }
+ .btn-outline-red.btn-outline-accent-2:hover {
+ background-color: #ff5252 !important;
+ }
+ .border-red.border-accent-2 {
+ border: 1px solid #ff5252 !important;
+ }
+ .border-top-red.border-top-accent-2 {
+ border-top: 1px solid #ff5252 !important;
+ }
+ .border-bottom-red.border-bottom-accent-2 {
+ border-bottom: 1px solid #ff5252 !important;
+ }
+ .border-left-red.border-left-accent-2 {
+ border-left: 1px solid #ff5252 !important;
+ }
+ .border-right-red.border-right-accent-2 {
+ border-right: 1px solid #ff5252 !important;
+ }
+ .btn-red.btn-accent-3,
+ .btn-red.btn-accent-3:hover {
+ border-color: #d32f2f !important;
+ }
+ .overlay-red.overlay-accent-2 {
+ background: #ff5252;
+ background: rgba(255, 82, 82, 0.8);
+ }
+ .bg-red.bg-accent-3,
+ .btn-red.btn-accent-3 {
+ background-color: #ff1744 !important;
+ }
+ .red.accent-3 {
+ color: #ff1744 !important;
+ }
+ .btn-red.btn-accent-3:hover {
+ background-color: #c62828 !important;
+ }
+ .btn-red.btn-accent-3:active,
+ .btn-red.btn-accent-3:focus {
+ border-color: #c62828 !important;
+ background-color: #b71c1c !important;
+ }
+ .btn-outline-red.btn-outline-accent-3 {
+ border-color: #ff1744 !important;
+ color: #ff1744 !important;
+ }
+ .btn-outline-red.btn-outline-accent-3:hover {
+ background-color: #ff1744 !important;
+ }
+ .border-red.border-accent-3 {
+ border: 1px solid #ff1744 !important;
+ }
+ .border-top-red.border-top-accent-3 {
+ border-top: 1px solid #ff1744 !important;
+ }
+ .border-bottom-red.border-bottom-accent-3 {
+ border-bottom: 1px solid #ff1744 !important;
+ }
+ .border-left-red.border-left-accent-3 {
+ border-left: 1px solid #ff1744 !important;
+ }
+ .border-right-red.border-right-accent-3 {
+ border-right: 1px solid #ff1744 !important;
+ }
+ .btn-red.btn-accent-4,
+ .btn-red.btn-accent-4:hover {
+ border-color: #d32f2f !important;
+ }
+ .overlay-red.overlay-accent-3 {
+ background: #ff1744;
+ background: rgba(255, 23, 68, 0.8);
+ }
+ .bg-red.bg-accent-4,
+ .btn-red.btn-accent-4 {
+ background-color: #d50000 !important;
+ }
+ .red.accent-4 {
+ color: #d50000 !important;
+ }
+ .btn-red.btn-accent-4:hover {
+ background-color: #c62828 !important;
+ }
+ .btn-red.btn-accent-4:active,
+ .btn-red.btn-accent-4:focus {
+ border-color: #c62828 !important;
+ background-color: #b71c1c !important;
+ }
+ .btn-outline-red.btn-outline-accent-4 {
+ border-color: #d50000 !important;
+ color: #d50000 !important;
+ }
+ .btn-outline-red.btn-outline-accent-4:hover {
+ background-color: #d50000 !important;
+ }
+ input:focus ~ .bg-red {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #d50000 !important;
+ }
+ .border-red.border-accent-4 {
+ border: 1px solid #d50000 !important;
+ }
+ .border-top-red.border-top-accent-4 {
+ border-top: 1px solid #d50000 !important;
+ }
+ .border-bottom-red.border-bottom-accent-4 {
+ border-bottom: 1px solid #d50000 !important;
+ }
+ .border-left-red.border-left-accent-4 {
+ border-left: 1px solid #d50000 !important;
+ }
+ .border-right-red.border-right-accent-4 {
+ border-right: 1px solid #d50000 !important;
+ }
+ .btn-pink.btn-lighten-5,
+ .btn-pink.btn-lighten-5:hover {
+ border-color: #c2185b !important;
+ }
+ .overlay-red.overlay-accent-4 {
+ background: #d50000;
+ background: rgba(213, 0, 0, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="red"]:before {
+ background-color: #d50000;
+ }
+ .bg-pink.bg-lighten-5,
+ .btn-pink.btn-lighten-5 {
+ background-color: #fce4ec !important;
+ }
+ .pink.lighten-5 {
+ color: #fce4ec !important;
+ }
+ .btn-pink.btn-lighten-5:hover {
+ background-color: #ad1457 !important;
+ }
+ .btn-pink.btn-lighten-5:active,
+ .btn-pink.btn-lighten-5:focus {
+ border-color: #ad1457 !important;
+ background-color: #880e4f !important;
+ }
+ .btn-outline-pink.btn-outline-lighten-5 {
+ border-color: #fce4ec !important;
+ color: #fce4ec !important;
+ }
+ .btn-outline-pink.btn-outline-lighten-5:hover {
+ background-color: #fce4ec !important;
+ }
+ .border-pink.border-lighten-5 {
+ border: 1px solid #fce4ec !important;
+ }
+ .border-top-pink.border-top-lighten-5 {
+ border-top: 1px solid #fce4ec !important;
+ }
+ .border-bottom-pink.border-bottom-lighten-5 {
+ border-bottom: 1px solid #fce4ec !important;
+ }
+ .border-left-pink.border-left-lighten-5 {
+ border-left: 1px solid #fce4ec !important;
+ }
+ .border-right-pink.border-right-lighten-5 {
+ border-right: 1px solid #fce4ec !important;
+ }
+ .btn-pink.btn-lighten-4,
+ .btn-pink.btn-lighten-4:hover {
+ border-color: #c2185b !important;
+ }
+ .overlay-pink.overlay-lighten-5 {
+ background: #fce4ec;
+ background: rgba(252, 228, 236, 0.8);
+ }
+ .bg-pink.bg-lighten-4,
+ .btn-pink.btn-lighten-4 {
+ background-color: #f8bbd0 !important;
+ }
+ .pink.lighten-4 {
+ color: #f8bbd0 !important;
+ }
+ .btn-pink.btn-lighten-4:hover {
+ background-color: #ad1457 !important;
+ }
+ .btn-pink.btn-lighten-4:active,
+ .btn-pink.btn-lighten-4:focus {
+ border-color: #ad1457 !important;
+ background-color: #880e4f !important;
+ }
+ .btn-outline-pink.btn-outline-lighten-4 {
+ border-color: #f8bbd0 !important;
+ color: #f8bbd0 !important;
+ }
+ .btn-outline-pink.btn-outline-lighten-4:hover {
+ background-color: #f8bbd0 !important;
+ }
+ .border-pink.border-lighten-4 {
+ border: 1px solid #f8bbd0 !important;
+ }
+ .border-top-pink.border-top-lighten-4 {
+ border-top: 1px solid #f8bbd0 !important;
+ }
+ .border-bottom-pink.border-bottom-lighten-4 {
+ border-bottom: 1px solid #f8bbd0 !important;
+ }
+ .border-left-pink.border-left-lighten-4 {
+ border-left: 1px solid #f8bbd0 !important;
+ }
+ .border-right-pink.border-right-lighten-4 {
+ border-right: 1px solid #f8bbd0 !important;
+ }
+ .btn-pink.btn-lighten-3,
+ .btn-pink.btn-lighten-3:hover {
+ border-color: #c2185b !important;
+ }
+ .overlay-pink.overlay-lighten-4 {
+ background: #f8bbd0;
+ background: rgba(248, 187, 208, 0.8);
+ }
+ .bg-pink.bg-lighten-3,
+ .btn-pink.btn-lighten-3 {
+ background-color: #f48fb1 !important;
+ }
+ .pink.lighten-3 {
+ color: #f48fb1 !important;
+ }
+ .btn-pink.btn-lighten-3:hover {
+ background-color: #ad1457 !important;
+ }
+ .btn-pink.btn-lighten-3:active,
+ .btn-pink.btn-lighten-3:focus {
+ border-color: #ad1457 !important;
+ background-color: #880e4f !important;
+ }
+ .btn-outline-pink.btn-outline-lighten-3 {
+ border-color: #f48fb1 !important;
+ color: #f48fb1 !important;
+ }
+ .btn-outline-pink.btn-outline-lighten-3:hover {
+ background-color: #f48fb1 !important;
+ }
+ .border-pink.border-lighten-3 {
+ border: 1px solid #f48fb1 !important;
+ }
+ .border-top-pink.border-top-lighten-3 {
+ border-top: 1px solid #f48fb1 !important;
+ }
+ .border-bottom-pink.border-bottom-lighten-3 {
+ border-bottom: 1px solid #f48fb1 !important;
+ }
+ .border-left-pink.border-left-lighten-3 {
+ border-left: 1px solid #f48fb1 !important;
+ }
+ .border-right-pink.border-right-lighten-3 {
+ border-right: 1px solid #f48fb1 !important;
+ }
+ .btn-pink.btn-lighten-2,
+ .btn-pink.btn-lighten-2:hover {
+ border-color: #c2185b !important;
+ }
+ .overlay-pink.overlay-lighten-3 {
+ background: #f48fb1;
+ background: rgba(244, 143, 177, 0.8);
+ }
+ .bg-pink.bg-lighten-2,
+ .btn-pink.btn-lighten-2 {
+ background-color: #f06292 !important;
+ }
+ .pink.lighten-2 {
+ color: #f06292 !important;
+ }
+ .btn-pink.btn-lighten-2:hover {
+ background-color: #ad1457 !important;
+ }
+ .btn-pink.btn-lighten-2:active,
+ .btn-pink.btn-lighten-2:focus {
+ border-color: #ad1457 !important;
+ background-color: #880e4f !important;
+ }
+ .btn-outline-pink.btn-outline-lighten-2 {
+ border-color: #f06292 !important;
+ color: #f06292 !important;
+ }
+ .btn-outline-pink.btn-outline-lighten-2:hover {
+ background-color: #f06292 !important;
+ }
+ .border-pink.border-lighten-2 {
+ border: 1px solid #f06292 !important;
+ }
+ .border-top-pink.border-top-lighten-2 {
+ border-top: 1px solid #f06292 !important;
+ }
+ .border-bottom-pink.border-bottom-lighten-2 {
+ border-bottom: 1px solid #f06292 !important;
+ }
+ .border-left-pink.border-left-lighten-2 {
+ border-left: 1px solid #f06292 !important;
+ }
+ .border-right-pink.border-right-lighten-2 {
+ border-right: 1px solid #f06292 !important;
+ }
+ .btn-pink.btn-lighten-1,
+ .btn-pink.btn-lighten-1:hover {
+ border-color: #c2185b !important;
+ }
+ .overlay-pink.overlay-lighten-2 {
+ background: #f06292;
+ background: rgba(240, 98, 146, 0.8);
+ }
+ .bg-pink.bg-lighten-1,
+ .btn-pink.btn-lighten-1 {
+ background-color: #ec407a !important;
+ }
+ .pink.lighten-1 {
+ color: #ec407a !important;
+ }
+ .btn-pink.btn-lighten-1:hover {
+ background-color: #ad1457 !important;
+ }
+ .btn-pink.btn-lighten-1:active,
+ .btn-pink.btn-lighten-1:focus {
+ border-color: #ad1457 !important;
+ background-color: #880e4f !important;
+ }
+ .btn-outline-pink.btn-outline-lighten-1 {
+ border-color: #ec407a !important;
+ color: #ec407a !important;
+ }
+ .btn-outline-pink.btn-outline-lighten-1:hover {
+ background-color: #ec407a !important;
+ }
+ .border-pink.border-lighten-1 {
+ border: 1px solid #ec407a !important;
+ }
+ .border-top-pink.border-top-lighten-1 {
+ border-top: 1px solid #ec407a !important;
+ }
+ .border-bottom-pink.border-bottom-lighten-1 {
+ border-bottom: 1px solid #ec407a !important;
+ }
+ .border-left-pink.border-left-lighten-1 {
+ border-left: 1px solid #ec407a !important;
+ }
+ .border-right-pink.border-right-lighten-1 {
+ border-right: 1px solid #ec407a !important;
+ }
+ .overlay-pink.overlay-lighten-1 {
+ background: #ec407a;
+ background: rgba(236, 64, 122, 0.8);
+ }
+ .pink {
+ color: #e91e63 !important;
+ }
+ .bg-pink {
+ background-color: #e91e63 !important;
+ }
+ .bg-pink .card-footer,
+ .bg-pink .card-header {
+ background-color: transparent;
+ }
+ .alert-pink {
+ border-color: #ef5f90 !important;
+ background-color: #ef5f90 !important;
+ color: #4d081f !important;
+ }
+ .alert-pink .alert-link {
+ color: #280410 !important;
+ }
+ .bullet.bullet-pink {
+ background-color: #e91e63;
+ }
+ .bg-light-pink {
+ background-color: rgba(233, 30, 99, 0.15);
+ }
+ .bg-pink.badge-glow,
+ .border-pink.badge-glow {
+ box-shadow: 0 0 10px #e91e63;
+ }
+ .overlay-pink {
+ background: #e91e63;
+ background: rgba(233, 30, 99, 0.8);
+ }
+ .btn-pink {
+ background-color: #e91e63 !important;
+ color: #fff;
+ }
+ .btn-pink:hover {
+ border-color: #d81b60 !important;
+ background-color: #ec407a !important;
+ color: #fff !important;
+ }
+ .btn-pink:active,
+ .btn-pink:focus {
+ border-color: #c2185b !important;
+ background-color: #ad1457 !important;
+ color: #fff !important;
+ }
+ .btn-outline-pink {
+ border-color: #e91e63;
+ background-color: transparent;
+ color: #e91e63;
+ }
+ .btn-outline-pink:hover,
+ .widget-timeline .timeline-items.timeline-icon-pink:before {
+ background-color: #e91e63;
+ }
+ .btn-outline-pink:hover {
+ color: #fff !important;
+ }
+ input[type="checkbox"].bg-pink + .custom-control-label:before,
+ input[type="radio"].bg-pink + .custom-control-label:before {
+ background-color: #e91e63 !important;
+ }
+ .bg-pink.bg-darken-1,
+ .btn-pink.btn-darken-1 {
+ background-color: #d81b60 !important;
+ }
+ .border-pink {
+ border: 1px solid #e91e63 !important;
+ }
+ .border-top-pink {
+ border-top: 1px solid #e91e63;
+ }
+ .border-bottom-pink {
+ border-bottom: 1px solid #e91e63;
+ }
+ .border-left-pink {
+ border-left: 1px solid #e91e63;
+ }
+ .border-right-pink {
+ border-right: 1px solid #e91e63;
+ }
+ .pink.darken-1 {
+ color: #d81b60 !important;
+ }
+ .btn-pink.btn-darken-1 {
+ border-color: #c2185b !important;
+ }
+ .btn-pink.btn-darken-1:hover {
+ border-color: #c2185b !important;
+ background-color: #ad1457 !important;
+ }
+ .btn-pink.btn-darken-1:active,
+ .btn-pink.btn-darken-1:focus {
+ border-color: #ad1457 !important;
+ background-color: #880e4f !important;
+ }
+ .btn-outline-pink.btn-outline-darken-1 {
+ border-color: #d81b60 !important;
+ color: #d81b60 !important;
+ }
+ .btn-outline-pink.btn-outline-darken-1:hover {
+ background-color: #d81b60 !important;
+ }
+ .border-pink.border-darken-1 {
+ border: 1px solid #d81b60 !important;
+ }
+ .border-top-pink.border-top-darken-1 {
+ border-top: 1px solid #d81b60 !important;
+ }
+ .border-bottom-pink.border-bottom-darken-1 {
+ border-bottom: 1px solid #d81b60 !important;
+ }
+ .border-left-pink.border-left-darken-1 {
+ border-left: 1px solid #d81b60 !important;
+ }
+ .border-right-pink.border-right-darken-1 {
+ border-right: 1px solid #d81b60 !important;
+ }
+ .btn-pink.btn-darken-2,
+ .btn-pink.btn-darken-2:hover {
+ border-color: #c2185b !important;
+ }
+ .overlay-pink.overlay-darken-1 {
+ background: #d81b60;
+ background: rgba(216, 27, 96, 0.8);
+ }
+ .bg-pink.bg-darken-2,
+ .btn-pink.btn-darken-2 {
+ background-color: #c2185b !important;
+ }
+ .pink.darken-2 {
+ color: #c2185b !important;
+ }
+ .btn-pink.btn-darken-2:hover {
+ background-color: #ad1457 !important;
+ }
+ .btn-pink.btn-darken-2:active,
+ .btn-pink.btn-darken-2:focus {
+ border-color: #ad1457 !important;
+ background-color: #880e4f !important;
+ }
+ .btn-outline-pink.btn-outline-darken-2 {
+ border-color: #c2185b !important;
+ color: #c2185b !important;
+ }
+ .btn-outline-pink.btn-outline-darken-2:hover {
+ background-color: #c2185b !important;
+ }
+ .border-pink.border-darken-2 {
+ border: 1px solid #c2185b !important;
+ }
+ .border-top-pink.border-top-darken-2 {
+ border-top: 1px solid #c2185b !important;
+ }
+ .border-bottom-pink.border-bottom-darken-2 {
+ border-bottom: 1px solid #c2185b !important;
+ }
+ .border-left-pink.border-left-darken-2 {
+ border-left: 1px solid #c2185b !important;
+ }
+ .border-right-pink.border-right-darken-2 {
+ border-right: 1px solid #c2185b !important;
+ }
+ .overlay-pink.overlay-darken-2 {
+ background: #c2185b;
+ background: rgba(194, 24, 91, 0.8);
+ }
+ .pink.darken-3 {
+ color: #ad1457 !important;
+ }
+ .bg-pink.bg-darken-3 {
+ background-color: #ad1457 !important;
+ }
+ .btn-pink.btn-darken-3,
+ .btn-pink.btn-darken-3:hover {
+ border-color: #c2185b !important;
+ background-color: #ad1457 !important;
+ }
+ .btn-pink.btn-darken-3:active,
+ .btn-pink.btn-darken-3:focus {
+ border-color: #ad1457 !important;
+ background-color: #880e4f !important;
+ }
+ .btn-outline-pink.btn-outline-darken-3 {
+ border-color: #ad1457 !important;
+ color: #ad1457 !important;
+ }
+ .btn-outline-pink.btn-outline-darken-3:hover {
+ background-color: #ad1457 !important;
+ }
+ .border-pink.border-darken-3 {
+ border: 1px solid #ad1457 !important;
+ }
+ .border-top-pink.border-top-darken-3 {
+ border-top: 1px solid #ad1457 !important;
+ }
+ .border-bottom-pink.border-bottom-darken-3 {
+ border-bottom: 1px solid #ad1457 !important;
+ }
+ .border-left-pink.border-left-darken-3 {
+ border-left: 1px solid #ad1457 !important;
+ }
+ .border-right-pink.border-right-darken-3 {
+ border-right: 1px solid #ad1457 !important;
+ }
+ .btn-pink.btn-darken-4,
+ .btn-pink.btn-darken-4:hover {
+ border-color: #c2185b !important;
+ }
+ .overlay-pink.overlay-darken-3 {
+ background: #ad1457;
+ background: rgba(173, 20, 87, 0.8);
+ }
+ .bg-pink.bg-darken-4,
+ .btn-pink.btn-darken-4 {
+ background-color: #880e4f !important;
+ }
+ .pink.darken-4 {
+ color: #880e4f !important;
+ }
+ .btn-pink.btn-darken-4:hover {
+ background-color: #ad1457 !important;
+ }
+ .btn-pink.btn-darken-4:active,
+ .btn-pink.btn-darken-4:focus {
+ border-color: #ad1457 !important;
+ background-color: #880e4f !important;
+ }
+ .btn-outline-pink.btn-outline-darken-4 {
+ border-color: #880e4f !important;
+ color: #880e4f !important;
+ }
+ .btn-outline-pink.btn-outline-darken-4:hover {
+ background-color: #880e4f !important;
+ }
+ .border-pink.border-darken-4 {
+ border: 1px solid #880e4f !important;
+ }
+ .border-top-pink.border-top-darken-4 {
+ border-top: 1px solid #880e4f !important;
+ }
+ .border-bottom-pink.border-bottom-darken-4 {
+ border-bottom: 1px solid #880e4f !important;
+ }
+ .border-left-pink.border-left-darken-4 {
+ border-left: 1px solid #880e4f !important;
+ }
+ .border-right-pink.border-right-darken-4 {
+ border-right: 1px solid #880e4f !important;
+ }
+ .btn-pink.btn-accent-1,
+ .btn-pink.btn-accent-1:hover {
+ border-color: #c2185b !important;
+ }
+ .overlay-pink.overlay-darken-4 {
+ background: #880e4f;
+ background: rgba(136, 14, 79, 0.8);
+ }
+ .bg-pink.bg-accent-1,
+ .btn-pink.btn-accent-1 {
+ background-color: #ff80ab !important;
+ }
+ .pink.accent-1 {
+ color: #ff80ab !important;
+ }
+ .btn-pink.btn-accent-1:hover {
+ background-color: #ad1457 !important;
+ }
+ .btn-pink.btn-accent-1:active,
+ .btn-pink.btn-accent-1:focus {
+ border-color: #ad1457 !important;
+ background-color: #880e4f !important;
+ }
+ .btn-outline-pink.btn-outline-accent-1 {
+ border-color: #ff80ab !important;
+ color: #ff80ab !important;
+ }
+ .btn-outline-pink.btn-outline-accent-1:hover {
+ background-color: #ff80ab !important;
+ }
+ .border-pink.border-accent-1 {
+ border: 1px solid #ff80ab !important;
+ }
+ .border-top-pink.border-top-accent-1 {
+ border-top: 1px solid #ff80ab !important;
+ }
+ .border-bottom-pink.border-bottom-accent-1 {
+ border-bottom: 1px solid #ff80ab !important;
+ }
+ .border-left-pink.border-left-accent-1 {
+ border-left: 1px solid #ff80ab !important;
+ }
+ .border-right-pink.border-right-accent-1 {
+ border-right: 1px solid #ff80ab !important;
+ }
+ .btn-pink.btn-accent-2,
+ .btn-pink.btn-accent-2:hover {
+ border-color: #c2185b !important;
+ }
+ .overlay-pink.overlay-accent-1 {
+ background: #ff80ab;
+ background: rgba(255, 128, 171, 0.8);
+ }
+ .bg-pink.bg-accent-2,
+ .btn-pink.btn-accent-2 {
+ background-color: #ff4081 !important;
+ }
+ .pink.accent-2 {
+ color: #ff4081 !important;
+ }
+ .btn-pink.btn-accent-2:hover {
+ background-color: #ad1457 !important;
+ }
+ .btn-pink.btn-accent-2:active,
+ .btn-pink.btn-accent-2:focus {
+ border-color: #ad1457 !important;
+ background-color: #880e4f !important;
+ }
+ .btn-outline-pink.btn-outline-accent-2 {
+ border-color: #ff4081 !important;
+ color: #ff4081 !important;
+ }
+ .btn-outline-pink.btn-outline-accent-2:hover {
+ background-color: #ff4081 !important;
+ }
+ .border-pink.border-accent-2 {
+ border: 1px solid #ff4081 !important;
+ }
+ .border-top-pink.border-top-accent-2 {
+ border-top: 1px solid #ff4081 !important;
+ }
+ .border-bottom-pink.border-bottom-accent-2 {
+ border-bottom: 1px solid #ff4081 !important;
+ }
+ .border-left-pink.border-left-accent-2 {
+ border-left: 1px solid #ff4081 !important;
+ }
+ .border-right-pink.border-right-accent-2 {
+ border-right: 1px solid #ff4081 !important;
+ }
+ .btn-pink.btn-accent-3,
+ .btn-pink.btn-accent-3:hover {
+ border-color: #c2185b !important;
+ }
+ .overlay-pink.overlay-accent-2 {
+ background: #ff4081;
+ background: rgba(255, 64, 129, 0.8);
+ }
+ .bg-pink.bg-accent-3,
+ .btn-pink.btn-accent-3 {
+ background-color: #f50057 !important;
+ }
+ .pink.accent-3 {
+ color: #f50057 !important;
+ }
+ .btn-pink.btn-accent-3:hover {
+ background-color: #ad1457 !important;
+ }
+ .btn-pink.btn-accent-3:active,
+ .btn-pink.btn-accent-3:focus {
+ border-color: #ad1457 !important;
+ background-color: #880e4f !important;
+ }
+ .btn-outline-pink.btn-outline-accent-3 {
+ border-color: #f50057 !important;
+ color: #f50057 !important;
+ }
+ .btn-outline-pink.btn-outline-accent-3:hover {
+ background-color: #f50057 !important;
+ }
+ .border-pink.border-accent-3 {
+ border: 1px solid #f50057 !important;
+ }
+ .border-top-pink.border-top-accent-3 {
+ border-top: 1px solid #f50057 !important;
+ }
+ .border-bottom-pink.border-bottom-accent-3 {
+ border-bottom: 1px solid #f50057 !important;
+ }
+ .border-left-pink.border-left-accent-3 {
+ border-left: 1px solid #f50057 !important;
+ }
+ .border-right-pink.border-right-accent-3 {
+ border-right: 1px solid #f50057 !important;
+ }
+ .btn-pink.btn-accent-4,
+ .btn-pink.btn-accent-4:hover {
+ border-color: #c2185b !important;
+ }
+ .overlay-pink.overlay-accent-3 {
+ background: #f50057;
+ background: rgba(245, 0, 87, 0.8);
+ }
+ .bg-pink.bg-accent-4,
+ .btn-pink.btn-accent-4 {
+ background-color: #c51162 !important;
+ }
+ .pink.accent-4 {
+ color: #c51162 !important;
+ }
+ .btn-pink.btn-accent-4:hover {
+ background-color: #ad1457 !important;
+ }
+ .btn-pink.btn-accent-4:active,
+ .btn-pink.btn-accent-4:focus {
+ border-color: #ad1457 !important;
+ background-color: #880e4f !important;
+ }
+ .btn-outline-pink.btn-outline-accent-4 {
+ border-color: #c51162 !important;
+ color: #c51162 !important;
+ }
+ .btn-outline-pink.btn-outline-accent-4:hover {
+ background-color: #c51162 !important;
+ }
+ input:focus ~ .bg-pink {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #c51162 !important;
+ }
+ .border-pink.border-accent-4 {
+ border: 1px solid #c51162 !important;
+ }
+ .border-top-pink.border-top-accent-4 {
+ border-top: 1px solid #c51162 !important;
+ }
+ .border-bottom-pink.border-bottom-accent-4 {
+ border-bottom: 1px solid #c51162 !important;
+ }
+ .border-left-pink.border-left-accent-4 {
+ border-left: 1px solid #c51162 !important;
+ }
+ .border-right-pink.border-right-accent-4 {
+ border-right: 1px solid #c51162 !important;
+ }
+ .overlay-pink.overlay-accent-4 {
+ background: #c51162;
+ background: rgba(197, 17, 98, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="pink"]:before {
+ background-color: #c51162;
+ }
+ .bg-purple.bg-lighten-5,
+ .btn-purple.btn-lighten-5 {
+ background-color: #f3e5f5 !important;
+ }
+ .purple.lighten-5 {
+ color: #f3e5f5 !important;
+ }
+ .btn-purple.btn-lighten-5 {
+ border-color: #7b1fa2 !important;
+ }
+ .btn-purple.btn-lighten-5:hover {
+ border-color: #7b1fa2 !important;
+ background-color: #6a1b9a !important;
+ }
+ .btn-purple.btn-lighten-5:active,
+ .btn-purple.btn-lighten-5:focus {
+ border-color: #6a1b9a !important;
+ background-color: #4a148c !important;
+ }
+ .btn-outline-purple.btn-outline-lighten-5 {
+ border-color: #f3e5f5 !important;
+ color: #f3e5f5 !important;
+ }
+ .btn-outline-purple.btn-outline-lighten-5:hover {
+ background-color: #f3e5f5 !important;
+ }
+ .border-purple.border-lighten-5 {
+ border: 1px solid #f3e5f5 !important;
+ }
+ .border-top-purple.border-top-lighten-5 {
+ border-top: 1px solid #f3e5f5 !important;
+ }
+ .border-bottom-purple.border-bottom-lighten-5 {
+ border-bottom: 1px solid #f3e5f5 !important;
+ }
+ .border-left-purple.border-left-lighten-5 {
+ border-left: 1px solid #f3e5f5 !important;
+ }
+ .border-right-purple.border-right-lighten-5 {
+ border-right: 1px solid #f3e5f5 !important;
+ }
+ .overlay-purple.overlay-lighten-5 {
+ background: #f3e5f5;
+ background: rgba(243, 229, 245, 0.8);
+ }
+ .bg-purple.bg-lighten-4,
+ .btn-purple.btn-lighten-4 {
+ background-color: #e1bee7 !important;
+ }
+ .purple.lighten-4 {
+ color: #e1bee7 !important;
+ }
+ .btn-purple.btn-lighten-4 {
+ border-color: #7b1fa2 !important;
+ }
+ .btn-purple.btn-lighten-4:hover {
+ border-color: #7b1fa2 !important;
+ background-color: #6a1b9a !important;
+ }
+ .btn-purple.btn-lighten-4:active,
+ .btn-purple.btn-lighten-4:focus {
+ border-color: #6a1b9a !important;
+ background-color: #4a148c !important;
+ }
+ .btn-outline-purple.btn-outline-lighten-4 {
+ border-color: #e1bee7 !important;
+ color: #e1bee7 !important;
+ }
+ .btn-outline-purple.btn-outline-lighten-4:hover {
+ background-color: #e1bee7 !important;
+ }
+ .border-purple.border-lighten-4 {
+ border: 1px solid #e1bee7 !important;
+ }
+ .border-top-purple.border-top-lighten-4 {
+ border-top: 1px solid #e1bee7 !important;
+ }
+ .border-bottom-purple.border-bottom-lighten-4 {
+ border-bottom: 1px solid #e1bee7 !important;
+ }
+ .border-left-purple.border-left-lighten-4 {
+ border-left: 1px solid #e1bee7 !important;
+ }
+ .border-right-purple.border-right-lighten-4 {
+ border-right: 1px solid #e1bee7 !important;
+ }
+ .overlay-purple.overlay-lighten-4 {
+ background: #e1bee7;
+ background: rgba(225, 190, 231, 0.8);
+ }
+ .bg-purple.bg-lighten-3,
+ .btn-purple.btn-lighten-3 {
+ background-color: #ce93d8 !important;
+ }
+ .purple.lighten-3 {
+ color: #ce93d8 !important;
+ }
+ .btn-purple.btn-lighten-3 {
+ border-color: #7b1fa2 !important;
+ }
+ .btn-purple.btn-lighten-3:hover {
+ border-color: #7b1fa2 !important;
+ background-color: #6a1b9a !important;
+ }
+ .btn-purple.btn-lighten-3:active,
+ .btn-purple.btn-lighten-3:focus {
+ border-color: #6a1b9a !important;
+ background-color: #4a148c !important;
+ }
+ .btn-outline-purple.btn-outline-lighten-3 {
+ border-color: #ce93d8 !important;
+ color: #ce93d8 !important;
+ }
+ .btn-outline-purple.btn-outline-lighten-3:hover {
+ background-color: #ce93d8 !important;
+ }
+ .border-purple.border-lighten-3 {
+ border: 1px solid #ce93d8 !important;
+ }
+ .border-top-purple.border-top-lighten-3 {
+ border-top: 1px solid #ce93d8 !important;
+ }
+ .border-bottom-purple.border-bottom-lighten-3 {
+ border-bottom: 1px solid #ce93d8 !important;
+ }
+ .border-left-purple.border-left-lighten-3 {
+ border-left: 1px solid #ce93d8 !important;
+ }
+ .border-right-purple.border-right-lighten-3 {
+ border-right: 1px solid #ce93d8 !important;
+ }
+ .overlay-purple.overlay-lighten-3 {
+ background: #ce93d8;
+ background: rgba(206, 147, 216, 0.8);
+ }
+ .bg-purple.bg-lighten-2,
+ .btn-purple.btn-lighten-2 {
+ background-color: #ba68c8 !important;
+ }
+ .purple.lighten-2 {
+ color: #ba68c8 !important;
+ }
+ .btn-purple.btn-lighten-2 {
+ border-color: #7b1fa2 !important;
+ }
+ .btn-purple.btn-lighten-2:hover {
+ border-color: #7b1fa2 !important;
+ background-color: #6a1b9a !important;
+ }
+ .btn-purple.btn-lighten-2:active,
+ .btn-purple.btn-lighten-2:focus {
+ border-color: #6a1b9a !important;
+ background-color: #4a148c !important;
+ }
+ .btn-outline-purple.btn-outline-lighten-2 {
+ border-color: #ba68c8 !important;
+ color: #ba68c8 !important;
+ }
+ .btn-outline-purple.btn-outline-lighten-2:hover {
+ background-color: #ba68c8 !important;
+ }
+ .border-purple.border-lighten-2 {
+ border: 1px solid #ba68c8 !important;
+ }
+ .border-top-purple.border-top-lighten-2 {
+ border-top: 1px solid #ba68c8 !important;
+ }
+ .border-bottom-purple.border-bottom-lighten-2 {
+ border-bottom: 1px solid #ba68c8 !important;
+ }
+ .border-left-purple.border-left-lighten-2 {
+ border-left: 1px solid #ba68c8 !important;
+ }
+ .border-right-purple.border-right-lighten-2 {
+ border-right: 1px solid #ba68c8 !important;
+ }
+ .overlay-purple.overlay-lighten-2 {
+ background: #ba68c8;
+ background: rgba(186, 104, 200, 0.8);
+ }
+ .bg-purple.bg-lighten-1,
+ .btn-purple.btn-lighten-1 {
+ background-color: #ab47bc !important;
+ }
+ .purple.lighten-1 {
+ color: #ab47bc !important;
+ }
+ .btn-purple.btn-lighten-1 {
+ border-color: #7b1fa2 !important;
+ }
+ .btn-purple.btn-lighten-1:hover {
+ border-color: #7b1fa2 !important;
+ background-color: #6a1b9a !important;
+ }
+ .btn-purple.btn-lighten-1:active,
+ .btn-purple.btn-lighten-1:focus {
+ border-color: #6a1b9a !important;
+ background-color: #4a148c !important;
+ }
+ .btn-outline-purple.btn-outline-lighten-1 {
+ border-color: #ab47bc !important;
+ color: #ab47bc !important;
+ }
+ .btn-outline-purple.btn-outline-lighten-1:hover {
+ background-color: #ab47bc !important;
+ }
+ .border-purple.border-lighten-1 {
+ border: 1px solid #ab47bc !important;
+ }
+ .border-top-purple.border-top-lighten-1 {
+ border-top: 1px solid #ab47bc !important;
+ }
+ .border-bottom-purple.border-bottom-lighten-1 {
+ border-bottom: 1px solid #ab47bc !important;
+ }
+ .border-left-purple.border-left-lighten-1 {
+ border-left: 1px solid #ab47bc !important;
+ }
+ .border-right-purple.border-right-lighten-1 {
+ border-right: 1px solid #ab47bc !important;
+ }
+ .overlay-purple.overlay-lighten-1 {
+ background: #ab47bc;
+ background: rgba(171, 71, 188, 0.8);
+ }
+ .purple {
+ color: #9c27b0 !important;
+ }
+ .bg-purple {
+ background-color: #9c27b0 !important;
+ }
+ .bg-purple .card-footer,
+ .bg-purple .card-header {
+ background-color: transparent;
+ }
+ .alert-purple {
+ border-color: #c248d6 !important;
+ background-color: #c248d6 !important;
+ color: #1a071e !important;
+ }
+ .alert-purple .alert-link {
+ color: #000 !important;
+ }
+ .bullet.bullet-purple {
+ background-color: #9c27b0;
+ }
+ .bg-light-purple {
+ background-color: rgba(156, 39, 176, 0.15);
+ }
+ .bg-purple.badge-glow,
+ .border-purple.badge-glow {
+ box-shadow: 0 0 10px #9c27b0;
+ }
+ .overlay-purple {
+ background: #9c27b0;
+ background: rgba(156, 39, 176, 0.8);
+ }
+ .btn-purple {
+ background-color: #9c27b0 !important;
+ color: #fff;
+ }
+ .btn-purple:hover {
+ border-color: #8e24aa !important;
+ background-color: #ab47bc !important;
+ color: #fff !important;
+ }
+ .btn-purple:active,
+ .btn-purple:focus {
+ border-color: #7b1fa2 !important;
+ background-color: #6a1b9a !important;
+ color: #fff !important;
+ }
+ .btn-outline-purple {
+ border-color: #9c27b0;
+ background-color: transparent;
+ color: #9c27b0;
+ }
+ .btn-outline-purple:hover {
+ background-color: #9c27b0;
+ color: #fff !important;
+ }
+ .widget-timeline .timeline-items.timeline-icon-purple:before {
+ background-color: #9c27b0;
+ }
+ input[type="checkbox"].bg-purple + .custom-control-label:before,
+ input[type="radio"].bg-purple + .custom-control-label:before {
+ background-color: #9c27b0 !important;
+ }
+ .bg-purple.bg-darken-1,
+ .btn-purple.btn-darken-1 {
+ background-color: #8e24aa !important;
+ }
+ .border-purple {
+ border: 1px solid #9c27b0 !important;
+ }
+ .border-top-purple {
+ border-top: 1px solid #9c27b0;
+ }
+ .border-bottom-purple {
+ border-bottom: 1px solid #9c27b0;
+ }
+ .border-left-purple {
+ border-left: 1px solid #9c27b0;
+ }
+ .border-right-purple {
+ border-right: 1px solid #9c27b0;
+ }
+ .purple.darken-1 {
+ color: #8e24aa !important;
+ }
+ .btn-purple.btn-darken-1 {
+ border-color: #7b1fa2 !important;
+ }
+ .btn-purple.btn-darken-1:hover {
+ border-color: #7b1fa2 !important;
+ background-color: #6a1b9a !important;
+ }
+ .btn-purple.btn-darken-1:active,
+ .btn-purple.btn-darken-1:focus {
+ border-color: #6a1b9a !important;
+ background-color: #4a148c !important;
+ }
+ .btn-outline-purple.btn-outline-darken-1 {
+ border-color: #8e24aa !important;
+ color: #8e24aa !important;
+ }
+ .btn-outline-purple.btn-outline-darken-1:hover {
+ background-color: #8e24aa !important;
+ }
+ .border-purple.border-darken-1 {
+ border: 1px solid #8e24aa !important;
+ }
+ .border-top-purple.border-top-darken-1 {
+ border-top: 1px solid #8e24aa !important;
+ }
+ .border-bottom-purple.border-bottom-darken-1 {
+ border-bottom: 1px solid #8e24aa !important;
+ }
+ .border-left-purple.border-left-darken-1 {
+ border-left: 1px solid #8e24aa !important;
+ }
+ .border-right-purple.border-right-darken-1 {
+ border-right: 1px solid #8e24aa !important;
+ }
+ .btn-purple.btn-darken-2,
+ .btn-purple.btn-darken-2:hover {
+ border-color: #7b1fa2 !important;
+ }
+ .overlay-purple.overlay-darken-1 {
+ background: #8e24aa;
+ background: rgba(142, 36, 170, 0.8);
+ }
+ .bg-purple.bg-darken-2,
+ .btn-purple.btn-darken-2 {
+ background-color: #7b1fa2 !important;
+ }
+ .purple.darken-2 {
+ color: #7b1fa2 !important;
+ }
+ .btn-purple.btn-darken-2:hover {
+ background-color: #6a1b9a !important;
+ }
+ .btn-purple.btn-darken-2:active,
+ .btn-purple.btn-darken-2:focus {
+ border-color: #6a1b9a !important;
+ background-color: #4a148c !important;
+ }
+ .btn-outline-purple.btn-outline-darken-2 {
+ border-color: #7b1fa2 !important;
+ color: #7b1fa2 !important;
+ }
+ .btn-outline-purple.btn-outline-darken-2:hover {
+ background-color: #7b1fa2 !important;
+ }
+ .border-purple.border-darken-2 {
+ border: 1px solid #7b1fa2 !important;
+ }
+ .border-top-purple.border-top-darken-2 {
+ border-top: 1px solid #7b1fa2 !important;
+ }
+ .border-bottom-purple.border-bottom-darken-2 {
+ border-bottom: 1px solid #7b1fa2 !important;
+ }
+ .border-left-purple.border-left-darken-2 {
+ border-left: 1px solid #7b1fa2 !important;
+ }
+ .border-right-purple.border-right-darken-2 {
+ border-right: 1px solid #7b1fa2 !important;
+ }
+ .overlay-purple.overlay-darken-2 {
+ background: #7b1fa2;
+ background: rgba(123, 31, 162, 0.8);
+ }
+ .purple.darken-3 {
+ color: #6a1b9a !important;
+ }
+ .bg-purple.bg-darken-3 {
+ background-color: #6a1b9a !important;
+ }
+ .btn-purple.btn-darken-3,
+ .btn-purple.btn-darken-3:hover {
+ border-color: #7b1fa2 !important;
+ background-color: #6a1b9a !important;
+ }
+ .btn-purple.btn-darken-3:active,
+ .btn-purple.btn-darken-3:focus {
+ border-color: #6a1b9a !important;
+ background-color: #4a148c !important;
+ }
+ .btn-outline-purple.btn-outline-darken-3 {
+ border-color: #6a1b9a !important;
+ color: #6a1b9a !important;
+ }
+ .btn-outline-purple.btn-outline-darken-3:hover {
+ background-color: #6a1b9a !important;
+ }
+ .border-purple.border-darken-3 {
+ border: 1px solid #6a1b9a !important;
+ }
+ .border-top-purple.border-top-darken-3 {
+ border-top: 1px solid #6a1b9a !important;
+ }
+ .border-bottom-purple.border-bottom-darken-3 {
+ border-bottom: 1px solid #6a1b9a !important;
+ }
+ .border-left-purple.border-left-darken-3 {
+ border-left: 1px solid #6a1b9a !important;
+ }
+ .border-right-purple.border-right-darken-3 {
+ border-right: 1px solid #6a1b9a !important;
+ }
+ .btn-purple.btn-darken-4,
+ .btn-purple.btn-darken-4:hover {
+ border-color: #7b1fa2 !important;
+ }
+ .overlay-purple.overlay-darken-3 {
+ background: #6a1b9a;
+ background: rgba(106, 27, 154, 0.8);
+ }
+ .bg-purple.bg-darken-4,
+ .btn-purple.btn-darken-4 {
+ background-color: #4a148c !important;
+ }
+ .purple.darken-4 {
+ color: #4a148c !important;
+ }
+ .btn-purple.btn-darken-4:hover {
+ background-color: #6a1b9a !important;
+ }
+ .btn-purple.btn-darken-4:active,
+ .btn-purple.btn-darken-4:focus {
+ border-color: #6a1b9a !important;
+ background-color: #4a148c !important;
+ }
+ .btn-outline-purple.btn-outline-darken-4 {
+ border-color: #4a148c !important;
+ color: #4a148c !important;
+ }
+ .btn-outline-purple.btn-outline-darken-4:hover {
+ background-color: #4a148c !important;
+ }
+ .border-purple.border-darken-4 {
+ border: 1px solid #4a148c !important;
+ }
+ .border-top-purple.border-top-darken-4 {
+ border-top: 1px solid #4a148c !important;
+ }
+ .border-bottom-purple.border-bottom-darken-4 {
+ border-bottom: 1px solid #4a148c !important;
+ }
+ .border-left-purple.border-left-darken-4 {
+ border-left: 1px solid #4a148c !important;
+ }
+ .border-right-purple.border-right-darken-4 {
+ border-right: 1px solid #4a148c !important;
+ }
+ .btn-purple.btn-accent-1,
+ .btn-purple.btn-accent-1:hover {
+ border-color: #7b1fa2 !important;
+ }
+ .overlay-purple.overlay-darken-4 {
+ background: #4a148c;
+ background: rgba(74, 20, 140, 0.8);
+ }
+ .bg-purple.bg-accent-1,
+ .btn-purple.btn-accent-1 {
+ background-color: #ea80fc !important;
+ }
+ .purple.accent-1 {
+ color: #ea80fc !important;
+ }
+ .btn-purple.btn-accent-1:hover {
+ background-color: #6a1b9a !important;
+ }
+ .btn-purple.btn-accent-1:active,
+ .btn-purple.btn-accent-1:focus {
+ border-color: #6a1b9a !important;
+ background-color: #4a148c !important;
+ }
+ .btn-outline-purple.btn-outline-accent-1 {
+ border-color: #ea80fc !important;
+ color: #ea80fc !important;
+ }
+ .btn-outline-purple.btn-outline-accent-1:hover {
+ background-color: #ea80fc !important;
+ }
+ .border-purple.border-accent-1 {
+ border: 1px solid #ea80fc !important;
+ }
+ .border-top-purple.border-top-accent-1 {
+ border-top: 1px solid #ea80fc !important;
+ }
+ .border-bottom-purple.border-bottom-accent-1 {
+ border-bottom: 1px solid #ea80fc !important;
+ }
+ .border-left-purple.border-left-accent-1 {
+ border-left: 1px solid #ea80fc !important;
+ }
+ .border-right-purple.border-right-accent-1 {
+ border-right: 1px solid #ea80fc !important;
+ }
+ .btn-purple.btn-accent-2,
+ .btn-purple.btn-accent-2:hover {
+ border-color: #7b1fa2 !important;
+ }
+ .overlay-purple.overlay-accent-1 {
+ background: #ea80fc;
+ background: rgba(234, 128, 252, 0.8);
+ }
+ .bg-purple.bg-accent-2,
+ .btn-purple.btn-accent-2 {
+ background-color: #e040fb !important;
+ }
+ .purple.accent-2 {
+ color: #e040fb !important;
+ }
+ .btn-purple.btn-accent-2:hover {
+ background-color: #6a1b9a !important;
+ }
+ .btn-purple.btn-accent-2:active,
+ .btn-purple.btn-accent-2:focus {
+ border-color: #6a1b9a !important;
+ background-color: #4a148c !important;
+ }
+ .btn-outline-purple.btn-outline-accent-2 {
+ border-color: #e040fb !important;
+ color: #e040fb !important;
+ }
+ .btn-outline-purple.btn-outline-accent-2:hover {
+ background-color: #e040fb !important;
+ }
+ .border-purple.border-accent-2 {
+ border: 1px solid #e040fb !important;
+ }
+ .border-top-purple.border-top-accent-2 {
+ border-top: 1px solid #e040fb !important;
+ }
+ .border-bottom-purple.border-bottom-accent-2 {
+ border-bottom: 1px solid #e040fb !important;
+ }
+ .border-left-purple.border-left-accent-2 {
+ border-left: 1px solid #e040fb !important;
+ }
+ .border-right-purple.border-right-accent-2 {
+ border-right: 1px solid #e040fb !important;
+ }
+ .btn-purple.btn-accent-3,
+ .btn-purple.btn-accent-3:hover {
+ border-color: #7b1fa2 !important;
+ }
+ .overlay-purple.overlay-accent-2 {
+ background: #e040fb;
+ background: rgba(224, 64, 251, 0.8);
+ }
+ .bg-purple.bg-accent-3,
+ .btn-purple.btn-accent-3 {
+ background-color: #d500f9 !important;
+ }
+ .purple.accent-3 {
+ color: #d500f9 !important;
+ }
+ .btn-purple.btn-accent-3:hover {
+ background-color: #6a1b9a !important;
+ }
+ .btn-purple.btn-accent-3:active,
+ .btn-purple.btn-accent-3:focus {
+ border-color: #6a1b9a !important;
+ background-color: #4a148c !important;
+ }
+ .btn-outline-purple.btn-outline-accent-3 {
+ border-color: #d500f9 !important;
+ color: #d500f9 !important;
+ }
+ .btn-outline-purple.btn-outline-accent-3:hover {
+ background-color: #d500f9 !important;
+ }
+ .border-purple.border-accent-3 {
+ border: 1px solid #d500f9 !important;
+ }
+ .border-top-purple.border-top-accent-3 {
+ border-top: 1px solid #d500f9 !important;
+ }
+ .border-bottom-purple.border-bottom-accent-3 {
+ border-bottom: 1px solid #d500f9 !important;
+ }
+ .border-left-purple.border-left-accent-3 {
+ border-left: 1px solid #d500f9 !important;
+ }
+ .border-right-purple.border-right-accent-3 {
+ border-right: 1px solid #d500f9 !important;
+ }
+ .btn-purple.btn-accent-4,
+ .btn-purple.btn-accent-4:hover {
+ border-color: #7b1fa2 !important;
+ }
+ .overlay-purple.overlay-accent-3 {
+ background: #d500f9;
+ background: rgba(213, 0, 249, 0.8);
+ }
+ .bg-purple.bg-accent-4,
+ .btn-purple.btn-accent-4 {
+ background-color: #d0f !important;
+ }
+ .purple.accent-4 {
+ color: #d0f !important;
+ }
+ .btn-purple.btn-accent-4:hover {
+ background-color: #6a1b9a !important;
+ }
+ .btn-purple.btn-accent-4:active,
+ .btn-purple.btn-accent-4:focus {
+ border-color: #6a1b9a !important;
+ background-color: #4a148c !important;
+ }
+ .btn-outline-purple.btn-outline-accent-4 {
+ border-color: #d0f !important;
+ color: #d0f !important;
+ }
+ .btn-outline-purple.btn-outline-accent-4:hover {
+ background-color: #d0f !important;
+ }
+ input:focus ~ .bg-purple {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #d0f !important;
+ }
+ .border-purple.border-accent-4 {
+ border: 1px solid #d0f !important;
+ }
+ .border-top-purple.border-top-accent-4 {
+ border-top: 1px solid #d0f !important;
+ }
+ .border-bottom-purple.border-bottom-accent-4 {
+ border-bottom: 1px solid #d0f !important;
+ }
+ .border-left-purple.border-left-accent-4 {
+ border-left: 1px solid #d0f !important;
+ }
+ .border-right-purple.border-right-accent-4 {
+ border-right: 1px solid #d0f !important;
+ }
+ .btn-blue.btn-lighten-5,
+ .btn-blue.btn-lighten-5:hover {
+ border-color: #1976d2 !important;
+ }
+ .overlay-purple.overlay-accent-4 {
+ background: #d0f;
+ background: rgba(221, 0, 255, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="purple"]:before {
+ background-color: #d0f;
+ }
+ .bg-blue.bg-lighten-5,
+ .btn-blue.btn-lighten-5 {
+ background-color: #e3f2fd !important;
+ }
+ .blue.lighten-5 {
+ color: #e3f2fd !important;
+ }
+ .btn-blue.btn-lighten-5:hover {
+ background-color: #1565c0 !important;
+ }
+ .btn-blue.btn-lighten-5:active,
+ .btn-blue.btn-lighten-5:focus {
+ border-color: #1565c0 !important;
+ background-color: #0d47a1 !important;
+ }
+ .btn-outline-blue.btn-outline-lighten-5 {
+ border-color: #e3f2fd !important;
+ color: #e3f2fd !important;
+ }
+ .btn-outline-blue.btn-outline-lighten-5:hover {
+ background-color: #e3f2fd !important;
+ }
+ .border-blue.border-lighten-5 {
+ border: 1px solid #e3f2fd !important;
+ }
+ .border-top-blue.border-top-lighten-5 {
+ border-top: 1px solid #e3f2fd !important;
+ }
+ .border-bottom-blue.border-bottom-lighten-5 {
+ border-bottom: 1px solid #e3f2fd !important;
+ }
+ .border-left-blue.border-left-lighten-5 {
+ border-left: 1px solid #e3f2fd !important;
+ }
+ .border-right-blue.border-right-lighten-5 {
+ border-right: 1px solid #e3f2fd !important;
+ }
+ .btn-blue.btn-lighten-4,
+ .btn-blue.btn-lighten-4:hover {
+ border-color: #1976d2 !important;
+ }
+ .overlay-blue.overlay-lighten-5 {
+ background: #e3f2fd;
+ background: rgba(227, 242, 253, 0.8);
+ }
+ .bg-blue.bg-lighten-4,
+ .btn-blue.btn-lighten-4 {
+ background-color: #bbdefb !important;
+ }
+ .blue.lighten-4 {
+ color: #bbdefb !important;
+ }
+ .btn-blue.btn-lighten-4:hover {
+ background-color: #1565c0 !important;
+ }
+ .btn-blue.btn-lighten-4:active,
+ .btn-blue.btn-lighten-4:focus {
+ border-color: #1565c0 !important;
+ background-color: #0d47a1 !important;
+ }
+ .btn-outline-blue.btn-outline-lighten-4 {
+ border-color: #bbdefb !important;
+ color: #bbdefb !important;
+ }
+ .btn-outline-blue.btn-outline-lighten-4:hover {
+ background-color: #bbdefb !important;
+ }
+ .border-blue.border-lighten-4 {
+ border: 1px solid #bbdefb !important;
+ }
+ .border-top-blue.border-top-lighten-4 {
+ border-top: 1px solid #bbdefb !important;
+ }
+ .border-bottom-blue.border-bottom-lighten-4 {
+ border-bottom: 1px solid #bbdefb !important;
+ }
+ .border-left-blue.border-left-lighten-4 {
+ border-left: 1px solid #bbdefb !important;
+ }
+ .border-right-blue.border-right-lighten-4 {
+ border-right: 1px solid #bbdefb !important;
+ }
+ .btn-blue.btn-lighten-3,
+ .btn-blue.btn-lighten-3:hover {
+ border-color: #1976d2 !important;
+ }
+ .overlay-blue.overlay-lighten-4 {
+ background: #bbdefb;
+ background: rgba(187, 222, 251, 0.8);
+ }
+ .bg-blue.bg-lighten-3,
+ .btn-blue.btn-lighten-3 {
+ background-color: #90caf9 !important;
+ }
+ .blue.lighten-3 {
+ color: #90caf9 !important;
+ }
+ .btn-blue.btn-lighten-3:hover {
+ background-color: #1565c0 !important;
+ }
+ .btn-blue.btn-lighten-3:active,
+ .btn-blue.btn-lighten-3:focus {
+ border-color: #1565c0 !important;
+ background-color: #0d47a1 !important;
+ }
+ .btn-outline-blue.btn-outline-lighten-3 {
+ border-color: #90caf9 !important;
+ color: #90caf9 !important;
+ }
+ .btn-outline-blue.btn-outline-lighten-3:hover {
+ background-color: #90caf9 !important;
+ }
+ .border-blue.border-lighten-3 {
+ border: 1px solid #90caf9 !important;
+ }
+ .border-top-blue.border-top-lighten-3 {
+ border-top: 1px solid #90caf9 !important;
+ }
+ .border-bottom-blue.border-bottom-lighten-3 {
+ border-bottom: 1px solid #90caf9 !important;
+ }
+ .border-left-blue.border-left-lighten-3 {
+ border-left: 1px solid #90caf9 !important;
+ }
+ .border-right-blue.border-right-lighten-3 {
+ border-right: 1px solid #90caf9 !important;
+ }
+ .btn-blue.btn-lighten-2,
+ .btn-blue.btn-lighten-2:hover {
+ border-color: #1976d2 !important;
+ }
+ .overlay-blue.overlay-lighten-3 {
+ background: #90caf9;
+ background: rgba(144, 202, 249, 0.8);
+ }
+ .bg-blue.bg-lighten-2,
+ .btn-blue.btn-lighten-2 {
+ background-color: #64b5f6 !important;
+ }
+ .blue.lighten-2 {
+ color: #64b5f6 !important;
+ }
+ .btn-blue.btn-lighten-2:hover {
+ background-color: #1565c0 !important;
+ }
+ .btn-blue.btn-lighten-2:active,
+ .btn-blue.btn-lighten-2:focus {
+ border-color: #1565c0 !important;
+ background-color: #0d47a1 !important;
+ }
+ .btn-outline-blue.btn-outline-lighten-2 {
+ border-color: #64b5f6 !important;
+ color: #64b5f6 !important;
+ }
+ .btn-outline-blue.btn-outline-lighten-2:hover {
+ background-color: #64b5f6 !important;
+ }
+ .border-blue.border-lighten-2 {
+ border: 1px solid #64b5f6 !important;
+ }
+ .border-top-blue.border-top-lighten-2 {
+ border-top: 1px solid #64b5f6 !important;
+ }
+ .border-bottom-blue.border-bottom-lighten-2 {
+ border-bottom: 1px solid #64b5f6 !important;
+ }
+ .border-left-blue.border-left-lighten-2 {
+ border-left: 1px solid #64b5f6 !important;
+ }
+ .border-right-blue.border-right-lighten-2 {
+ border-right: 1px solid #64b5f6 !important;
+ }
+ .btn-blue.btn-lighten-1,
+ .btn-blue.btn-lighten-1:hover {
+ border-color: #1976d2 !important;
+ }
+ .overlay-blue.overlay-lighten-2 {
+ background: #64b5f6;
+ background: rgba(100, 181, 246, 0.8);
+ }
+ .bg-blue.bg-lighten-1,
+ .btn-blue.btn-lighten-1 {
+ background-color: #42a5f5 !important;
+ }
+ .blue.lighten-1 {
+ color: #42a5f5 !important;
+ }
+ .btn-blue.btn-lighten-1:hover {
+ background-color: #1565c0 !important;
+ }
+ .btn-blue.btn-lighten-1:active,
+ .btn-blue.btn-lighten-1:focus {
+ border-color: #1565c0 !important;
+ background-color: #0d47a1 !important;
+ }
+ .btn-outline-blue.btn-outline-lighten-1 {
+ border-color: #42a5f5 !important;
+ color: #42a5f5 !important;
+ }
+ .btn-outline-blue.btn-outline-lighten-1:hover {
+ background-color: #42a5f5 !important;
+ }
+ .border-blue.border-lighten-1 {
+ border: 1px solid #42a5f5 !important;
+ }
+ .border-top-blue.border-top-lighten-1 {
+ border-top: 1px solid #42a5f5 !important;
+ }
+ .border-bottom-blue.border-bottom-lighten-1 {
+ border-bottom: 1px solid #42a5f5 !important;
+ }
+ .border-left-blue.border-left-lighten-1 {
+ border-left: 1px solid #42a5f5 !important;
+ }
+ .border-right-blue.border-right-lighten-1 {
+ border-right: 1px solid #42a5f5 !important;
+ }
+ .overlay-blue.overlay-lighten-1 {
+ background: #42a5f5;
+ background: rgba(66, 165, 245, 0.8);
+ }
+ .blue {
+ color: #2196f3 !important;
+ }
+ .bg-blue {
+ background-color: #2196f3 !important;
+ }
+ .bg-blue .card-footer,
+ .bg-blue .card-header {
+ background-color: transparent;
+ }
+ .alert-blue {
+ border-color: #65b6f7 !important;
+ background-color: #65b6f7 !important;
+ color: #05365d !important;
+ }
+ .alert-blue .alert-link {
+ color: #031f36 !important;
+ }
+ .bullet.bullet-blue {
+ background-color: #2196f3;
+ }
+ .bg-light-blue {
+ background-color: rgba(33, 150, 243, 0.15);
+ }
+ .bg-blue.badge-glow,
+ .border-blue.badge-glow {
+ box-shadow: 0 0 10px #2196f3;
+ }
+ .overlay-blue {
+ background: #2196f3;
+ background: rgba(33, 150, 243, 0.8);
+ }
+ .btn-blue {
+ background-color: #2196f3 !important;
+ color: #fff;
+ }
+ .btn-blue:hover {
+ border-color: #1e88e5 !important;
+ background-color: #42a5f5 !important;
+ color: #fff !important;
+ }
+ .btn-blue:active,
+ .btn-blue:focus {
+ border-color: #1976d2 !important;
+ background-color: #1565c0 !important;
+ color: #fff !important;
+ }
+ .btn-outline-blue {
+ border-color: #2196f3;
+ background-color: transparent;
+ color: #2196f3;
+ }
+ .btn-outline-blue:hover,
+ .widget-timeline .timeline-items.timeline-icon-blue:before {
+ background-color: #2196f3;
+ }
+ .btn-outline-blue:hover {
+ color: #fff !important;
+ }
+ input[type="checkbox"].bg-blue + .custom-control-label:before,
+ input[type="radio"].bg-blue + .custom-control-label:before {
+ background-color: #2196f3 !important;
+ }
+ .bg-blue.bg-darken-1,
+ .btn-blue.btn-darken-1 {
+ background-color: #1e88e5 !important;
+ }
+ .border-blue {
+ border: 1px solid #2196f3 !important;
+ }
+ .border-top-blue {
+ border-top: 1px solid #2196f3;
+ }
+ .border-bottom-blue {
+ border-bottom: 1px solid #2196f3;
+ }
+ .border-left-blue {
+ border-left: 1px solid #2196f3;
+ }
+ .border-right-blue {
+ border-right: 1px solid #2196f3;
+ }
+ .blue.darken-1 {
+ color: #1e88e5 !important;
+ }
+ .btn-blue.btn-darken-1 {
+ border-color: #1976d2 !important;
+ }
+ .btn-blue.btn-darken-1:hover {
+ border-color: #1976d2 !important;
+ background-color: #1565c0 !important;
+ }
+ .btn-blue.btn-darken-1:active,
+ .btn-blue.btn-darken-1:focus {
+ border-color: #1565c0 !important;
+ background-color: #0d47a1 !important;
+ }
+ .btn-outline-blue.btn-outline-darken-1 {
+ border-color: #1e88e5 !important;
+ color: #1e88e5 !important;
+ }
+ .btn-outline-blue.btn-outline-darken-1:hover {
+ background-color: #1e88e5 !important;
+ }
+ .border-blue.border-darken-1 {
+ border: 1px solid #1e88e5 !important;
+ }
+ .border-top-blue.border-top-darken-1 {
+ border-top: 1px solid #1e88e5 !important;
+ }
+ .border-bottom-blue.border-bottom-darken-1 {
+ border-bottom: 1px solid #1e88e5 !important;
+ }
+ .border-left-blue.border-left-darken-1 {
+ border-left: 1px solid #1e88e5 !important;
+ }
+ .border-right-blue.border-right-darken-1 {
+ border-right: 1px solid #1e88e5 !important;
+ }
+ .btn-blue.btn-darken-2,
+ .btn-blue.btn-darken-2:hover {
+ border-color: #1976d2 !important;
+ }
+ .overlay-blue.overlay-darken-1 {
+ background: #1e88e5;
+ background: rgba(30, 136, 229, 0.8);
+ }
+ .bg-blue.bg-darken-2,
+ .btn-blue.btn-darken-2 {
+ background-color: #1976d2 !important;
+ }
+ .blue.darken-2 {
+ color: #1976d2 !important;
+ }
+ .btn-blue.btn-darken-2:hover {
+ background-color: #1565c0 !important;
+ }
+ .btn-blue.btn-darken-2:active,
+ .btn-blue.btn-darken-2:focus {
+ border-color: #1565c0 !important;
+ background-color: #0d47a1 !important;
+ }
+ .btn-outline-blue.btn-outline-darken-2 {
+ border-color: #1976d2 !important;
+ color: #1976d2 !important;
+ }
+ .btn-outline-blue.btn-outline-darken-2:hover {
+ background-color: #1976d2 !important;
+ }
+ .border-blue.border-darken-2 {
+ border: 1px solid #1976d2 !important;
+ }
+ .border-top-blue.border-top-darken-2 {
+ border-top: 1px solid #1976d2 !important;
+ }
+ .border-bottom-blue.border-bottom-darken-2 {
+ border-bottom: 1px solid #1976d2 !important;
+ }
+ .border-left-blue.border-left-darken-2 {
+ border-left: 1px solid #1976d2 !important;
+ }
+ .border-right-blue.border-right-darken-2 {
+ border-right: 1px solid #1976d2 !important;
+ }
+ .overlay-blue.overlay-darken-2 {
+ background: #1976d2;
+ background: rgba(25, 118, 210, 0.8);
+ }
+ .blue.darken-3 {
+ color: #1565c0 !important;
+ }
+ .bg-blue.bg-darken-3 {
+ background-color: #1565c0 !important;
+ }
+ .btn-blue.btn-darken-3,
+ .btn-blue.btn-darken-3:hover {
+ border-color: #1976d2 !important;
+ background-color: #1565c0 !important;
+ }
+ .btn-blue.btn-darken-3:active,
+ .btn-blue.btn-darken-3:focus {
+ border-color: #1565c0 !important;
+ background-color: #0d47a1 !important;
+ }
+ .btn-outline-blue.btn-outline-darken-3 {
+ border-color: #1565c0 !important;
+ color: #1565c0 !important;
+ }
+ .btn-outline-blue.btn-outline-darken-3:hover {
+ background-color: #1565c0 !important;
+ }
+ .border-blue.border-darken-3 {
+ border: 1px solid #1565c0 !important;
+ }
+ .border-top-blue.border-top-darken-3 {
+ border-top: 1px solid #1565c0 !important;
+ }
+ .border-bottom-blue.border-bottom-darken-3 {
+ border-bottom: 1px solid #1565c0 !important;
+ }
+ .border-left-blue.border-left-darken-3 {
+ border-left: 1px solid #1565c0 !important;
+ }
+ .border-right-blue.border-right-darken-3 {
+ border-right: 1px solid #1565c0 !important;
+ }
+ .btn-blue.btn-darken-4,
+ .btn-blue.btn-darken-4:hover {
+ border-color: #1976d2 !important;
+ }
+ .overlay-blue.overlay-darken-3 {
+ background: #1565c0;
+ background: rgba(21, 101, 192, 0.8);
+ }
+ .bg-blue.bg-darken-4,
+ .btn-blue.btn-darken-4 {
+ background-color: #0d47a1 !important;
+ }
+ .blue.darken-4 {
+ color: #0d47a1 !important;
+ }
+ .btn-blue.btn-darken-4:hover {
+ background-color: #1565c0 !important;
+ }
+ .btn-blue.btn-darken-4:active,
+ .btn-blue.btn-darken-4:focus {
+ border-color: #1565c0 !important;
+ background-color: #0d47a1 !important;
+ }
+ .btn-outline-blue.btn-outline-darken-4 {
+ border-color: #0d47a1 !important;
+ color: #0d47a1 !important;
+ }
+ .btn-outline-blue.btn-outline-darken-4:hover {
+ background-color: #0d47a1 !important;
+ }
+ .border-blue.border-darken-4 {
+ border: 1px solid #0d47a1 !important;
+ }
+ .border-top-blue.border-top-darken-4 {
+ border-top: 1px solid #0d47a1 !important;
+ }
+ .border-bottom-blue.border-bottom-darken-4 {
+ border-bottom: 1px solid #0d47a1 !important;
+ }
+ .border-left-blue.border-left-darken-4 {
+ border-left: 1px solid #0d47a1 !important;
+ }
+ .border-right-blue.border-right-darken-4 {
+ border-right: 1px solid #0d47a1 !important;
+ }
+ .btn-blue.btn-accent-1,
+ .btn-blue.btn-accent-1:hover {
+ border-color: #1976d2 !important;
+ }
+ .overlay-blue.overlay-darken-4 {
+ background: #0d47a1;
+ background: rgba(13, 71, 161, 0.8);
+ }
+ .bg-blue.bg-accent-1,
+ .btn-blue.btn-accent-1 {
+ background-color: #82b1ff !important;
+ }
+ .blue.accent-1 {
+ color: #82b1ff !important;
+ }
+ .btn-blue.btn-accent-1:hover {
+ background-color: #1565c0 !important;
+ }
+ .btn-blue.btn-accent-1:active,
+ .btn-blue.btn-accent-1:focus {
+ border-color: #1565c0 !important;
+ background-color: #0d47a1 !important;
+ }
+ .btn-outline-blue.btn-outline-accent-1 {
+ border-color: #82b1ff !important;
+ color: #82b1ff !important;
+ }
+ .btn-outline-blue.btn-outline-accent-1:hover {
+ background-color: #82b1ff !important;
+ }
+ .border-blue.border-accent-1 {
+ border: 1px solid #82b1ff !important;
+ }
+ .border-top-blue.border-top-accent-1 {
+ border-top: 1px solid #82b1ff !important;
+ }
+ .border-bottom-blue.border-bottom-accent-1 {
+ border-bottom: 1px solid #82b1ff !important;
+ }
+ .border-left-blue.border-left-accent-1 {
+ border-left: 1px solid #82b1ff !important;
+ }
+ .border-right-blue.border-right-accent-1 {
+ border-right: 1px solid #82b1ff !important;
+ }
+ .btn-blue.btn-accent-2,
+ .btn-blue.btn-accent-2:hover {
+ border-color: #1976d2 !important;
+ }
+ .overlay-blue.overlay-accent-1 {
+ background: #82b1ff;
+ background: rgba(130, 177, 255, 0.8);
+ }
+ .bg-blue.bg-accent-2,
+ .btn-blue.btn-accent-2 {
+ background-color: #448aff !important;
+ }
+ .blue.accent-2 {
+ color: #448aff !important;
+ }
+ .btn-blue.btn-accent-2:hover {
+ background-color: #1565c0 !important;
+ }
+ .btn-blue.btn-accent-2:active,
+ .btn-blue.btn-accent-2:focus {
+ border-color: #1565c0 !important;
+ background-color: #0d47a1 !important;
+ }
+ .btn-outline-blue.btn-outline-accent-2 {
+ border-color: #448aff !important;
+ color: #448aff !important;
+ }
+ .btn-outline-blue.btn-outline-accent-2:hover {
+ background-color: #448aff !important;
+ }
+ .border-blue.border-accent-2 {
+ border: 1px solid #448aff !important;
+ }
+ .border-top-blue.border-top-accent-2 {
+ border-top: 1px solid #448aff !important;
+ }
+ .border-bottom-blue.border-bottom-accent-2 {
+ border-bottom: 1px solid #448aff !important;
+ }
+ .border-left-blue.border-left-accent-2 {
+ border-left: 1px solid #448aff !important;
+ }
+ .border-right-blue.border-right-accent-2 {
+ border-right: 1px solid #448aff !important;
+ }
+ .btn-blue.btn-accent-3,
+ .btn-blue.btn-accent-3:hover {
+ border-color: #1976d2 !important;
+ }
+ .overlay-blue.overlay-accent-2 {
+ background: #448aff;
+ background: rgba(68, 138, 255, 0.8);
+ }
+ .bg-blue.bg-accent-3,
+ .btn-blue.btn-accent-3 {
+ background-color: #2979ff !important;
+ }
+ .blue.accent-3 {
+ color: #2979ff !important;
+ }
+ .btn-blue.btn-accent-3:hover {
+ background-color: #1565c0 !important;
+ }
+ .btn-blue.btn-accent-3:active,
+ .btn-blue.btn-accent-3:focus {
+ border-color: #1565c0 !important;
+ background-color: #0d47a1 !important;
+ }
+ .btn-outline-blue.btn-outline-accent-3 {
+ border-color: #2979ff !important;
+ color: #2979ff !important;
+ }
+ .btn-outline-blue.btn-outline-accent-3:hover {
+ background-color: #2979ff !important;
+ }
+ .border-blue.border-accent-3 {
+ border: 1px solid #2979ff !important;
+ }
+ .border-top-blue.border-top-accent-3 {
+ border-top: 1px solid #2979ff !important;
+ }
+ .border-bottom-blue.border-bottom-accent-3 {
+ border-bottom: 1px solid #2979ff !important;
+ }
+ .border-left-blue.border-left-accent-3 {
+ border-left: 1px solid #2979ff !important;
+ }
+ .border-right-blue.border-right-accent-3 {
+ border-right: 1px solid #2979ff !important;
+ }
+ .btn-blue.btn-accent-4,
+ .btn-blue.btn-accent-4:hover {
+ border-color: #1976d2 !important;
+ }
+ .overlay-blue.overlay-accent-3 {
+ background: #2979ff;
+ background: rgba(41, 121, 255, 0.8);
+ }
+ .bg-blue.bg-accent-4,
+ .btn-blue.btn-accent-4 {
+ background-color: #2962ff !important;
+ }
+ .blue.accent-4 {
+ color: #2962ff !important;
+ }
+ .btn-blue.btn-accent-4:hover {
+ background-color: #1565c0 !important;
+ }
+ .btn-blue.btn-accent-4:active,
+ .btn-blue.btn-accent-4:focus {
+ border-color: #1565c0 !important;
+ background-color: #0d47a1 !important;
+ }
+ .btn-outline-blue.btn-outline-accent-4 {
+ border-color: #2962ff !important;
+ color: #2962ff !important;
+ }
+ .btn-outline-blue.btn-outline-accent-4:hover {
+ background-color: #2962ff !important;
+ }
+ input:focus ~ .bg-blue {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #2962ff !important;
+ }
+ .border-blue.border-accent-4 {
+ border: 1px solid #2962ff !important;
+ }
+ .border-top-blue.border-top-accent-4 {
+ border-top: 1px solid #2962ff !important;
+ }
+ .border-bottom-blue.border-bottom-accent-4 {
+ border-bottom: 1px solid #2962ff !important;
+ }
+ .border-left-blue.border-left-accent-4 {
+ border-left: 1px solid #2962ff !important;
+ }
+ .border-right-blue.border-right-accent-4 {
+ border-right: 1px solid #2962ff !important;
+ }
+ .btn-cyan.btn-lighten-5,
+ .btn-cyan.btn-lighten-5:hover {
+ border-color: #0097a7 !important;
+ }
+ .overlay-blue.overlay-accent-4 {
+ background: #2962ff;
+ background: rgba(41, 98, 255, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="blue"]:before {
+ background-color: #2962ff;
+ }
+ .bg-cyan.bg-lighten-5,
+ .btn-cyan.btn-lighten-5 {
+ background-color: #e0f7fa !important;
+ }
+ .cyan.lighten-5 {
+ color: #e0f7fa !important;
+ }
+ .btn-cyan.btn-lighten-5:hover {
+ background-color: #00838f !important;
+ }
+ .btn-cyan.btn-lighten-5:active,
+ .btn-cyan.btn-lighten-5:focus {
+ border-color: #00838f !important;
+ background-color: #006064 !important;
+ }
+ .btn-outline-cyan.btn-outline-lighten-5 {
+ border-color: #e0f7fa !important;
+ color: #e0f7fa !important;
+ }
+ .btn-outline-cyan.btn-outline-lighten-5:hover {
+ background-color: #e0f7fa !important;
+ }
+ .border-cyan.border-lighten-5 {
+ border: 1px solid #e0f7fa !important;
+ }
+ .border-top-cyan.border-top-lighten-5 {
+ border-top: 1px solid #e0f7fa !important;
+ }
+ .border-bottom-cyan.border-bottom-lighten-5 {
+ border-bottom: 1px solid #e0f7fa !important;
+ }
+ .border-left-cyan.border-left-lighten-5 {
+ border-left: 1px solid #e0f7fa !important;
+ }
+ .border-right-cyan.border-right-lighten-5 {
+ border-right: 1px solid #e0f7fa !important;
+ }
+ .btn-cyan.btn-lighten-4,
+ .btn-cyan.btn-lighten-4:hover {
+ border-color: #0097a7 !important;
+ }
+ .overlay-cyan.overlay-lighten-5 {
+ background: #e0f7fa;
+ background: rgba(224, 247, 250, 0.8);
+ }
+ .bg-cyan.bg-lighten-4,
+ .btn-cyan.btn-lighten-4 {
+ background-color: #b2ebf2 !important;
+ }
+ .cyan.lighten-4 {
+ color: #b2ebf2 !important;
+ }
+ .btn-cyan.btn-lighten-4:hover {
+ background-color: #00838f !important;
+ }
+ .btn-cyan.btn-lighten-4:active,
+ .btn-cyan.btn-lighten-4:focus {
+ border-color: #00838f !important;
+ background-color: #006064 !important;
+ }
+ .btn-outline-cyan.btn-outline-lighten-4 {
+ border-color: #b2ebf2 !important;
+ color: #b2ebf2 !important;
+ }
+ .btn-outline-cyan.btn-outline-lighten-4:hover {
+ background-color: #b2ebf2 !important;
+ }
+ .border-cyan.border-lighten-4 {
+ border: 1px solid #b2ebf2 !important;
+ }
+ .border-top-cyan.border-top-lighten-4 {
+ border-top: 1px solid #b2ebf2 !important;
+ }
+ .border-bottom-cyan.border-bottom-lighten-4 {
+ border-bottom: 1px solid #b2ebf2 !important;
+ }
+ .border-left-cyan.border-left-lighten-4 {
+ border-left: 1px solid #b2ebf2 !important;
+ }
+ .border-right-cyan.border-right-lighten-4 {
+ border-right: 1px solid #b2ebf2 !important;
+ }
+ .btn-cyan.btn-lighten-3,
+ .btn-cyan.btn-lighten-3:hover {
+ border-color: #0097a7 !important;
+ }
+ .overlay-cyan.overlay-lighten-4 {
+ background: #b2ebf2;
+ background: rgba(178, 235, 242, 0.8);
+ }
+ .bg-cyan.bg-lighten-3,
+ .btn-cyan.btn-lighten-3 {
+ background-color: #80deea !important;
+ }
+ .cyan.lighten-3 {
+ color: #80deea !important;
+ }
+ .btn-cyan.btn-lighten-3:hover {
+ background-color: #00838f !important;
+ }
+ .btn-cyan.btn-lighten-3:active,
+ .btn-cyan.btn-lighten-3:focus {
+ border-color: #00838f !important;
+ background-color: #006064 !important;
+ }
+ .btn-outline-cyan.btn-outline-lighten-3 {
+ border-color: #80deea !important;
+ color: #80deea !important;
+ }
+ .btn-outline-cyan.btn-outline-lighten-3:hover {
+ background-color: #80deea !important;
+ }
+ .border-cyan.border-lighten-3 {
+ border: 1px solid #80deea !important;
+ }
+ .border-top-cyan.border-top-lighten-3 {
+ border-top: 1px solid #80deea !important;
+ }
+ .border-bottom-cyan.border-bottom-lighten-3 {
+ border-bottom: 1px solid #80deea !important;
+ }
+ .border-left-cyan.border-left-lighten-3 {
+ border-left: 1px solid #80deea !important;
+ }
+ .border-right-cyan.border-right-lighten-3 {
+ border-right: 1px solid #80deea !important;
+ }
+ .btn-cyan.btn-lighten-2,
+ .btn-cyan.btn-lighten-2:hover {
+ border-color: #0097a7 !important;
+ }
+ .overlay-cyan.overlay-lighten-3 {
+ background: #80deea;
+ background: rgba(128, 222, 234, 0.8);
+ }
+ .bg-cyan.bg-lighten-2,
+ .btn-cyan.btn-lighten-2 {
+ background-color: #4dd0e1 !important;
+ }
+ .cyan.lighten-2 {
+ color: #4dd0e1 !important;
+ }
+ .btn-cyan.btn-lighten-2:hover {
+ background-color: #00838f !important;
+ }
+ .btn-cyan.btn-lighten-2:active,
+ .btn-cyan.btn-lighten-2:focus {
+ border-color: #00838f !important;
+ background-color: #006064 !important;
+ }
+ .btn-outline-cyan.btn-outline-lighten-2 {
+ border-color: #4dd0e1 !important;
+ color: #4dd0e1 !important;
+ }
+ .btn-outline-cyan.btn-outline-lighten-2:hover {
+ background-color: #4dd0e1 !important;
+ }
+ .border-cyan.border-lighten-2 {
+ border: 1px solid #4dd0e1 !important;
+ }
+ .border-top-cyan.border-top-lighten-2 {
+ border-top: 1px solid #4dd0e1 !important;
+ }
+ .border-bottom-cyan.border-bottom-lighten-2 {
+ border-bottom: 1px solid #4dd0e1 !important;
+ }
+ .border-left-cyan.border-left-lighten-2 {
+ border-left: 1px solid #4dd0e1 !important;
+ }
+ .border-right-cyan.border-right-lighten-2 {
+ border-right: 1px solid #4dd0e1 !important;
+ }
+ .btn-cyan.btn-lighten-1,
+ .btn-cyan.btn-lighten-1:hover {
+ border-color: #0097a7 !important;
+ }
+ .overlay-cyan.overlay-lighten-2 {
+ background: #4dd0e1;
+ background: rgba(77, 208, 225, 0.8);
+ }
+ .bg-cyan.bg-lighten-1,
+ .btn-cyan.btn-lighten-1 {
+ background-color: #26c6da !important;
+ }
+ .cyan.lighten-1 {
+ color: #26c6da !important;
+ }
+ .btn-cyan.btn-lighten-1:hover {
+ background-color: #00838f !important;
+ }
+ .btn-cyan.btn-lighten-1:active,
+ .btn-cyan.btn-lighten-1:focus {
+ border-color: #00838f !important;
+ background-color: #006064 !important;
+ }
+ .btn-outline-cyan.btn-outline-lighten-1 {
+ border-color: #26c6da !important;
+ color: #26c6da !important;
+ }
+ .btn-outline-cyan.btn-outline-lighten-1:hover {
+ background-color: #26c6da !important;
+ }
+ .border-cyan.border-lighten-1 {
+ border: 1px solid #26c6da !important;
+ }
+ .border-top-cyan.border-top-lighten-1 {
+ border-top: 1px solid #26c6da !important;
+ }
+ .border-bottom-cyan.border-bottom-lighten-1 {
+ border-bottom: 1px solid #26c6da !important;
+ }
+ .border-left-cyan.border-left-lighten-1 {
+ border-left: 1px solid #26c6da !important;
+ }
+ .border-right-cyan.border-right-lighten-1 {
+ border-right: 1px solid #26c6da !important;
+ }
+ .overlay-cyan.overlay-lighten-1 {
+ background: #26c6da;
+ background: rgba(38, 198, 218, 0.8);
+ }
+ .cyan {
+ color: #00bcd4 !important;
+ }
+ .bg-cyan {
+ background-color: #00bcd4 !important;
+ }
+ .bg-cyan .card-footer,
+ .bg-cyan .card-header {
+ background-color: transparent;
+ }
+ .alert-cyan {
+ border-color: #1ce5ff !important;
+ background-color: #1ce5ff !important;
+ color: #001e22 !important;
+ }
+ .alert-cyan .alert-link {
+ color: #000 !important;
+ }
+ .bullet.bullet-cyan {
+ background-color: #00bcd4;
+ }
+ .bg-light-cyan {
+ background-color: rgba(0, 188, 212, 0.15);
+ }
+ .bg-cyan.badge-glow,
+ .border-cyan.badge-glow {
+ box-shadow: 0 0 10px #00bcd4;
+ }
+ .overlay-cyan {
+ background: #00bcd4;
+ background: rgba(0, 188, 212, 0.8);
+ }
+ .btn-cyan {
+ background-color: #00bcd4 !important;
+ color: #fff;
+ }
+ .btn-cyan:hover {
+ border-color: #00acc1 !important;
+ background-color: #26c6da !important;
+ color: #fff !important;
+ }
+ .btn-cyan:active,
+ .btn-cyan:focus {
+ border-color: #0097a7 !important;
+ background-color: #00838f !important;
+ color: #fff !important;
+ }
+ .btn-outline-cyan {
+ border-color: #00bcd4;
+ background-color: transparent;
+ color: #00bcd4;
+ }
+ .btn-outline-cyan:hover,
+ .widget-timeline .timeline-items.timeline-icon-cyan:before {
+ background-color: #00bcd4;
+ }
+ .btn-outline-cyan:hover {
+ color: #fff !important;
+ }
+ input[type="checkbox"].bg-cyan + .custom-control-label:before,
+ input[type="radio"].bg-cyan + .custom-control-label:before {
+ background-color: #00bcd4 !important;
+ }
+ .bg-cyan.bg-darken-1,
+ .btn-cyan.btn-darken-1 {
+ background-color: #00acc1 !important;
+ }
+ .border-cyan {
+ border: 1px solid #00bcd4 !important;
+ }
+ .border-top-cyan {
+ border-top: 1px solid #00bcd4;
+ }
+ .border-bottom-cyan {
+ border-bottom: 1px solid #00bcd4;
+ }
+ .border-left-cyan {
+ border-left: 1px solid #00bcd4;
+ }
+ .border-right-cyan {
+ border-right: 1px solid #00bcd4;
+ }
+ .cyan.darken-1 {
+ color: #00acc1 !important;
+ }
+ .btn-cyan.btn-darken-1 {
+ border-color: #0097a7 !important;
+ }
+ .btn-cyan.btn-darken-1:hover {
+ border-color: #0097a7 !important;
+ background-color: #00838f !important;
+ }
+ .btn-cyan.btn-darken-1:active,
+ .btn-cyan.btn-darken-1:focus {
+ border-color: #00838f !important;
+ background-color: #006064 !important;
+ }
+ .btn-outline-cyan.btn-outline-darken-1 {
+ border-color: #00acc1 !important;
+ color: #00acc1 !important;
+ }
+ .btn-outline-cyan.btn-outline-darken-1:hover {
+ background-color: #00acc1 !important;
+ }
+ .border-cyan.border-darken-1 {
+ border: 1px solid #00acc1 !important;
+ }
+ .border-top-cyan.border-top-darken-1 {
+ border-top: 1px solid #00acc1 !important;
+ }
+ .border-bottom-cyan.border-bottom-darken-1 {
+ border-bottom: 1px solid #00acc1 !important;
+ }
+ .border-left-cyan.border-left-darken-1 {
+ border-left: 1px solid #00acc1 !important;
+ }
+ .border-right-cyan.border-right-darken-1 {
+ border-right: 1px solid #00acc1 !important;
+ }
+ .btn-cyan.btn-darken-2,
+ .btn-cyan.btn-darken-2:hover {
+ border-color: #0097a7 !important;
+ }
+ .overlay-cyan.overlay-darken-1 {
+ background: #00acc1;
+ background: rgba(0, 172, 193, 0.8);
+ }
+ .bg-cyan.bg-darken-2,
+ .btn-cyan.btn-darken-2 {
+ background-color: #0097a7 !important;
+ }
+ .cyan.darken-2 {
+ color: #0097a7 !important;
+ }
+ .btn-cyan.btn-darken-2:hover {
+ background-color: #00838f !important;
+ }
+ .btn-cyan.btn-darken-2:active,
+ .btn-cyan.btn-darken-2:focus {
+ border-color: #00838f !important;
+ background-color: #006064 !important;
+ }
+ .btn-outline-cyan.btn-outline-darken-2 {
+ border-color: #0097a7 !important;
+ color: #0097a7 !important;
+ }
+ .btn-outline-cyan.btn-outline-darken-2:hover {
+ background-color: #0097a7 !important;
+ }
+ .border-cyan.border-darken-2 {
+ border: 1px solid #0097a7 !important;
+ }
+ .border-top-cyan.border-top-darken-2 {
+ border-top: 1px solid #0097a7 !important;
+ }
+ .border-bottom-cyan.border-bottom-darken-2 {
+ border-bottom: 1px solid #0097a7 !important;
+ }
+ .border-left-cyan.border-left-darken-2 {
+ border-left: 1px solid #0097a7 !important;
+ }
+ .border-right-cyan.border-right-darken-2 {
+ border-right: 1px solid #0097a7 !important;
+ }
+ .overlay-cyan.overlay-darken-2 {
+ background: #0097a7;
+ background: rgba(0, 151, 167, 0.8);
+ }
+ .cyan.darken-3 {
+ color: #00838f !important;
+ }
+ .bg-cyan.bg-darken-3 {
+ background-color: #00838f !important;
+ }
+ .btn-cyan.btn-darken-3,
+ .btn-cyan.btn-darken-3:hover {
+ border-color: #0097a7 !important;
+ background-color: #00838f !important;
+ }
+ .btn-cyan.btn-darken-3:active,
+ .btn-cyan.btn-darken-3:focus {
+ border-color: #00838f !important;
+ background-color: #006064 !important;
+ }
+ .btn-outline-cyan.btn-outline-darken-3 {
+ border-color: #00838f !important;
+ color: #00838f !important;
+ }
+ .btn-outline-cyan.btn-outline-darken-3:hover {
+ background-color: #00838f !important;
+ }
+ .border-cyan.border-darken-3 {
+ border: 1px solid #00838f !important;
+ }
+ .border-top-cyan.border-top-darken-3 {
+ border-top: 1px solid #00838f !important;
+ }
+ .border-bottom-cyan.border-bottom-darken-3 {
+ border-bottom: 1px solid #00838f !important;
+ }
+ .border-left-cyan.border-left-darken-3 {
+ border-left: 1px solid #00838f !important;
+ }
+ .border-right-cyan.border-right-darken-3 {
+ border-right: 1px solid #00838f !important;
+ }
+ .btn-cyan.btn-darken-4,
+ .btn-cyan.btn-darken-4:hover {
+ border-color: #0097a7 !important;
+ }
+ .overlay-cyan.overlay-darken-3 {
+ background: #00838f;
+ background: rgba(0, 131, 143, 0.8);
+ }
+ .bg-cyan.bg-darken-4,
+ .btn-cyan.btn-darken-4 {
+ background-color: #006064 !important;
+ }
+ .cyan.darken-4 {
+ color: #006064 !important;
+ }
+ .btn-cyan.btn-darken-4:hover {
+ background-color: #00838f !important;
+ }
+ .btn-cyan.btn-darken-4:active,
+ .btn-cyan.btn-darken-4:focus {
+ border-color: #00838f !important;
+ background-color: #006064 !important;
+ }
+ .btn-outline-cyan.btn-outline-darken-4 {
+ border-color: #006064 !important;
+ color: #006064 !important;
+ }
+ .btn-outline-cyan.btn-outline-darken-4:hover {
+ background-color: #006064 !important;
+ }
+ .border-cyan.border-darken-4 {
+ border: 1px solid #006064 !important;
+ }
+ .border-top-cyan.border-top-darken-4 {
+ border-top: 1px solid #006064 !important;
+ }
+ .border-bottom-cyan.border-bottom-darken-4 {
+ border-bottom: 1px solid #006064 !important;
+ }
+ .border-left-cyan.border-left-darken-4 {
+ border-left: 1px solid #006064 !important;
+ }
+ .border-right-cyan.border-right-darken-4 {
+ border-right: 1px solid #006064 !important;
+ }
+ .btn-cyan.btn-accent-1,
+ .btn-cyan.btn-accent-1:hover {
+ border-color: #0097a7 !important;
+ }
+ .overlay-cyan.overlay-darken-4 {
+ background: #006064;
+ background: rgba(0, 96, 100, 0.8);
+ }
+ .bg-cyan.bg-accent-1,
+ .btn-cyan.btn-accent-1 {
+ background-color: #84ffff !important;
+ }
+ .cyan.accent-1 {
+ color: #84ffff !important;
+ }
+ .btn-cyan.btn-accent-1:hover {
+ background-color: #00838f !important;
+ }
+ .btn-cyan.btn-accent-1:active,
+ .btn-cyan.btn-accent-1:focus {
+ border-color: #00838f !important;
+ background-color: #006064 !important;
+ }
+ .btn-outline-cyan.btn-outline-accent-1 {
+ border-color: #84ffff !important;
+ color: #84ffff !important;
+ }
+ .btn-outline-cyan.btn-outline-accent-1:hover {
+ background-color: #84ffff !important;
+ }
+ .border-cyan.border-accent-1 {
+ border: 1px solid #84ffff !important;
+ }
+ .border-top-cyan.border-top-accent-1 {
+ border-top: 1px solid #84ffff !important;
+ }
+ .border-bottom-cyan.border-bottom-accent-1 {
+ border-bottom: 1px solid #84ffff !important;
+ }
+ .border-left-cyan.border-left-accent-1 {
+ border-left: 1px solid #84ffff !important;
+ }
+ .border-right-cyan.border-right-accent-1 {
+ border-right: 1px solid #84ffff !important;
+ }
+ .btn-cyan.btn-accent-2,
+ .btn-cyan.btn-accent-2:hover {
+ border-color: #0097a7 !important;
+ }
+ .overlay-cyan.overlay-accent-1 {
+ background: #84ffff;
+ background: rgba(132, 255, 255, 0.8);
+ }
+ .bg-cyan.bg-accent-2,
+ .btn-cyan.btn-accent-2 {
+ background-color: #18ffff !important;
+ }
+ .cyan.accent-2 {
+ color: #18ffff !important;
+ }
+ .btn-cyan.btn-accent-2:hover {
+ background-color: #00838f !important;
+ }
+ .btn-cyan.btn-accent-2:active,
+ .btn-cyan.btn-accent-2:focus {
+ border-color: #00838f !important;
+ background-color: #006064 !important;
+ }
+ .btn-outline-cyan.btn-outline-accent-2 {
+ border-color: #18ffff !important;
+ color: #18ffff !important;
+ }
+ .btn-outline-cyan.btn-outline-accent-2:hover {
+ background-color: #18ffff !important;
+ }
+ .border-cyan.border-accent-2 {
+ border: 1px solid #18ffff !important;
+ }
+ .border-top-cyan.border-top-accent-2 {
+ border-top: 1px solid #18ffff !important;
+ }
+ .border-bottom-cyan.border-bottom-accent-2 {
+ border-bottom: 1px solid #18ffff !important;
+ }
+ .border-left-cyan.border-left-accent-2 {
+ border-left: 1px solid #18ffff !important;
+ }
+ .border-right-cyan.border-right-accent-2 {
+ border-right: 1px solid #18ffff !important;
+ }
+ .btn-cyan.btn-accent-3,
+ .btn-cyan.btn-accent-3:hover {
+ border-color: #0097a7 !important;
+ }
+ .overlay-cyan.overlay-accent-2 {
+ background: #18ffff;
+ background: rgba(24, 255, 255, 0.8);
+ }
+ .bg-cyan.bg-accent-3,
+ .btn-cyan.btn-accent-3 {
+ background-color: #00e5ff !important;
+ }
+ .cyan.accent-3 {
+ color: #00e5ff !important;
+ }
+ .btn-cyan.btn-accent-3:hover {
+ background-color: #00838f !important;
+ }
+ .btn-cyan.btn-accent-3:active,
+ .btn-cyan.btn-accent-3:focus {
+ border-color: #00838f !important;
+ background-color: #006064 !important;
+ }
+ .btn-outline-cyan.btn-outline-accent-3 {
+ border-color: #00e5ff !important;
+ color: #00e5ff !important;
+ }
+ .btn-outline-cyan.btn-outline-accent-3:hover {
+ background-color: #00e5ff !important;
+ }
+ .border-cyan.border-accent-3 {
+ border: 1px solid #00e5ff !important;
+ }
+ .border-top-cyan.border-top-accent-3 {
+ border-top: 1px solid #00e5ff !important;
+ }
+ .border-bottom-cyan.border-bottom-accent-3 {
+ border-bottom: 1px solid #00e5ff !important;
+ }
+ .border-left-cyan.border-left-accent-3 {
+ border-left: 1px solid #00e5ff !important;
+ }
+ .border-right-cyan.border-right-accent-3 {
+ border-right: 1px solid #00e5ff !important;
+ }
+ .btn-cyan.btn-accent-4,
+ .btn-cyan.btn-accent-4:hover {
+ border-color: #0097a7 !important;
+ }
+ .overlay-cyan.overlay-accent-3 {
+ background: #00e5ff;
+ background: rgba(0, 229, 255, 0.8);
+ }
+ .bg-cyan.bg-accent-4,
+ .btn-cyan.btn-accent-4 {
+ background-color: #00b8d4 !important;
+ }
+ .cyan.accent-4 {
+ color: #00b8d4 !important;
+ }
+ .btn-cyan.btn-accent-4:hover {
+ background-color: #00838f !important;
+ }
+ .btn-cyan.btn-accent-4:active,
+ .btn-cyan.btn-accent-4:focus {
+ border-color: #00838f !important;
+ background-color: #006064 !important;
+ }
+ .btn-outline-cyan.btn-outline-accent-4 {
+ border-color: #00b8d4 !important;
+ color: #00b8d4 !important;
+ }
+ .btn-outline-cyan.btn-outline-accent-4:hover {
+ background-color: #00b8d4 !important;
+ }
+ input:focus ~ .bg-cyan {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #00b8d4 !important;
+ }
+ .border-cyan.border-accent-4 {
+ border: 1px solid #00b8d4 !important;
+ }
+ .border-top-cyan.border-top-accent-4 {
+ border-top: 1px solid #00b8d4 !important;
+ }
+ .border-bottom-cyan.border-bottom-accent-4 {
+ border-bottom: 1px solid #00b8d4 !important;
+ }
+ .border-left-cyan.border-left-accent-4 {
+ border-left: 1px solid #00b8d4 !important;
+ }
+ .border-right-cyan.border-right-accent-4 {
+ border-right: 1px solid #00b8d4 !important;
+ }
+ .btn-teal.btn-lighten-5,
+ .btn-teal.btn-lighten-5:hover {
+ border-color: #00796b !important;
+ }
+ .overlay-cyan.overlay-accent-4 {
+ background: #00b8d4;
+ background: rgba(0, 184, 212, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="cyan"]:before {
+ background-color: #00b8d4;
+ }
+ .bg-teal.bg-lighten-5,
+ .btn-teal.btn-lighten-5 {
+ background-color: #e0f2f1 !important;
+ }
+ .teal.lighten-5 {
+ color: #e0f2f1 !important;
+ }
+ .btn-teal.btn-lighten-5:hover {
+ background-color: #00695c !important;
+ }
+ .btn-teal.btn-lighten-5:active,
+ .btn-teal.btn-lighten-5:focus {
+ border-color: #00695c !important;
+ background-color: #004d40 !important;
+ }
+ .btn-outline-teal.btn-outline-lighten-5 {
+ border-color: #e0f2f1 !important;
+ color: #e0f2f1 !important;
+ }
+ .btn-outline-teal.btn-outline-lighten-5:hover {
+ background-color: #e0f2f1 !important;
+ }
+ .border-teal.border-lighten-5 {
+ border: 1px solid #e0f2f1 !important;
+ }
+ .border-top-teal.border-top-lighten-5 {
+ border-top: 1px solid #e0f2f1 !important;
+ }
+ .border-bottom-teal.border-bottom-lighten-5 {
+ border-bottom: 1px solid #e0f2f1 !important;
+ }
+ .border-left-teal.border-left-lighten-5 {
+ border-left: 1px solid #e0f2f1 !important;
+ }
+ .border-right-teal.border-right-lighten-5 {
+ border-right: 1px solid #e0f2f1 !important;
+ }
+ .btn-teal.btn-lighten-4,
+ .btn-teal.btn-lighten-4:hover {
+ border-color: #00796b !important;
+ }
+ .overlay-teal.overlay-lighten-5 {
+ background: #e0f2f1;
+ background: rgba(224, 242, 241, 0.8);
+ }
+ .bg-teal.bg-lighten-4,
+ .btn-teal.btn-lighten-4 {
+ background-color: #b2dfdb !important;
+ }
+ .teal.lighten-4 {
+ color: #b2dfdb !important;
+ }
+ .btn-teal.btn-lighten-4:hover {
+ background-color: #00695c !important;
+ }
+ .btn-teal.btn-lighten-4:active,
+ .btn-teal.btn-lighten-4:focus {
+ border-color: #00695c !important;
+ background-color: #004d40 !important;
+ }
+ .btn-outline-teal.btn-outline-lighten-4 {
+ border-color: #b2dfdb !important;
+ color: #b2dfdb !important;
+ }
+ .btn-outline-teal.btn-outline-lighten-4:hover {
+ background-color: #b2dfdb !important;
+ }
+ .border-teal.border-lighten-4 {
+ border: 1px solid #b2dfdb !important;
+ }
+ .border-top-teal.border-top-lighten-4 {
+ border-top: 1px solid #b2dfdb !important;
+ }
+ .border-bottom-teal.border-bottom-lighten-4 {
+ border-bottom: 1px solid #b2dfdb !important;
+ }
+ .border-left-teal.border-left-lighten-4 {
+ border-left: 1px solid #b2dfdb !important;
+ }
+ .border-right-teal.border-right-lighten-4 {
+ border-right: 1px solid #b2dfdb !important;
+ }
+ .btn-teal.btn-lighten-3,
+ .btn-teal.btn-lighten-3:hover {
+ border-color: #00796b !important;
+ }
+ .overlay-teal.overlay-lighten-4 {
+ background: #b2dfdb;
+ background: rgba(178, 223, 219, 0.8);
+ }
+ .bg-teal.bg-lighten-3,
+ .btn-teal.btn-lighten-3 {
+ background-color: #80cbc4 !important;
+ }
+ .teal.lighten-3 {
+ color: #80cbc4 !important;
+ }
+ .btn-teal.btn-lighten-3:hover {
+ background-color: #00695c !important;
+ }
+ .btn-teal.btn-lighten-3:active,
+ .btn-teal.btn-lighten-3:focus {
+ border-color: #00695c !important;
+ background-color: #004d40 !important;
+ }
+ .btn-outline-teal.btn-outline-lighten-3 {
+ border-color: #80cbc4 !important;
+ color: #80cbc4 !important;
+ }
+ .btn-outline-teal.btn-outline-lighten-3:hover {
+ background-color: #80cbc4 !important;
+ }
+ .border-teal.border-lighten-3 {
+ border: 1px solid #80cbc4 !important;
+ }
+ .border-top-teal.border-top-lighten-3 {
+ border-top: 1px solid #80cbc4 !important;
+ }
+ .border-bottom-teal.border-bottom-lighten-3 {
+ border-bottom: 1px solid #80cbc4 !important;
+ }
+ .border-left-teal.border-left-lighten-3 {
+ border-left: 1px solid #80cbc4 !important;
+ }
+ .border-right-teal.border-right-lighten-3 {
+ border-right: 1px solid #80cbc4 !important;
+ }
+ .btn-teal.btn-lighten-2,
+ .btn-teal.btn-lighten-2:hover {
+ border-color: #00796b !important;
+ }
+ .overlay-teal.overlay-lighten-3 {
+ background: #80cbc4;
+ background: rgba(128, 203, 196, 0.8);
+ }
+ .bg-teal.bg-lighten-2,
+ .btn-teal.btn-lighten-2 {
+ background-color: #4db6ac !important;
+ }
+ .teal.lighten-2 {
+ color: #4db6ac !important;
+ }
+ .btn-teal.btn-lighten-2:hover {
+ background-color: #00695c !important;
+ }
+ .btn-teal.btn-lighten-2:active,
+ .btn-teal.btn-lighten-2:focus {
+ border-color: #00695c !important;
+ background-color: #004d40 !important;
+ }
+ .btn-outline-teal.btn-outline-lighten-2 {
+ border-color: #4db6ac !important;
+ color: #4db6ac !important;
+ }
+ .btn-outline-teal.btn-outline-lighten-2:hover {
+ background-color: #4db6ac !important;
+ }
+ .border-teal.border-lighten-2 {
+ border: 1px solid #4db6ac !important;
+ }
+ .border-top-teal.border-top-lighten-2 {
+ border-top: 1px solid #4db6ac !important;
+ }
+ .border-bottom-teal.border-bottom-lighten-2 {
+ border-bottom: 1px solid #4db6ac !important;
+ }
+ .border-left-teal.border-left-lighten-2 {
+ border-left: 1px solid #4db6ac !important;
+ }
+ .border-right-teal.border-right-lighten-2 {
+ border-right: 1px solid #4db6ac !important;
+ }
+ .btn-teal.btn-lighten-1,
+ .btn-teal.btn-lighten-1:hover {
+ border-color: #00796b !important;
+ }
+ .overlay-teal.overlay-lighten-2 {
+ background: #4db6ac;
+ background: rgba(77, 182, 172, 0.8);
+ }
+ .bg-teal.bg-lighten-1,
+ .btn-teal.btn-lighten-1 {
+ background-color: #26a69a !important;
+ }
+ .teal.lighten-1 {
+ color: #26a69a !important;
+ }
+ .btn-teal.btn-lighten-1:hover {
+ background-color: #00695c !important;
+ }
+ .btn-teal.btn-lighten-1:active,
+ .btn-teal.btn-lighten-1:focus {
+ border-color: #00695c !important;
+ background-color: #004d40 !important;
+ }
+ .btn-outline-teal.btn-outline-lighten-1 {
+ border-color: #26a69a !important;
+ color: #26a69a !important;
+ }
+ .btn-outline-teal.btn-outline-lighten-1:hover {
+ background-color: #26a69a !important;
+ }
+ .border-teal.border-lighten-1 {
+ border: 1px solid #26a69a !important;
+ }
+ .border-top-teal.border-top-lighten-1 {
+ border-top: 1px solid #26a69a !important;
+ }
+ .border-bottom-teal.border-bottom-lighten-1 {
+ border-bottom: 1px solid #26a69a !important;
+ }
+ .border-left-teal.border-left-lighten-1 {
+ border-left: 1px solid #26a69a !important;
+ }
+ .border-right-teal.border-right-lighten-1 {
+ border-right: 1px solid #26a69a !important;
+ }
+ .overlay-teal.overlay-lighten-1 {
+ background: #26a69a;
+ background: rgba(38, 166, 154, 0.8);
+ }
+ .teal {
+ color: #009688 !important;
+ }
+ .alert-teal,
+ .alert-teal .alert-link {
+ color: #000 !important;
+ }
+ .bg-teal {
+ background-color: #009688 !important;
+ }
+ .bg-teal .card-footer,
+ .bg-teal .card-header {
+ background-color: transparent;
+ }
+ .alert-teal {
+ border-color: #00ddc9 !important;
+ background-color: #00ddc9 !important;
+ }
+ .bullet.bullet-teal {
+ background-color: #009688;
+ }
+ .bg-light-teal {
+ background-color: rgba(0, 150, 136, 0.15);
+ }
+ .bg-teal.badge-glow,
+ .border-teal.badge-glow {
+ box-shadow: 0 0 10px #009688;
+ }
+ .overlay-teal {
+ background: #009688;
+ background: rgba(0, 150, 136, 0.8);
+ }
+ .btn-teal {
+ background-color: #009688 !important;
+ color: #fff;
+ }
+ .btn-teal:hover {
+ border-color: #00897b !important;
+ background-color: #26a69a !important;
+ color: #fff !important;
+ }
+ .btn-teal:active,
+ .btn-teal:focus {
+ border-color: #00796b !important;
+ background-color: #00695c !important;
+ color: #fff !important;
+ }
+ .btn-outline-teal {
+ border-color: #009688;
+ background-color: transparent;
+ color: #009688;
+ }
+ .btn-outline-teal:hover,
+ .widget-timeline .timeline-items.timeline-icon-teal:before {
+ background-color: #009688;
+ }
+ .btn-outline-teal:hover {
+ color: #fff !important;
+ }
+ input[type="checkbox"].bg-teal + .custom-control-label:before,
+ input[type="radio"].bg-teal + .custom-control-label:before {
+ background-color: #009688 !important;
+ }
+ .bg-teal.bg-darken-1,
+ .btn-teal.btn-darken-1 {
+ background-color: #00897b !important;
+ }
+ .border-teal {
+ border: 1px solid #009688 !important;
+ }
+ .border-top-teal {
+ border-top: 1px solid #009688;
+ }
+ .border-bottom-teal {
+ border-bottom: 1px solid #009688;
+ }
+ .border-left-teal {
+ border-left: 1px solid #009688;
+ }
+ .border-right-teal {
+ border-right: 1px solid #009688;
+ }
+ .teal.darken-1 {
+ color: #00897b !important;
+ }
+ .btn-teal.btn-darken-1 {
+ border-color: #00796b !important;
+ }
+ .btn-teal.btn-darken-1:hover {
+ border-color: #00796b !important;
+ background-color: #00695c !important;
+ }
+ .btn-teal.btn-darken-1:active,
+ .btn-teal.btn-darken-1:focus {
+ border-color: #00695c !important;
+ background-color: #004d40 !important;
+ }
+ .btn-outline-teal.btn-outline-darken-1 {
+ border-color: #00897b !important;
+ color: #00897b !important;
+ }
+ .btn-outline-teal.btn-outline-darken-1:hover {
+ background-color: #00897b !important;
+ }
+ .border-teal.border-darken-1 {
+ border: 1px solid #00897b !important;
+ }
+ .border-top-teal.border-top-darken-1 {
+ border-top: 1px solid #00897b !important;
+ }
+ .border-bottom-teal.border-bottom-darken-1 {
+ border-bottom: 1px solid #00897b !important;
+ }
+ .border-left-teal.border-left-darken-1 {
+ border-left: 1px solid #00897b !important;
+ }
+ .border-right-teal.border-right-darken-1 {
+ border-right: 1px solid #00897b !important;
+ }
+ .btn-teal.btn-darken-2,
+ .btn-teal.btn-darken-2:hover {
+ border-color: #00796b !important;
+ }
+ .overlay-teal.overlay-darken-1 {
+ background: #00897b;
+ background: rgba(0, 137, 123, 0.8);
+ }
+ .bg-teal.bg-darken-2,
+ .btn-teal.btn-darken-2 {
+ background-color: #00796b !important;
+ }
+ .teal.darken-2 {
+ color: #00796b !important;
+ }
+ .btn-teal.btn-darken-2:hover {
+ background-color: #00695c !important;
+ }
+ .btn-teal.btn-darken-2:active,
+ .btn-teal.btn-darken-2:focus {
+ border-color: #00695c !important;
+ background-color: #004d40 !important;
+ }
+ .btn-outline-teal.btn-outline-darken-2 {
+ border-color: #00796b !important;
+ color: #00796b !important;
+ }
+ .btn-outline-teal.btn-outline-darken-2:hover {
+ background-color: #00796b !important;
+ }
+ .border-teal.border-darken-2 {
+ border: 1px solid #00796b !important;
+ }
+ .border-top-teal.border-top-darken-2 {
+ border-top: 1px solid #00796b !important;
+ }
+ .border-bottom-teal.border-bottom-darken-2 {
+ border-bottom: 1px solid #00796b !important;
+ }
+ .border-left-teal.border-left-darken-2 {
+ border-left: 1px solid #00796b !important;
+ }
+ .border-right-teal.border-right-darken-2 {
+ border-right: 1px solid #00796b !important;
+ }
+ .overlay-teal.overlay-darken-2 {
+ background: #00796b;
+ background: rgba(0, 121, 107, 0.8);
+ }
+ .teal.darken-3 {
+ color: #00695c !important;
+ }
+ .bg-teal.bg-darken-3 {
+ background-color: #00695c !important;
+ }
+ .btn-teal.btn-darken-3,
+ .btn-teal.btn-darken-3:hover {
+ border-color: #00796b !important;
+ background-color: #00695c !important;
+ }
+ .btn-teal.btn-darken-3:active,
+ .btn-teal.btn-darken-3:focus {
+ border-color: #00695c !important;
+ background-color: #004d40 !important;
+ }
+ .btn-outline-teal.btn-outline-darken-3 {
+ border-color: #00695c !important;
+ color: #00695c !important;
+ }
+ .btn-outline-teal.btn-outline-darken-3:hover {
+ background-color: #00695c !important;
+ }
+ .border-teal.border-darken-3 {
+ border: 1px solid #00695c !important;
+ }
+ .border-top-teal.border-top-darken-3 {
+ border-top: 1px solid #00695c !important;
+ }
+ .border-bottom-teal.border-bottom-darken-3 {
+ border-bottom: 1px solid #00695c !important;
+ }
+ .border-left-teal.border-left-darken-3 {
+ border-left: 1px solid #00695c !important;
+ }
+ .border-right-teal.border-right-darken-3 {
+ border-right: 1px solid #00695c !important;
+ }
+ .btn-teal.btn-darken-4,
+ .btn-teal.btn-darken-4:hover {
+ border-color: #00796b !important;
+ }
+ .overlay-teal.overlay-darken-3 {
+ background: #00695c;
+ background: rgba(0, 105, 92, 0.8);
+ }
+ .bg-teal.bg-darken-4,
+ .btn-teal.btn-darken-4 {
+ background-color: #004d40 !important;
+ }
+ .teal.darken-4 {
+ color: #004d40 !important;
+ }
+ .btn-teal.btn-darken-4:hover {
+ background-color: #00695c !important;
+ }
+ .btn-teal.btn-darken-4:active,
+ .btn-teal.btn-darken-4:focus {
+ border-color: #00695c !important;
+ background-color: #004d40 !important;
+ }
+ .btn-outline-teal.btn-outline-darken-4 {
+ border-color: #004d40 !important;
+ color: #004d40 !important;
+ }
+ .btn-outline-teal.btn-outline-darken-4:hover {
+ background-color: #004d40 !important;
+ }
+ .border-teal.border-darken-4 {
+ border: 1px solid #004d40 !important;
+ }
+ .border-top-teal.border-top-darken-4 {
+ border-top: 1px solid #004d40 !important;
+ }
+ .border-bottom-teal.border-bottom-darken-4 {
+ border-bottom: 1px solid #004d40 !important;
+ }
+ .border-left-teal.border-left-darken-4 {
+ border-left: 1px solid #004d40 !important;
+ }
+ .border-right-teal.border-right-darken-4 {
+ border-right: 1px solid #004d40 !important;
+ }
+ .btn-teal.btn-accent-1,
+ .btn-teal.btn-accent-1:hover {
+ border-color: #00796b !important;
+ }
+ .overlay-teal.overlay-darken-4 {
+ background: #004d40;
+ background: rgba(0, 77, 64, 0.8);
+ }
+ .bg-teal.bg-accent-1,
+ .btn-teal.btn-accent-1 {
+ background-color: #a7ffeb !important;
+ }
+ .teal.accent-1 {
+ color: #a7ffeb !important;
+ }
+ .btn-teal.btn-accent-1:hover {
+ background-color: #00695c !important;
+ }
+ .btn-teal.btn-accent-1:active,
+ .btn-teal.btn-accent-1:focus {
+ border-color: #00695c !important;
+ background-color: #004d40 !important;
+ }
+ .btn-outline-teal.btn-outline-accent-1 {
+ border-color: #a7ffeb !important;
+ color: #a7ffeb !important;
+ }
+ .btn-outline-teal.btn-outline-accent-1:hover {
+ background-color: #a7ffeb !important;
+ }
+ .border-teal.border-accent-1 {
+ border: 1px solid #a7ffeb !important;
+ }
+ .border-top-teal.border-top-accent-1 {
+ border-top: 1px solid #a7ffeb !important;
+ }
+ .border-bottom-teal.border-bottom-accent-1 {
+ border-bottom: 1px solid #a7ffeb !important;
+ }
+ .border-left-teal.border-left-accent-1 {
+ border-left: 1px solid #a7ffeb !important;
+ }
+ .border-right-teal.border-right-accent-1 {
+ border-right: 1px solid #a7ffeb !important;
+ }
+ .btn-teal.btn-accent-2,
+ .btn-teal.btn-accent-2:hover {
+ border-color: #00796b !important;
+ }
+ .overlay-teal.overlay-accent-1 {
+ background: #a7ffeb;
+ background: rgba(167, 255, 235, 0.8);
+ }
+ .bg-teal.bg-accent-2,
+ .btn-teal.btn-accent-2 {
+ background-color: #64ffda !important;
+ }
+ .teal.accent-2 {
+ color: #64ffda !important;
+ }
+ .btn-teal.btn-accent-2:hover {
+ background-color: #00695c !important;
+ }
+ .btn-teal.btn-accent-2:active,
+ .btn-teal.btn-accent-2:focus {
+ border-color: #00695c !important;
+ background-color: #004d40 !important;
+ }
+ .btn-outline-teal.btn-outline-accent-2 {
+ border-color: #64ffda !important;
+ color: #64ffda !important;
+ }
+ .btn-outline-teal.btn-outline-accent-2:hover {
+ background-color: #64ffda !important;
+ }
+ .border-teal.border-accent-2 {
+ border: 1px solid #64ffda !important;
+ }
+ .border-top-teal.border-top-accent-2 {
+ border-top: 1px solid #64ffda !important;
+ }
+ .border-bottom-teal.border-bottom-accent-2 {
+ border-bottom: 1px solid #64ffda !important;
+ }
+ .border-left-teal.border-left-accent-2 {
+ border-left: 1px solid #64ffda !important;
+ }
+ .border-right-teal.border-right-accent-2 {
+ border-right: 1px solid #64ffda !important;
+ }
+ .btn-teal.btn-accent-3,
+ .btn-teal.btn-accent-3:hover {
+ border-color: #00796b !important;
+ }
+ .overlay-teal.overlay-accent-2 {
+ background: #64ffda;
+ background: rgba(100, 255, 218, 0.8);
+ }
+ .bg-teal.bg-accent-3,
+ .btn-teal.btn-accent-3 {
+ background-color: #1de9b6 !important;
+ }
+ .teal.accent-3 {
+ color: #1de9b6 !important;
+ }
+ .btn-teal.btn-accent-3:hover {
+ background-color: #00695c !important;
+ }
+ .btn-teal.btn-accent-3:active,
+ .btn-teal.btn-accent-3:focus {
+ border-color: #00695c !important;
+ background-color: #004d40 !important;
+ }
+ .btn-outline-teal.btn-outline-accent-3 {
+ border-color: #1de9b6 !important;
+ color: #1de9b6 !important;
+ }
+ .btn-outline-teal.btn-outline-accent-3:hover {
+ background-color: #1de9b6 !important;
+ }
+ .border-teal.border-accent-3 {
+ border: 1px solid #1de9b6 !important;
+ }
+ .border-top-teal.border-top-accent-3 {
+ border-top: 1px solid #1de9b6 !important;
+ }
+ .border-bottom-teal.border-bottom-accent-3 {
+ border-bottom: 1px solid #1de9b6 !important;
+ }
+ .border-left-teal.border-left-accent-3 {
+ border-left: 1px solid #1de9b6 !important;
+ }
+ .border-right-teal.border-right-accent-3 {
+ border-right: 1px solid #1de9b6 !important;
+ }
+ .btn-teal.btn-accent-4,
+ .btn-teal.btn-accent-4:hover {
+ border-color: #00796b !important;
+ }
+ .overlay-teal.overlay-accent-3 {
+ background: #1de9b6;
+ background: rgba(29, 233, 182, 0.8);
+ }
+ .bg-teal.bg-accent-4,
+ .btn-teal.btn-accent-4 {
+ background-color: #00bfa5 !important;
+ }
+ .teal.accent-4 {
+ color: #00bfa5 !important;
+ }
+ .btn-teal.btn-accent-4:hover {
+ background-color: #00695c !important;
+ }
+ .btn-teal.btn-accent-4:active,
+ .btn-teal.btn-accent-4:focus {
+ border-color: #00695c !important;
+ background-color: #004d40 !important;
+ }
+ .btn-outline-teal.btn-outline-accent-4 {
+ border-color: #00bfa5 !important;
+ color: #00bfa5 !important;
+ }
+ .btn-outline-teal.btn-outline-accent-4:hover {
+ background-color: #00bfa5 !important;
+ }
+ input:focus ~ .bg-teal {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #00bfa5 !important;
+ }
+ .border-teal.border-accent-4 {
+ border: 1px solid #00bfa5 !important;
+ }
+ .border-top-teal.border-top-accent-4 {
+ border-top: 1px solid #00bfa5 !important;
+ }
+ .border-bottom-teal.border-bottom-accent-4 {
+ border-bottom: 1px solid #00bfa5 !important;
+ }
+ .border-left-teal.border-left-accent-4 {
+ border-left: 1px solid #00bfa5 !important;
+ }
+ .border-right-teal.border-right-accent-4 {
+ border-right: 1px solid #00bfa5 !important;
+ }
+ .overlay-teal.overlay-accent-4 {
+ background: #00bfa5;
+ background: rgba(0, 191, 165, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="teal"]:before {
+ background-color: #00bfa5;
+ }
+ .bg-yellow.bg-lighten-5,
+ .btn-yellow.btn-lighten-5 {
+ background-color: #fffde7 !important;
+ }
+ .yellow.lighten-5 {
+ color: #fffde7 !important;
+ }
+ .btn-yellow.btn-lighten-5 {
+ border-color: #fbc02d !important;
+ }
+ .btn-yellow.btn-lighten-5:hover {
+ border-color: #fbc02d !important;
+ background-color: #f9a825 !important;
+ }
+ .btn-yellow.btn-lighten-5:active,
+ .btn-yellow.btn-lighten-5:focus {
+ border-color: #f9a825 !important;
+ background-color: #f57f17 !important;
+ }
+ .btn-outline-yellow.btn-outline-lighten-5 {
+ border-color: #fffde7 !important;
+ color: #fffde7 !important;
+ }
+ .btn-outline-yellow.btn-outline-lighten-5:hover {
+ background-color: #fffde7 !important;
+ }
+ .border-yellow.border-lighten-5 {
+ border: 1px solid #fffde7 !important;
+ }
+ .border-top-yellow.border-top-lighten-5 {
+ border-top: 1px solid #fffde7 !important;
+ }
+ .border-bottom-yellow.border-bottom-lighten-5 {
+ border-bottom: 1px solid #fffde7 !important;
+ }
+ .border-left-yellow.border-left-lighten-5 {
+ border-left: 1px solid #fffde7 !important;
+ }
+ .border-right-yellow.border-right-lighten-5 {
+ border-right: 1px solid #fffde7 !important;
+ }
+ .overlay-yellow.overlay-lighten-5 {
+ background: #fffde7;
+ background: rgba(255, 253, 231, 0.8);
+ }
+ .bg-yellow.bg-lighten-4,
+ .btn-yellow.btn-lighten-4 {
+ background-color: #fff9c4 !important;
+ }
+ .yellow.lighten-4 {
+ color: #fff9c4 !important;
+ }
+ .btn-yellow.btn-lighten-4 {
+ border-color: #fbc02d !important;
+ }
+ .btn-yellow.btn-lighten-4:hover {
+ border-color: #fbc02d !important;
+ background-color: #f9a825 !important;
+ }
+ .btn-yellow.btn-lighten-4:active,
+ .btn-yellow.btn-lighten-4:focus {
+ border-color: #f9a825 !important;
+ background-color: #f57f17 !important;
+ }
+ .btn-outline-yellow.btn-outline-lighten-4 {
+ border-color: #fff9c4 !important;
+ color: #fff9c4 !important;
+ }
+ .btn-outline-yellow.btn-outline-lighten-4:hover {
+ background-color: #fff9c4 !important;
+ }
+ .border-yellow.border-lighten-4 {
+ border: 1px solid #fff9c4 !important;
+ }
+ .border-top-yellow.border-top-lighten-4 {
+ border-top: 1px solid #fff9c4 !important;
+ }
+ .border-bottom-yellow.border-bottom-lighten-4 {
+ border-bottom: 1px solid #fff9c4 !important;
+ }
+ .border-left-yellow.border-left-lighten-4 {
+ border-left: 1px solid #fff9c4 !important;
+ }
+ .border-right-yellow.border-right-lighten-4 {
+ border-right: 1px solid #fff9c4 !important;
+ }
+ .overlay-yellow.overlay-lighten-4 {
+ background: #fff9c4;
+ background: rgba(255, 249, 196, 0.8);
+ }
+ .bg-yellow.bg-lighten-3,
+ .btn-yellow.btn-lighten-3 {
+ background-color: #fff59d !important;
+ }
+ .yellow.lighten-3 {
+ color: #fff59d !important;
+ }
+ .btn-yellow.btn-lighten-3 {
+ border-color: #fbc02d !important;
+ }
+ .btn-yellow.btn-lighten-3:hover {
+ border-color: #fbc02d !important;
+ background-color: #f9a825 !important;
+ }
+ .btn-yellow.btn-lighten-3:active,
+ .btn-yellow.btn-lighten-3:focus {
+ border-color: #f9a825 !important;
+ background-color: #f57f17 !important;
+ }
+ .btn-outline-yellow.btn-outline-lighten-3 {
+ border-color: #fff59d !important;
+ color: #fff59d !important;
+ }
+ .btn-outline-yellow.btn-outline-lighten-3:hover {
+ background-color: #fff59d !important;
+ }
+ .border-yellow.border-lighten-3 {
+ border: 1px solid #fff59d !important;
+ }
+ .border-top-yellow.border-top-lighten-3 {
+ border-top: 1px solid #fff59d !important;
+ }
+ .border-bottom-yellow.border-bottom-lighten-3 {
+ border-bottom: 1px solid #fff59d !important;
+ }
+ .border-left-yellow.border-left-lighten-3 {
+ border-left: 1px solid #fff59d !important;
+ }
+ .border-right-yellow.border-right-lighten-3 {
+ border-right: 1px solid #fff59d !important;
+ }
+ .overlay-yellow.overlay-lighten-3 {
+ background: #fff59d;
+ background: rgba(255, 245, 157, 0.8);
+ }
+ .bg-yellow.bg-lighten-2,
+ .btn-yellow.btn-lighten-2 {
+ background-color: #fff176 !important;
+ }
+ .yellow.lighten-2 {
+ color: #fff176 !important;
+ }
+ .btn-yellow.btn-lighten-2 {
+ border-color: #fbc02d !important;
+ }
+ .btn-yellow.btn-lighten-2:hover {
+ border-color: #fbc02d !important;
+ background-color: #f9a825 !important;
+ }
+ .btn-yellow.btn-lighten-2:active,
+ .btn-yellow.btn-lighten-2:focus {
+ border-color: #f9a825 !important;
+ background-color: #f57f17 !important;
+ }
+ .btn-outline-yellow.btn-outline-lighten-2 {
+ border-color: #fff176 !important;
+ color: #fff176 !important;
+ }
+ .btn-outline-yellow.btn-outline-lighten-2:hover {
+ background-color: #fff176 !important;
+ }
+ .border-yellow.border-lighten-2 {
+ border: 1px solid #fff176 !important;
+ }
+ .border-top-yellow.border-top-lighten-2 {
+ border-top: 1px solid #fff176 !important;
+ }
+ .border-bottom-yellow.border-bottom-lighten-2 {
+ border-bottom: 1px solid #fff176 !important;
+ }
+ .border-left-yellow.border-left-lighten-2 {
+ border-left: 1px solid #fff176 !important;
+ }
+ .border-right-yellow.border-right-lighten-2 {
+ border-right: 1px solid #fff176 !important;
+ }
+ .overlay-yellow.overlay-lighten-2 {
+ background: #fff176;
+ background: rgba(255, 241, 118, 0.8);
+ }
+ .bg-yellow.bg-lighten-1,
+ .btn-yellow.btn-lighten-1 {
+ background-color: #ffee58 !important;
+ }
+ .yellow.lighten-1 {
+ color: #ffee58 !important;
+ }
+ .btn-yellow.btn-lighten-1 {
+ border-color: #fbc02d !important;
+ }
+ .btn-yellow.btn-lighten-1:hover {
+ border-color: #fbc02d !important;
+ background-color: #f9a825 !important;
+ }
+ .btn-yellow.btn-lighten-1:active,
+ .btn-yellow.btn-lighten-1:focus {
+ border-color: #f9a825 !important;
+ background-color: #f57f17 !important;
+ }
+ .btn-outline-yellow.btn-outline-lighten-1 {
+ border-color: #ffee58 !important;
+ color: #ffee58 !important;
+ }
+ .btn-outline-yellow.btn-outline-lighten-1:hover {
+ background-color: #ffee58 !important;
+ }
+ .border-yellow.border-lighten-1 {
+ border: 1px solid #ffee58 !important;
+ }
+ .border-top-yellow.border-top-lighten-1 {
+ border-top: 1px solid #ffee58 !important;
+ }
+ .border-bottom-yellow.border-bottom-lighten-1 {
+ border-bottom: 1px solid #ffee58 !important;
+ }
+ .border-left-yellow.border-left-lighten-1 {
+ border-left: 1px solid #ffee58 !important;
+ }
+ .border-right-yellow.border-right-lighten-1 {
+ border-right: 1px solid #ffee58 !important;
+ }
+ .overlay-yellow.overlay-lighten-1 {
+ background: #ffee58;
+ background: rgba(255, 238, 88, 0.8);
+ }
+ .yellow {
+ color: #ffeb3b !important;
+ }
+ .bg-yellow {
+ background-color: #ffeb3b !important;
+ }
+ .bg-yellow .card-footer,
+ .bg-yellow .card-header {
+ background-color: transparent;
+ }
+ .alert-yellow {
+ border-color: #fff282 !important;
+ background-color: #fff282 !important;
+ color: #887a00 !important;
+ }
+ .alert-yellow .alert-link {
+ color: #5f5500 !important;
+ }
+ .bullet.bullet-yellow {
+ background-color: #ffeb3b;
+ }
+ .bg-light-yellow {
+ background-color: rgba(255, 235, 59, 0.15);
+ }
+ .bg-yellow.badge-glow,
+ .border-yellow.badge-glow {
+ box-shadow: 0 0 10px #ffeb3b;
+ }
+ .overlay-yellow {
+ background: #ffeb3b;
+ background: rgba(255, 235, 59, 0.8);
+ }
+ .btn-yellow {
+ background-color: #ffeb3b !important;
+ color: #fff;
+ }
+ .btn-yellow:hover {
+ border-color: #fdd835 !important;
+ background-color: #ffee58 !important;
+ color: #fff !important;
+ }
+ .btn-yellow:active,
+ .btn-yellow:focus {
+ border-color: #fbc02d !important;
+ background-color: #f9a825 !important;
+ color: #fff !important;
+ }
+ .btn-outline-yellow {
+ border-color: #ffeb3b;
+ background-color: transparent;
+ color: #ffeb3b;
+ }
+ .btn-outline-yellow:hover {
+ background-color: #ffeb3b;
+ color: #fff !important;
+ }
+ .widget-timeline .timeline-items.timeline-icon-yellow:before {
+ background-color: #ffeb3b;
+ }
+ input[type="checkbox"].bg-yellow + .custom-control-label:before,
+ input[type="radio"].bg-yellow + .custom-control-label:before {
+ background-color: #ffeb3b !important;
+ }
+ .bg-yellow.bg-darken-1,
+ .btn-yellow.btn-darken-1 {
+ background-color: #fdd835 !important;
+ }
+ .border-yellow {
+ border: 1px solid #ffeb3b !important;
+ }
+ .border-top-yellow {
+ border-top: 1px solid #ffeb3b;
+ }
+ .border-bottom-yellow {
+ border-bottom: 1px solid #ffeb3b;
+ }
+ .border-left-yellow {
+ border-left: 1px solid #ffeb3b;
+ }
+ .border-right-yellow {
+ border-right: 1px solid #ffeb3b;
+ }
+ .yellow.darken-1 {
+ color: #fdd835 !important;
+ }
+ .btn-yellow.btn-darken-1 {
+ border-color: #fbc02d !important;
+ }
+ .btn-yellow.btn-darken-1:hover {
+ border-color: #fbc02d !important;
+ background-color: #f9a825 !important;
+ }
+ .btn-yellow.btn-darken-1:active,
+ .btn-yellow.btn-darken-1:focus {
+ border-color: #f9a825 !important;
+ background-color: #f57f17 !important;
+ }
+ .btn-outline-yellow.btn-outline-darken-1 {
+ border-color: #fdd835 !important;
+ color: #fdd835 !important;
+ }
+ .btn-outline-yellow.btn-outline-darken-1:hover {
+ background-color: #fdd835 !important;
+ }
+ .border-yellow.border-darken-1 {
+ border: 1px solid #fdd835 !important;
+ }
+ .border-top-yellow.border-top-darken-1 {
+ border-top: 1px solid #fdd835 !important;
+ }
+ .border-bottom-yellow.border-bottom-darken-1 {
+ border-bottom: 1px solid #fdd835 !important;
+ }
+ .border-left-yellow.border-left-darken-1 {
+ border-left: 1px solid #fdd835 !important;
+ }
+ .border-right-yellow.border-right-darken-1 {
+ border-right: 1px solid #fdd835 !important;
+ }
+ .btn-yellow.btn-darken-2,
+ .btn-yellow.btn-darken-2:hover {
+ border-color: #fbc02d !important;
+ }
+ .overlay-yellow.overlay-darken-1 {
+ background: #fdd835;
+ background: rgba(253, 216, 53, 0.8);
+ }
+ .bg-yellow.bg-darken-2,
+ .btn-yellow.btn-darken-2 {
+ background-color: #fbc02d !important;
+ }
+ .yellow.darken-2 {
+ color: #fbc02d !important;
+ }
+ .btn-yellow.btn-darken-2:hover {
+ background-color: #f9a825 !important;
+ }
+ .btn-yellow.btn-darken-2:active,
+ .btn-yellow.btn-darken-2:focus {
+ border-color: #f9a825 !important;
+ background-color: #f57f17 !important;
+ }
+ .btn-outline-yellow.btn-outline-darken-2 {
+ border-color: #fbc02d !important;
+ color: #fbc02d !important;
+ }
+ .btn-outline-yellow.btn-outline-darken-2:hover {
+ background-color: #fbc02d !important;
+ }
+ .border-yellow.border-darken-2 {
+ border: 1px solid #fbc02d !important;
+ }
+ .border-top-yellow.border-top-darken-2 {
+ border-top: 1px solid #fbc02d !important;
+ }
+ .border-bottom-yellow.border-bottom-darken-2 {
+ border-bottom: 1px solid #fbc02d !important;
+ }
+ .border-left-yellow.border-left-darken-2 {
+ border-left: 1px solid #fbc02d !important;
+ }
+ .border-right-yellow.border-right-darken-2 {
+ border-right: 1px solid #fbc02d !important;
+ }
+ .overlay-yellow.overlay-darken-2 {
+ background: #fbc02d;
+ background: rgba(251, 192, 45, 0.8);
+ }
+ .yellow.darken-3 {
+ color: #f9a825 !important;
+ }
+ .bg-yellow.bg-darken-3 {
+ background-color: #f9a825 !important;
+ }
+ .btn-yellow.btn-darken-3,
+ .btn-yellow.btn-darken-3:hover {
+ border-color: #fbc02d !important;
+ background-color: #f9a825 !important;
+ }
+ .btn-yellow.btn-darken-3:active,
+ .btn-yellow.btn-darken-3:focus {
+ border-color: #f9a825 !important;
+ background-color: #f57f17 !important;
+ }
+ .btn-outline-yellow.btn-outline-darken-3 {
+ border-color: #f9a825 !important;
+ color: #f9a825 !important;
+ }
+ .btn-outline-yellow.btn-outline-darken-3:hover {
+ background-color: #f9a825 !important;
+ }
+ .border-yellow.border-darken-3 {
+ border: 1px solid #f9a825 !important;
+ }
+ .border-top-yellow.border-top-darken-3 {
+ border-top: 1px solid #f9a825 !important;
+ }
+ .border-bottom-yellow.border-bottom-darken-3 {
+ border-bottom: 1px solid #f9a825 !important;
+ }
+ .border-left-yellow.border-left-darken-3 {
+ border-left: 1px solid #f9a825 !important;
+ }
+ .border-right-yellow.border-right-darken-3 {
+ border-right: 1px solid #f9a825 !important;
+ }
+ .btn-yellow.btn-darken-4,
+ .btn-yellow.btn-darken-4:hover {
+ border-color: #fbc02d !important;
+ }
+ .overlay-yellow.overlay-darken-3 {
+ background: #f9a825;
+ background: rgba(249, 168, 37, 0.8);
+ }
+ .bg-yellow.bg-darken-4,
+ .btn-yellow.btn-darken-4 {
+ background-color: #f57f17 !important;
+ }
+ .yellow.darken-4 {
+ color: #f57f17 !important;
+ }
+ .btn-yellow.btn-darken-4:hover {
+ background-color: #f9a825 !important;
+ }
+ .btn-yellow.btn-darken-4:active,
+ .btn-yellow.btn-darken-4:focus {
+ border-color: #f9a825 !important;
+ background-color: #f57f17 !important;
+ }
+ .btn-outline-yellow.btn-outline-darken-4 {
+ border-color: #f57f17 !important;
+ color: #f57f17 !important;
+ }
+ .btn-outline-yellow.btn-outline-darken-4:hover {
+ background-color: #f57f17 !important;
+ }
+ .border-yellow.border-darken-4 {
+ border: 1px solid #f57f17 !important;
+ }
+ .border-top-yellow.border-top-darken-4 {
+ border-top: 1px solid #f57f17 !important;
+ }
+ .border-bottom-yellow.border-bottom-darken-4 {
+ border-bottom: 1px solid #f57f17 !important;
+ }
+ .border-left-yellow.border-left-darken-4 {
+ border-left: 1px solid #f57f17 !important;
+ }
+ .border-right-yellow.border-right-darken-4 {
+ border-right: 1px solid #f57f17 !important;
+ }
+ .btn-yellow.btn-accent-1,
+ .btn-yellow.btn-accent-1:hover {
+ border-color: #fbc02d !important;
+ }
+ .overlay-yellow.overlay-darken-4 {
+ background: #f57f17;
+ background: rgba(245, 127, 23, 0.8);
+ }
+ .bg-yellow.bg-accent-1,
+ .btn-yellow.btn-accent-1 {
+ background-color: #ffff8d !important;
+ }
+ .yellow.accent-1 {
+ color: #ffff8d !important;
+ }
+ .btn-yellow.btn-accent-1:hover {
+ background-color: #f9a825 !important;
+ }
+ .btn-yellow.btn-accent-1:active,
+ .btn-yellow.btn-accent-1:focus {
+ border-color: #f9a825 !important;
+ background-color: #f57f17 !important;
+ }
+ .btn-outline-yellow.btn-outline-accent-1 {
+ border-color: #ffff8d !important;
+ color: #ffff8d !important;
+ }
+ .btn-outline-yellow.btn-outline-accent-1:hover {
+ background-color: #ffff8d !important;
+ }
+ .border-yellow.border-accent-1 {
+ border: 1px solid #ffff8d !important;
+ }
+ .border-top-yellow.border-top-accent-1 {
+ border-top: 1px solid #ffff8d !important;
+ }
+ .border-bottom-yellow.border-bottom-accent-1 {
+ border-bottom: 1px solid #ffff8d !important;
+ }
+ .border-left-yellow.border-left-accent-1 {
+ border-left: 1px solid #ffff8d !important;
+ }
+ .border-right-yellow.border-right-accent-1 {
+ border-right: 1px solid #ffff8d !important;
+ }
+ .btn-yellow.btn-accent-2,
+ .btn-yellow.btn-accent-2:hover {
+ border-color: #fbc02d !important;
+ }
+ .overlay-yellow.overlay-accent-1 {
+ background: #ffff8d;
+ background: rgba(255, 255, 141, 0.8);
+ }
+ .bg-yellow.bg-accent-2,
+ .btn-yellow.btn-accent-2 {
+ background-color: #ff0 !important;
+ }
+ .yellow.accent-2 {
+ color: #ff0 !important;
+ }
+ .btn-yellow.btn-accent-2:hover {
+ background-color: #f9a825 !important;
+ }
+ .btn-yellow.btn-accent-2:active,
+ .btn-yellow.btn-accent-2:focus {
+ border-color: #f9a825 !important;
+ background-color: #f57f17 !important;
+ }
+ .btn-outline-yellow.btn-outline-accent-2 {
+ border-color: #ff0 !important;
+ color: #ff0 !important;
+ }
+ .btn-outline-yellow.btn-outline-accent-2:hover {
+ background-color: #ff0 !important;
+ }
+ .border-yellow.border-accent-2 {
+ border: 1px solid #ff0 !important;
+ }
+ .border-top-yellow.border-top-accent-2 {
+ border-top: 1px solid #ff0 !important;
+ }
+ .border-bottom-yellow.border-bottom-accent-2 {
+ border-bottom: 1px solid #ff0 !important;
+ }
+ .border-left-yellow.border-left-accent-2 {
+ border-left: 1px solid #ff0 !important;
+ }
+ .border-right-yellow.border-right-accent-2 {
+ border-right: 1px solid #ff0 !important;
+ }
+ .btn-yellow.btn-accent-3,
+ .btn-yellow.btn-accent-3:hover {
+ border-color: #fbc02d !important;
+ }
+ .overlay-yellow.overlay-accent-2 {
+ background: #ff0;
+ background: rgba(255, 255, 0, 0.8);
+ }
+ .bg-yellow.bg-accent-3,
+ .btn-yellow.btn-accent-3 {
+ background-color: #ffea00 !important;
+ }
+ .yellow.accent-3 {
+ color: #ffea00 !important;
+ }
+ .btn-yellow.btn-accent-3:hover {
+ background-color: #f9a825 !important;
+ }
+ .btn-yellow.btn-accent-3:active,
+ .btn-yellow.btn-accent-3:focus {
+ border-color: #f9a825 !important;
+ background-color: #f57f17 !important;
+ }
+ .btn-outline-yellow.btn-outline-accent-3 {
+ border-color: #ffea00 !important;
+ color: #ffea00 !important;
+ }
+ .btn-outline-yellow.btn-outline-accent-3:hover {
+ background-color: #ffea00 !important;
+ }
+ .border-yellow.border-accent-3 {
+ border: 1px solid #ffea00 !important;
+ }
+ .border-top-yellow.border-top-accent-3 {
+ border-top: 1px solid #ffea00 !important;
+ }
+ .border-bottom-yellow.border-bottom-accent-3 {
+ border-bottom: 1px solid #ffea00 !important;
+ }
+ .border-left-yellow.border-left-accent-3 {
+ border-left: 1px solid #ffea00 !important;
+ }
+ .border-right-yellow.border-right-accent-3 {
+ border-right: 1px solid #ffea00 !important;
+ }
+ .btn-yellow.btn-accent-4,
+ .btn-yellow.btn-accent-4:hover {
+ border-color: #fbc02d !important;
+ }
+ .overlay-yellow.overlay-accent-3 {
+ background: #ffea00;
+ background: rgba(255, 234, 0, 0.8);
+ }
+ .bg-yellow.bg-accent-4,
+ .btn-yellow.btn-accent-4 {
+ background-color: #ffd600 !important;
+ }
+ .yellow.accent-4 {
+ color: #ffd600 !important;
+ }
+ .btn-yellow.btn-accent-4:hover {
+ background-color: #f9a825 !important;
+ }
+ .btn-yellow.btn-accent-4:active,
+ .btn-yellow.btn-accent-4:focus {
+ border-color: #f9a825 !important;
+ background-color: #f57f17 !important;
+ }
+ .btn-outline-yellow.btn-outline-accent-4 {
+ border-color: #ffd600 !important;
+ color: #ffd600 !important;
+ }
+ .btn-outline-yellow.btn-outline-accent-4:hover {
+ background-color: #ffd600 !important;
+ }
+ input:focus ~ .bg-yellow {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #ffd600 !important;
+ }
+ .border-yellow.border-accent-4 {
+ border: 1px solid #ffd600 !important;
+ }
+ .border-top-yellow.border-top-accent-4 {
+ border-top: 1px solid #ffd600 !important;
+ }
+ .border-bottom-yellow.border-bottom-accent-4 {
+ border-bottom: 1px solid #ffd600 !important;
+ }
+ .border-left-yellow.border-left-accent-4 {
+ border-left: 1px solid #ffd600 !important;
+ }
+ .border-right-yellow.border-right-accent-4 {
+ border-right: 1px solid #ffd600 !important;
+ }
+ .btn-amber.btn-lighten-5,
+ .btn-amber.btn-lighten-5:hover {
+ border-color: #ffa000 !important;
+ }
+ .overlay-yellow.overlay-accent-4 {
+ background: #ffd600;
+ background: rgba(255, 214, 0, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="yellow"]:before {
+ background-color: #ffd600;
+ }
+ .bg-amber.bg-lighten-5,
+ .btn-amber.btn-lighten-5 {
+ background-color: #fff8e1 !important;
+ }
+ .amber.lighten-5 {
+ color: #fff8e1 !important;
+ }
+ .btn-amber.btn-lighten-5:hover {
+ background-color: #ff8f00 !important;
+ }
+ .btn-amber.btn-lighten-5:active,
+ .btn-amber.btn-lighten-5:focus {
+ border-color: #ff8f00 !important;
+ background-color: #ff6f00 !important;
+ }
+ .btn-outline-amber.btn-outline-lighten-5 {
+ border-color: #fff8e1 !important;
+ color: #fff8e1 !important;
+ }
+ .btn-outline-amber.btn-outline-lighten-5:hover {
+ background-color: #fff8e1 !important;
+ }
+ .border-amber.border-lighten-5 {
+ border: 1px solid #fff8e1 !important;
+ }
+ .border-top-amber.border-top-lighten-5 {
+ border-top: 1px solid #fff8e1 !important;
+ }
+ .border-bottom-amber.border-bottom-lighten-5 {
+ border-bottom: 1px solid #fff8e1 !important;
+ }
+ .border-left-amber.border-left-lighten-5 {
+ border-left: 1px solid #fff8e1 !important;
+ }
+ .border-right-amber.border-right-lighten-5 {
+ border-right: 1px solid #fff8e1 !important;
+ }
+ .btn-amber.btn-lighten-4,
+ .btn-amber.btn-lighten-4:hover {
+ border-color: #ffa000 !important;
+ }
+ .overlay-amber.overlay-lighten-5 {
+ background: #fff8e1;
+ background: rgba(255, 248, 225, 0.8);
+ }
+ .bg-amber.bg-lighten-4,
+ .btn-amber.btn-lighten-4 {
+ background-color: #ffecb3 !important;
+ }
+ .amber.lighten-4 {
+ color: #ffecb3 !important;
+ }
+ .btn-amber.btn-lighten-4:hover {
+ background-color: #ff8f00 !important;
+ }
+ .btn-amber.btn-lighten-4:active,
+ .btn-amber.btn-lighten-4:focus {
+ border-color: #ff8f00 !important;
+ background-color: #ff6f00 !important;
+ }
+ .btn-outline-amber.btn-outline-lighten-4 {
+ border-color: #ffecb3 !important;
+ color: #ffecb3 !important;
+ }
+ .btn-outline-amber.btn-outline-lighten-4:hover {
+ background-color: #ffecb3 !important;
+ }
+ .border-amber.border-lighten-4 {
+ border: 1px solid #ffecb3 !important;
+ }
+ .border-top-amber.border-top-lighten-4 {
+ border-top: 1px solid #ffecb3 !important;
+ }
+ .border-bottom-amber.border-bottom-lighten-4 {
+ border-bottom: 1px solid #ffecb3 !important;
+ }
+ .border-left-amber.border-left-lighten-4 {
+ border-left: 1px solid #ffecb3 !important;
+ }
+ .border-right-amber.border-right-lighten-4 {
+ border-right: 1px solid #ffecb3 !important;
+ }
+ .btn-amber.btn-lighten-3,
+ .btn-amber.btn-lighten-3:hover {
+ border-color: #ffa000 !important;
+ }
+ .overlay-amber.overlay-lighten-4 {
+ background: #ffecb3;
+ background: rgba(255, 236, 179, 0.8);
+ }
+ .bg-amber.bg-lighten-3,
+ .btn-amber.btn-lighten-3 {
+ background-color: #ffe082 !important;
+ }
+ .amber.lighten-3 {
+ color: #ffe082 !important;
+ }
+ .btn-amber.btn-lighten-3:hover {
+ background-color: #ff8f00 !important;
+ }
+ .btn-amber.btn-lighten-3:active,
+ .btn-amber.btn-lighten-3:focus {
+ border-color: #ff8f00 !important;
+ background-color: #ff6f00 !important;
+ }
+ .btn-outline-amber.btn-outline-lighten-3 {
+ border-color: #ffe082 !important;
+ color: #ffe082 !important;
+ }
+ .btn-outline-amber.btn-outline-lighten-3:hover {
+ background-color: #ffe082 !important;
+ }
+ .border-amber.border-lighten-3 {
+ border: 1px solid #ffe082 !important;
+ }
+ .border-top-amber.border-top-lighten-3 {
+ border-top: 1px solid #ffe082 !important;
+ }
+ .border-bottom-amber.border-bottom-lighten-3 {
+ border-bottom: 1px solid #ffe082 !important;
+ }
+ .border-left-amber.border-left-lighten-3 {
+ border-left: 1px solid #ffe082 !important;
+ }
+ .border-right-amber.border-right-lighten-3 {
+ border-right: 1px solid #ffe082 !important;
+ }
+ .btn-amber.btn-lighten-2,
+ .btn-amber.btn-lighten-2:hover {
+ border-color: #ffa000 !important;
+ }
+ .overlay-amber.overlay-lighten-3 {
+ background: #ffe082;
+ background: rgba(255, 224, 130, 0.8);
+ }
+ .bg-amber.bg-lighten-2,
+ .btn-amber.btn-lighten-2 {
+ background-color: #ffd54f !important;
+ }
+ .amber.lighten-2 {
+ color: #ffd54f !important;
+ }
+ .btn-amber.btn-lighten-2:hover {
+ background-color: #ff8f00 !important;
+ }
+ .btn-amber.btn-lighten-2:active,
+ .btn-amber.btn-lighten-2:focus {
+ border-color: #ff8f00 !important;
+ background-color: #ff6f00 !important;
+ }
+ .btn-outline-amber.btn-outline-lighten-2 {
+ border-color: #ffd54f !important;
+ color: #ffd54f !important;
+ }
+ .btn-outline-amber.btn-outline-lighten-2:hover {
+ background-color: #ffd54f !important;
+ }
+ .border-amber.border-lighten-2 {
+ border: 1px solid #ffd54f !important;
+ }
+ .border-top-amber.border-top-lighten-2 {
+ border-top: 1px solid #ffd54f !important;
+ }
+ .border-bottom-amber.border-bottom-lighten-2 {
+ border-bottom: 1px solid #ffd54f !important;
+ }
+ .border-left-amber.border-left-lighten-2 {
+ border-left: 1px solid #ffd54f !important;
+ }
+ .border-right-amber.border-right-lighten-2 {
+ border-right: 1px solid #ffd54f !important;
+ }
+ .btn-amber.btn-lighten-1,
+ .btn-amber.btn-lighten-1:hover {
+ border-color: #ffa000 !important;
+ }
+ .overlay-amber.overlay-lighten-2 {
+ background: #ffd54f;
+ background: rgba(255, 213, 79, 0.8);
+ }
+ .bg-amber.bg-lighten-1,
+ .btn-amber.btn-lighten-1 {
+ background-color: #ffca28 !important;
+ }
+ .amber.lighten-1 {
+ color: #ffca28 !important;
+ }
+ .btn-amber.btn-lighten-1:hover {
+ background-color: #ff8f00 !important;
+ }
+ .btn-amber.btn-lighten-1:active,
+ .btn-amber.btn-lighten-1:focus {
+ border-color: #ff8f00 !important;
+ background-color: #ff6f00 !important;
+ }
+ .btn-outline-amber.btn-outline-lighten-1 {
+ border-color: #ffca28 !important;
+ color: #ffca28 !important;
+ }
+ .btn-outline-amber.btn-outline-lighten-1:hover {
+ background-color: #ffca28 !important;
+ }
+ .border-amber.border-lighten-1 {
+ border: 1px solid #ffca28 !important;
+ }
+ .border-top-amber.border-top-lighten-1 {
+ border-top: 1px solid #ffca28 !important;
+ }
+ .border-bottom-amber.border-bottom-lighten-1 {
+ border-bottom: 1px solid #ffca28 !important;
+ }
+ .border-left-amber.border-left-lighten-1 {
+ border-left: 1px solid #ffca28 !important;
+ }
+ .border-right-amber.border-right-lighten-1 {
+ border-right: 1px solid #ffca28 !important;
+ }
+ .overlay-amber.overlay-lighten-1 {
+ background: #ffca28;
+ background: rgba(255, 202, 40, 0.8);
+ }
+ .amber {
+ color: #ffc107 !important;
+ }
+ .bg-amber {
+ background-color: #ffc107 !important;
+ }
+ .bg-amber .card-footer,
+ .bg-amber .card-header {
+ background-color: transparent;
+ }
+ .alert-amber {
+ border-color: #ffd34e !important;
+ background-color: #ffd34e !important;
+ color: #543f00 !important;
+ }
+ .alert-amber .alert-link {
+ color: #2b2000 !important;
+ }
+ .bullet.bullet-amber {
+ background-color: #ffc107;
+ }
+ .bg-light-amber {
+ background-color: rgba(255, 193, 7, 0.15);
+ }
+ .bg-amber.badge-glow,
+ .border-amber.badge-glow {
+ box-shadow: 0 0 10px #ffc107;
+ }
+ .overlay-amber {
+ background: #ffc107;
+ background: rgba(255, 193, 7, 0.8);
+ }
+ .btn-amber {
+ background-color: #ffc107 !important;
+ color: #fff;
+ }
+ .btn-amber:hover {
+ border-color: #ffb300 !important;
+ background-color: #ffca28 !important;
+ color: #fff !important;
+ }
+ .btn-amber:active,
+ .btn-amber:focus {
+ border-color: #ffa000 !important;
+ background-color: #ff8f00 !important;
+ color: #fff !important;
+ }
+ .btn-outline-amber {
+ border-color: #ffc107;
+ background-color: transparent;
+ color: #ffc107;
+ }
+ .btn-outline-amber:hover,
+ .widget-timeline .timeline-items.timeline-icon-amber:before {
+ background-color: #ffc107;
+ }
+ .btn-outline-amber:hover {
+ color: #fff !important;
+ }
+ input[type="checkbox"].bg-amber + .custom-control-label:before,
+ input[type="radio"].bg-amber + .custom-control-label:before {
+ background-color: #ffc107 !important;
+ }
+ .bg-amber.bg-darken-1,
+ .btn-amber.btn-darken-1 {
+ background-color: #ffb300 !important;
+ }
+ .border-amber {
+ border: 1px solid #ffc107 !important;
+ }
+ .border-top-amber {
+ border-top: 1px solid #ffc107;
+ }
+ .border-bottom-amber {
+ border-bottom: 1px solid #ffc107;
+ }
+ .border-left-amber {
+ border-left: 1px solid #ffc107;
+ }
+ .border-right-amber {
+ border-right: 1px solid #ffc107;
+ }
+ .amber.darken-1 {
+ color: #ffb300 !important;
+ }
+ .btn-amber.btn-darken-1 {
+ border-color: #ffa000 !important;
+ }
+ .btn-amber.btn-darken-1:hover {
+ border-color: #ffa000 !important;
+ background-color: #ff8f00 !important;
+ }
+ .btn-amber.btn-darken-1:active,
+ .btn-amber.btn-darken-1:focus {
+ border-color: #ff8f00 !important;
+ background-color: #ff6f00 !important;
+ }
+ .btn-outline-amber.btn-outline-darken-1 {
+ border-color: #ffb300 !important;
+ color: #ffb300 !important;
+ }
+ .btn-outline-amber.btn-outline-darken-1:hover {
+ background-color: #ffb300 !important;
+ }
+ .border-amber.border-darken-1 {
+ border: 1px solid #ffb300 !important;
+ }
+ .border-top-amber.border-top-darken-1 {
+ border-top: 1px solid #ffb300 !important;
+ }
+ .border-bottom-amber.border-bottom-darken-1 {
+ border-bottom: 1px solid #ffb300 !important;
+ }
+ .border-left-amber.border-left-darken-1 {
+ border-left: 1px solid #ffb300 !important;
+ }
+ .border-right-amber.border-right-darken-1 {
+ border-right: 1px solid #ffb300 !important;
+ }
+ .btn-amber.btn-darken-2,
+ .btn-amber.btn-darken-2:hover {
+ border-color: #ffa000 !important;
+ }
+ .overlay-amber.overlay-darken-1 {
+ background: #ffb300;
+ background: rgba(255, 179, 0, 0.8);
+ }
+ .bg-amber.bg-darken-2,
+ .btn-amber.btn-darken-2 {
+ background-color: #ffa000 !important;
+ }
+ .amber.darken-2 {
+ color: #ffa000 !important;
+ }
+ .btn-amber.btn-darken-2:hover {
+ background-color: #ff8f00 !important;
+ }
+ .btn-amber.btn-darken-2:active,
+ .btn-amber.btn-darken-2:focus {
+ border-color: #ff8f00 !important;
+ background-color: #ff6f00 !important;
+ }
+ .btn-outline-amber.btn-outline-darken-2 {
+ border-color: #ffa000 !important;
+ color: #ffa000 !important;
+ }
+ .btn-outline-amber.btn-outline-darken-2:hover {
+ background-color: #ffa000 !important;
+ }
+ .border-amber.border-darken-2 {
+ border: 1px solid #ffa000 !important;
+ }
+ .border-top-amber.border-top-darken-2 {
+ border-top: 1px solid #ffa000 !important;
+ }
+ .border-bottom-amber.border-bottom-darken-2 {
+ border-bottom: 1px solid #ffa000 !important;
+ }
+ .border-left-amber.border-left-darken-2 {
+ border-left: 1px solid #ffa000 !important;
+ }
+ .border-right-amber.border-right-darken-2 {
+ border-right: 1px solid #ffa000 !important;
+ }
+ .overlay-amber.overlay-darken-2 {
+ background: #ffa000;
+ background: rgba(255, 160, 0, 0.8);
+ }
+ .amber.darken-3 {
+ color: #ff8f00 !important;
+ }
+ .bg-amber.bg-darken-3 {
+ background-color: #ff8f00 !important;
+ }
+ .btn-amber.btn-darken-3,
+ .btn-amber.btn-darken-3:hover {
+ border-color: #ffa000 !important;
+ background-color: #ff8f00 !important;
+ }
+ .btn-amber.btn-darken-3:active,
+ .btn-amber.btn-darken-3:focus {
+ border-color: #ff8f00 !important;
+ background-color: #ff6f00 !important;
+ }
+ .btn-outline-amber.btn-outline-darken-3 {
+ border-color: #ff8f00 !important;
+ color: #ff8f00 !important;
+ }
+ .btn-outline-amber.btn-outline-darken-3:hover {
+ background-color: #ff8f00 !important;
+ }
+ .border-amber.border-darken-3 {
+ border: 1px solid #ff8f00 !important;
+ }
+ .border-top-amber.border-top-darken-3 {
+ border-top: 1px solid #ff8f00 !important;
+ }
+ .border-bottom-amber.border-bottom-darken-3 {
+ border-bottom: 1px solid #ff8f00 !important;
+ }
+ .border-left-amber.border-left-darken-3 {
+ border-left: 1px solid #ff8f00 !important;
+ }
+ .border-right-amber.border-right-darken-3 {
+ border-right: 1px solid #ff8f00 !important;
+ }
+ .btn-amber.btn-darken-4,
+ .btn-amber.btn-darken-4:hover {
+ border-color: #ffa000 !important;
+ }
+ .overlay-amber.overlay-darken-3 {
+ background: #ff8f00;
+ background: rgba(255, 143, 0, 0.8);
+ }
+ .bg-amber.bg-darken-4,
+ .btn-amber.btn-darken-4 {
+ background-color: #ff6f00 !important;
+ }
+ .amber.darken-4 {
+ color: #ff6f00 !important;
+ }
+ .btn-amber.btn-darken-4:hover {
+ background-color: #ff8f00 !important;
+ }
+ .btn-amber.btn-darken-4:active,
+ .btn-amber.btn-darken-4:focus {
+ border-color: #ff8f00 !important;
+ background-color: #ff6f00 !important;
+ }
+ .btn-outline-amber.btn-outline-darken-4 {
+ border-color: #ff6f00 !important;
+ color: #ff6f00 !important;
+ }
+ .btn-outline-amber.btn-outline-darken-4:hover {
+ background-color: #ff6f00 !important;
+ }
+ .border-amber.border-darken-4 {
+ border: 1px solid #ff6f00 !important;
+ }
+ .border-top-amber.border-top-darken-4 {
+ border-top: 1px solid #ff6f00 !important;
+ }
+ .border-bottom-amber.border-bottom-darken-4 {
+ border-bottom: 1px solid #ff6f00 !important;
+ }
+ .border-left-amber.border-left-darken-4 {
+ border-left: 1px solid #ff6f00 !important;
+ }
+ .border-right-amber.border-right-darken-4 {
+ border-right: 1px solid #ff6f00 !important;
+ }
+ .btn-amber.btn-accent-1,
+ .btn-amber.btn-accent-1:hover {
+ border-color: #ffa000 !important;
+ }
+ .overlay-amber.overlay-darken-4 {
+ background: #ff6f00;
+ background: rgba(255, 111, 0, 0.8);
+ }
+ .bg-amber.bg-accent-1,
+ .btn-amber.btn-accent-1 {
+ background-color: #ffe57f !important;
+ }
+ .amber.accent-1 {
+ color: #ffe57f !important;
+ }
+ .btn-amber.btn-accent-1:hover {
+ background-color: #ff8f00 !important;
+ }
+ .btn-amber.btn-accent-1:active,
+ .btn-amber.btn-accent-1:focus {
+ border-color: #ff8f00 !important;
+ background-color: #ff6f00 !important;
+ }
+ .btn-outline-amber.btn-outline-accent-1 {
+ border-color: #ffe57f !important;
+ color: #ffe57f !important;
+ }
+ .btn-outline-amber.btn-outline-accent-1:hover {
+ background-color: #ffe57f !important;
+ }
+ .border-amber.border-accent-1 {
+ border: 1px solid #ffe57f !important;
+ }
+ .border-top-amber.border-top-accent-1 {
+ border-top: 1px solid #ffe57f !important;
+ }
+ .border-bottom-amber.border-bottom-accent-1 {
+ border-bottom: 1px solid #ffe57f !important;
+ }
+ .border-left-amber.border-left-accent-1 {
+ border-left: 1px solid #ffe57f !important;
+ }
+ .border-right-amber.border-right-accent-1 {
+ border-right: 1px solid #ffe57f !important;
+ }
+ .btn-amber.btn-accent-2,
+ .btn-amber.btn-accent-2:hover {
+ border-color: #ffa000 !important;
+ }
+ .overlay-amber.overlay-accent-1 {
+ background: #ffe57f;
+ background: rgba(255, 229, 127, 0.8);
+ }
+ .bg-amber.bg-accent-2,
+ .btn-amber.btn-accent-2 {
+ background-color: #ffd740 !important;
+ }
+ .amber.accent-2 {
+ color: #ffd740 !important;
+ }
+ .btn-amber.btn-accent-2:hover {
+ background-color: #ff8f00 !important;
+ }
+ .btn-amber.btn-accent-2:active,
+ .btn-amber.btn-accent-2:focus {
+ border-color: #ff8f00 !important;
+ background-color: #ff6f00 !important;
+ }
+ .btn-outline-amber.btn-outline-accent-2 {
+ border-color: #ffd740 !important;
+ color: #ffd740 !important;
+ }
+ .btn-outline-amber.btn-outline-accent-2:hover {
+ background-color: #ffd740 !important;
+ }
+ .border-amber.border-accent-2 {
+ border: 1px solid #ffd740 !important;
+ }
+ .border-top-amber.border-top-accent-2 {
+ border-top: 1px solid #ffd740 !important;
+ }
+ .border-bottom-amber.border-bottom-accent-2 {
+ border-bottom: 1px solid #ffd740 !important;
+ }
+ .border-left-amber.border-left-accent-2 {
+ border-left: 1px solid #ffd740 !important;
+ }
+ .border-right-amber.border-right-accent-2 {
+ border-right: 1px solid #ffd740 !important;
+ }
+ .btn-amber.btn-accent-3,
+ .btn-amber.btn-accent-3:hover {
+ border-color: #ffa000 !important;
+ }
+ .overlay-amber.overlay-accent-2 {
+ background: #ffd740;
+ background: rgba(255, 215, 64, 0.8);
+ }
+ .bg-amber.bg-accent-3,
+ .btn-amber.btn-accent-3 {
+ background-color: #ffc400 !important;
+ }
+ .amber.accent-3 {
+ color: #ffc400 !important;
+ }
+ .btn-amber.btn-accent-3:hover {
+ background-color: #ff8f00 !important;
+ }
+ .btn-amber.btn-accent-3:active,
+ .btn-amber.btn-accent-3:focus {
+ border-color: #ff8f00 !important;
+ background-color: #ff6f00 !important;
+ }
+ .btn-outline-amber.btn-outline-accent-3 {
+ border-color: #ffc400 !important;
+ color: #ffc400 !important;
+ }
+ .btn-outline-amber.btn-outline-accent-3:hover {
+ background-color: #ffc400 !important;
+ }
+ .border-amber.border-accent-3 {
+ border: 1px solid #ffc400 !important;
+ }
+ .border-top-amber.border-top-accent-3 {
+ border-top: 1px solid #ffc400 !important;
+ }
+ .border-bottom-amber.border-bottom-accent-3 {
+ border-bottom: 1px solid #ffc400 !important;
+ }
+ .border-left-amber.border-left-accent-3 {
+ border-left: 1px solid #ffc400 !important;
+ }
+ .border-right-amber.border-right-accent-3 {
+ border-right: 1px solid #ffc400 !important;
+ }
+ .btn-amber.btn-accent-4,
+ .btn-amber.btn-accent-4:hover {
+ border-color: #ffa000 !important;
+ }
+ .overlay-amber.overlay-accent-3 {
+ background: #ffc400;
+ background: rgba(255, 196, 0, 0.8);
+ }
+ .bg-amber.bg-accent-4,
+ .btn-amber.btn-accent-4 {
+ background-color: #ffab00 !important;
+ }
+ .amber.accent-4 {
+ color: #ffab00 !important;
+ }
+ .btn-amber.btn-accent-4:hover {
+ background-color: #ff8f00 !important;
+ }
+ .btn-amber.btn-accent-4:active,
+ .btn-amber.btn-accent-4:focus {
+ border-color: #ff8f00 !important;
+ background-color: #ff6f00 !important;
+ }
+ .btn-outline-amber.btn-outline-accent-4 {
+ border-color: #ffab00 !important;
+ color: #ffab00 !important;
+ }
+ .btn-outline-amber.btn-outline-accent-4:hover {
+ background-color: #ffab00 !important;
+ }
+ input:focus ~ .bg-amber {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #ffab00 !important;
+ }
+ .border-amber.border-accent-4 {
+ border: 1px solid #ffab00 !important;
+ }
+ .border-top-amber.border-top-accent-4 {
+ border-top: 1px solid #ffab00 !important;
+ }
+ .border-bottom-amber.border-bottom-accent-4 {
+ border-bottom: 1px solid #ffab00 !important;
+ }
+ .border-left-amber.border-left-accent-4 {
+ border-left: 1px solid #ffab00 !important;
+ }
+ .border-right-amber.border-right-accent-4 {
+ border-right: 1px solid #ffab00 !important;
+ }
+ .overlay-amber.overlay-accent-4 {
+ background: #ffab00;
+ background: rgba(255, 171, 0, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="amber"]:before {
+ background-color: #ffab00;
+ }
+ .bg-blue-grey.bg-lighten-5,
+ .btn-blue-grey.btn-lighten-5 {
+ background-color: #eceff1 !important;
+ }
+ .blue-grey.lighten-5 {
+ color: #eceff1 !important;
+ }
+ .btn-blue-grey.btn-lighten-5 {
+ border-color: #455a64 !important;
+ }
+ .btn-blue-grey.btn-lighten-5:hover {
+ border-color: #455a64 !important;
+ background-color: #37474f !important;
+ }
+ .btn-blue-grey.btn-lighten-5:active,
+ .btn-blue-grey.btn-lighten-5:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-blue-grey.btn-outline-lighten-5 {
+ border-color: #eceff1 !important;
+ color: #eceff1 !important;
+ }
+ .btn-outline-blue-grey.btn-outline-lighten-5:hover {
+ background-color: #eceff1 !important;
+ }
+ .border-blue-grey.border-lighten-5 {
+ border: 1px solid #eceff1 !important;
+ }
+ .border-top-blue-grey.border-top-lighten-5 {
+ border-top: 1px solid #eceff1 !important;
+ }
+ .border-bottom-blue-grey.border-bottom-lighten-5 {
+ border-bottom: 1px solid #eceff1 !important;
+ }
+ .border-left-blue-grey.border-left-lighten-5 {
+ border-left: 1px solid #eceff1 !important;
+ }
+ .border-right-blue-grey.border-right-lighten-5 {
+ border-right: 1px solid #eceff1 !important;
+ }
+ .overlay-blue-grey.overlay-lighten-5 {
+ background: #eceff1;
+ background: rgba(236, 239, 241, 0.8);
+ }
+ .bg-blue-grey.bg-lighten-4,
+ .btn-blue-grey.btn-lighten-4 {
+ background-color: #cfd8dc !important;
+ }
+ .blue-grey.lighten-4 {
+ color: #cfd8dc !important;
+ }
+ .btn-blue-grey.btn-lighten-4 {
+ border-color: #455a64 !important;
+ }
+ .btn-blue-grey.btn-lighten-4:hover {
+ border-color: #455a64 !important;
+ background-color: #37474f !important;
+ }
+ .btn-blue-grey.btn-lighten-4:active,
+ .btn-blue-grey.btn-lighten-4:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-blue-grey.btn-outline-lighten-4 {
+ border-color: #cfd8dc !important;
+ color: #cfd8dc !important;
+ }
+ .btn-outline-blue-grey.btn-outline-lighten-4:hover {
+ background-color: #cfd8dc !important;
+ }
+ .border-blue-grey.border-lighten-4 {
+ border: 1px solid #cfd8dc !important;
+ }
+ .border-top-blue-grey.border-top-lighten-4 {
+ border-top: 1px solid #cfd8dc !important;
+ }
+ .border-bottom-blue-grey.border-bottom-lighten-4 {
+ border-bottom: 1px solid #cfd8dc !important;
+ }
+ .border-left-blue-grey.border-left-lighten-4 {
+ border-left: 1px solid #cfd8dc !important;
+ }
+ .border-right-blue-grey.border-right-lighten-4 {
+ border-right: 1px solid #cfd8dc !important;
+ }
+ .overlay-blue-grey.overlay-lighten-4 {
+ background: #cfd8dc;
+ background: rgba(207, 216, 220, 0.8);
+ }
+ .bg-blue-grey.bg-lighten-3,
+ .btn-blue-grey.btn-lighten-3 {
+ background-color: #b0bec5 !important;
+ }
+ .blue-grey.lighten-3 {
+ color: #b0bec5 !important;
+ }
+ .btn-blue-grey.btn-lighten-3 {
+ border-color: #455a64 !important;
+ }
+ .btn-blue-grey.btn-lighten-3:hover {
+ border-color: #455a64 !important;
+ background-color: #37474f !important;
+ }
+ .btn-blue-grey.btn-lighten-3:active,
+ .btn-blue-grey.btn-lighten-3:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-blue-grey.btn-outline-lighten-3 {
+ border-color: #b0bec5 !important;
+ color: #b0bec5 !important;
+ }
+ .btn-outline-blue-grey.btn-outline-lighten-3:hover {
+ background-color: #b0bec5 !important;
+ }
+ .border-blue-grey.border-lighten-3 {
+ border: 1px solid #b0bec5 !important;
+ }
+ .border-top-blue-grey.border-top-lighten-3 {
+ border-top: 1px solid #b0bec5 !important;
+ }
+ .border-bottom-blue-grey.border-bottom-lighten-3 {
+ border-bottom: 1px solid #b0bec5 !important;
+ }
+ .border-left-blue-grey.border-left-lighten-3 {
+ border-left: 1px solid #b0bec5 !important;
+ }
+ .border-right-blue-grey.border-right-lighten-3 {
+ border-right: 1px solid #b0bec5 !important;
+ }
+ .overlay-blue-grey.overlay-lighten-3 {
+ background: #b0bec5;
+ background: rgba(176, 190, 197, 0.8);
+ }
+ .bg-blue-grey.bg-lighten-2,
+ .btn-blue-grey.btn-lighten-2 {
+ background-color: #90a4ae !important;
+ }
+ .blue-grey.lighten-2 {
+ color: #90a4ae !important;
+ }
+ .btn-blue-grey.btn-lighten-2 {
+ border-color: #455a64 !important;
+ }
+ .btn-blue-grey.btn-lighten-2:hover {
+ border-color: #455a64 !important;
+ background-color: #37474f !important;
+ }
+ .btn-blue-grey.btn-lighten-2:active,
+ .btn-blue-grey.btn-lighten-2:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-blue-grey.btn-outline-lighten-2 {
+ border-color: #90a4ae !important;
+ color: #90a4ae !important;
+ }
+ .btn-outline-blue-grey.btn-outline-lighten-2:hover {
+ background-color: #90a4ae !important;
+ }
+ .border-blue-grey.border-lighten-2 {
+ border: 1px solid #90a4ae !important;
+ }
+ .border-top-blue-grey.border-top-lighten-2 {
+ border-top: 1px solid #90a4ae !important;
+ }
+ .border-bottom-blue-grey.border-bottom-lighten-2 {
+ border-bottom: 1px solid #90a4ae !important;
+ }
+ .border-left-blue-grey.border-left-lighten-2 {
+ border-left: 1px solid #90a4ae !important;
+ }
+ .border-right-blue-grey.border-right-lighten-2 {
+ border-right: 1px solid #90a4ae !important;
+ }
+ .overlay-blue-grey.overlay-lighten-2 {
+ background: #90a4ae;
+ background: rgba(144, 164, 174, 0.8);
+ }
+ .bg-blue-grey.bg-lighten-1,
+ .btn-blue-grey.btn-lighten-1 {
+ background-color: #78909c !important;
+ }
+ .blue-grey.lighten-1 {
+ color: #78909c !important;
+ }
+ .btn-blue-grey.btn-lighten-1 {
+ border-color: #455a64 !important;
+ }
+ .btn-blue-grey.btn-lighten-1:hover {
+ border-color: #455a64 !important;
+ background-color: #37474f !important;
+ }
+ .btn-blue-grey.btn-lighten-1:active,
+ .btn-blue-grey.btn-lighten-1:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-blue-grey.btn-outline-lighten-1 {
+ border-color: #78909c !important;
+ color: #78909c !important;
+ }
+ .btn-outline-blue-grey.btn-outline-lighten-1:hover {
+ background-color: #78909c !important;
+ }
+ .border-blue-grey.border-lighten-1 {
+ border: 1px solid #78909c !important;
+ }
+ .border-top-blue-grey.border-top-lighten-1 {
+ border-top: 1px solid #78909c !important;
+ }
+ .border-bottom-blue-grey.border-bottom-lighten-1 {
+ border-bottom: 1px solid #78909c !important;
+ }
+ .border-left-blue-grey.border-left-lighten-1 {
+ border-left: 1px solid #78909c !important;
+ }
+ .border-right-blue-grey.border-right-lighten-1 {
+ border-right: 1px solid #78909c !important;
+ }
+ .overlay-blue-grey.overlay-lighten-1 {
+ background: #78909c;
+ background: rgba(120, 144, 156, 0.8);
+ }
+ .blue-grey {
+ color: #607d8b !important;
+ }
+ .bg-blue-grey {
+ background-color: #607d8b !important;
+ }
+ .bg-blue-grey .card-footer,
+ .bg-blue-grey .card-header {
+ background-color: transparent;
+ }
+ .alert-blue-grey {
+ border-color: #87a0ac !important;
+ background-color: #87a0ac !important;
+ color: #171e21 !important;
+ }
+ .alert-blue-grey .alert-link {
+ color: #060809 !important;
+ }
+ .bullet.bullet-blue-grey {
+ background-color: #607d8b;
+ }
+ .bg-light-blue-grey {
+ background-color: rgba(96, 125, 139, 0.15);
+ }
+ .bg-blue-grey.badge-glow,
+ .border-blue-grey.badge-glow {
+ box-shadow: 0 0 10px #607d8b;
+ }
+ .overlay-blue-grey {
+ background: #607d8b;
+ background: rgba(96, 125, 139, 0.8);
+ }
+ .btn-blue-grey {
+ background-color: #607d8b !important;
+ color: #fff;
+ }
+ .btn-blue-grey:hover {
+ border-color: #546e7a !important;
+ background-color: #78909c !important;
+ color: #fff !important;
+ }
+ .btn-blue-grey:active,
+ .btn-blue-grey:focus {
+ border-color: #455a64 !important;
+ background-color: #37474f !important;
+ color: #fff !important;
+ }
+ .btn-outline-blue-grey {
+ border-color: #607d8b;
+ background-color: transparent;
+ color: #607d8b;
+ }
+ .btn-outline-blue-grey:hover {
+ background-color: #607d8b;
+ color: #fff !important;
+ }
+ .widget-timeline .timeline-items.timeline-icon-blue-grey:before {
+ background-color: #607d8b;
+ }
+ input[type="checkbox"].bg-blue-grey + .custom-control-label:before,
+ input[type="radio"].bg-blue-grey + .custom-control-label:before {
+ background-color: #607d8b !important;
+ }
+ .bg-blue-grey.bg-darken-1,
+ .btn-blue-grey.btn-darken-1 {
+ background-color: #546e7a !important;
+ }
+ .border-blue-grey {
+ border: 1px solid #607d8b !important;
+ }
+ .border-top-blue-grey {
+ border-top: 1px solid #607d8b;
+ }
+ .border-bottom-blue-grey {
+ border-bottom: 1px solid #607d8b;
+ }
+ .border-left-blue-grey {
+ border-left: 1px solid #607d8b;
+ }
+ .border-right-blue-grey {
+ border-right: 1px solid #607d8b;
+ }
+ .blue-grey.darken-1 {
+ color: #546e7a !important;
+ }
+ .btn-blue-grey.btn-darken-1 {
+ border-color: #455a64 !important;
+ }
+ .btn-blue-grey.btn-darken-1:hover {
+ border-color: #455a64 !important;
+ background-color: #37474f !important;
+ }
+ .btn-blue-grey.btn-darken-1:active,
+ .btn-blue-grey.btn-darken-1:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-blue-grey.btn-outline-darken-1 {
+ border-color: #546e7a !important;
+ color: #546e7a !important;
+ }
+ .btn-outline-blue-grey.btn-outline-darken-1:hover {
+ background-color: #546e7a !important;
+ }
+ .border-blue-grey.border-darken-1 {
+ border: 1px solid #546e7a !important;
+ }
+ .border-top-blue-grey.border-top-darken-1 {
+ border-top: 1px solid #546e7a !important;
+ }
+ .border-bottom-blue-grey.border-bottom-darken-1 {
+ border-bottom: 1px solid #546e7a !important;
+ }
+ .border-left-blue-grey.border-left-darken-1 {
+ border-left: 1px solid #546e7a !important;
+ }
+ .border-right-blue-grey.border-right-darken-1 {
+ border-right: 1px solid #546e7a !important;
+ }
+ .overlay-blue-grey.overlay-darken-1 {
+ background: #546e7a;
+ background: rgba(84, 110, 122, 0.8);
+ }
+ .bg-blue-grey.bg-darken-2,
+ .btn-blue-grey.btn-darken-2 {
+ background-color: #455a64 !important;
+ }
+ .blue-grey.darken-2 {
+ color: #455a64 !important;
+ }
+ .btn-blue-grey.btn-darken-2 {
+ border-color: #455a64 !important;
+ }
+ .btn-blue-grey.btn-darken-2:hover {
+ border-color: #455a64 !important;
+ background-color: #37474f !important;
+ }
+ .btn-blue-grey.btn-darken-2:active,
+ .btn-blue-grey.btn-darken-2:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-blue-grey.btn-outline-darken-2 {
+ border-color: #455a64 !important;
+ color: #455a64 !important;
+ }
+ .btn-outline-blue-grey.btn-outline-darken-2:hover {
+ background-color: #455a64 !important;
+ }
+ .border-blue-grey.border-darken-2 {
+ border: 1px solid #455a64 !important;
+ }
+ .border-top-blue-grey.border-top-darken-2 {
+ border-top: 1px solid #455a64 !important;
+ }
+ .border-bottom-blue-grey.border-bottom-darken-2 {
+ border-bottom: 1px solid #455a64 !important;
+ }
+ .border-left-blue-grey.border-left-darken-2 {
+ border-left: 1px solid #455a64 !important;
+ }
+ .border-right-blue-grey.border-right-darken-2 {
+ border-right: 1px solid #455a64 !important;
+ }
+ .overlay-blue-grey.overlay-darken-2 {
+ background: #455a64;
+ background: rgba(69, 90, 100, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="blue-grey"]:before {
+ background-color: #455a64;
+ }
+ .blue-grey.darken-3 {
+ color: #37474f !important;
+ }
+ .bg-blue-grey.bg-darken-3 {
+ background-color: #37474f !important;
+ }
+ .btn-blue-grey.btn-darken-3,
+ .btn-blue-grey.btn-darken-3:hover {
+ border-color: #455a64 !important;
+ background-color: #37474f !important;
+ }
+ .btn-blue-grey.btn-darken-3:active,
+ .btn-blue-grey.btn-darken-3:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-blue-grey.btn-outline-darken-3 {
+ border-color: #37474f !important;
+ color: #37474f !important;
+ }
+ .btn-outline-blue-grey.btn-outline-darken-3:hover {
+ background-color: #37474f !important;
+ }
+ .border-blue-grey.border-darken-3 {
+ border: 1px solid #37474f !important;
+ }
+ .border-top-blue-grey.border-top-darken-3 {
+ border-top: 1px solid #37474f !important;
+ }
+ .border-bottom-blue-grey.border-bottom-darken-3 {
+ border-bottom: 1px solid #37474f !important;
+ }
+ .border-left-blue-grey.border-left-darken-3 {
+ border-left: 1px solid #37474f !important;
+ }
+ .border-right-blue-grey.border-right-darken-3 {
+ border-right: 1px solid #37474f !important;
+ }
+ .overlay-blue-grey.overlay-darken-3 {
+ background: #37474f;
+ background: rgba(55, 71, 79, 0.8);
+ }
+ .bg-blue-grey.bg-darken-4,
+ .btn-blue-grey.btn-darken-4 {
+ background-color: #263238 !important;
+ }
+ .blue-grey.darken-4 {
+ color: #263238 !important;
+ }
+ .btn-blue-grey.btn-darken-4 {
+ border-color: #455a64 !important;
+ }
+ .btn-blue-grey.btn-darken-4:hover {
+ border-color: #455a64 !important;
+ background-color: #37474f !important;
+ }
+ .btn-blue-grey.btn-darken-4:active,
+ .btn-blue-grey.btn-darken-4:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-blue-grey.btn-outline-darken-4 {
+ border-color: #263238 !important;
+ color: #263238 !important;
+ }
+ .btn-outline-blue-grey.btn-outline-darken-4:hover {
+ background-color: #263238 !important;
+ }
+ input:focus ~ .bg-blue-grey {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #263238 !important;
+ }
+ .border-blue-grey.border-darken-4 {
+ border: 1px solid #263238 !important;
+ }
+ .border-top-blue-grey.border-top-darken-4 {
+ border-top: 1px solid #263238 !important;
+ }
+ .border-bottom-blue-grey.border-bottom-darken-4 {
+ border-bottom: 1px solid #263238 !important;
+ }
+ .border-left-blue-grey.border-left-darken-4 {
+ border-left: 1px solid #263238 !important;
+ }
+ .border-right-blue-grey.border-right-darken-4 {
+ border-right: 1px solid #263238 !important;
+ }
+ .overlay-blue-grey.overlay-darken-4 {
+ background: #263238;
+ background: rgba(38, 50, 56, 0.8);
+ }
+ .kanban-container .kanban-board .kanban-item[data-border="blue-grey"]:before {
+ background-color: #263238;
+ }
+ .bg-grey-blue.bg-lighten-5,
+ .btn-grey-blue.btn-lighten-5 {
+ background-color: #eceff1 !important;
+ }
+ .grey-blue.lighten-5 {
+ color: #eceff1 !important;
+ }
+ .btn-grey-blue.btn-lighten-5 {
+ border-color: #404e67 !important;
+ }
+ .btn-grey-blue.btn-lighten-5:hover {
+ border-color: #404e67 !important;
+ background-color: #37474f !important;
+ }
+ .btn-grey-blue.btn-lighten-5:active,
+ .btn-grey-blue.btn-lighten-5:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-grey-blue.btn-outline-lighten-5 {
+ border-color: #eceff1 !important;
+ color: #eceff1 !important;
+ }
+ .btn-outline-grey-blue.btn-outline-lighten-5:hover {
+ background-color: #eceff1 !important;
+ }
+ .border-grey-blue.border-lighten-5 {
+ border: 1px solid #eceff1 !important;
+ }
+ .border-top-grey-blue.border-top-lighten-5 {
+ border-top: 1px solid #eceff1 !important;
+ }
+ .border-bottom-grey-blue.border-bottom-lighten-5 {
+ border-bottom: 1px solid #eceff1 !important;
+ }
+ .border-left-grey-blue.border-left-lighten-5 {
+ border-left: 1px solid #eceff1 !important;
+ }
+ .border-right-grey-blue.border-right-lighten-5 {
+ border-right: 1px solid #eceff1 !important;
+ }
+ .overlay-grey-blue.overlay-lighten-5 {
+ background: #eceff1;
+ background: rgba(236, 239, 241, 0.8);
+ }
+ .bg-grey-blue.bg-lighten-4,
+ .btn-grey-blue.btn-lighten-4 {
+ background-color: #cfd8dc !important;
+ }
+ .grey-blue.lighten-4 {
+ color: #cfd8dc !important;
+ }
+ .btn-grey-blue.btn-lighten-4 {
+ border-color: #404e67 !important;
+ }
+ .btn-grey-blue.btn-lighten-4:hover {
+ border-color: #404e67 !important;
+ background-color: #37474f !important;
+ }
+ .btn-grey-blue.btn-lighten-4:active,
+ .btn-grey-blue.btn-lighten-4:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-grey-blue.btn-outline-lighten-4 {
+ border-color: #cfd8dc !important;
+ color: #cfd8dc !important;
+ }
+ .btn-outline-grey-blue.btn-outline-lighten-4:hover {
+ background-color: #cfd8dc !important;
+ }
+ .border-grey-blue.border-lighten-4 {
+ border: 1px solid #cfd8dc !important;
+ }
+ .border-top-grey-blue.border-top-lighten-4 {
+ border-top: 1px solid #cfd8dc !important;
+ }
+ .border-bottom-grey-blue.border-bottom-lighten-4 {
+ border-bottom: 1px solid #cfd8dc !important;
+ }
+ .border-left-grey-blue.border-left-lighten-4 {
+ border-left: 1px solid #cfd8dc !important;
+ }
+ .border-right-grey-blue.border-right-lighten-4 {
+ border-right: 1px solid #cfd8dc !important;
+ }
+ .overlay-grey-blue.overlay-lighten-4 {
+ background: #cfd8dc;
+ background: rgba(207, 216, 220, 0.8);
+ }
+ .bg-grey-blue.bg-lighten-3,
+ .btn-grey-blue.btn-lighten-3 {
+ background-color: #b0bec5 !important;
+ }
+ .grey-blue.lighten-3 {
+ color: #b0bec5 !important;
+ }
+ .btn-grey-blue.btn-lighten-3 {
+ border-color: #404e67 !important;
+ }
+ .btn-grey-blue.btn-lighten-3:hover {
+ border-color: #404e67 !important;
+ background-color: #37474f !important;
+ }
+ .btn-grey-blue.btn-lighten-3:active,
+ .btn-grey-blue.btn-lighten-3:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-grey-blue.btn-outline-lighten-3 {
+ border-color: #b0bec5 !important;
+ color: #b0bec5 !important;
+ }
+ .btn-outline-grey-blue.btn-outline-lighten-3:hover {
+ background-color: #b0bec5 !important;
+ }
+ .border-grey-blue.border-lighten-3 {
+ border: 1px solid #b0bec5 !important;
+ }
+ .border-top-grey-blue.border-top-lighten-3 {
+ border-top: 1px solid #b0bec5 !important;
+ }
+ .border-bottom-grey-blue.border-bottom-lighten-3 {
+ border-bottom: 1px solid #b0bec5 !important;
+ }
+ .border-left-grey-blue.border-left-lighten-3 {
+ border-left: 1px solid #b0bec5 !important;
+ }
+ .border-right-grey-blue.border-right-lighten-3 {
+ border-right: 1px solid #b0bec5 !important;
+ }
+ .overlay-grey-blue.overlay-lighten-3 {
+ background: #b0bec5;
+ background: rgba(176, 190, 197, 0.8);
+ }
+ .bg-grey-blue.bg-lighten-2,
+ .btn-grey-blue.btn-lighten-2 {
+ background-color: #6f85ad !important;
+ }
+ .grey-blue.lighten-2 {
+ color: #6f85ad !important;
+ }
+ .btn-grey-blue.btn-lighten-2 {
+ border-color: #404e67 !important;
+ }
+ .btn-grey-blue.btn-lighten-2:hover {
+ border-color: #404e67 !important;
+ background-color: #37474f !important;
+ }
+ .btn-grey-blue.btn-lighten-2:active,
+ .btn-grey-blue.btn-lighten-2:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-grey-blue.btn-outline-lighten-2 {
+ border-color: #6f85ad !important;
+ color: #6f85ad !important;
+ }
+ .btn-outline-grey-blue.btn-outline-lighten-2:hover {
+ background-color: #6f85ad !important;
+ }
+ .border-grey-blue.border-lighten-2 {
+ border: 1px solid #6f85ad !important;
+ }
+ .border-top-grey-blue.border-top-lighten-2 {
+ border-top: 1px solid #6f85ad !important;
+ }
+ .border-bottom-grey-blue.border-bottom-lighten-2 {
+ border-bottom: 1px solid #6f85ad !important;
+ }
+ .border-left-grey-blue.border-left-lighten-2 {
+ border-left: 1px solid #6f85ad !important;
+ }
+ .border-right-grey-blue.border-right-lighten-2 {
+ border-right: 1px solid #6f85ad !important;
+ }
+ .overlay-grey-blue.overlay-lighten-2 {
+ background: #6f85ad;
+ background: rgba(111, 133, 173, 0.8);
+ }
+ .bg-grey-blue.bg-lighten-1,
+ .btn-grey-blue.btn-lighten-1 {
+ background-color: #78909c !important;
+ }
+ .grey-blue.lighten-1 {
+ color: #78909c !important;
+ }
+ .btn-grey-blue.btn-lighten-1 {
+ border-color: #404e67 !important;
+ }
+ .btn-grey-blue.btn-lighten-1:hover {
+ border-color: #404e67 !important;
+ background-color: #37474f !important;
+ }
+ .btn-grey-blue.btn-lighten-1:active,
+ .btn-grey-blue.btn-lighten-1:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-grey-blue.btn-outline-lighten-1 {
+ border-color: #78909c !important;
+ color: #78909c !important;
+ }
+ .btn-outline-grey-blue.btn-outline-lighten-1:hover {
+ background-color: #78909c !important;
+ }
+ .border-grey-blue.border-lighten-1 {
+ border: 1px solid #78909c !important;
+ }
+ .border-top-grey-blue.border-top-lighten-1 {
+ border-top: 1px solid #78909c !important;
+ }
+ .border-bottom-grey-blue.border-bottom-lighten-1 {
+ border-bottom: 1px solid #78909c !important;
+ }
+ .border-left-grey-blue.border-left-lighten-1 {
+ border-left: 1px solid #78909c !important;
+ }
+ .border-right-grey-blue.border-right-lighten-1 {
+ border-right: 1px solid #78909c !important;
+ }
+ .overlay-grey-blue.overlay-lighten-1 {
+ background: #78909c;
+ background: rgba(120, 144, 156, 0.8);
+ }
+ .grey-blue {
+ color: #1b2942 !important;
+ }
+ .alert-grey-blue,
+ .alert-grey-blue .alert-link {
+ color: #000 !important;
+ }
+ .bg-grey-blue {
+ background-color: #1b2942 !important;
+ }
+ .bg-grey-blue .card-footer,
+ .bg-grey-blue .card-header {
+ background-color: transparent;
+ }
+ .alert-grey-blue {
+ border-color: #304875 !important;
+ background-color: #304875 !important;
+ }
+ .bullet.bullet-grey-blue {
+ background-color: #1b2942;
+ }
+ .bg-light-grey-blue {
+ background-color: rgba(27, 41, 66, 0.15);
+ }
+ .bg-grey-blue.badge-glow,
+ .border-grey-blue.badge-glow {
+ box-shadow: 0 0 10px #1b2942;
+ }
+ .overlay-grey-blue {
+ background: #1b2942;
+ background: rgba(27, 41, 66, 0.8);
+ }
+ .btn-grey-blue {
+ background-color: #1b2942 !important;
+ color: #fff;
+ }
+ .btn-grey-blue:hover {
+ border-color: #546e7a !important;
+ background-color: #78909c !important;
+ color: #fff !important;
+ }
+ .btn-grey-blue:active,
+ .btn-grey-blue:focus {
+ border-color: #404e67 !important;
+ background-color: #37474f !important;
+ color: #fff !important;
+ }
+ .btn-outline-grey-blue {
+ border-color: #1b2942;
+ background-color: transparent;
+ color: #1b2942;
+ }
+ .btn-outline-grey-blue:hover {
+ background-color: #1b2942;
+ color: #fff !important;
+ }
+ .widget-timeline .timeline-items.timeline-icon-grey-blue:before {
+ background-color: #1b2942;
+ }
+ input[type="checkbox"].bg-grey-blue + .custom-control-label:before,
+ input[type="radio"].bg-grey-blue + .custom-control-label:before {
+ background-color: #1b2942 !important;
+ }
+ .bg-grey-blue.bg-darken-1,
+ .btn-grey-blue.btn-darken-1 {
+ background-color: #546e7a !important;
+ }
+ .border-grey-blue {
+ border: 1px solid #1b2942 !important;
+ }
+ .border-top-grey-blue {
+ border-top: 1px solid #1b2942;
+ }
+ .border-bottom-grey-blue {
+ border-bottom: 1px solid #1b2942;
+ }
+ .border-left-grey-blue {
+ border-left: 1px solid #1b2942;
+ }
+ .border-right-grey-blue {
+ border-right: 1px solid #1b2942;
+ }
+ .grey-blue.darken-1 {
+ color: #546e7a !important;
+ }
+ .btn-grey-blue.btn-darken-1 {
+ border-color: #404e67 !important;
+ }
+ .btn-grey-blue.btn-darken-1:hover {
+ border-color: #404e67 !important;
+ background-color: #37474f !important;
+ }
+ .btn-grey-blue.btn-darken-1:active,
+ .btn-grey-blue.btn-darken-1:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-grey-blue.btn-outline-darken-1 {
+ border-color: #546e7a !important;
+ color: #546e7a !important;
+ }
+ .btn-outline-grey-blue.btn-outline-darken-1:hover {
+ background-color: #546e7a !important;
+ }
+ .border-grey-blue.border-darken-1 {
+ border: 1px solid #546e7a !important;
+ }
+ .border-top-grey-blue.border-top-darken-1 {
+ border-top: 1px solid #546e7a !important;
+ }
+ .border-bottom-grey-blue.border-bottom-darken-1 {
+ border-bottom: 1px solid #546e7a !important;
+ }
+ .border-left-grey-blue.border-left-darken-1 {
+ border-left: 1px solid #546e7a !important;
+ }
+ .border-right-grey-blue.border-right-darken-1 {
+ border-right: 1px solid #546e7a !important;
+ }
+ .overlay-grey-blue.overlay-darken-1 {
+ background: #546e7a;
+ background: rgba(84, 110, 122, 0.8);
+ }
+ .bg-grey-blue.bg-darken-2,
+ .btn-grey-blue.btn-darken-2 {
+ background-color: #404e67 !important;
+ }
+ .grey-blue.darken-2 {
+ color: #404e67 !important;
+ }
+ .btn-grey-blue.btn-darken-2 {
+ border-color: #404e67 !important;
+ }
+ .btn-grey-blue.btn-darken-2:hover {
+ border-color: #404e67 !important;
+ background-color: #37474f !important;
+ }
+ .btn-grey-blue.btn-darken-2:active,
+ .btn-grey-blue.btn-darken-2:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-grey-blue.btn-outline-darken-2 {
+ border-color: #404e67 !important;
+ color: #404e67 !important;
+ }
+ .btn-outline-grey-blue.btn-outline-darken-2:hover {
+ background-color: #404e67 !important;
+ }
+ .border-grey-blue.border-darken-2 {
+ border: 1px solid #404e67 !important;
+ }
+ .border-top-grey-blue.border-top-darken-2 {
+ border-top: 1px solid #404e67 !important;
+ }
+ .border-bottom-grey-blue.border-bottom-darken-2 {
+ border-bottom: 1px solid #404e67 !important;
+ }
+ .border-left-grey-blue.border-left-darken-2 {
+ border-left: 1px solid #404e67 !important;
+ }
+ .border-right-grey-blue.border-right-darken-2 {
+ border-right: 1px solid #404e67 !important;
+ }
+ .overlay-grey-blue.overlay-darken-2 {
+ background: #404e67;
+ background: rgba(64, 78, 103, 0.8);
+ }
+ .grey-blue.darken-3 {
+ color: #37474f !important;
+ }
+ .bg-grey-blue.bg-darken-3 {
+ background-color: #37474f !important;
+ }
+ .btn-grey-blue.btn-darken-3,
+ .btn-grey-blue.btn-darken-3:hover {
+ border-color: #404e67 !important;
+ background-color: #37474f !important;
+ }
+ .btn-grey-blue.btn-darken-3:active,
+ .btn-grey-blue.btn-darken-3:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-grey-blue.btn-outline-darken-3 {
+ border-color: #37474f !important;
+ color: #37474f !important;
+ }
+ .btn-outline-grey-blue.btn-outline-darken-3:hover {
+ background-color: #37474f !important;
+ }
+ .border-grey-blue.border-darken-3 {
+ border: 1px solid #37474f !important;
+ }
+ .border-top-grey-blue.border-top-darken-3 {
+ border-top: 1px solid #37474f !important;
+ }
+ .border-bottom-grey-blue.border-bottom-darken-3 {
+ border-bottom: 1px solid #37474f !important;
+ }
+ .border-left-grey-blue.border-left-darken-3 {
+ border-left: 1px solid #37474f !important;
+ }
+ .border-right-grey-blue.border-right-darken-3 {
+ border-right: 1px solid #37474f !important;
+ }
+ .overlay-grey-blue.overlay-darken-3 {
+ background: #37474f;
+ background: rgba(55, 71, 79, 0.8);
+ }
+ .bg-grey-blue.bg-darken-4,
+ .btn-grey-blue.btn-darken-4 {
+ background-color: #263238 !important;
+ }
+ .grey-blue.darken-4 {
+ color: #263238 !important;
+ }
+ .btn-grey-blue.btn-darken-4 {
+ border-color: #404e67 !important;
+ }
+ .btn-grey-blue.btn-darken-4:hover {
+ border-color: #404e67 !important;
+ background-color: #37474f !important;
+ }
+ .btn-grey-blue.btn-darken-4:active,
+ .btn-grey-blue.btn-darken-4:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-grey-blue.btn-outline-darken-4 {
+ border-color: #263238 !important;
+ color: #263238 !important;
+ }
+ .btn-outline-grey-blue.btn-outline-darken-4:hover {
+ background-color: #263238 !important;
+ }
+ input:focus ~ .bg-grey-blue {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #263238 !important;
+ }
+ .border-grey-blue.border-darken-4 {
+ border: 1px solid #263238 !important;
+ }
+ .border-top-grey-blue.border-top-darken-4 {
+ border-top: 1px solid #263238 !important;
+ }
+ .border-bottom-grey-blue.border-bottom-darken-4 {
+ border-bottom: 1px solid #263238 !important;
+ }
+ .border-left-grey-blue.border-left-darken-4 {
+ border-left: 1px solid #263238 !important;
+ }
+ .border-right-grey-blue.border-right-darken-4 {
+ border-right: 1px solid #263238 !important;
+ }
+ .overlay-grey-blue.overlay-darken-4 {
+ background: #263238;
+ background: rgba(38, 50, 56, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="grey-blue"]:before {
+ background-color: #263238;
+ }
+ .bg-shades.bg-black,
+ .btn-outline-shades.btn-outline-black:hover,
+ .btn-shades.btn-black {
+ background-color: #000 !important;
+ }
+ .shades.black {
+ color: #000 !important;
+ }
+ .btn-outline-shades.btn-outline-black {
+ border-color: #000 !important;
+ color: #000 !important;
+ }
+ .border-shades.border-black {
+ border: 1px solid #000 !important;
+ }
+ .border-top-shades.border-top-black {
+ border-top: 1px solid #000 !important;
+ }
+ .border-bottom-shades.border-bottom-black {
+ border-bottom: 1px solid #000 !important;
+ }
+ .border-left-shades.border-left-black {
+ border-left: 1px solid #000 !important;
+ }
+ .border-right-shades.border-right-black {
+ border-right: 1px solid #000 !important;
+ }
+ .overlay-shades.overlay-black {
+ background: #000;
+ background: rgba(0, 0, 0, 0.8);
+ }
+ .bg-shades.bg-white,
+ .btn-outline-shades.btn-outline-white:hover,
+ .btn-shades.btn-white {
+ background-color: #fff !important;
+ }
+ .shades.white {
+ color: #fff !important;
+ }
+ .btn-outline-shades.btn-outline-white {
+ border-color: #fff !important;
+ color: #fff !important;
+ }
+ .border-shades.border-white {
+ border: 1px solid #fff !important;
+ }
+ .border-top-shades.border-top-white {
+ border-top: 1px solid #fff !important;
+ }
+ .border-bottom-shades.border-bottom-white {
+ border-bottom: 1px solid #fff !important;
+ }
+ .border-left-shades.border-left-white {
+ border-left: 1px solid #fff !important;
+ }
+ .border-right-shades.border-right-white {
+ border-right: 1px solid #fff !important;
+ }
+ .overlay-shades.overlay-white {
+ background: #fff;
+ background: rgba(255, 255, 255, 0.8);
+ }
+ .bg-shades.bg-transparent,
+ .btn-outline-shades.btn-outline-transparent:hover,
+ .btn-shades.btn-transparent {
+ background-color: transparent !important;
+ }
+ .shades.transparent {
+ color: transparent !important;
+ }
+ .btn-outline-shades.btn-outline-transparent {
+ border-color: transparent !important;
+ color: transparent !important;
+ }
+ input:focus ~ .bg-shades {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem transparent !important;
+ }
+ .border-shades.border-transparent {
+ border: 1px solid transparent !important;
+ }
+ .border-top-shades.border-top-transparent {
+ border-top: 1px solid transparent !important;
+ }
+ .border-bottom-shades.border-bottom-transparent {
+ border-bottom: 1px solid transparent !important;
+ }
+ .border-left-shades.border-left-transparent {
+ border-left: 1px solid transparent !important;
+ }
+ .border-right-shades.border-right-transparent {
+ border-right: 1px solid transparent !important;
+ }
+ .overlay-shades.overlay-transparent {
+ background: 0 0;
+ background: rgba(0, 0, 0, 0.8);
+ }
+ .bg-transparent,
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="shades"]:before {
+ background-color: transparent;
+ }
+ .border-top-black {
+ border-top: 1px solid #000;
+ }
+ .border-bottom-black {
+ border-bottom: 1px solid #000;
+ }
+ .border-left-black {
+ border-left: 1px solid #000;
+ }
+ .border-right-black {
+ border-right: 1px solid #000;
+ }
+ .border-top-white {
+ border-top: 1px solid #fff;
+ }
+ .border-bottom-white {
+ border-bottom: 1px solid #fff;
+ }
+ .border-left-white {
+ border-left: 1px solid #fff;
+ }
+ .border-right-white {
+ border-right: 1px solid #fff;
+ }
+ .transparent {
+ color: transparent;
+ }
+ input:focus ~ .bg-transparent {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem transparent;
+ }
+ .border-transparent {
+ border: 1px solid transparent;
+ }
+ .border-top-transparent {
+ border-top: 1px solid transparent;
+ }
+ .border-bottom-transparent {
+ border-bottom: 1px solid transparent;
+ }
+ .border-left-transparent {
+ border-left: 1px solid transparent;
+ }
+ .border-right-transparent {
+ border-right: 1px solid transparent;
+ }
+ [data-icon]:before {
+ font-family: Simple-Line-Icons;
+ content: attr(data-icon);
+ speak: none;
+ font-weight: 400;
+ font-variant: normal;
+ text-transform: none;
+ line-height: 1;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ }
+ .icon-action-redo,
+ .icon-action-undo,
+ .icon-anchor,
+ .icon-arrow-down,
+ .icon-arrow-left,
+ .icon-arrow-right,
+ .icon-arrow-up,
+ .icon-badge,
+ .icon-bag,
+ .icon-ban,
+ .icon-bar-chart,
+ .icon-basket,
+ .icon-basket-loaded,
+ .icon-bell,
+ .icon-book-open,
+ .icon-briefcase,
+ .icon-bubble,
+ .icon-bubbles,
+ .icon-bulb,
+ .icon-calculator,
+ .icon-calendar,
+ .icon-call-end,
+ .icon-call-in,
+ .icon-call-out,
+ .icon-camcorder,
+ .icon-camera,
+ .icon-check,
+ .icon-chemistry,
+ .icon-clock,
+ .icon-close,
+ .icon-cloud-download,
+ .icon-cloud-upload,
+ .icon-compass,
+ .icon-control-end,
+ .icon-control-forward,
+ .icon-control-pause,
+ .icon-control-play,
+ .icon-control-rewind,
+ .icon-control-start,
+ .icon-credit-card,
+ .icon-crop,
+ .icon-cup,
+ .icon-cursor,
+ .icon-cursor-move,
+ .icon-diamond,
+ .icon-direction,
+ .icon-directions,
+ .icon-disc,
+ .icon-dislike,
+ .icon-doc,
+ .icon-docs,
+ .icon-drawer,
+ .icon-drop,
+ .icon-earphones,
+ .icon-earphones-alt,
+ .icon-emoticon-smile,
+ .icon-energy,
+ .icon-envelope,
+ .icon-envelope-letter,
+ .icon-envelope-open,
+ .icon-equalizer,
+ .icon-eye,
+ .icon-eyeglasses,
+ .icon-feed,
+ .icon-film,
+ .icon-fire,
+ .icon-flag,
+ .icon-folder,
+ .icon-folder-alt,
+ .icon-frame,
+ .icon-game-controller,
+ .icon-ghost,
+ .icon-globe,
+ .icon-globe-alt,
+ .icon-graduation,
+ .icon-graph,
+ .icon-grid,
+ .icon-handbag,
+ .icon-heart,
+ .icon-home,
+ .icon-hourglass,
+ .icon-info,
+ .icon-key,
+ .icon-layers,
+ .icon-like,
+ .icon-link,
+ .icon-list,
+ .icon-lock,
+ .icon-lock-open,
+ .icon-login,
+ .icon-logout,
+ .icon-loop,
+ .icon-magic-wand,
+ .icon-magnet,
+ .icon-magnifier,
+ .icon-magnifier-add,
+ .icon-magnifier-remove,
+ .icon-map,
+ .icon-microphone,
+ .icon-mouse,
+ .icon-moustache,
+ .icon-music-tone,
+ .icon-music-tone-alt,
+ .icon-note,
+ .icon-notebook,
+ .icon-paper-clip,
+ .icon-paper-plane,
+ .icon-pencil,
+ .icon-picture,
+ .icon-pie-chart,
+ .icon-pin,
+ .icon-plane,
+ .icon-playlist,
+ .icon-plus,
+ .icon-pointer,
+ .icon-power,
+ .icon-present,
+ .icon-printer,
+ .icon-puzzle,
+ .icon-question,
+ .icon-refresh,
+ .icon-reload,
+ .icon-rocket,
+ .icon-screen-desktop,
+ .icon-screen-smartphone,
+ .icon-screen-tablet,
+ .icon-settings,
+ .icon-share,
+ .icon-share-alt,
+ .icon-shield,
+ .icon-shuffle,
+ .icon-size-actual,
+ .icon-size-fullscreen,
+ .icon-social-dribbble,
+ .icon-social-dropbox,
+ .icon-social-facebook,
+ .icon-social-tumblr,
+ .icon-social-twitter,
+ .icon-social-youtube,
+ .icon-speech,
+ .icon-speedometer,
+ .icon-star,
+ .icon-support,
+ .icon-symbol-female,
+ .icon-symbol-male,
+ .icon-tag,
+ .icon-target,
+ .icon-trash,
+ .icon-trophy,
+ .icon-umbrella,
+ .icon-user,
+ .icon-user-female,
+ .icon-user-follow,
+ .icon-user-following,
+ .icon-user-unfollow,
+ .icon-users,
+ .icon-vector,
+ .icon-volume-1,
+ .icon-volume-2,
+ .icon-volume-off,
+ .icon-wallet,
+ .icon-wrench {
+ font-family: Simple-Line-Icons;
+ speak: none;
+ font-style: normal;
+ font-weight: 400;
+ font-variant: normal;
+ text-transform: none;
+ line-height: 1;
+ -webkit-font-smoothing: antialiased;
+ }
+ .icon-user-female:before {
+ content: "\e000";
+ }
+ .icon-user-follow:before {
+ content: "\e002";
+ }
+ .icon-user-following:before {
+ content: "\e003";
+ }
+ .icon-user-unfollow:before {
+ content: "\e004";
+ }
+ .icon-trophy:before {
+ content: "\e006";
+ }
+ .icon-screen-smartphone:before {
+ content: "\e010";
+ }
+ .icon-screen-desktop:before {
+ content: "\e011";
+ }
+ .icon-plane:before {
+ content: "\e012";
+ }
+ .icon-notebook:before {
+ content: "\e013";
+ }
+ .icon-moustache:before {
+ content: "\e014";
+ }
+ .icon-mouse:before {
+ content: "\e015";
+ }
+ .icon-magnet:before {
+ content: "\e016";
+ }
+ .icon-energy:before {
+ content: "\e020";
+ }
+ .icon-emoticon-smile:before {
+ content: "\e021";
+ }
+ .icon-disc:before {
+ content: "\e022";
+ }
+ .icon-cursor-move:before {
+ content: "\e023";
+ }
+ .icon-crop:before {
+ content: "\e024";
+ }
+ .icon-credit-card:before {
+ content: "\e025";
+ }
+ .icon-chemistry:before {
+ content: "\e026";
+ }
+ .icon-user:before {
+ content: "\e005";
+ }
+ .icon-speedometer:before {
+ content: "\e007";
+ }
+ .icon-social-youtube:before {
+ content: "\e008";
+ }
+ .icon-social-twitter:before {
+ content: "\e009";
+ }
+ .icon-social-tumblr:before {
+ content: "\e00a";
+ }
+ .icon-social-facebook:before {
+ content: "\e00b";
+ }
+ .icon-social-dropbox:before {
+ content: "\e00c";
+ }
+ .icon-social-dribbble:before {
+ content: "\e00d";
+ }
+ .icon-shield:before {
+ content: "\e00e";
+ }
+ .icon-screen-tablet:before {
+ content: "\e00f";
+ }
+ .icon-magic-wand:before {
+ content: "\e017";
+ }
+ .icon-hourglass:before {
+ content: "\e018";
+ }
+ .icon-graduation:before {
+ content: "\e019";
+ }
+ .icon-ghost:before {
+ content: "\e01a";
+ }
+ .icon-game-controller:before {
+ content: "\e01b";
+ }
+ .icon-fire:before {
+ content: "\e01c";
+ }
+ .icon-eyeglasses:before {
+ content: "\e01d";
+ }
+ .icon-envelope-open:before {
+ content: "\e01e";
+ }
+ .icon-envelope-letter:before {
+ content: "\e01f";
+ }
+ .icon-bell:before {
+ content: "\e027";
+ }
+ .icon-badge:before {
+ content: "\e028";
+ }
+ .icon-anchor:before {
+ content: "\e029";
+ }
+ .icon-wallet:before {
+ content: "\e02a";
+ }
+ .icon-vector:before {
+ content: "\e02b";
+ }
+ .icon-speech:before {
+ content: "\e02c";
+ }
+ .icon-puzzle:before {
+ content: "\e02d";
+ }
+ .icon-printer:before {
+ content: "\e02e";
+ }
+ .icon-present:before {
+ content: "\e02f";
+ }
+ .icon-playlist:before {
+ content: "\e030";
+ }
+ .icon-pin:before {
+ content: "\e031";
+ }
+ .icon-picture:before {
+ content: "\e032";
+ }
+ .icon-map:before {
+ content: "\e033";
+ }
+ .icon-layers:before {
+ content: "\e034";
+ }
+ .icon-handbag:before {
+ content: "\e035";
+ }
+ .icon-globe-alt:before {
+ content: "\e036";
+ }
+ .icon-globe:before {
+ content: "\e037";
+ }
+ .icon-frame:before {
+ content: "\e038";
+ }
+ .icon-folder-alt:before {
+ content: "\e039";
+ }
+ .icon-film:before {
+ content: "\e03a";
+ }
+ .icon-feed:before {
+ content: "\e03b";
+ }
+ .icon-earphones-alt:before {
+ content: "\e03c";
+ }
+ .icon-earphones:before {
+ content: "\e03d";
+ }
+ .icon-drop:before {
+ content: "\e03e";
+ }
+ .icon-drawer:before {
+ content: "\e03f";
+ }
+ .icon-docs:before {
+ content: "\e040";
+ }
+ .icon-directions:before {
+ content: "\e041";
+ }
+ .icon-direction:before {
+ content: "\e042";
+ }
+ .icon-diamond:before {
+ content: "\e043";
+ }
+ .icon-cup:before {
+ content: "\e044";
+ }
+ .icon-compass:before {
+ content: "\e045";
+ }
+ .icon-call-out:before {
+ content: "\e046";
+ }
+ .icon-call-in:before {
+ content: "\e047";
+ }
+ .icon-call-end:before {
+ content: "\e048";
+ }
+ .icon-calculator:before {
+ content: "\e049";
+ }
+ .icon-bubbles:before {
+ content: "\e04a";
+ }
+ .icon-briefcase:before {
+ content: "\e04b";
+ }
+ .icon-book-open:before {
+ content: "\e04c";
+ }
+ .icon-basket-loaded:before {
+ content: "\e04d";
+ }
+ .icon-basket:before {
+ content: "\e04e";
+ }
+ .icon-bag:before {
+ content: "\e04f";
+ }
+ .icon-action-undo:before {
+ content: "\e050";
+ }
+ .icon-action-redo:before {
+ content: "\e051";
+ }
+ .icon-wrench:before {
+ content: "\e052";
+ }
+ .icon-umbrella:before {
+ content: "\e053";
+ }
+ .icon-trash:before {
+ content: "\e054";
+ }
+ .icon-tag:before {
+ content: "\e055";
+ }
+ .icon-support:before {
+ content: "\e056";
+ }
+ .icon-size-fullscreen:before {
+ content: "\e057";
+ }
+ .icon-size-actual:before {
+ content: "\e058";
+ }
+ .icon-shuffle:before {
+ content: "\e059";
+ }
+ .icon-share-alt:before {
+ content: "\e05a";
+ }
+ .icon-share:before {
+ content: "\e05b";
+ }
+ .icon-rocket:before {
+ content: "\e05c";
+ }
+ .icon-question:before {
+ content: "\e05d";
+ }
+ .icon-pie-chart:before {
+ content: "\e05e";
+ }
+ .icon-pencil:before {
+ content: "\e05f";
+ }
+ .icon-note:before {
+ content: "\e060";
+ }
+ .icon-music-tone-alt:before {
+ content: "\e061";
+ }
+ .icon-music-tone:before {
+ content: "\e062";
+ }
+ .icon-microphone:before {
+ content: "\e063";
+ }
+ .icon-loop:before {
+ content: "\e064";
+ }
+ .icon-logout:before {
+ content: "\e065";
+ }
+ .icon-login:before {
+ content: "\e066";
+ }
+ .icon-list:before {
+ content: "\e067";
+ }
+ .icon-like:before {
+ content: "\e068";
+ }
+ .icon-home:before {
+ content: "\e069";
+ }
+ .icon-grid:before {
+ content: "\e06a";
+ }
+ .icon-graph:before {
+ content: "\e06b";
+ }
+ .icon-equalizer:before {
+ content: "\e06c";
+ }
+ .icon-dislike:before {
+ content: "\e06d";
+ }
+ .icon-cursor:before {
+ content: "\e06e";
+ }
+ .icon-control-start:before {
+ content: "\e06f";
+ }
+ .icon-control-rewind:before {
+ content: "\e070";
+ }
+ .icon-control-play:before {
+ content: "\e071";
+ }
+ .icon-control-pause:before {
+ content: "\e072";
+ }
+ .icon-control-forward:before {
+ content: "\e073";
+ }
+ .icon-control-end:before {
+ content: "\e074";
+ }
+ .icon-calendar:before {
+ content: "\e075";
+ }
+ .icon-bulb:before {
+ content: "\e076";
+ }
+ .icon-bar-chart:before {
+ content: "\e077";
+ }
+ .icon-arrow-up:before {
+ content: "\e078";
+ }
+ .icon-arrow-right:before {
+ content: "\e079";
+ }
+ .icon-arrow-left:before {
+ content: "\e07a";
+ }
+ .icon-arrow-down:before {
+ content: "\e07b";
+ }
+ .icon-ban:before {
+ content: "\e07c";
+ }
+ .icon-bubble:before {
+ content: "\e07d";
+ }
+ .icon-camcorder:before {
+ content: "\e07e";
+ }
+ .icon-camera:before {
+ content: "\e07f";
+ }
+ .icon-check:before {
+ content: "\e080";
+ }
+ .icon-clock:before {
+ content: "\e081";
+ }
+ .icon-close:before {
+ content: "\e082";
+ }
+ .icon-cloud-download:before {
+ content: "\e083";
+ }
+ .icon-cloud-upload:before {
+ content: "\e084";
+ }
+ .icon-doc:before {
+ content: "\e085";
+ }
+ .icon-envelope:before {
+ content: "\e086";
+ }
+ .icon-eye:before {
+ content: "\e087";
+ }
+ .icon-flag:before {
+ content: "\e088";
+ }
+ .icon-folder:before {
+ content: "\e089";
+ }
+ .icon-heart:before {
+ content: "\e08a";
+ }
+ .icon-info:before {
+ content: "\e08b";
+ }
+ .icon-key:before {
+ content: "\e08c";
+ }
+ .icon-link:before {
+ content: "\e08d";
+ }
+ .icon-lock:before {
+ content: "\e08e";
+ }
+ .icon-lock-open:before {
+ content: "\e08f";
+ }
+ .icon-magnifier:before {
+ content: "\e090";
+ }
+ .icon-magnifier-add:before {
+ content: "\e091";
+ }
+ .icon-magnifier-remove:before {
+ content: "\e092";
+ }
+ .icon-paper-clip:before {
+ content: "\e093";
+ }
+ .icon-paper-plane:before {
+ content: "\e094";
+ }
+ .icon-plus:before {
+ content: "\e095";
+ }
+ .icon-pointer:before {
+ content: "\e096";
+ }
+ .icon-power:before {
+ content: "\e097";
+ }
+ .icon-refresh:before {
+ content: "\e098";
+ }
+ .icon-reload:before {
+ content: "\e099";
+ }
+ .icon-settings:before {
+ content: "\e09a";
+ }
+ .icon-star:before {
+ content: "\e09b";
+ }
+ .icon-symbol-female:before {
+ content: "\e09c";
+ }
+ .icon-symbol-male:before {
+ content: "\e09d";
+ }
+ .icon-target:before {
+ content: "\e09e";
+ }
+ .icon-volume-1:before {
+ content: "\e09f";
+ }
+ .icon-volume-2:before {
+ content: "\e0a0";
+ }
+ .icon-volume-off:before {
+ content: "\e0a1";
+ }
+ .icon-users:before {
+ content: "\e001";
+ }
+ .custom-select,
+ select.form-control {
+ -moz-appearance: none;
+ -webkit-appearance: none;
+ }
+ .dropdown-toggle:focus,
+ a:focus {
+ outline: 0;
+ }
+ .menu-list,
+ .navbar-nav .mega-dropdown-menu ul li,
+ .navigation-main .mega-dropdown-menu ul li {
+ list-style: none;
+ }
+ .breadcrumb,
+ .card .card-title,
+ .dropdown-header {
+ text-transform: uppercase;
+ }
+ .font-small-1 {
+ font-size: 0.7rem !important;
+ }
+ .font-small-2 {
+ font-size: 0.8rem !important;
+ }
+ .font-small-3 {
+ font-size: 0.9rem !important;
+ }
+ .font-medium-1 {
+ font-size: 1.1rem !important;
+ }
+ .font-medium-2 {
+ font-size: 1.2rem !important;
+ }
+ .font-medium-3 {
+ font-size: 1.3rem !important;
+ }
+ .font-medium-4 {
+ font-size: 1.4rem !important;
+ }
+ .font-medium-5 {
+ font-size: 1.5rem !important;
+ }
+ .font-large-1 {
+ font-size: 2rem !important;
+ }
+ .font-large-2 {
+ font-size: 3rem !important;
+ }
+ .font-large-3 {
+ font-size: 4rem !important;
+ }
+ .font-large-4 {
+ font-size: 5rem !important;
+ }
+ .font-large-5 {
+ font-size: 6rem !important;
+ }
+ .text-bold-300 {
+ font-weight: 300;
+ }
+ .text-bold-400 {
+ font-weight: 400;
+ }
+ .text-bold-500 {
+ font-weight: 500;
+ }
+ .text-bold-600 {
+ font-weight: 600;
+ }
+ .text-bold-700 {
+ font-weight: 700;
+ }
+ .text-italic {
+ font-style: italic;
+ }
+ .text-highlight {
+ padding: 4px 6px;
+ }
+ dl li,
+ ol li,
+ ul li {
+ line-height: 1.8;
+ }
+ code {
+ padding: 0.2rem 0.4rem;
+ font-size: 90%;
+ color: #e83e8c;
+ background-color: #f5f7fa;
+ border-radius: 0.25rem;
+ }
+ pre {
+ background-color: #f7f7f9;
+ }
+ pre code {
+ background-color: transparent !important;
+ }
+ .bd-example-row .row + .row {
+ margin-top: 1rem;
+ }
+ .bd-example-row .row > .col,
+ .bd-example-row .row > [class^="col-"] {
+ padding-top: 0.75rem;
+ padding-bottom: 0.75rem;
+ background-color: rgba(86, 61, 124, 0.15);
+ border: 1px solid rgba(86, 61, 124, 0.2);
+ }
+ .bd-example-row .flex-items-bottom,
+ .bd-example-row .flex-items-middle,
+ .bd-example-row .flex-items-top {
+ min-height: 6rem;
+ background-color: rgba(255, 0, 0, 0.1);
+ }
+ .bd-example-row-flex-cols .row {
+ min-height: 10rem;
+ background-color: rgba(255, 0, 0, 0.1);
+ }
+ .bd-highlight {
+ background-color: rgba(86, 61, 124, 0.15);
+ border: 1px solid rgba(86, 61, 124, 0.15);
+ }
+ .example-container {
+ width: 800px;
+ width: 100%;
+ padding-right: 15px;
+ padding-left: 15px;
+ margin-right: auto;
+ margin-left: auto;
+ }
+ .example-content-main,
+ .example-content-secondary {
+ width: 100%;
+ padding-right: 15px;
+ padding-left: 15px;
+ position: relative;
+ }
+ .example-row {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-flex-wrap: wrap;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ margin-right: -15px;
+ margin-left: -15px;
+ }
+ @media (min-width: 576px) {
+ .example-content-main {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 50%;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%;
+ }
+ }
+ @media (min-width: 992px) {
+ .example-content-main {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 66.66667%;
+ -ms-flex: 0 0 66.66667%;
+ flex: 0 0 66.66667%;
+ max-width: 66.66667%;
+ }
+ }
+ @media (min-width: 576px) {
+ .example-content-secondary {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 50%;
+ -ms-flex: 0 0 50%;
+ flex: 0 0 50%;
+ max-width: 50%;
+ }
+ }
+ @media (min-width: 992px) {
+ .example-content-secondary {
+ -webkit-box-flex: 0;
+ -webkit-flex: 0 0 33.33333%;
+ -ms-flex: 0 0 33.33333%;
+ flex: 0 0 33.33333%;
+ max-width: 33.33333%;
+ }
+ }
+ .table-white-space td,
+ .table-white-space th {
+ white-space: nowrap;
+ }
+ .table-borderless td,
+ .table-borderless th {
+ border: none;
+ }
+ .table thead th {
+ vertical-align: bottom;
+ border-bottom: 2px solid #e3ebf3;
+ border-top: 1px solid #e3ebf3;
+ }
+ .table-bordered,
+ .table-bordered td,
+ .table-bordered th {
+ border: 1px solid #e3ebf3;
+ }
+ .table td,
+ .table th {
+ border-bottom: 1px solid #e3ebf3;
+ padding: 0.75rem 2rem;
+ }
+ .table-inverse {
+ color: #eceeef;
+ background-color: #00a5a8;
+ }
+ form .form-actions.filled,
+ form.striped-rows .form-group:nth-child(even) {
+ background-color: #f5f7fa;
+ }
+ .table.table-column td,
+ .table.table-column th {
+ border: none;
+ border-left: 1px solid #e3ebf3;
+ }
+ .table.table-column td:first-child,
+ .table.table-column th:first-child {
+ border-left: none;
+ }
+ .table.table-xl td,
+ .table.table-xl th {
+ padding: 1.25rem 2rem;
+ }
+ .table.table-lg td,
+ .table.table-lg th {
+ padding: 0.9rem 2rem;
+ }
+ .table.table-de td,
+ .table.table-de th {
+ padding: 0.75rem 2rem;
+ }
+ .table.table-sm td,
+ .table.table-sm th {
+ padding: 0.6rem 2rem;
+ }
+ .table.table-xs td,
+ .table.table-xs th {
+ padding: 0.4rem 2rem;
+ }
+ .table-borderless thead th {
+ border-top: 1px solid #e3ebf3;
+ }
+ .table-borderless > tbody > tr > td,
+ .table-borderless > tbody > tr > th {
+ border: 0;
+ }
+ .table > thead > tr.border-solid > th {
+ border-bottom-width: 2px;
+ }
+ .table > thead > tr.border-double > th {
+ border-bottom-width: 4px;
+ border-bottom-style: double;
+ }
+ .table > tbody > tr.border-dashed > td {
+ border-top-style: dashed;
+ }
+ .border-custom-color td {
+ border-top: inherit;
+ border-bottom: inherit;
+ }
+ form label {
+ color: #2e405c;
+ }
+ form .form-group {
+ margin-bottom: 1.5rem;
+ }
+ form .form-control {
+ border: 1px solid #ccd6e6;
+ color: #3f587e;
+ }
+ form .form-control::-webkit-input-placeholder {
+ color: #b1c1d8;
+ }
+ form .form-control:-moz-placeholder {
+ color: #b1c1d8;
+ }
+ form .form-control::-moz-placeholder {
+ color: #b1c1d8;
+ }
+ form .form-control:-ms-input-placeholder {
+ color: #b1c1d8;
+ }
+ form .form-section {
+ color: #98a4b8;
+ line-height: 3rem;
+ margin-bottom: 20px;
+ border-bottom: 1px solid #98a4b8;
+ }
+ form .form-section i {
+ font-size: 20px;
+ margin-left: 5px;
+ margin-right: 10px;
+ }
+ form .form-actions {
+ border-top: 1px solid #d3dce9;
+ padding: 20px 0;
+ margin-top: 20px;
+ }
+ form .form-actions.center {
+ text-align: center;
+ }
+ form .form-actions.right {
+ text-align: right;
+ }
+ form .form-actions.top {
+ border-top: 0;
+ border-bottom: 1px solid #d3dce9;
+ margin-top: 0;
+ margin-bottom: 20px;
+ }
+ @media (max-width: 767.98px) {
+ form .form-actions .buttons-group {
+ float: left !important;
+ margin-bottom: 10px;
+ }
+ }
+ form.row-separator .form-group {
+ margin: 0;
+ border-bottom: 1px solid #ebeff5;
+ }
+ form.row-separator .form-group .label-control {
+ padding-top: 1.5rem;
+ }
+ form.row-separator .form-group > div {
+ padding: 1.2rem 0 1.2rem 1.2rem;
+ }
+ form.row-separator .form-group.last {
+ border-bottom: 0;
+ }
+ form.form-bordered .form-group {
+ margin: 0;
+ border-bottom: 1px solid #ebeff5;
+ }
+ form.form-bordered .form-group .label-control {
+ padding-top: 1.5rem;
+ }
+ form.form-bordered .form-group > div {
+ padding: 1.2rem 0 1.2rem 1.2rem;
+ border-left: 1px solid #ebeff5;
+ }
+ form.form-bordered .form-group.last {
+ border-bottom: 0;
+ }
+ form.striped-rows .form-group {
+ margin: 0;
+ }
+ form.striped-rows .form-group .label-control {
+ padding-top: 1.5rem;
+ }
+ form.striped-rows .form-group > div {
+ padding: 1.2rem 0 1.2rem 1.2rem;
+ }
+ form.striped-labels .form-group {
+ margin: 0;
+ }
+ form.striped-labels .form-group .label-control {
+ padding-top: 1.5rem;
+ }
+ form.striped-labels .form-group > div {
+ padding: 1.2rem 0 1.2rem 1.2rem;
+ background-color: #fff;
+ }
+ form.striped-labels .form-group:nth-child(even) {
+ background-color: #f5f7fa;
+ }
+ form .custom-control-indicator {
+ width: 1.1rem;
+ height: 1.075rem;
+ line-height: 1.05rem;
+ top: 0.2rem;
+ left: 0;
+ }
+ form .custom-control-indicator + .custom-control-description {
+ margin-left: 1rem;
+ }
+ select.form-control {
+ padding-top: 0 !important;
+ padding-bottom: 0 !important;
+ }
+ .custom-switch .custom-control-label::after {
+ top: calc(0.25rem + 2px);
+ }
+ .input-group-addon {
+ background-color: #eceff1;
+ border-color: #babfc7;
+ }
+ .custom-control-label::after,
+ .custom-control-label::before {
+ width: 1.1rem;
+ height: 1.1rem;
+ }
+ .tagging-js-tags .form-control,
+ .tagging-methods .form-control {
+ height: auto;
+ }
+ .btn.btn-square {
+ border-radius: 0;
+ }
+ .btn.btn-round {
+ border-radius: 2rem;
+ }
+ .btn.active,
+ .btn.focus,
+ .btn:active,
+ .btn:focus {
+ outline: 0;
+ box-shadow: none !important;
+ }
+ .btn.btn-icon i {
+ font-size: 1.1rem;
+ }
+ .btn.btn-icon.btn-pure {
+ background-color: transparent;
+ border-color: transparent;
+ box-shadow: none;
+ }
+ .btn.btn-icon.btn-pure i {
+ font-size: 1.25rem;
+ }
+ .btn.btn-social {
+ padding: 0.7rem 0.25rem 0.85rem 3.75rem;
+ }
+ .btn.btn-outline-white:hover {
+ color: #404e67 !important;
+ }
+ .btn-min-width {
+ min-width: 8.5rem;
+ }
+ .color-box {
+ width: 100%;
+ height: 2.75rem;
+ border-radius: 0.25rem;
+ }
+ .btn-float {
+ padding: 15px;
+ white-space: normal;
+ box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
+ }
+ .btn-float.btn-link {
+ padding: 10px;
+ }
+ .btn-float i {
+ display: block;
+ margin: 0;
+ top: 0;
+ }
+ .btn-float.btn-float-lg i,
+ .btn-float.btn-float-lg span {
+ font-size: 2rem;
+ }
+ .btn-float.btn-float-lg i + span {
+ font-size: 1.1rem;
+ }
+ .btn-float > i + span {
+ display: block;
+ padding-top: 10px;
+ margin-bottom: -6px;
+ }
+ [type="reset"],
+ [type="submit"],
+ button,
+ html [type="button"] {
+ cursor: pointer;
+ }
+ .collapse-icon .card-header {
+ position: relative;
+ }
+ .collapse-icon [data-toggle="collapse"]:after {
+ position: absolute;
+ top: 48%;
+ right: 20px;
+ margin-top: -8px;
+ font-family: feather;
+ content: "\e897";
+ -webkit-transition: all 0.3s linear 0s;
+ transition: all 0.3s linear 0s;
+ }
+ .collapse-icon [data-toggle="collapse"]:before {
+ position: absolute;
+ top: 48%;
+ right: 20px;
+ margin-top: -8px;
+ font-family: feather;
+ content: "\e8b1";
+ -webkit-transition: all 0.3s linear 0s;
+ transition: all 0.3s linear 0s;
+ }
+ .collapse-icon.left a {
+ padding-left: 28px;
+ }
+ .collapse-icon.left [data-toggle="collapse"]:after,
+ .collapse-icon.left [data-toggle="collapse"]:before {
+ left: 20px;
+ right: auto;
+ }
+ .collapse-icon [aria-expanded="true"]:before,
+ .collapse-icon [aria-expanded="false"]:after {
+ opacity: 0;
+ }
+ .collapse-icon.accordion-icon-rotate [aria-expanded="true"]:before {
+ -webkit-transform: rotate(180deg);
+ -ms-transform: rotate(180deg);
+ transform: rotate(180deg);
+ }
+ .collapse-icon.accordion-icon-rotate [aria-expanded="false"]:after {
+ -webkit-transform: rotate(-180deg);
+ -ms-transform: rotate(-180deg);
+ transform: rotate(-180deg);
+ }
+ .header-navbar
+ .navbar-container
+ .mega-dropdown-menu
+ .collapse-icon
+ [data-toggle="collapse"]:after,
+ .header-navbar
+ .navbar-container
+ .mega-dropdown-menu
+ .collapse-icon
+ [data-toggle="collapse"]:before {
+ margin-top: -14px;
+ }
+ .dropdown .dropdown-menu {
+ border: 1px solid #e6e6e6;
+ border-radius: 0 0 0.25rem 0.25rem;
+ -webkit-transform-origin: top;
+ -ms-transform-origin: top;
+ transform-origin: top;
+ -webkit-animation-fill-mode: forwards;
+ animation-fill-mode: forwards;
+ -webkit-transform: scale(1, 0);
+ -ms-transform: scale(1, 0);
+ transform: scale(1, 0);
+ -webkit-transition: all 0.2s linear;
+ transition: all 0.2s linear;
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
+ }
+ .dropdown .dropdown-menu .dropdown-header {
+ padding: 10px 20px;
+ margin-top: 10px;
+ text-transform: uppercase;
+ color: #626e82;
+ }
+ .dropdown .dropdown-menu .dropdown-item {
+ padding: 10px 40px 10px 20px;
+ width: auto;
+ cursor: pointer;
+ }
+ .dropdown .dropdown-menu .dropdown-item:active {
+ background-color: #f2f4f7 !important;
+ color: #404e67;
+ }
+ .dropdown i,
+ .nav-item i {
+ margin-right: 0.5rem;
+ }
+ .show > .dropdown-menu {
+ -webkit-transform: scale(1, 1);
+ -ms-transform: scale(1, 1);
+ transform: scale(1, 1);
+ opacity: 1;
+ display: block;
+ }
+ .dropdown-toggle.nav-hide-arrow::after {
+ display: none;
+ }
+
+ .dropdown-menu {
+ box-shadow: none;
+ }
+ .dropdown-menu .dropdown-submenu {
+ position: relative;
+ }
+ .dropdown-menu .dropdown-submenu:hover .dropdown-menu {
+ display: block;
+ }
+ .dropdown-menu .dropdown-submenu > .dropdown-menu {
+ top: 0;
+ left: 100%;
+ margin-top: -6px;
+ margin-left: -1px;
+ }
+ .dropdown-menu .dropdown-submenu > .dropdown-menu.open-left {
+ left: auto;
+ right: 100%;
+ }
+ .dropdown-menu .dropdown-submenu > a:after,
+ .dropdown-menu .dropdown-submenu > button:after {
+ font-family: FontAwesome;
+ content: "\f105" !important;
+ right: 5px;
+ font-size: 1.2rem;
+ float: right;
+ border: none;
+ position: absolute;
+ }
+ .dropdown-menu .arrow-left:after,
+ .dropdown-menu .arrow-left:before,
+ .dropdown-menu .arrow-right:after,
+ .dropdown-menu .arrow-right:before,
+ .dropdown-menu.arrow:after,
+ .dropdown-menu.arrow:before {
+ display: inline-block;
+ width: 0;
+ height: 0;
+ content: "";
+ position: absolute;
+ }
+ .dropdown-menu .dropdown-submenu :hover > a:after,
+ .dropdown-menu .dropdown-submenu :hover > button:after {
+ border-left-color: #555;
+ }
+ .dropdown-menu .dropdown-submenu .pull-left {
+ float: none;
+ }
+ .dropdown-menu .dropdown-submenu .pull-left > .dropdown-menu {
+ left: -100%;
+ margin-left: 10px;
+ }
+ .dropdown-header.highlight {
+ color: #2b2d2f;
+ text-decoration: none;
+ background-color: #f5f5f5;
+ }
+ .btn-secondary ~ .dropdown-menu .dropdown-item.active {
+ background-color: #ccc;
+ }
+ .btn-primary ~ .dropdown-menu .dropdown-item.active {
+ background-color: #0677D4;
+ }
+ .btn-success ~ .dropdown-menu .dropdown-item.active {
+ background-color: #16d39a;
+ }
+ .btn-danger ~ .dropdown-menu .dropdown-item.active {
+ background-color: #F08080;
+ }
+ .btn-info ~ .dropdown-menu .dropdown-item.active {
+ background-color: #2dcee3;
+ }
+ .btn-warning ~ .dropdown-menu .dropdown-item.active {
+ background-color: #ffa87d;
+ }
+ .dropdown-menu.arrow {
+ margin-top: 12px;
+ }
+ .dropdown-menu.arrow:after,
+ .dropdown-menu.arrow:before {
+ left: 10px;
+ border: 7px solid transparent;
+ border-top-width: 0;
+ }
+ .dropdown-menu.arrow:before {
+ top: -7px;
+ border-bottom-color: #b3b3b3;
+ }
+ .dropdown-menu.arrow:after {
+ top: -6px;
+ border-bottom-color: #fff;
+ }
+ .dropdown-menu .arrow-left {
+ margin-left: 7px !important;
+ }
+ .dropdown-menu .arrow-left:after,
+ .dropdown-menu .arrow-left:before {
+ top: 10px;
+ border: 7px solid transparent;
+ border-left-width: 0;
+ }
+ .dropdown-menu .arrow-left:before {
+ left: -8px;
+ border-right-color: #b3b3b3;
+ }
+ .dropdown-menu .arrow-left:after {
+ left: -7px;
+ border-right-color: #fff;
+ }
+ .dropdown-menu .arrow-right {
+ margin-right: 7px !important;
+ }
+ .dropdown-menu .arrow-right:after,
+ .dropdown-menu .arrow-right:before {
+ top: 10px;
+ border: 7px solid transparent;
+ border-right-width: 0;
+ }
+ .header-navbar .navbar-wrapper,
+ .horizontal-layout .navbar-nav .mega-dropdown-menu {
+ width: 100%;
+ }
+ .dropdown-menu .arrow-right:before {
+ right: -7px;
+ border-left-color: #b3b3b3;
+ }
+ .dropdown-menu .arrow-right:after {
+ right: -6px;
+ border-left-color: #fff;
+ }
+ .dropup .dropdown-menu {
+ top: auto;
+ }
+ .dropup .dropdown-menu.arrow {
+ margin-bottom: 12px;
+ }
+ .dropup .dropdown-menu.arrow:after,
+ .dropup .dropdown-menu.arrow:before {
+ top: auto;
+ border-top-width: 7px;
+ border-bottom-width: 0;
+ }
+ .dropup .dropdown-menu.arrow:before {
+ bottom: -8px;
+ border-top-color: #b3b3b3;
+ }
+ .dropup .dropdown-menu.arrow:after {
+ bottom: -6px;
+ border-top-color: #fff;
+ }
+ .dropup .dropdown-submenu .dropdown-menu {
+ bottom: auto;
+ top: 0;
+ }
+ .dropdown-menu-xl a,
+ .dropdown-menu-xl button {
+ padding-top: 9px;
+ padding-bottom: 9px;
+ font-size: 1rem;
+ line-height: 1.43;
+ }
+ .dropdown-menu-lg a,
+ .dropdown-menu-lg button {
+ padding-top: 6px;
+ padding-bottom: 6px;
+ }
+ .dropdown-menu-sm a,
+ .dropdown-menu-sm button {
+ padding-top: 5px;
+ padding-bottom: 5px;
+ font-size: 0.86rem;
+ line-height: 1.67;
+ }
+ .navbar-dark .navbar-nav li,
+ .navbar-light .navbar-nav li,
+ .navbar-semi-dark .navbar-nav li,
+ .navbar-semi-light .navbar-nav li {
+ line-height: 1;
+ }
+ .dropdown-item.buttons-columnVisibility.active {
+ color: #000;
+ }
+ .navbar-dark .hamburger-inner,
+ .navbar-dark .hamburger-inner::after,
+ .navbar-dark .hamburger-inner::before {
+ background-color: #fff;
+ }
+ .header-navbar {
+ padding: 0;
+ min-height: 4rem;
+ font-family: Montserrat, Georgia, "Times New Roman", Times, serif;
+ -webkit-transition: 0.3s ease all;
+ transition: 0.3s ease all;
+ }
+ .header-navbar.navbar-border {
+ border-bottom: 1px solid #e4e7ed;
+ }
+ .header-navbar.navbar-dark.navbar-border {
+ border-bottom: 1px solid #8596b5;
+ }
+ .header-navbar.navbar-semi-dark.navbar-border {
+ border-bottom: none;
+ }
+ .header-navbar.navbar-shadow {
+ box-shadow: 2px 4px 20px -4px rgba(0, 0, 0, 0.1);
+ }
+ .header-navbar.navbar-brand-center .navbar-header {
+ width: 150px;
+ position: absolute;
+ left: 50%;
+ top: 0;
+ padding: 0;
+ margin: 0;
+ -webkit-transform: translate(-50%, 0);
+ -ms-transform: translate(-50%, 0);
+ transform: translate(-50%, 0);
+ z-index: 999;
+ }
+ .header-navbar .navbar-container ul.nav li a.dropdown-user-link .avatar,
+ .header-navbar .navbar-container ul.nav li > a.nav-link i.flag-icon {
+ margin-right: 0.5rem;
+ }
+ .header-navbar.navbar-static-top {
+ z-index: 1038;
+ }
+ .header-navbar .navbar-header {
+ width: 240px;
+ height: 4rem;
+ float: left;
+ position: relative;
+ padding: 0 1rem;
+ -webkit-transition: 0.3s ease all;
+ transition: 0.3s ease all;
+ }
+ .header-navbar .navbar-header .navbar-brand {
+ padding: 15px 0;
+ }
+ .header-navbar .navbar-header .navbar-brand .brand-logo {
+ vertical-align: sub;
+ }
+ .header-navbar .navbar-header .navbar-brand .brand-text {
+ display: inline;
+ padding-left: 10px;
+ font-weight: 500;
+ letter-spacing: 1px;
+ }
+ .header-navbar .navbar-container {
+ padding: 0 18px;
+ -webkit-transition: 0.3s ease all;
+ transition: 0.3s ease all;
+ background: inherit;
+ }
+ .header-navbar .navbar-container ul.nav li > a.nav-link {
+ padding: 1.4rem 0.6rem;
+ }
+ .header-navbar .navbar-container ul.nav li a.dropdown-user-link {
+ padding: 0.8rem 0.6rem;
+ }
+ .header-navbar .navbar-container ul.nav li a.dropdown-user-link .user-name {
+ display: inline-block;
+ margin-bottom: 0.4rem;
+ margin-left: 0.2rem;
+ }
+ .header-navbar .navbar-container ul.nav li a.menu-toggle {
+ padding: 1.1rem 0.8rem 1rem 1rem;
+ }
+ .header-navbar .navbar-container ul.nav li a.menu-toggle i {
+ font-size: 1.6rem;
+ }
+ .header-navbar .navbar-container ul.nav li a.nav-link-label {
+ padding: 1.4rem 0 1rem 0.8rem;
+ }
+ .header-navbar .navbar-container ul.nav li a.dropdown-user-link .avatar i {
+ right: -10px;
+ }
+ .header-navbar .navbar-container ul.nav li a.nav-link-expand,
+ .header-navbar .navbar-container ul.nav li a.nav-link-search {
+ padding: 1.4rem 1rem 1.3rem;
+ }
+ .header-navbar .navbar-container ul.nav li div.input-group {
+ padding: 0.7rem 1rem;
+ }
+ .header-navbar .navbar-container ul.nav li i.ficon {
+ font-size: 1.2rem;
+ }
+ .header-navbar .navbar-container ul.nav li .media-list {
+ max-height: 18.2rem;
+ }
+ .header-navbar .navbar-container ul.nav li .scrollable-container {
+ position: relative;
+ }
+ .header-navbar .navbar-container .dropdown-menu-media {
+ width: 24rem;
+ }
+ .header-navbar .navbar-container .dropdown-menu-media .media-list .media {
+ padding: 1rem;
+ border: none;
+ border-bottom: 1px solid #e6e6e6;
+ }
+ .header-navbar .navbar-container .dropdown-menu-media .dropdown-menu-header {
+ border-bottom: 1px solid #e6e6e6;
+ }
+ .header-navbar .navbar-container .dropdown-menu-media .dropdown-menu-footer a {
+ padding: 0.3rem;
+ border-top: 1px solid #e6e6e6;
+ }
+ .header-navbar .nav-item + .nav-item,
+ .header-navbar.navbar-without-menu .navbar-container {
+ margin-left: 0;
+ }
+ @media (max-width: 767.98px) {
+ .header-navbar .navbar-header {
+ width: 100% !important;
+ padding: 0.5rem 1rem;
+ position: relative;
+ }
+ .header-navbar .navbar-header .menu-toggle {
+ top: 2px;
+ position: relative;
+ }
+ .header-navbar .navbar-header .open-navbar-container i {
+ font-size: 1.8rem;
+ }
+ .header-navbar .navbar-header .navbar-brand {
+ position: absolute;
+ left: 50%;
+ top: 0;
+ -webkit-transform: translate(-50%, 0);
+ -ms-transform: translate(-50%, 0);
+ transform: translate(-50%, 0);
+ }
+ .header-navbar.navbar-with-menu .navbar-container {
+ width: 100%;
+ display: table;
+ background: #fff;
+ padding: 0 1rem;
+ margin: 0;
+ height: auto;
+ }
+ }
+ @media (max-width: 991.98px) {
+ [data-menu="vertical-menu-modern"] .header-navbar .navbar-header {
+ width: 100% !important;
+ padding: 0.5rem 1rem;
+ position: relative;
+ }
+ [data-menu="vertical-menu-modern"]
+ .header-navbar
+ .navbar-header
+ .menu-toggle {
+ top: 2px;
+ position: relative;
+ }
+ [data-menu="vertical-menu-modern"]
+ .header-navbar
+ .navbar-header
+ .open-navbar-container
+ i {
+ font-size: 1.8rem;
+ }
+ [data-menu="vertical-menu-modern"]
+ .header-navbar
+ .navbar-header
+ .navbar-brand {
+ position: absolute;
+ left: 50%;
+ top: 0;
+ -webkit-transform: translate(-50%, 0);
+ -ms-transform: translate(-50%, 0);
+ transform: translate(-50%, 0);
+ }
+ [data-menu="vertical-menu-modern"]
+ .header-navbar.navbar-with-menu
+ .navbar-container {
+ width: 100%;
+ display: table;
+ background: #fff;
+ padding: 0 1rem;
+ margin: 0;
+ height: auto;
+ }
+ [data-menu="vertical-menu-modern"]
+ .navbar-dark
+ .navbar-header
+ .navbar-nav
+ .nav-link,
+ [data-menu="vertical-menu-modern"]
+ .navbar-semi-dark
+ .navbar-header
+ .navbar-nav
+ .nav-link {
+ color: #fff;
+ }
+ [data-menu="vertical-menu-modern"]
+ .navbar-dark
+ .navbar-container
+ .navbar-nav
+ .nav-link,
+ [data-menu="vertical-menu-modern"]
+ .navbar-light
+ .navbar-header
+ .navbar-nav
+ .nav-link,
+ [data-menu="vertical-menu-modern"]
+ .navbar-semi-dark
+ .navbar-container
+ .navbar-nav
+ .nav-link {
+ color: #404e67;
+ }
+ }
+ .navbar-light,
+ .navbar-light.navbar-horizontal {
+ background: #fff;
+ }
+ .navbar-light .navbar-nav .active.nav-link {
+ background-color: rgba(0, 0, 0, 0.03);
+ }
+ .navbar-dark,
+ .navbar-dark.navbar-horizontal {
+ background: #404e67;
+ }
+ .navbar-light .navbar-nav .disabled.nav-link {
+ color: #404e67;
+ }
+ .navbar-dark .navbar-brand {
+ color: #fff !important;
+ }
+ .navbar-dark .nav-search .btn-secondary,
+ .navbar-dark .nav-search .form-control {
+ color: #fff;
+ background: #404e67;
+ }
+ .navbar-dark .navbar-nav .active.nav-link {
+ background-color: rgba(255, 255, 255, 0.05);
+ }
+ .navbar-dark .navbar-nav .disabled.nav-link {
+ color: #98a4b8;
+ }
+ .navbar-semi-dark {
+ background: #fff;
+ }
+ .navbar-semi-dark .navbar-header {
+ background: #404e67;
+ }
+ .navbar-semi-dark .navbar-header .brand-text {
+ color: #fff;
+ }
+ .navbar-semi-dark .navbar-nav .disabled.nav-link,
+ .navbar-semi-dark .navbar-nav .nav-link,
+ .navbar-semi-light .navbar-header .brand-text {
+ color: #404e67;
+ }
+ .navbar-semi-dark .navbar-nav .active.nav-link {
+ background-color: rgba(0, 0, 0, 0.03);
+ }
+ .navbar-semi-light {
+ background: #404e67;
+ }
+ .navbar-semi-light .navbar-header {
+ background: #fff;
+ }
+ .navbar-semi-light .navbar-nav .nav-link {
+ color: #fff;
+ }
+ .navbar-semi-light .navbar-nav .active.nav-link {
+ background-color: rgba(0, 0, 0, 0.03);
+ }
+ .navbar-semi-light .navbar-nav .disabled.nav-link {
+ color: #404e67;
+ }
+ .header-navbar .navbar-wrapper .navbar-container .badge-up {
+ position: relative;
+ top: -13px;
+ left: -14px;
+ }
+ .mega-dropdown {
+ position: static !important;
+ }
+ .mega-dropdown.show .dropdown-menu {
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ }
+ .bg-mega {
+ background: -webkit-linear-gradient(left, #0677D4, #16d39a);
+ background: linear-gradient(to right, #0677D4, #16d39a);
+ border-radius: 0.5rem;
+ }
+ .navbar-nav .mega-dropdown-menu,
+ .navigation-main .mega-dropdown-menu {
+ font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
+ Roboto, "Helvetica Neue", Arial, sans-serif;
+ width: calc(100% - 50px);
+ padding: 0.5rem 0;
+ margin: 0 25px;
+ box-shadow: none;
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
+ z-index: 9999;
+ }
+ .navbar-nav .mega-dropdown-menu ul,
+ .navigation-main .mega-dropdown-menu ul {
+ padding: 0;
+ margin: 0;
+ }
+ .navbar-nav .mega-dropdown-menu ul li a,
+ .navigation-main .mega-dropdown-menu ul li a {
+ display: block;
+ color: #1b2942;
+ }
+ .navbar-nav .mega-dropdown-menu ul li a .children-in,
+ .navigation-main .mega-dropdown-menu ul li a .children-in {
+ float: right;
+ }
+ .navbar-nav .mega-dropdown-menu ul li a:hover,
+ .navigation-main .mega-dropdown-menu ul li a:hover {
+ text-decoration: none;
+ color: #0677D4;
+ }
+ .navbar-nav .mega-dropdown-menu ul li a:focus,
+ .navigation-main .mega-dropdown-menu ul li a:focus {
+ text-decoration: none;
+ color: #404e67;
+ }
+ .navbar-nav .mega-dropdown-menu ul a.dropdown-item,
+ .navigation-main .mega-dropdown-menu ul a.dropdown-item {
+ padding: 10px;
+ }
+ .navbar-nav .mega-dropdown-menu p.accordion-text,
+ .navigation-main .mega-dropdown-menu p.accordion-text {
+ line-height: 1.45;
+ }
+ .navbar-nav .mega-dropdown-menu .dropdown-menu-header,
+ .navigation-main .mega-dropdown-menu .dropdown-menu-header {
+ padding: 0.5rem 0;
+ border-bottom: 1px solid #e6e6e6;
+ }
+ .horizontal-top-icon-menu .mega-dropdown-menu {
+ margin: 0 25px !important;
+ }
+ @media (min-width: 576px) {
+ form.form-horizontal .form-group .label-control {
+ text-align: right;
+ }
+ .container .mega-dropdown-menu {
+ max-width: 540px;
+ margin: 0 calc((100% - 540px) / 2);
+ }
+ }
+ @media (min-width: 768px) {
+ .container .mega-dropdown-menu {
+ max-width: 720px;
+ margin: 0 calc((100% - 720px) / 2);
+ }
+ }
+ @media (min-width: 992px) {
+ .container .mega-dropdown-menu {
+ max-width: 960px;
+ margin: 0 calc((100% - 960px) / 2);
+ }
+ }
+ @media (min-width: 1200px) {
+ .container .mega-dropdown-menu {
+ max-width: 1140px;
+ margin: 0 calc((100% - 1140px) / 2);
+ }
+ }
+ @media (min-width: 1400px) {
+ .container .mega-dropdown-menu {
+ max-width: 1340px;
+ margin: 0 calc((100% - 1340px) / 2);
+ }
+ }
+ @-moz-document url-prefix() {
+ ul li a .children-in {
+ position: relative;
+ right: 3px;
+ top: -14px;
+ }
+ }
+ .menu-list {
+ padding: 0;
+ overflow: hidden;
+ }
+ .menu-panel {
+ padding: 0;
+ }
+ .sliding-menu {
+ overflow: hidden;
+ position: relative;
+ }
+ .sliding-menu ul {
+ float: left;
+ margin: 0;
+ padding: 0;
+ }
+ .sliding-menu ul li {
+ list-style: none;
+ margin: 0;
+ }
+ .navbar-menu-icon {
+ width: 24px;
+ margin: 16px 2px !important;
+ position: relative;
+ -webkit-transform: rotate(0);
+ -ms-transform: rotate(0);
+ transform: rotate(0);
+ -webkit-transition: 0.5s ease-in-out;
+ transition: 0.5s ease-in-out;
+ cursor: pointer;
+ }
+ .navbar-menu-icon span {
+ display: block;
+ position: absolute;
+ height: 2px;
+ width: 100%;
+ background: #404e67;
+ border-radius: 9px;
+ opacity: 1;
+ left: 0;
+ -webkit-transform: rotate(0);
+ -ms-transform: rotate(0);
+ transform: rotate(0);
+ -webkit-transition: 0.25s ease-in-out;
+ transition: 0.25s ease-in-out;
+ }
+ .navbar-menu-icon span:nth-child(1) {
+ top: 0;
+ }
+ .navbar-menu-icon span:nth-child(2) {
+ top: 10px;
+ }
+ .navbar-menu-icon span:nth-child(3) {
+ top: 20px;
+ }
+ .navbar-menu-icon.show span:nth-child(1) {
+ top: 10px;
+ -webkit-transform: rotate(135deg);
+ -ms-transform: rotate(135deg);
+ transform: rotate(135deg);
+ }
+ .navbar-menu-icon.show span:nth-child(2) {
+ opacity: 0;
+ left: -60px;
+ }
+ .navbar-menu-icon.show span:nth-child(3) {
+ top: 10px;
+ -webkit-transform: rotate(-135deg);
+ -ms-transform: rotate(-135deg);
+ transform: rotate(-135deg);
+ }
+ @media (max-width: 767.98px) {
+ .header-navbar .navbar-container ul.nav li.nav-item i,
+ .header-navbar .navbar-container ul.nav li > a.nav-link i.flag-icon {
+ margin-right: 0.2rem;
+ }
+ .header-navbar .navbar-nav .show {
+ position: static;
+ }
+ .header-navbar .navbar-nav .open-navbar-container {
+ padding-top: 0.625rem;
+ }
+ .header-navbar .navbar-container .show .dropdown-menu {
+ right: 0;
+ left: 0 !important;
+ float: none;
+ width: auto;
+ margin-top: 0;
+ max-height: 400px;
+ overflow-x: hidden;
+ overflow-y: scroll;
+ }
+ .header-navbar .navbar-container ul.nav li > a.nav-link {
+ padding: 1.2rem 0.4rem;
+ }
+ .header-navbar .navbar-container ul.nav li a.dropdown-user-link {
+ padding: 0.9rem 0.6rem;
+ }
+ .header-navbar .navbar-container ul.nav li a.nav-link-label {
+ padding: 1.4rem 0 1rem 0.8rem;
+ }
+ .header-navbar .navbar-container ul.nav li a.nav-link-expand,
+ .header-navbar .navbar-container ul.nav li a.nav-link-search {
+ padding: 1.4rem 1rem 1rem;
+ }
+ .header-navbar .navbar-container ul.nav li .dropdown-toggle::after {
+ margin-right: 0;
+ margin-left: -2px;
+ }
+ .navbar-dark .hamburger-inner,
+ .navbar-dark .hamburger-inner::after,
+ .navbar-dark .hamburger-inner::before,
+ .navbar-semi-dark .hamburger-inner,
+ .navbar-semi-dark .hamburger-inner::after,
+ .navbar-semi-dark .hamburger-inner::before {
+ background-color: #fff;
+ }
+ .navbar-dark .navbar-header .navbar-nav .nav-link,
+ .navbar-semi-dark .navbar-header .navbar-nav .nav-link {
+ color: #fff;
+ }
+ .navbar-dark .navbar-container .navbar-nav .nav-link,
+ .navbar-light .navbar-container .navbar-nav .nav-link,
+ .navbar-light .navbar-header .navbar-nav .nav-link,
+ .navbar-semi-dark .navbar-container .navbar-nav .nav-link,
+ .navbar-semi-light .navbar-container .navbar-nav .nav-link,
+ .navbar-semi-light .navbar-header .navbar-nav .nav-link {
+ color: #404e67;
+ }
+ }
+ .headroom {
+ will-change: transform;
+ -webkit-transition: -webkit-transform 0.2s linear;
+ transition: -webkit-transform 0.2s linear;
+ transition: transform 0.2s linear;
+ transition: transform 0.2s linear, -webkit-transform 0.2s linear;
+ }
+ .headroom--pinned-top {
+ -webkit-transform: translateY(0);
+ -ms-transform: translateY(0);
+ transform: translateY(0);
+ }
+ .headroom--unpinned-top {
+ -webkit-transform: translateY(-100%);
+ -ms-transform: translateY(-100%);
+ transform: translateY(-100%);
+ }
+ .headroom--pinned-bottom {
+ -webkit-transform: translateY(0);
+ -ms-transform: translateY(0);
+ transform: translateY(0);
+ }
+ .headroom--unpinned-bottom {
+ -webkit-transform: translateY(100%);
+ -ms-transform: translateY(100%);
+ transform: translateY(100%);
+ }
+ @media (max-width: 1199.98px) {
+ .header-navbar .navbar-container ul.nav li .selected-language,
+ .header-navbar .navbar-container ul.nav li a.dropdown-user-link .user-name {
+ display: none;
+ }
+ .header-navbar .navbar-container ul.nav li > a.nav-link {
+ padding: 1.3rem 0.4rem 1.1rem;
+ }
+ .header-navbar .navbar-container ul.nav li > a.nav-link i.flag-icon {
+ margin-right: 0.2rem;
+ }
+ .header-navbar .navbar-container ul.nav li a.dropdown-user-link {
+ padding: 0.85rem 0.6rem;
+ }
+ .header-navbar .navbar-container ul.nav li a.nav-link-label {
+ padding: 1.2rem 0 1rem 0.8rem;
+ }
+ .header-navbar .navbar-container ul.nav li a.nav-link-expand,
+ .header-navbar .navbar-container ul.nav li a.nav-link-search {
+ padding: 1.5rem 1rem 1rem;
+ }
+ .header-navbar .navbar-container ul.nav li .dropdown-toggle::after {
+ margin-right: 0;
+ margin-left: -2px;
+ }
+ }
+ @media (max-width: 767px) {
+ #navbar-mobile.navbar-collapse .navbar-nav {
+ margin: 0;
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -webkit-flex-flow: row wrap;
+ -ms-flex-flow: row wrap;
+ flex-flow: row wrap;
+ }
+ #navbar-mobile.navbar-collapse .navbar-nav .dropdown-menu {
+ position: absolute;
+ }
+ #navbar-mobile.navbar-collapse .navbar-nav .nav-item {
+ float: left;
+ }
+ }
+ @media (max-width: 991.98px) {
+ #navbar-mobile.navbar-collapse .navbar-nav {
+ margin: 0;
+ -webkit-box-orient: horizontal;
+ -webkit-box-direction: normal;
+ -webkit-flex-flow: row wrap;
+ -ms-flex-flow: row wrap;
+ flex-flow: row wrap;
+ }
+ #navbar-mobile.navbar-collapse .navbar-nav .dropdown-menu {
+ position: absolute;
+ }
+ #navbar-mobile.navbar-collapse .navbar-nav .nav-item {
+ float: left;
+ }
+ }
+ @media only screen and (min-device-width: 26.78em) and (max-device-width: 47.64em) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
+ .header-navbar .navbar-container .show .dropdown-menu {
+ max-height: 180px;
+ }
+ }
+ @media only screen and (min-device-width: 29.57em) and (max-device-width: 52.57em) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
+ .header-navbar .navbar-container .show .dropdown-menu {
+ max-height: 280px;
+ }
+ }
+ .card-deck,
+ .card-group {
+ margin-bottom: 0.75rem;
+ }
+ .card {
+ margin-bottom: 1.875rem;
+ border: none;
+ border-radius: 0;
+ box-shadow: 0 10px 40px 0 rgba(62, 57, 107, 0.07),
+ 0 2px 9px 0 rgba(62, 57, 107, 0.06);
+ }
+ .card .card {
+ box-shadow: none !important;
+ }
+ .card .card-title {
+ font-weight: 500;
+ letter-spacing: 0.05rem;
+ font-size: 1.12rem;
+ }
+ .card .card-bordered {
+ border: 1px solid rgba(0, 0, 0, 0.06);
+ }
+ .card.card-fullscreen {
+ display: block;
+ z-index: 9999;
+ position: fixed;
+ width: 100% !important;
+ height: 100% !important;
+ top: 0;
+ right: 0;
+ left: 0;
+ bottom: 0;
+ overflow: auto;
+ }
+ .card .card-body[class*="border-bottom-"] {
+ border-bottom-width: 2px !important;
+ }
+ .card .card-img-overlay.bg-overlay {
+ background: rgba(0, 0, 0, 0.45);
+ }
+ .card .card-img-overlay .text-muted {
+ color: #1b2942 !important;
+ }
+ .card.card-minimal {
+ border: none;
+ box-shadow: none;
+ }
+ .card .card-collapse-border {
+ border-bottom: 1px solid #98a4b8;
+ }
+ .card .knob-center-icon {
+ font-family: Simple-Line-Icons !important;
+ }
+ .card-moved .card,
+ .card-moved .card-header {
+ background-color: #ffa87d;
+ color: #fff;
+ }
+ .handle,
+ .titleArea {
+ cursor: move;
+ }
+ .accordion .card-header,
+ .default-collapse .card-header,
+ a:hover {
+ cursor: pointer;
+ }
+ .card-header {
+ border-bottom: none;
+ }
+ .card-header .card-title {
+ margin-bottom: 0;
+ }
+ .card-header .heading-elements,
+ .card-header .heading-elements-toggle {
+ background-color: inherit;
+ position: absolute;
+ top: 20px;
+ right: 21px;
+ }
+ .card-header .heading-elements-toggle.heading-top-elements .page-item,
+ .card-header .heading-elements.heading-top-elements .page-item {
+ display: inline-block;
+ }
+ .card-header .heading-elements a,
+ .card-header .heading-elements-toggle a {
+ padding: 0 8px;
+ }
+ .card-header .heading-elements a.btn,
+ .card-header .heading-elements-toggle a.btn {
+ padding-top: 6px;
+ padding-bottom: 6px;
+ }
+ .card-footer {
+ border-top: 1px solid #eee;
+ }
+ .text-white .card-text {
+ color: #fff;
+ }
+ .text-white .card-img-overlay .text-muted {
+ color: #fff !important;
+ }
+ .badge,
+ .badge[class*="badge-"] a,
+ .card-head-inverse,
+ .card-head-inverse .heading-elements i,
+ .text-white .heading-elements i {
+ color: #fff;
+ }
+ .text-white code {
+ background-color: #fff;
+ }
+ .breadcrumb,
+ .card-transparent {
+ background-color: transparent;
+ }
+ @media (max-width: 991.98px) {
+ .heading-elements {
+ text-align: center;
+ }
+ .heading-elements .list-inline {
+ display: none;
+ }
+ .heading-elements.visible {
+ display: block;
+ margin-top: 0;
+ top: 100%;
+ top: 50px;
+ height: auto;
+ left: 0;
+ padding: 10px;
+ border: 1px solid #eee;
+ z-index: 997;
+ position: absolute;
+ width: 100%;
+ }
+ .heading-elements.visible .list-inline {
+ display: block;
+ }
+ }
+ @media (min-width: 992px) {
+ .heading-elements-toggle {
+ display: none;
+ }
+ }
+ .breadcrumb {
+ font-size: 0.9rem;
+ font-family: Montserrat, Georgia, "Times New Roman", Times, serif;
+ padding: 0 0 0.75rem;
+ }
+ .breadcrumb > li + li::before {
+ padding-right: 0.6rem;
+ padding-left: 0.6rem;
+ }
+ .breadcrumbs-right .breadcrumb {
+ float: right;
+ }
+ .nav.nav-pills.nav-justified .nav-item,
+ .nav.nav-tabs.nav-justified .nav-item {
+ float: none;
+ }
+ .breadcrumbs-top .breadcrumb {
+ margin: 0;
+ padding: 0;
+ }
+ .badge {
+ font-weight: 400;
+ background-color: #0677D4;
+ }
+ .badge[class*="badge-"] [class*="icon-"] {
+ line-height: 1;
+ }
+ .badge[class*="badge-"] [class*="icon-"] ~ span,
+ .badge[class*="badge-"] span {
+ position: relative;
+ bottom: 2px;
+ padding: 0 5px;
+ }
+ .badge[class*="badge-"] .dropdown-toggle::after,
+ .badge[class*="badge-"].dropdown-toggle::after {
+ position: relative;
+ font-size: 1rem;
+ }
+ .badge[class*="badge-"] .dropdown-menu a {
+ color: #555;
+ }
+ .badge.badge-square {
+ border-radius: 0;
+ }
+ .badge.badge.float-right {
+ margin-left: 0.5rem;
+ margin-top: 0.15rem;
+ }
+ .badge-xl {
+ font-size: 1.8rem;
+ }
+ .badge-lg {
+ font-size: 1.2rem;
+ }
+ .badge-md {
+ font-size: 1rem;
+ }
+ .badge-sm {
+ font-size: 0.8rem;
+ }
+ .badge-secondary {
+ background-color: #404e67;
+ }
+ .badge-secondary.badge-glow {
+ box-shadow: 0 0 10px #404e67;
+ }
+ .badge-secondary[href]:focus,
+ .badge-secondary[href]:hover {
+ background-color: #2c3648;
+ }
+ .badge-primary {
+ background-color: #0677D4;
+ }
+ .badge-primary.badge-glow {
+ box-shadow: 0 0 10px #0677D4;
+ }
+ .badge-primary[href]:focus,
+ .badge-primary[href]:hover {
+ background-color: #0278d5;
+ }
+ .badge-success {
+ background-color: #16d39a;
+ }
+ .badge-success.badge-glow {
+ box-shadow: 0 0 10px #16d39a;
+ }
+ .badge-success[href]:focus,
+ .badge-success[href]:hover {
+ background-color: #11a578;
+ }
+ .badge-info {
+ background-color: #2dcee3;
+ }
+ .badge-info.badge-glow {
+ box-shadow: 0 0 10px #2dcee3;
+ }
+ .badge-info[href]:focus,
+ .badge-info[href]:hover {
+ background-color: #1ab0c3;
+ }
+ .badge-warning {
+ background-color: #ffa87d;
+ }
+ .badge-warning.badge-glow {
+ box-shadow: 0 0 10px #ffa87d;
+ }
+ .badge-warning[href]:focus,
+ .badge-warning[href]:hover {
+ background-color: #ff864a;
+ }
+ .badge-danger {
+ background-color: #F08080;
+ }
+ .badge-danger.badge-glow {
+ box-shadow: 0 0 10px #F08080;
+ }
+ .badge-danger[href]:focus,
+ .badge-danger[href]:hover {
+ background-color: #ff425c;
+ }
+ .badge-up {
+ position: relative;
+ top: -13px;
+ right: 14px;
+ }
+ .badge-icon i {
+ font-size: 100%;
+ margin-right: 5px;
+ }
+ .form-control + .block-tag {
+ display: block;
+ }
+ .block-tag {
+ margin-top: 0.5rem;
+ }
+ .block-area {
+ padding: 0.24rem 0.3rem;
+ }
+ .token.boolean,
+ .token.constant,
+ .token.deleted,
+ .token.number,
+ .token.property,
+ .token.symbol,
+ .token.tag {
+ color: #905;
+ font-size: 100%;
+ font-weight: 400;
+ padding: 0;
+ }
+ .nav {
+ border-radius: 0.25rem;
+ }
+ .nav.wrap-border {
+ border: 1px solid #ddd;
+ }
+ .nav.wrap-border li.nav-header {
+ margin: 0 1.5rem;
+ }
+ .nav.wrap-border div,
+ .nav.wrap-border li.nav-item {
+ padding: 2px 10px;
+ }
+ .nav.no-hover-bg .nav-item:hover {
+ background-color: transparent;
+ }
+ .nav .dropdown .dropdown-item.active,
+ .nav .dropdown .dropdown-item.active:focus {
+ background-color: transparent;
+ color: #55595c;
+ }
+ .nav.square-border,
+ .nav.square-border .nav-item .nav-link.active {
+ border-radius: 0;
+ }
+ .nav .nav-item i {
+ -webkit-align-self: center;
+ -ms-flex-item-align: center;
+ align-self: center;
+ }
+ .nav .dropdown-divider {
+ border-top: 1px solid #e0e2e8;
+ }
+ .nav .modern-nav-toggle {
+ padding: 20px 0;
+ }
+ .nav.nav-pills .nav-item .nav-link i.float-right:before {
+ position: relative;
+ top: 7px;
+ left: 7px;
+ }
+ .nav.nav-pills .nav-item .nav-link .badge.float-right {
+ position: relative;
+ top: 1px;
+ left: 3px;
+ }
+ .nav.nav-pills .nav-item .nav-link.dropdown-toggle::after {
+ top: -1px;
+ }
+ .nav.nav-pills.nav-justified {
+ width: 100%;
+ }
+ .nav.nav-pills.nav-justified .nav-link {
+ text-align: center;
+ margin-bottom: 5px;
+ }
+ .nav.nav-pills.nav-justified > .dropdown .dropdown-menu {
+ top: auto;
+ left: auto;
+ }
+ @media (min-width: 576px) {
+ .nav.nav-pills.nav-justified .nav-item {
+ display: table;
+ width: 1%;
+ }
+ .nav.nav-pills.nav-justified .nav-link {
+ margin-bottom: 0;
+ }
+ .nav.nav-pills.nav-justified .nav-link.active,
+ .nav.nav-pills.nav-justified .nav-link.active:focus,
+ .nav.nav-pills.nav-justified .nav-link.active:hover {
+ border-bottom-color: transparent;
+ }
+ }
+ .nav.nav-pills.nav-justified .nav-link {
+ margin-right: 0;
+ border-radius: 0.25rem;
+ display: block;
+ }
+ .nav.nav-pills.nav-justified .nav-link.active,
+ .nav.nav-pills.nav-justified .nav-link.active:focus,
+ .nav.nav-pills.nav-justified .nav-link.active:hover {
+ border: none;
+ }
+ .nav.nav-pills.nav-pill-bordered .nav-item {
+ border: 1px solid #d3d3d3;
+ border-radius: 0.25rem;
+ }
+ .nav.nav-pills.nav-pill-with-active-bordered .nav-item a.nav-link {
+ border: 1px solid #d3d3d3;
+ border-radius: 0.25rem;
+ background-color: #fff;
+ color: #55595c;
+ }
+ .nav.nav-pills.nav-pill-with-active-bordered .nav-item a.nav-link.active {
+ border: 1px solid #0677D4;
+ color: #0677D4;
+ }
+ .nav.nav-pills.nav-active-bordered-pill .nav-item a.nav-link {
+ color: #55595c;
+ }
+ .nav.nav-pills.nav-active-bordered-pill .nav-item a.nav-link.active {
+ border: 1px solid #0677D4;
+ border-radius: 0.25rem;
+ color: #0677D4;
+ background-color: #fff;
+ }
+ .nav.nav-pills.nav-pill-toolbar.nav-stacked .nav-item ~ .nav-item a.nav-link {
+ border-left: 1px solid #d3d3d3;
+ border-top: 0;
+ }
+ .nav.nav-pills.nav-pill-toolbar.nav-stacked .nav-item:first-child a.nav-link {
+ border-radius: 0.25rem 0.25rem 0 0;
+ }
+ .nav.nav-pills.nav-pill-toolbar.nav-stacked .nav-item:last-child a.nav-link {
+ border-radius: 0 0 0.25rem 0.25rem;
+ }
+ .nav.nav-pills.nav-pill-toolbar .nav-item {
+ margin-top: 0;
+ margin-left: 0;
+ }
+ .nav.nav-tabs.nav-linetriangle .nav-item a.nav-link.dropdown-toggle:after,
+ .nav.nav-tabs.nav-underline .nav-item a.nav-link.dropdown-toggle::after {
+ margin-top: -1rem;
+ }
+ .nav.nav-pills.nav-pill-toolbar .nav-item a.nav-link {
+ border: 1px solid #d3d3d3;
+ border-radius: 0;
+ }
+ .nav.nav-tabs .nav-item .nav-link {
+ padding: 0.5rem 0.7rem;
+ display: -webkit-inline-box;
+ display: -webkit-inline-flex;
+ display: -ms-inline-flexbox;
+ display: inline-flex;
+ }
+ .nav.nav-tabs .nav-item .nav-link:hover:not(.active) {
+ border-color: transparent;
+ }
+ .nav.nav-tabs .nav-item .nav-link.active {
+ background-color: #fff;
+ border-radius: 0.25rem 0.25rem 0 0;
+ }
+ .nav.nav-tabs .nav-item .nav-link i.float-right {
+ margin-left: 0.5rem;
+ }
+ .nav.nav-tabs .nav-item .nav-link.dropdown-toggle::after {
+ top: -1px;
+ }
+ .nav.nav-tabs .nav-item:hover {
+ color: #333;
+ }
+ .nav.nav-tabs.wrap-border {
+ border: 1px solid #ddd;
+ }
+ .nav.nav-tabs.no-hover-bg .nav-item:hover {
+ background-color: transparent;
+ }
+ .nav.nav-tabs .dropdown .dropdown-item.active,
+ .nav.nav-tabs .dropdown .dropdown-item.active:focus {
+ background-color: transparent;
+ color: #55595c;
+ }
+ .nav.nav-tabs.square-border,
+ .nav.nav-tabs.square-border .nav-item .nav-link.active {
+ border-radius: 0;
+ }
+ .nav.nav-tabs.nav-justified {
+ width: 100%;
+ }
+ .nav.nav-tabs.nav-justified .nav-link {
+ text-align: center;
+ margin-bottom: 5px;
+ margin-right: 0;
+ border-radius: 0.25rem;
+ }
+ .nav.nav-tabs.nav-justified > .dropdown .dropdown-menu {
+ top: auto;
+ left: auto;
+ }
+ @media (min-width: 576px) {
+ .nav.nav-tabs.nav-justified .nav-item {
+ display: table;
+ width: 1%;
+ }
+ .nav.nav-tabs.nav-justified .nav-link {
+ margin-bottom: 0;
+ }
+ .nav.nav-tabs.nav-justified .nav-link.active,
+ .nav.nav-tabs.nav-justified .nav-link.active:focus,
+ .nav.nav-tabs.nav-justified .nav-link.active:hover {
+ border-bottom-color: transparent;
+ }
+ }
+ .nav.nav-tabs.nav-justified .nav-item a.nav-link {
+ display: block;
+ }
+ .nav.nav-tabs.nav-justified .nav-item a.nav-link .active {
+ background-color: #fff;
+ }
+ .nav.nav-tabs.nav-top-border .nav-item a {
+ color: #16d39a;
+ }
+ .nav.nav-tabs.nav-top-border .nav-item a.nav-link.active {
+ border-top: 3px solid #16d39a;
+ border-top-left-radius: 0;
+ border-top-right-radius: 0;
+ color: #555;
+ }
+ .nav.nav-tabs.nav-top-border .nav-item a:hover {
+ color: #084835;
+ }
+ .nav.nav-tabs.nav-top-border .nav-item a:hover:not(.active) {
+ border-color: transparent;
+ }
+ .nav.nav-tabs.nav-topline {
+ border-bottom: none;
+ }
+ .nav.nav-tabs.nav-topline .nav-item:hover {
+ background-color: transparent;
+ }
+ .nav.nav-tabs.nav-topline .nav-item:not(:last-child) {
+ border-right: none;
+ }
+ .nav.nav-tabs.nav-topline .nav-item a {
+ border: 1px solid rgba(40, 44, 42, 0.1);
+ border-bottom: none;
+ }
+ .nav.nav-tabs.nav-topline .nav-item a.nav-link {
+ padding: 0.8rem 0.5rem;
+ background: rgba(40, 44, 42, 0.05);
+ color: #74777b;
+ line-height: 1;
+ -webkit-transition: color 0.2s;
+ transition: color 0.2s;
+ }
+ .nav.nav-tabs.nav-topline .nav-item a.nav-link.active {
+ background: 0 0;
+ box-shadow: inset 0 3px 0 #F08080;
+ color: #F08080;
+ border-radius: 0;
+ border-top-color: #F08080;
+ border-bottom: none;
+ }
+ .nav.nav-tabs.nav-topline .nav-item a.nav-link:focus,
+ .nav.nav-tabs.nav-topline .nav-item a.nav-link:hover {
+ color: #F08080;
+ }
+ .nav.nav-tabs.nav-topline .nav-item a.nav-link.dropdown-toggle::after {
+ top: -1px;
+ }
+ .nav.nav-tabs.nav-underline {
+ background: #fff;
+ position: relative;
+ border-bottom: 1px solid #2dcee3;
+ }
+ .nav.nav-tabs.nav-underline .nav-item {
+ position: relative;
+ z-index: 1;
+ display: block;
+ text-align: center;
+ -webkit-flex: 1;
+ -moz-flex: 1;
+ -ms-flex: 1;
+ -webkit-box-flex: 1;
+ flex: 1;
+ margin-left: 0;
+ }
+ .nav.nav-tabs.nav-underline .nav-item.open a .nav-link {
+ background-color: transparent;
+ }
+ .nav.nav-tabs.nav-underline .nav-item.open a .nav-link:focus,
+ .nav.nav-tabs.nav-underline .nav-item.open a .nav-link:hover {
+ background-color: transparent;
+ color: #2dcee3;
+ }
+ .nav.nav-tabs.nav-underline .nav-item a.nav-link {
+ position: relative;
+ display: block;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ line-height: 2.5;
+ padding: 0.5rem 1rem;
+ -webkit-transition: color 0.2s;
+ transition: color 0.2s;
+ color: #2dcee3;
+ border: none;
+ }
+ .nav.nav-tabs.nav-underline .nav-item a.nav-link.active {
+ border: none;
+ background-color: transparent;
+ }
+ .nav.nav-tabs.nav-underline .nav-item a.nav-link.active:focus,
+ .nav.nav-tabs.nav-underline .nav-item a.nav-link.active:hover {
+ color: #55595c;
+ background-color: transparent;
+ }
+ .nav.nav-tabs.nav-underline .nav-item a.nav-link.active:before {
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+ .nav.nav-tabs.nav-underline .nav-item a.nav-link:focus,
+ .nav.nav-tabs.nav-underline .nav-item a.nav-link:hover {
+ color: #2dcee3;
+ }
+ .nav.nav-tabs.nav-underline .nav-item a.nav-link:before {
+ position: absolute;
+ bottom: -1px;
+ left: 0;
+ width: 100%;
+ height: 4px;
+ background: #2dcee3;
+ content: "";
+ -webkit-transition: -webkit-transform 0.3s;
+ transition: -webkit-transform 0.3s;
+ transition: transform 0.3s;
+ transition: transform 0.3s, -webkit-transform 0.3s;
+ -webkit-transform: translate3d(0, 150%, 0);
+ transform: translate3d(0, 150%, 0);
+ }
+ .nav.nav-tabs.nav-linetriangle {
+ border-bottom-color: #ffa87d;
+ }
+ .nav.nav-tabs.nav-linetriangle .nav-item {
+ position: relative;
+ z-index: 1;
+ display: block;
+ text-align: center;
+ -webkit-flex: 1;
+ -moz-flex: 1;
+ -ms-flex: 1;
+ -webkit-box-flex: 1;
+ flex: 1;
+ }
+ .nav.nav-tabs.nav-linetriangle .nav-item a.nav-link {
+ position: relative;
+ display: block;
+ overflow: visible;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ line-height: 2.5;
+ border: none;
+ color: #55595c;
+ }
+ .nav.nav-tabs.nav-linetriangle .nav-item a.nav-link.active {
+ border-bottom: 1px solid #ffa87d;
+ border-bottom-color: #ffa87d !important;
+ color: #ffa87d;
+ }
+ .nav.nav-tabs.nav-linetriangle .nav-item a.nav-link.active:after,
+ .nav.nav-tabs.nav-linetriangle .nav-item a.nav-link.active:before {
+ position: absolute;
+ top: 100%;
+ left: 50%;
+ width: 0;
+ height: 0;
+ border: solid transparent;
+ content: "";
+ pointer-events: none;
+ }
+ .nav.nav-tabs.nav-linetriangle .nav-item a.nav-link.active:before {
+ margin-left: -11px;
+ border-width: 12px;
+ border-top-color: #ffa87d;
+ }
+ .nav.nav-tabs.nav-linetriangle .nav-item a.nav-link.active:after {
+ margin-left: -10px;
+ border-width: 10px;
+ border-top-color: #fff;
+ }
+ .nav.nav-tabs.nav-linetriangle .nav-item a.nav-link.active:focus {
+ color: #ffa87d;
+ }
+ .nav.nav-tabs.nav-linetriangle
+ .nav-item
+ a.nav-link.dropdown-toggle.active:after {
+ margin-top: 0;
+ }
+ .nav.nav-tabs.nav-linetriangle.nav-justified {
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1);
+ border-bottom-color: #ffa87d;
+ }
+ .nav.nav-tabs.nav-linetriangle.nav-justified .nav-item a.nav-link.active {
+ top: 0;
+ }
+ .nav.nav-tabs.nav-iconfall {
+ overflow: visible;
+ border-bottom: none;
+ }
+ .nav.nav-tabs.nav-iconfall .nav-item {
+ position: relative;
+ z-index: 1;
+ display: block;
+ text-align: center;
+ -webkit-flex: 1;
+ -moz-flex: 1;
+ -ms-flex: 1;
+ -webkit-box-flex: 1;
+ flex: 1;
+ margin: 0.5rem 0.7rem 0;
+ }
+ .nav.nav-tabs.nav-iconfall .nav-item:focus,
+ .nav.nav-tabs.nav-iconfall .nav-item:hover {
+ background-color: transparent;
+ }
+ .nav.nav-tabs.nav-iconfall .nav-item a.nav-link {
+ display: inline-block;
+ padding: 1em 0 2em;
+ color: #74777b;
+ position: relative;
+ line-height: 2.5;
+ width: 100%;
+ border: none;
+ -webkit-transition: color 0.3s cubic-bezier(0.7, 0, 0.3, 1);
+ transition: color 0.3s cubic-bezier(0.7, 0, 0.3, 1);
+ }
+ .nav.nav-tabs.nav-iconfall .nav-item a:focus,
+ .nav.nav-tabs.nav-iconfall .nav-item a:hover {
+ color: #2cc185;
+ border: none;
+ }
+ .nav.nav-tabs.nav-iconfall .nav-item a.active {
+ color: #2cc185;
+ border: none;
+ background-color: transparent;
+ }
+ .nav.nav-tabs.nav-iconfall .nav-item a.active i:after {
+ opacity: 1;
+ -webkit-transform: scale3d(1, 1, 1);
+ transform: scale3d(1, 1, 1);
+ }
+ .nav.nav-tabs.nav-iconfall .nav-item a.active i:before {
+ opacity: 1;
+ -webkit-transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
+ }
+ .nav.nav-tabs.nav-iconfall .nav-item a i {
+ display: block;
+ margin-right: 0;
+ }
+ .nav.nav-tabs.nav-iconfall .nav-item a i:after {
+ position: absolute;
+ bottom: 1em;
+ left: 50%;
+ margin-left: -20px;
+ width: 40px;
+ height: 4px;
+ background: #2cc185;
+ content: "";
+ opacity: 0;
+ -webkit-transition: -webkit-transform 0.2s ease-in;
+ transition: -webkit-transform 0.2s ease-in;
+ transition: transform 0.2s ease-in;
+ transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
+ -webkit-transform: scale3d(0, 1, 1);
+ transform: scale3d(0, 1, 1);
+ }
+ .nav.nav-tabs.nav-iconfall .nav-item a i:before {
+ display: block;
+ margin: 0 0 0.35em;
+ opacity: 0;
+ -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
+ -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
+ transition: opacity 0.2s, -webkit-transform 0.2s;
+ transition: transform 0.2s, opacity 0.2s;
+ transition: transform 0.2s, opacity 0.2s, -webkit-transform 0.2s;
+ -webkit-transform: translate3d(0, -100px, 0);
+ transform: translate3d(0, -100px, 0);
+ pointer-events: none;
+ }
+ .nav.nav-tabs.nav-iconfall .nav-item a.dropdown-toggle:after {
+ margin-top: -1rem;
+ }
+ .nav .nav-item .nav-link {
+ display: block;
+ }
+ .nav .dropdown-divider {
+ margin: 0.5rem 0;
+ }
+ @media (min-width: 576px) {
+ .nav.nav-tabs.nav-iconfall.nav-justified .nav-item,
+ .nav.nav-tabs.nav-linetriangle.nav-justified .nav-item,
+ .nav.nav-tabs.nav-underline.nav-justified .nav-item {
+ display: table-cell !important;
+ }
+ }
+ .nav-vertical {
+ overflow: hidden;
+ }
+ .nav-vertical .nav-left.nav-tabs {
+ float: left;
+ border-bottom: 0;
+ border-radius: 0;
+ display: table;
+ }
+ .nav-vertical .nav-left.nav-tabs li.nav-item {
+ float: none;
+ margin: 0 -1px 0 0;
+ }
+ .nav-vertical .nav-left.nav-tabs li.nav-item a.nav-link {
+ min-width: 6.5rem;
+ border-right: 1px solid #ddd;
+ }
+ .nav-vertical .nav-left.nav-tabs li.nav-item a.nav-link.active {
+ border: 1px solid #ddd;
+ border-right: 0;
+ border-radius: 0.25rem 0 0 0.25rem;
+ }
+ .nav-vertical .nav-left.nav-tabs li.nav-item a.nav-link:hover:not(.active) {
+ border-color: transparent;
+ border-right: 1px solid #ddd;
+ }
+ .nav-vertical .nav-left.nav-tabs.nav-border-left li.nav-item a.nav-link {
+ color: #F08080;
+ }
+ .nav-vertical .nav-left.nav-tabs.nav-border-left li.nav-item a.nav-link.active {
+ border-left: 3px solid #F08080;
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0;
+ color: #555;
+ }
+ .nav-vertical .nav-left ~ .tab-content {
+ margin-left: 45px;
+ }
+ .nav-vertical .nav-left ~ .tab-content .tab-pane {
+ display: none;
+ background-color: #fff;
+ padding: 0 0 0.6rem 1rem;
+ overflow-y: auto;
+ }
+ .nav-vertical .nav-left ~ .tab-content .tab-pane.active {
+ display: block;
+ }
+ .nav-vertical .nav-right.nav-tabs {
+ float: right;
+ border-bottom: 0;
+ border-radius: 0;
+ display: table;
+ }
+ .nav-vertical .nav-right.nav-tabs li.nav-item {
+ float: none;
+ margin: 0 0 0 -1px;
+ }
+ .nav-vertical .nav-right.nav-tabs li.nav-item a.nav-link {
+ min-width: 6.5rem;
+ border-left: 1px solid #ddd;
+ }
+ .nav-vertical .nav-right.nav-tabs li.nav-item a.nav-link.active {
+ border: 1px solid #ddd;
+ border-left: 0;
+ border-radius: 0 0.25rem 0.25rem 0;
+ }
+ .nav-vertical .nav-right.nav-tabs li.nav-item a.nav-link:hover:not(.active) {
+ border-color: transparent;
+ border-left: 1px solid #ddd;
+ }
+ .nav-vertical .nav-right.nav-tabs.nav-border-right li.nav-item a.nav-link {
+ color: #F08080;
+ }
+ .nav-vertical
+ .nav-right.nav-tabs.nav-border-right
+ li.nav-item
+ a.nav-link.active {
+ border-right: 3px solid #F08080;
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0;
+ color: #555;
+ }
+ .nav-vertical .nav-right ~ .tab-content .tab-pane {
+ display: none;
+ background-color: #fff;
+ padding: 0 0 0.6rem 1rem;
+ overflow-y: auto;
+ }
+ .nav-vertical .nav-right ~ .tab-content .tab-pane.active {
+ display: block;
+ }
+ .nav.nav-tabs.nav-only-icon .nav-item .nav-link {
+ font-size: 1.25rem;
+ }
+ .nav.nav-tabs.nav-only-icon .nav-item .nav-link i {
+ margin-left: 0.5rem;
+ }
+ .nav.nav-tabs .nav-item.show .nav-link,
+ .nav.nav-tabs .nav-item.show .nav-link:focus {
+ background-color: transparent;
+ }
+ .alert {
+ position: relative;
+ }
+ .alert .alert-link:hover {
+ text-decoration: underline;
+ }
+ .alert.alert-icon-left {
+ border-left-width: 4rem;
+ }
+ .alert.alert-icon-right {
+ border-right-width: 4rem;
+ }
+ .alert.alert-icon-left[class*="bg-"] {
+ border-left-color: rgba(0, 0, 0, 0.15) !important;
+ }
+ .alert.alert-icon-right[class*="bg-"] {
+ border-right-color: rgba(0, 0, 0, 0.15) !important;
+ }
+ .alert[class*="alert-icon-"]:after {
+ content: "\f006";
+ font-family: FontAwesome;
+ color: #fff;
+ width: 4rem;
+ left: -4rem;
+ text-align: center;
+ position: absolute;
+ top: 50%;
+ margin-top: -8px;
+ font-size: 1.25rem;
+ font-weight: 400;
+ line-height: 1;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ }
+ .alert .close {
+ font-size: 2rem;
+ line-height: 1rem;
+ }
+ .alert[class*="bg-"],
+ .alert[class*="bg-"] .alert-link {
+ color: #fff;
+ }
+ .alert[class*="bg-"] .close {
+ color: #fff;
+ opacity: 1;
+ text-shadow: none;
+ }
+ .alert[class*="alert-icon-"].alert-primary:after,
+ .alert[class*="alert-icon-"][class*="alert-primary"]:after,
+ .alert[class*="alert-icon-"][class*="bg-primary"]:after {
+ content: "\f08a";
+ }
+ .alert[class*="alert-icon-"].alert-danger:after,
+ .alert[class*="alert-icon-"][class*="alert-danger"]:after,
+ .alert[class*="alert-icon-"][class*="bg-danger"]:after {
+ content: "\f088";
+ }
+ .alert[class*="alert-icon-"].alert-success:after,
+ .alert[class*="alert-icon-"][class*="alert-success"]:after,
+ .alert[class*="alert-icon-"][class*="bg-success"]:after {
+ content: "\f087";
+ }
+ .alert[class*="alert-icon-"].alert-warning:after,
+ .alert[class*="alert-icon-"][class*="alert-warning"]:after,
+ .alert[class*="alert-icon-"][class*="bg-warning"]:after {
+ content: "\f071";
+ }
+ .alert[class*="alert-icon-"].alert-info:after,
+ .alert[class*="alert-icon-"][class*="alert-info"]:after,
+ .alert[class*="alert-icon-"][class*="bg-info"]:after {
+ content: "\f129";
+ }
+ .alert.alert-icon-right:after {
+ left: auto;
+ right: -4rem;
+ }
+ .media-list .media {
+ padding: 1.25rem;
+ margin-top: 0;
+ }
+ .media-list .media .media-left {
+ padding-right: 1rem;
+ }
+ .media-list .media .media-right {
+ padding-left: 1rem;
+ }
+ .media-list a.media {
+ color: #404e67 !important;
+ }
+ .media-bordered .media {
+ border-top: 1px solid #e4e7ed;
+ }
+ .media-bordered .media:first-child {
+ border-top: 0;
+ }
+ .users-list li .badge,
+ .users-list li img {
+ border: 2px solid #fff;
+ }
+ .progress {
+ margin-bottom: 3rem;
+ }
+ .progress:last-child {
+ margin-bottom: 1rem;
+ }
+ ul.list-inline li {
+ display: inline-block;
+ }
+ ul.list-inline.list-inline-pipe > li + li:before {
+ content: " | ";
+ color: #626e82;
+ }
+ .users-list li + li {
+ margin-left: -0.785rem;
+ }
+ .users-list li .badge {
+ border-radius: 50%;
+ padding: 0.4rem;
+ }
+ .toast-bs-container {
+ z-index: 1040;
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
+ }
+ .toast-bs-container .toast-position {
+ position: relative;
+ top: 0;
+ right: 0;
+ display: -webkit-box;
+ display: -webkit-flex;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-orient: vertical;
+ -webkit-box-direction: normal;
+ -webkit-flex-direction: column;
+ -ms-flex-direction: column;
+ flex-direction: column;
+ -webkit-flex-wrap: wrap-reverse;
+ -ms-flex-wrap: wrap-reverse;
+ flex-wrap: wrap-reverse;
+ }
+ .toast-bs-container .toast-position .toast.show {
+ opacity: 1;
+ z-index: 1030;
+ }
+ .toast-placement {
+ position: static;
+ top: 0;
+ }
+ .toast-placement .toast {
+ position: absolute;
+ top: 0;
+ z-index: 1030;
+ }
+ .toast {
+ display: none;
+ background-color: #fff;
+ margin-top: 0.75rem;
+ }
+ .toast.show.toast-wrapper {
+ position: static;
+ }
+ .toast.toast-translucent {
+ opacity: 1;
+ display: block;
+ }
+ .bullet,
+ .icon-spin {
+ display: inline-block;
+ }
+ .toast-header img {
+ width: 20px;
+ height: 20px;
+ }
+ .modal-sm {
+ max-width: 400px;
+ }
+ .modal-xs {
+ max-width: 300px;
+ }
+ .modal-xl {
+ max-width: 94%;
+ margin-left: 3%;
+ margin-right: 3%;
+ }
+ .icon-align {
+ margin-top: 0.6rem;
+ margin-left: 0.5rem;
+ }
+ .popover.bs-tether-element-attached-left:after,
+ .popover.bs-tether-element-attached-left:before,
+ .popover.bs-tether-element-attached-right:after,
+ .popover.bs-tether-element-attached-right:before,
+ .popover.popover-left:after,
+ .popover.popover-left:before,
+ .popover.popover-right:after,
+ .popover.popover-right:before {
+ margin-top: -10px;
+ }
+ .popover.bs-tether-element-attached-bottom:after,
+ .popover.bs-tether-element-attached-bottom:before,
+ .popover.bs-tether-element-attached-top:after,
+ .popover.bs-tether-element-attached-top:before,
+ .popover.popover-bottom:after,
+ .popover.popover-bottom:before,
+ .popover.popover-top:after,
+ .popover.popover-top:before {
+ margin-left: -10px;
+ }
+ .icon-bg-circle {
+ color: #fff;
+ padding: 0.5rem;
+ border-radius: 50%;
+ }
+ .bullet {
+ height: 10px;
+ width: 10px;
+ border-radius: 50%;
+ }
+ .icon-left,
+ .icon-right {
+ margin-right: 0.5rem;
+ }
+ .icon-spin {
+ -webkit-animation: spin 1s infinite linear;
+ animation: spin 1s infinite linear;
+ }
+ .blockOverlay {
+ z-index: 1050 !important;
+ }
+ .blockElement,
+ .blockPage {
+ z-index: 1051 !important;
+ }
+ @-webkit-keyframes spin {
+ from {
+ -webkit-transform: rotate(0);
+ }
+ to {
+ -webkit-transform: rotate(360deg);
+ }
+ }
+ .hidden {
+ display: none;
+ visibility: hidden;
+ }
+ .round {
+ border-radius: 1.5rem;
+ }
+ .square {
+ border-radius: 0;
+ }
+ .mega-dropdown-menu p.accordion-text {
+ line-height: 1.45;
+ }
+ .mega-dropdown-menu a[aria-expanded="true"] {
+ padding-bottom: 1rem;
+ }
+ .line-on-side {
+ border-bottom: 1px solid #dadada;
+ line-height: 0.1em;
+ margin: 10px 0 20px;
+ }
+ .line-on-side span {
+ background: #fff;
+ padding: 0 10px;
+ }
+ .icon-line-height {
+ line-height: 1.5rem !important;
+ }
+ .table-middle td {
+ vertical-align: middle;
+ }
+ .spinner {
+ display: inline-block;
+ -webkit-animation: spin 1s linear infinite;
+ animation: spin 1s linear infinite;
+ }
+ @keyframes spin {
+ 0%,
+ from {
+ -webkit-transform: rotate(0);
+ transform: rotate(0);
+ }
+ 100%,
+ to {
+ -webkit-transform: rotate(360deg);
+ transform: rotate(360deg);
+ }
+ }
+ @media only screen and (max-width: 576px) {
+ .line-on-side {
+ border-bottom: none;
+ line-height: 1.25rem;
+ }
+ }
+
+ .white {
+ color: #fff !important;
+ }
+ .bg-white {
+ background-color: #fff !important;
+ }
+ .bg-white .card-footer,
+ .bg-white .card-header {
+ background-color: transparent;
+ }
+ .alert-white {
+ border-color: #fff !important;
+ background-color: #fff !important;
+ color: #a6a6a6 !important;
+ }
+ .alert-white .alert-link {
+ color: #919191 !important;
+ }
+ .bullet.bullet-white {
+ background-color: #fff;
+ }
+ .bg-light-white {
+ background-color: rgba(255, 255, 255, 0.15);
+ }
+ .bg-white.badge-glow,
+ .border-white.badge-glow {
+ box-shadow: 0 0 10px #fff;
+ }
+ .overlay-white {
+ background: #fff;
+ background: rgba(255, 255, 255, 0.8);
+ }
+ .btn-white {
+ background-color: #fff !important;
+ color: #fff;
+ }
+ .btn-white:active,
+ .btn-white:focus,
+ .btn-white:hover {
+ color: #fff !important;
+ }
+ .btn-outline-white {
+ border-color: #fff;
+ background-color: transparent;
+ color: #fff;
+ }
+ .btn-outline-white:hover {
+ background-color: #fff;
+ color: #fff !important;
+ }
+ .alert-black,
+ .alert-black .alert-link,
+ .black {
+ color: #000 !important;
+ }
+ .widget-timeline .timeline-items.timeline-icon-white:before {
+ background-color: #fff;
+ }
+ input[type="checkbox"].bg-white + .custom-control-label:before,
+ input[type="radio"].bg-white + .custom-control-label:before {
+ background-color: #fff !important;
+ }
+ input:focus ~ .bg-white {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #fff !important;
+ }
+ .border-white {
+ border: 1px solid #fff !important;
+ }
+ .kanban-container .kanban-board .kanban-item[data-border="white"]:before {
+ background-color: #fff;
+ }
+ .bg-black {
+ background-color: #000 !important;
+ }
+ .bg-black .card-footer,
+ .bg-black .card-header {
+ background-color: transparent;
+ }
+ .alert-black {
+ border-color: #242424 !important;
+ background-color: #242424 !important;
+ }
+ .bullet.bullet-black {
+ background-color: #000;
+ }
+ .bg-light-black {
+ background-color: rgba(0, 0, 0, 0.15);
+ }
+ .bg-black.badge-glow,
+ .border-black.badge-glow {
+ box-shadow: 0 0 10px #000;
+ }
+ .overlay-black {
+ background: #000;
+ background: rgba(0, 0, 0, 0.8);
+ }
+ .btn-black {
+ background-color: #000 !important;
+ color: #fff;
+ }
+ .btn-black:active,
+ .btn-black:focus,
+ .btn-black:hover {
+ color: #fff !important;
+ }
+ .btn-outline-black {
+ border-color: #000;
+ background-color: transparent;
+ color: #000;
+ }
+ .btn-outline-black:hover {
+ background-color: #000;
+ color: #fff !important;
+ }
+ .widget-timeline .timeline-items.timeline-icon-black:before {
+ background-color: #000;
+ }
+ input[type="checkbox"].bg-black + .custom-control-label:before,
+ input[type="radio"].bg-black + .custom-control-label:before {
+ background-color: #000 !important;
+ }
+ input:focus ~ .bg-black {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #000 !important;
+ }
+ .border-black {
+ border: 1px solid #000 !important;
+ }
+ .kanban-container .kanban-board .kanban-item[data-border="black"]:before {
+ background-color: #000;
+ }
+ .bg-primary.bg-lighten-5,
+ .btn-primary.btn-lighten-5 {
+ background-color: #39fcff !important;
+ }
+ .primary.lighten-5 {
+ color: #39fcff !important;
+ }
+ .btn-primary.btn-lighten-5 {
+ border-color: #0278d5 !important;
+ }
+ .btn-primary.btn-lighten-5:hover {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ }
+ .btn-primary.btn-lighten-5:active,
+ .btn-primary.btn-lighten-5:focus {
+ border-color: #004ba4 !important;
+ background-color: #005152 !important;
+ }
+ .btn-outline-primary.btn-outline-lighten-5 {
+ border-color: #39fcff !important;
+ color: #39fcff !important;
+ }
+ .btn-outline-primary.btn-outline-lighten-5:hover {
+ background-color: #39fcff !important;
+ }
+ .border-primary.border-lighten-5 {
+ border: 1px solid #39fcff !important;
+ }
+ .border-top-primary.border-top-lighten-5 {
+ border-top: 1px solid #39fcff !important;
+ }
+ .border-bottom-primary.border-bottom-lighten-5 {
+ border-bottom: 1px solid #39fcff !important;
+ }
+ .border-left-primary.border-left-lighten-5 {
+ border-left: 1px solid #39fcff !important;
+ }
+ .border-right-primary.border-right-lighten-5 {
+ border-right: 1px solid #39fcff !important;
+ }
+ .overlay-primary.overlay-lighten-5 {
+ background: #39fcff;
+ background: rgba(57, 252, 255, 0.8);
+ }
+ .bg-primary.bg-lighten-4,
+ .btn-primary.btn-lighten-4 {
+ background-color: #1ffbff !important;
+ }
+ .primary.lighten-4 {
+ color: #1ffbff !important;
+ }
+ .btn-primary.btn-lighten-4 {
+ border-color: #0278d5 !important;
+ }
+ .btn-primary.btn-lighten-4:hover {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ }
+ .btn-primary.btn-lighten-4:active,
+ .btn-primary.btn-lighten-4:focus {
+ border-color: #004ba4 !important;
+ background-color: #005152 !important;
+ }
+ .btn-outline-primary.btn-outline-lighten-4 {
+ border-color: #1ffbff !important;
+ color: #1ffbff !important;
+ }
+ .btn-outline-primary.btn-outline-lighten-4:hover {
+ background-color: #1ffbff !important;
+ }
+ .border-primary.border-lighten-4 {
+ border: 1px solid #1ffbff !important;
+ }
+ .border-top-primary.border-top-lighten-4 {
+ border-top: 1px solid #1ffbff !important;
+ }
+ .border-bottom-primary.border-bottom-lighten-4 {
+ border-bottom: 1px solid #1ffbff !important;
+ }
+ .border-left-primary.border-left-lighten-4 {
+ border-left: 1px solid #1ffbff !important;
+ }
+ .border-right-primary.border-right-lighten-4 {
+ border-right: 1px solid #1ffbff !important;
+ }
+ .overlay-primary.overlay-lighten-4 {
+ background: #1ffbff;
+ background: rgba(31, 251, 255, 0.8);
+ }
+ .bg-primary.bg-lighten-3,
+ .btn-primary.btn-lighten-3 {
+ background-color: #06fbff !important;
+ }
+ .primary.lighten-3 {
+ color: #06fbff !important;
+ }
+ .btn-primary.btn-lighten-3 {
+ border-color: #0278d5 !important;
+ }
+ .btn-primary.btn-lighten-3:hover {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ }
+ .btn-primary.btn-lighten-3:active,
+ .btn-primary.btn-lighten-3:focus {
+ border-color: #004ba4 !important;
+ background-color: #005152 !important;
+ }
+ .btn-outline-primary.btn-outline-lighten-3 {
+ border-color: #06fbff !important;
+ color: #06fbff !important;
+ }
+ .btn-outline-primary.btn-outline-lighten-3:hover {
+ background-color: #06fbff !important;
+ }
+ .border-primary.border-lighten-3 {
+ border: 1px solid #06fbff !important;
+ }
+ .border-top-primary.border-top-lighten-3 {
+ border-top: 1px solid #06fbff !important;
+ }
+ .border-bottom-primary.border-bottom-lighten-3 {
+ border-bottom: 1px solid #06fbff !important;
+ }
+ .border-left-primary.border-left-lighten-3 {
+ border-left: 1px solid #06fbff !important;
+ }
+ .border-right-primary.border-right-lighten-3 {
+ border-right: 1px solid #06fbff !important;
+ }
+ .overlay-primary.overlay-lighten-3 {
+ background: #06fbff;
+ background: rgba(6, 251, 255, 0.8);
+ }
+ .bg-primary.bg-lighten-2,
+ .btn-primary.btn-lighten-2 {
+ background-color: #00e7eb !important;
+ }
+ .primary.lighten-2 {
+ color: #00e7eb !important;
+ }
+ .btn-primary.btn-lighten-2 {
+ border-color: #0278d5 !important;
+ }
+ .btn-primary.btn-lighten-2:hover {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ }
+ .btn-primary.btn-lighten-2:active,
+ .btn-primary.btn-lighten-2:focus {
+ border-color: #004ba4 !important;
+ background-color: #005152 !important;
+ }
+ .btn-outline-primary.btn-outline-lighten-2 {
+ border-color: #00e7eb !important;
+ color: #00e7eb !important;
+ }
+ .btn-outline-primary.btn-outline-lighten-2:hover {
+ background-color: #00e7eb !important;
+ }
+ .border-primary.border-lighten-2 {
+ border: 1px solid #00e7eb !important;
+ }
+ .border-top-primary.border-top-lighten-2 {
+ border-top: 1px solid #00e7eb !important;
+ }
+ .border-bottom-primary.border-bottom-lighten-2 {
+ border-bottom: 1px solid #00e7eb !important;
+ }
+ .border-left-primary.border-left-lighten-2 {
+ border-left: 1px solid #00e7eb !important;
+ }
+ .border-right-primary.border-right-lighten-2 {
+ border-right: 1px solid #00e7eb !important;
+ }
+ .overlay-primary.overlay-lighten-2 {
+ background: #00e7eb;
+ background: rgba(0, 231, 235, 0.8);
+ }
+ .bg-primary.bg-lighten-1,
+ .btn-primary.btn-lighten-1 {
+ background-color: #004ba4 !important;
+ }
+ .primary.lighten-1 {
+ color: #004ba4 !important;
+ }
+ .btn-primary.btn-lighten-1 {
+ border-color: #0278d5 !important;
+ }
+ .btn-primary.btn-lighten-1:hover {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ }
+ .btn-primary.btn-lighten-1:active,
+ .btn-primary.btn-lighten-1:focus {
+ border-color: #004ba4 !important;
+ background-color: #005152 !important;
+ }
+ .btn-outline-primary.btn-outline-lighten-1 {
+ border-color: #004ba4 !important;
+ color: #004ba4 !important;
+ }
+ .btn-outline-primary.btn-outline-lighten-1:hover {
+ background-color: #004ba4 !important;
+ }
+ .border-primary.border-lighten-1 {
+ border: 1px solid #004ba4 !important;
+ }
+ .border-top-primary.border-top-lighten-1 {
+ border-top: 1px solid #004ba4 !important;
+ }
+ .border-bottom-primary.border-bottom-lighten-1 {
+ border-bottom: 1px solid #004ba4 !important;
+ }
+ .border-left-primary.border-left-lighten-1 {
+ border-left: 1px solid #004ba4 !important;
+ }
+ .border-right-primary.border-right-lighten-1 {
+ border-right: 1px solid #004ba4 !important;
+ }
+ .overlay-primary.overlay-lighten-1 {
+ background: #004ba4;
+ background: rgba(0, 206, 210, 0.8);
+ }
+ .primary {
+ color: #0677D4 !important;
+ }
+ .bg-primary {
+ background-color: #0677D4 !important;
+ }
+ .bg-primary .card-footer,
+ .bg-primary .card-header {
+ background-color: transparent;
+ }
+ .alert-primary {
+ border-color: #00fbff !important;
+ background-color: #00fbff !important;
+ color: #000506 !important;
+ }
+ .alert-primary .alert-link {
+ color: #000 !important;
+ }
+ .bullet.bullet-primary {
+ background-color: #0677D4;
+ }
+ .bg-light-primary {
+ background-color: rgba(0, 181, 184, 0.15);
+ }
+ .bg-primary.badge-glow,
+ .border-primary.badge-glow {
+ box-shadow: 0 0 10px #0677D4;
+ }
+ .overlay-primary {
+ background: #0677D4;
+ background: rgba(0, 181, 184, 0.8);
+ }
+ .btn-primary {
+ background-color: #0677D4 !important;
+ color: #fff;
+ }
+ .btn-primary:hover {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ color: #fff !important;
+ }
+ .btn-primary:active,
+ .btn-primary:focus {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ color: #fff !important;
+ }
+ .btn-outline-primary {
+ border-color: #0677D4;
+ background-color: transparent;
+ color: #0677D4;
+ }
+ .btn-outline-primary:hover {
+ background-color: #0677D4;
+ color: #fff !important;
+ }
+ .widget-timeline .timeline-items.timeline-icon-primary:before {
+ background-color: #0677D4;
+ }
+ input[type="checkbox"].bg-primary + .custom-control-label:before,
+ input[type="radio"].bg-primary + .custom-control-label:before {
+ background-color: #0677D4 !important;
+ }
+ .bg-primary.bg-darken-1,
+ .btn-primary.btn-darken-1 {
+ background-color: #0278d5 !important;
+ }
+ .border-primary {
+ border: 1px solid #0677D4 !important;
+ }
+ .border-top-primary {
+ border-top: 1px solid #0677D4;
+ }
+ .border-bottom-primary {
+ border-bottom: 1px solid #0677D4;
+ }
+ .border-left-primary {
+ border-left: 1px solid #0677D4;
+ }
+ .border-right-primary {
+ border-right: 1px solid #0677D4;
+ }
+ .primary.darken-1 {
+ color: #0278d5 !important;
+ }
+ .btn-primary.btn-darken-1 {
+ border-color: #0278d5 !important;
+ }
+ .btn-primary.btn-darken-1:hover {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ }
+ .btn-primary.btn-darken-1:active,
+ .btn-primary.btn-darken-1:focus {
+ border-color: #004ba4 !important;
+ background-color: #005152 !important;
+ }
+ .btn-outline-primary.btn-outline-darken-1 {
+ border-color: #0278d5 !important;
+ color: #0278d5 !important;
+ }
+ .btn-outline-primary.btn-outline-darken-1:hover {
+ background-color: #0278d5 !important;
+ }
+ .border-primary.border-darken-1 {
+ border: 1px solid #0278d5 !important;
+ }
+ .border-top-primary.border-top-darken-1 {
+ border-top: 1px solid #0278d5 !important;
+ }
+ .border-bottom-primary.border-bottom-darken-1 {
+ border-bottom: 1px solid #0278d5 !important;
+ }
+ .border-left-primary.border-left-darken-1 {
+ border-left: 1px solid #0278d5 !important;
+ }
+ .border-right-primary.border-right-darken-1 {
+ border-right: 1px solid #0278d5 !important;
+ }
+ .overlay-primary.overlay-darken-1 {
+ background: #0278d5;
+ background: rgba(0, 156, 159, 0.8);
+ }
+ .bg-primary.bg-darken-2,
+ .btn-primary.btn-darken-2 {
+ background-color: #0278d5 !important;
+ }
+ .primary.darken-2 {
+ color: #0278d5 !important;
+ }
+ .btn-primary.btn-darken-2 {
+ border-color: #0278d5 !important;
+ }
+ .btn-primary.btn-darken-2:hover {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ }
+ .btn-primary.btn-darken-2:active,
+ .btn-primary.btn-darken-2:focus {
+ border-color: #004ba4 !important;
+ background-color: #005152 !important;
+ }
+ .btn-outline-primary.btn-outline-darken-2 {
+ border-color: #0278d5 !important;
+ color: #0278d5 !important;
+ }
+ .btn-outline-primary.btn-outline-darken-2:hover {
+ background-color: #0278d5 !important;
+ }
+ .border-primary.border-darken-2 {
+ border: 1px solid #0278d5 !important;
+ }
+ .border-top-primary.border-top-darken-2 {
+ border-top: 1px solid #0278d5 !important;
+ }
+ .border-bottom-primary.border-bottom-darken-2 {
+ border-bottom: 1px solid #0278d5 !important;
+ }
+ .border-left-primary.border-left-darken-2 {
+ border-left: 1px solid #0278d5 !important;
+ }
+ .border-right-primary.border-right-darken-2 {
+ border-right: 1px solid #0278d5 !important;
+ }
+ .overlay-primary.overlay-darken-2 {
+ background: #0278d5;
+ background: rgba(0, 131, 133, 0.8);
+ }
+ .primary.darken-3 {
+ color: #004ba4 !important;
+ }
+ .bg-primary.bg-darken-3 {
+ background-color: #004ba4 !important;
+ }
+ .btn-primary.btn-darken-3,
+ .btn-primary.btn-darken-3:hover {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ }
+ .btn-primary.btn-darken-3:active,
+ .btn-primary.btn-darken-3:focus {
+ border-color: #004ba4 !important;
+ background-color: #005152 !important;
+ }
+ .btn-outline-primary.btn-outline-darken-3 {
+ border-color: #004ba4 !important;
+ color: #004ba4 !important;
+ }
+ .btn-outline-primary.btn-outline-darken-3:hover {
+ background-color: #004ba4 !important;
+ }
+ .border-primary.border-darken-3 {
+ border: 1px solid #004ba4 !important;
+ }
+ .border-top-primary.border-top-darken-3 {
+ border-top: 1px solid #004ba4 !important;
+ }
+ .border-bottom-primary.border-bottom-darken-3 {
+ border-bottom: 1px solid #004ba4 !important;
+ }
+ .border-left-primary.border-left-darken-3 {
+ border-left: 1px solid #004ba4 !important;
+ }
+ .border-right-primary.border-right-darken-3 {
+ border-right: 1px solid #004ba4 !important;
+ }
+ .overlay-primary.overlay-darken-3 {
+ background: #004ba4;
+ background: rgba(0, 106, 108, 0.8);
+ }
+ .bg-primary.bg-darken-4,
+ .btn-primary.btn-darken-4 {
+ background-color: #005152 !important;
+ }
+ .primary.darken-4 {
+ color: #005152 !important;
+ }
+ .btn-primary.btn-darken-4 {
+ border-color: #0278d5 !important;
+ }
+ .btn-primary.btn-darken-4:hover {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ }
+ .btn-primary.btn-darken-4:active,
+ .btn-primary.btn-darken-4:focus {
+ border-color: #004ba4 !important;
+ background-color: #005152 !important;
+ }
+ .btn-outline-primary.btn-outline-darken-4 {
+ border-color: #005152 !important;
+ color: #005152 !important;
+ }
+ .btn-outline-primary.btn-outline-darken-4:hover {
+ background-color: #005152 !important;
+ }
+ .border-primary.border-darken-4 {
+ border: 1px solid #005152 !important;
+ }
+ .border-top-primary.border-top-darken-4 {
+ border-top: 1px solid #005152 !important;
+ }
+ .border-bottom-primary.border-bottom-darken-4 {
+ border-bottom: 1px solid #005152 !important;
+ }
+ .border-left-primary.border-left-darken-4 {
+ border-left: 1px solid #005152 !important;
+ }
+ .border-right-primary.border-right-darken-4 {
+ border-right: 1px solid #005152 !important;
+ }
+ .overlay-primary.overlay-darken-4 {
+ background: #005152;
+ background: rgba(0, 81, 82, 0.8);
+ }
+ .bg-primary.bg-accent-1,
+ .btn-primary.btn-accent-1 {
+ background-color: #bdfdff !important;
+ }
+ .primary.accent-1 {
+ color: #bdfdff !important;
+ }
+ .btn-primary.btn-accent-1 {
+ border-color: #0278d5 !important;
+ }
+ .btn-primary.btn-accent-1:hover {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ }
+ .btn-primary.btn-accent-1:active,
+ .btn-primary.btn-accent-1:focus {
+ border-color: #004ba4 !important;
+ background-color: #005152 !important;
+ }
+ .btn-outline-primary.btn-outline-accent-1 {
+ border-color: #bdfdff !important;
+ color: #bdfdff !important;
+ }
+ .btn-outline-primary.btn-outline-accent-1:hover {
+ background-color: #bdfdff !important;
+ }
+ .border-primary.border-accent-1 {
+ border: 1px solid #bdfdff !important;
+ }
+ .border-top-primary.border-top-accent-1 {
+ border-top: 1px solid #bdfdff !important;
+ }
+ .border-bottom-primary.border-bottom-accent-1 {
+ border-bottom: 1px solid #bdfdff !important;
+ }
+ .border-left-primary.border-left-accent-1 {
+ border-left: 1px solid #bdfdff !important;
+ }
+ .border-right-primary.border-right-accent-1 {
+ border-right: 1px solid #bdfdff !important;
+ }
+ .overlay-primary.overlay-accent-1 {
+ background: #bdfdff;
+ background: rgba(189, 253, 255, 0.8);
+ }
+ .bg-primary.bg-accent-2,
+ .btn-primary.btn-accent-2 {
+ background-color: #8afbff !important;
+ }
+ .primary.accent-2 {
+ color: #8afbff !important;
+ }
+ .btn-primary.btn-accent-2 {
+ border-color: #0278d5 !important;
+ }
+ .btn-primary.btn-accent-2:hover {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ }
+ .btn-primary.btn-accent-2:active,
+ .btn-primary.btn-accent-2:focus {
+ border-color: #004ba4 !important;
+ background-color: #005152 !important;
+ }
+ .btn-outline-primary.btn-outline-accent-2 {
+ border-color: #8afbff !important;
+ color: #8afbff !important;
+ }
+ .btn-outline-primary.btn-outline-accent-2:hover {
+ background-color: #8afbff !important;
+ }
+ .border-primary.border-accent-2 {
+ border: 1px solid #8afbff !important;
+ }
+ .border-top-primary.border-top-accent-2 {
+ border-top: 1px solid #8afbff !important;
+ }
+ .border-bottom-primary.border-bottom-accent-2 {
+ border-bottom: 1px solid #8afbff !important;
+ }
+ .border-left-primary.border-left-accent-2 {
+ border-left: 1px solid #8afbff !important;
+ }
+ .border-right-primary.border-right-accent-2 {
+ border-right: 1px solid #8afbff !important;
+ }
+ .overlay-primary.overlay-accent-2 {
+ background: #8afbff;
+ background: rgba(138, 251, 255, 0.8);
+ }
+ .bg-primary.bg-accent-3,
+ .btn-primary.btn-accent-3 {
+ background-color: #57faff !important;
+ }
+ .primary.accent-3 {
+ color: #57faff !important;
+ }
+ .btn-primary.btn-accent-3 {
+ border-color: #0278d5 !important;
+ }
+ .btn-primary.btn-accent-3:hover {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ }
+ .btn-primary.btn-accent-3:active,
+ .btn-primary.btn-accent-3:focus {
+ border-color: #004ba4 !important;
+ background-color: #005152 !important;
+ }
+ .btn-outline-primary.btn-outline-accent-3 {
+ border-color: #57faff !important;
+ color: #57faff !important;
+ }
+ .btn-outline-primary.btn-outline-accent-3:hover {
+ background-color: #57faff !important;
+ }
+ .border-primary.border-accent-3 {
+ border: 1px solid #57faff !important;
+ }
+ .border-top-primary.border-top-accent-3 {
+ border-top: 1px solid #57faff !important;
+ }
+ .border-bottom-primary.border-bottom-accent-3 {
+ border-bottom: 1px solid #57faff !important;
+ }
+ .border-left-primary.border-left-accent-3 {
+ border-left: 1px solid #57faff !important;
+ }
+ .border-right-primary.border-right-accent-3 {
+ border-right: 1px solid #57faff !important;
+ }
+ .overlay-primary.overlay-accent-3 {
+ background: #57faff;
+ background: rgba(87, 250, 255, 0.8);
+ }
+ .bg-primary.bg-accent-4,
+ .btn-primary.btn-accent-4 {
+ background-color: #3df9ff !important;
+ }
+ .primary.accent-4 {
+ color: #3df9ff !important;
+ }
+ .btn-primary.btn-accent-4 {
+ border-color: #0278d5 !important;
+ }
+ .btn-primary.btn-accent-4:hover {
+ border-color: #0278d5 !important;
+ background-color: #004ba4 !important;
+ }
+ .btn-primary.btn-accent-4:active,
+ .btn-primary.btn-accent-4:focus {
+ border-color: #004ba4 !important;
+ background-color: #005152 !important;
+ }
+ .btn-outline-primary.btn-outline-accent-4 {
+ border-color: #3df9ff !important;
+ color: #3df9ff !important;
+ }
+ .btn-outline-primary.btn-outline-accent-4:hover {
+ background-color: #3df9ff !important;
+ }
+ input:focus ~ .bg-primary {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #3df9ff !important;
+ }
+ .border-primary.border-accent-4 {
+ border: 1px solid #3df9ff !important;
+ }
+ .border-top-primary.border-top-accent-4 {
+ border-top: 1px solid #3df9ff !important;
+ }
+ .border-bottom-primary.border-bottom-accent-4 {
+ border-bottom: 1px solid #3df9ff !important;
+ }
+ .border-left-primary.border-left-accent-4 {
+ border-left: 1px solid #3df9ff !important;
+ }
+ .border-right-primary.border-right-accent-4 {
+ border-right: 1px solid #3df9ff !important;
+ }
+ .overlay-primary.overlay-accent-4 {
+ background: #3df9ff;
+ background: rgba(61, 249, 255, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="primary"]:before {
+ background-color: #3df9ff;
+ }
+ .bg-secondary.bg-lighten-5,
+ .btn-secondary.btn-lighten-5 {
+ background-color: #7a8cac !important;
+ }
+ .secondary.lighten-5 {
+ color: #7a8cac !important;
+ }
+ .btn-secondary.btn-lighten-5 {
+ border-color: #2c3648 !important;
+ }
+ .btn-secondary.btn-lighten-5:hover {
+ border-color: #2c3648 !important;
+ background-color: #232a38 !important;
+ }
+ .btn-secondary.btn-lighten-5:active,
+ .btn-secondary.btn-lighten-5:focus {
+ border-color: #232a38 !important;
+ background-color: #191e28 !important;
+ }
+ .btn-outline-secondary.btn-outline-lighten-5 {
+ border-color: #7a8cac !important;
+ color: #7a8cac !important;
+ }
+ .btn-outline-secondary.btn-outline-lighten-5:hover {
+ background-color: #7a8cac !important;
+ }
+ .border-secondary.border-lighten-5 {
+ border: 1px solid #7a8cac !important;
+ }
+ .border-top-secondary.border-top-lighten-5 {
+ border-top: 1px solid #7a8cac !important;
+ }
+ .border-bottom-secondary.border-bottom-lighten-5 {
+ border-bottom: 1px solid #7a8cac !important;
+ }
+ .border-left-secondary.border-left-lighten-5 {
+ border-left: 1px solid #7a8cac !important;
+ }
+ .border-right-secondary.border-right-lighten-5 {
+ border-right: 1px solid #7a8cac !important;
+ }
+ .overlay-secondary.overlay-lighten-5 {
+ background: #7a8cac;
+ background: rgba(122, 140, 172, 0.8);
+ }
+ .bg-secondary.bg-lighten-4,
+ .btn-secondary.btn-lighten-4 {
+ background-color: #6a7fa3 !important;
+ }
+ .secondary.lighten-4 {
+ color: #6a7fa3 !important;
+ }
+ .btn-secondary.btn-lighten-4 {
+ border-color: #2c3648 !important;
+ }
+ .btn-secondary.btn-lighten-4:hover {
+ border-color: #2c3648 !important;
+ background-color: #232a38 !important;
+ }
+ .btn-secondary.btn-lighten-4:active,
+ .btn-secondary.btn-lighten-4:focus {
+ border-color: #232a38 !important;
+ background-color: #191e28 !important;
+ }
+ .btn-outline-secondary.btn-outline-lighten-4 {
+ border-color: #6a7fa3 !important;
+ color: #6a7fa3 !important;
+ }
+ .btn-outline-secondary.btn-outline-lighten-4:hover {
+ background-color: #6a7fa3 !important;
+ }
+ .border-secondary.border-lighten-4 {
+ border: 1px solid #6a7fa3 !important;
+ }
+ .border-top-secondary.border-top-lighten-4 {
+ border-top: 1px solid #6a7fa3 !important;
+ }
+ .border-bottom-secondary.border-bottom-lighten-4 {
+ border-bottom: 1px solid #6a7fa3 !important;
+ }
+ .border-left-secondary.border-left-lighten-4 {
+ border-left: 1px solid #6a7fa3 !important;
+ }
+ .border-right-secondary.border-right-lighten-4 {
+ border-right: 1px solid #6a7fa3 !important;
+ }
+ .overlay-secondary.overlay-lighten-4 {
+ background: #6a7fa3;
+ background: rgba(106, 127, 163, 0.8);
+ }
+ .bg-secondary.bg-lighten-3,
+ .btn-secondary.btn-lighten-3 {
+ background-color: #5d7296 !important;
+ }
+ .secondary.lighten-3 {
+ color: #5d7296 !important;
+ }
+ .btn-secondary.btn-lighten-3 {
+ border-color: #2c3648 !important;
+ }
+ .btn-secondary.btn-lighten-3:hover {
+ border-color: #2c3648 !important;
+ background-color: #232a38 !important;
+ }
+ .btn-secondary.btn-lighten-3:active,
+ .btn-secondary.btn-lighten-3:focus {
+ border-color: #232a38 !important;
+ background-color: #191e28 !important;
+ }
+ .btn-outline-secondary.btn-outline-lighten-3 {
+ border-color: #5d7296 !important;
+ color: #5d7296 !important;
+ }
+ .btn-outline-secondary.btn-outline-lighten-3:hover {
+ background-color: #5d7296 !important;
+ }
+ .border-secondary.border-lighten-3 {
+ border: 1px solid #5d7296 !important;
+ }
+ .border-top-secondary.border-top-lighten-3 {
+ border-top: 1px solid #5d7296 !important;
+ }
+ .border-bottom-secondary.border-bottom-lighten-3 {
+ border-bottom: 1px solid #5d7296 !important;
+ }
+ .border-left-secondary.border-left-lighten-3 {
+ border-left: 1px solid #5d7296 !important;
+ }
+ .border-right-secondary.border-right-lighten-3 {
+ border-right: 1px solid #5d7296 !important;
+ }
+ .overlay-secondary.overlay-lighten-3 {
+ background: #5d7296;
+ background: rgba(93, 114, 150, 0.8);
+ }
+ .bg-secondary.bg-lighten-2,
+ .btn-secondary.btn-lighten-2 {
+ background-color: #546686 !important;
+ }
+ .secondary.lighten-2 {
+ color: #546686 !important;
+ }
+ .btn-secondary.btn-lighten-2 {
+ border-color: #2c3648 !important;
+ }
+ .btn-secondary.btn-lighten-2:hover {
+ border-color: #2c3648 !important;
+ background-color: #232a38 !important;
+ }
+ .btn-secondary.btn-lighten-2:active,
+ .btn-secondary.btn-lighten-2:focus {
+ border-color: #232a38 !important;
+ background-color: #191e28 !important;
+ }
+ .btn-outline-secondary.btn-outline-lighten-2 {
+ border-color: #546686 !important;
+ color: #546686 !important;
+ }
+ .btn-outline-secondary.btn-outline-lighten-2:hover {
+ background-color: #546686 !important;
+ }
+ .border-secondary.border-lighten-2 {
+ border: 1px solid #546686 !important;
+ }
+ .border-top-secondary.border-top-lighten-2 {
+ border-top: 1px solid #546686 !important;
+ }
+ .border-bottom-secondary.border-bottom-lighten-2 {
+ border-bottom: 1px solid #546686 !important;
+ }
+ .border-left-secondary.border-left-lighten-2 {
+ border-left: 1px solid #546686 !important;
+ }
+ .border-right-secondary.border-right-lighten-2 {
+ border-right: 1px solid #546686 !important;
+ }
+ .overlay-secondary.overlay-lighten-2 {
+ background: #546686;
+ background: rgba(84, 102, 134, 0.8);
+ }
+ .bg-secondary.bg-lighten-1,
+ .btn-secondary.btn-lighten-1 {
+ background-color: #4a5a77 !important;
+ }
+ .secondary.lighten-1 {
+ color: #4a5a77 !important;
+ }
+ .btn-secondary.btn-lighten-1 {
+ border-color: #2c3648 !important;
+ }
+ .btn-secondary.btn-lighten-1:hover {
+ border-color: #2c3648 !important;
+ background-color: #232a38 !important;
+ }
+ .btn-secondary.btn-lighten-1:active,
+ .btn-secondary.btn-lighten-1:focus {
+ border-color: #232a38 !important;
+ background-color: #191e28 !important;
+ }
+ .btn-outline-secondary.btn-outline-lighten-1 {
+ border-color: #4a5a77 !important;
+ color: #4a5a77 !important;
+ }
+ .btn-outline-secondary.btn-outline-lighten-1:hover {
+ background-color: #4a5a77 !important;
+ }
+ .border-secondary.border-lighten-1 {
+ border: 1px solid #4a5a77 !important;
+ }
+ .border-top-secondary.border-top-lighten-1 {
+ border-top: 1px solid #4a5a77 !important;
+ }
+ .border-bottom-secondary.border-bottom-lighten-1 {
+ border-bottom: 1px solid #4a5a77 !important;
+ }
+ .border-left-secondary.border-left-lighten-1 {
+ border-left: 1px solid #4a5a77 !important;
+ }
+ .border-right-secondary.border-right-lighten-1 {
+ border-right: 1px solid #4a5a77 !important;
+ }
+ .overlay-secondary.overlay-lighten-1 {
+ background: #4a5a77;
+ background: rgba(74, 90, 119, 0.8);
+ }
+ .secondary {
+ color: #404e67 !important;
+ }
+ .alert-secondary,
+ .alert-secondary .alert-link {
+ color: #000 !important;
+ }
+ .bg-secondary {
+ background-color: #404e67 !important;
+ }
+ .bg-secondary .card-footer,
+ .bg-secondary .card-header {
+ background-color: transparent;
+ }
+ .alert-secondary {
+ border-color: #5b6f93 !important;
+ background-color: #5b6f93 !important;
+ }
+ .bullet.bullet-secondary {
+ background-color: #404e67;
+ }
+ .bg-light-secondary {
+ background-color: rgba(64, 78, 103, 0.15);
+ }
+ .bg-secondary.badge-glow,
+ .border-secondary.badge-glow {
+ box-shadow: 0 0 10px #404e67;
+ }
+ .overlay-secondary {
+ background: #404e67;
+ background: rgba(64, 78, 103, 0.8);
+ }
+ .btn-secondary {
+ background-color: #404e67 !important;
+ color: #fff;
+ }
+ .btn-secondary:hover {
+ border-color: #364257 !important;
+ background-color: #4a5a77 !important;
+ color: #fff !important;
+ }
+ .btn-secondary:active,
+ .btn-secondary:focus {
+ border-color: #2c3648 !important;
+ background-color: #232a38 !important;
+ color: #fff !important;
+ }
+ .btn-outline-secondary {
+ border-color: #404e67;
+ background-color: transparent;
+ color: #404e67;
+ }
+ .btn-outline-secondary:hover {
+ background-color: #404e67;
+ color: #fff !important;
+ }
+ .widget-timeline .timeline-items.timeline-icon-secondary:before {
+ background-color: #404e67;
+ }
+ input[type="checkbox"].bg-secondary + .custom-control-label:before,
+ input[type="radio"].bg-secondary + .custom-control-label:before {
+ background-color: #404e67 !important;
+ }
+ .bg-secondary.bg-darken-1,
+ .btn-secondary.btn-darken-1 {
+ background-color: #364257 !important;
+ }
+ .border-secondary {
+ border: 1px solid #404e67 !important;
+ }
+ .border-top-secondary {
+ border-top: 1px solid #404e67;
+ }
+ .border-bottom-secondary {
+ border-bottom: 1px solid #404e67;
+ }
+ .border-left-secondary {
+ border-left: 1px solid #404e67;
+ }
+ .border-right-secondary {
+ border-right: 1px solid #404e67;
+ }
+ .secondary.darken-1 {
+ color: #364257 !important;
+ }
+ .btn-secondary.btn-darken-1 {
+ border-color: #2c3648 !important;
+ }
+ .btn-secondary.btn-darken-1:hover {
+ border-color: #2c3648 !important;
+ background-color: #232a38 !important;
+ }
+ .btn-secondary.btn-darken-1:active,
+ .btn-secondary.btn-darken-1:focus {
+ border-color: #232a38 !important;
+ background-color: #191e28 !important;
+ }
+ .btn-outline-secondary.btn-outline-darken-1 {
+ border-color: #364257 !important;
+ color: #364257 !important;
+ }
+ .btn-outline-secondary.btn-outline-darken-1:hover {
+ background-color: #364257 !important;
+ }
+ .border-secondary.border-darken-1 {
+ border: 1px solid #364257 !important;
+ }
+ .border-top-secondary.border-top-darken-1 {
+ border-top: 1px solid #364257 !important;
+ }
+ .border-bottom-secondary.border-bottom-darken-1 {
+ border-bottom: 1px solid #364257 !important;
+ }
+ .border-left-secondary.border-left-darken-1 {
+ border-left: 1px solid #364257 !important;
+ }
+ .border-right-secondary.border-right-darken-1 {
+ border-right: 1px solid #364257 !important;
+ }
+ .overlay-secondary.overlay-darken-1 {
+ background: #364257;
+ background: rgba(54, 66, 87, 0.8);
+ }
+ .bg-secondary.bg-darken-2,
+ .btn-secondary.btn-darken-2 {
+ background-color: #2c3648 !important;
+ }
+ .secondary.darken-2 {
+ color: #2c3648 !important;
+ }
+ .btn-secondary.btn-darken-2 {
+ border-color: #2c3648 !important;
+ }
+ .btn-secondary.btn-darken-2:hover {
+ border-color: #2c3648 !important;
+ background-color: #232a38 !important;
+ }
+ .btn-secondary.btn-darken-2:active,
+ .btn-secondary.btn-darken-2:focus {
+ border-color: #232a38 !important;
+ background-color: #191e28 !important;
+ }
+ .btn-outline-secondary.btn-outline-darken-2 {
+ border-color: #2c3648 !important;
+ color: #2c3648 !important;
+ }
+ .btn-outline-secondary.btn-outline-darken-2:hover {
+ background-color: #2c3648 !important;
+ }
+ .border-secondary.border-darken-2 {
+ border: 1px solid #2c3648 !important;
+ }
+ .border-top-secondary.border-top-darken-2 {
+ border-top: 1px solid #2c3648 !important;
+ }
+ .border-bottom-secondary.border-bottom-darken-2 {
+ border-bottom: 1px solid #2c3648 !important;
+ }
+ .border-left-secondary.border-left-darken-2 {
+ border-left: 1px solid #2c3648 !important;
+ }
+ .border-right-secondary.border-right-darken-2 {
+ border-right: 1px solid #2c3648 !important;
+ }
+ .overlay-secondary.overlay-darken-2 {
+ background: #2c3648;
+ background: rgba(44, 54, 72, 0.8);
+ }
+ .secondary.darken-3 {
+ color: #232a38 !important;
+ }
+ .bg-secondary.bg-darken-3 {
+ background-color: #232a38 !important;
+ }
+ .btn-secondary.btn-darken-3,
+ .btn-secondary.btn-darken-3:hover {
+ border-color: #2c3648 !important;
+ background-color: #232a38 !important;
+ }
+ .btn-secondary.btn-darken-3:active,
+ .btn-secondary.btn-darken-3:focus {
+ border-color: #232a38 !important;
+ background-color: #191e28 !important;
+ }
+ .btn-outline-secondary.btn-outline-darken-3 {
+ border-color: #232a38 !important;
+ color: #232a38 !important;
+ }
+ .btn-outline-secondary.btn-outline-darken-3:hover {
+ background-color: #232a38 !important;
+ }
+ .border-secondary.border-darken-3 {
+ border: 1px solid #232a38 !important;
+ }
+ .border-top-secondary.border-top-darken-3 {
+ border-top: 1px solid #232a38 !important;
+ }
+ .border-bottom-secondary.border-bottom-darken-3 {
+ border-bottom: 1px solid #232a38 !important;
+ }
+ .border-left-secondary.border-left-darken-3 {
+ border-left: 1px solid #232a38 !important;
+ }
+ .border-right-secondary.border-right-darken-3 {
+ border-right: 1px solid #232a38 !important;
+ }
+ .overlay-secondary.overlay-darken-3 {
+ background: #232a38;
+ background: rgba(35, 42, 56, 0.8);
+ }
+ .bg-secondary.bg-darken-4,
+ .btn-secondary.btn-darken-4 {
+ background-color: #191e28 !important;
+ }
+ .secondary.darken-4 {
+ color: #191e28 !important;
+ }
+ .btn-secondary.btn-darken-4 {
+ border-color: #2c3648 !important;
+ }
+ .btn-secondary.btn-darken-4:hover {
+ border-color: #2c3648 !important;
+ background-color: #232a38 !important;
+ }
+ .btn-secondary.btn-darken-4:active,
+ .btn-secondary.btn-darken-4:focus {
+ border-color: #232a38 !important;
+ background-color: #191e28 !important;
+ }
+ .btn-outline-secondary.btn-outline-darken-4 {
+ border-color: #191e28 !important;
+ color: #191e28 !important;
+ }
+ .btn-outline-secondary.btn-outline-darken-4:hover {
+ background-color: #191e28 !important;
+ }
+ input:focus ~ .bg-secondary {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #191e28 !important;
+ }
+ .border-secondary.border-darken-4 {
+ border: 1px solid #191e28 !important;
+ }
+ .border-top-secondary.border-top-darken-4 {
+ border-top: 1px solid #191e28 !important;
+ }
+ .border-bottom-secondary.border-bottom-darken-4 {
+ border-bottom: 1px solid #191e28 !important;
+ }
+ .border-left-secondary.border-left-darken-4 {
+ border-left: 1px solid #191e28 !important;
+ }
+ .border-right-secondary.border-right-darken-4 {
+ border-right: 1px solid #191e28 !important;
+ }
+ .overlay-secondary.overlay-darken-4 {
+ background: #191e28;
+ background: rgba(25, 30, 40, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="secondary"]:before {
+ background-color: #191e28;
+ }
+ .bg-success.bg-lighten-5,
+ .btn-success.btn-lighten-5 {
+ background-color: #78f1cc !important;
+ }
+ .success.lighten-5 {
+ color: #78f1cc !important;
+ }
+ .btn-success.btn-lighten-5 {
+ border-color: #11a578 !important;
+ }
+ .btn-success.btn-lighten-5:hover {
+ border-color: #11a578 !important;
+ background-color: #0f8e67 !important;
+ }
+ .btn-success.btn-lighten-5:active,
+ .btn-success.btn-lighten-5:focus {
+ border-color: #0f8e67 !important;
+ background-color: #0c7757 !important;
+ }
+ .btn-outline-success.btn-outline-lighten-5 {
+ border-color: #78f1cc !important;
+ color: #78f1cc !important;
+ }
+ .btn-outline-success.btn-outline-lighten-5:hover {
+ background-color: #78f1cc !important;
+ }
+ .border-success.border-lighten-5 {
+ border: 1px solid #78f1cc !important;
+ }
+ .border-top-success.border-top-lighten-5 {
+ border-top: 1px solid #78f1cc !important;
+ }
+ .border-bottom-success.border-bottom-lighten-5 {
+ border-bottom: 1px solid #78f1cc !important;
+ }
+ .border-left-success.border-left-lighten-5 {
+ border-left: 1px solid #78f1cc !important;
+ }
+ .border-right-success.border-right-lighten-5 {
+ border-right: 1px solid #78f1cc !important;
+ }
+ .overlay-success.overlay-lighten-5 {
+ background: #78f1cc;
+ background: rgba(120, 241, 204, 0.8);
+ }
+ .bg-success.bg-lighten-4,
+ .btn-success.btn-lighten-4 {
+ background-color: #61eec4 !important;
+ }
+ .success.lighten-4 {
+ color: #61eec4 !important;
+ }
+ .btn-success.btn-lighten-4 {
+ border-color: #11a578 !important;
+ }
+ .btn-success.btn-lighten-4:hover {
+ border-color: #11a578 !important;
+ background-color: #0f8e67 !important;
+ }
+ .btn-success.btn-lighten-4:active,
+ .btn-success.btn-lighten-4:focus {
+ border-color: #0f8e67 !important;
+ background-color: #0c7757 !important;
+ }
+ .btn-outline-success.btn-outline-lighten-4 {
+ border-color: #61eec4 !important;
+ color: #61eec4 !important;
+ }
+ .btn-outline-success.btn-outline-lighten-4:hover {
+ background-color: #61eec4 !important;
+ }
+ .border-success.border-lighten-4 {
+ border: 1px solid #61eec4 !important;
+ }
+ .border-top-success.border-top-lighten-4 {
+ border-top: 1px solid #61eec4 !important;
+ }
+ .border-bottom-success.border-bottom-lighten-4 {
+ border-bottom: 1px solid #61eec4 !important;
+ }
+ .border-left-success.border-left-lighten-4 {
+ border-left: 1px solid #61eec4 !important;
+ }
+ .border-right-success.border-right-lighten-4 {
+ border-right: 1px solid #61eec4 !important;
+ }
+ .overlay-success.overlay-lighten-4 {
+ background: #61eec4;
+ background: rgba(97, 238, 196, 0.8);
+ }
+ .bg-success.bg-lighten-3,
+ .btn-success.btn-lighten-3 {
+ background-color: #49ecbb !important;
+ }
+ .success.lighten-3 {
+ color: #49ecbb !important;
+ }
+ .btn-success.btn-lighten-3 {
+ border-color: #11a578 !important;
+ }
+ .btn-success.btn-lighten-3:hover {
+ border-color: #11a578 !important;
+ background-color: #0f8e67 !important;
+ }
+ .btn-success.btn-lighten-3:active,
+ .btn-success.btn-lighten-3:focus {
+ border-color: #0f8e67 !important;
+ background-color: #0c7757 !important;
+ }
+ .btn-outline-success.btn-outline-lighten-3 {
+ border-color: #49ecbb !important;
+ color: #49ecbb !important;
+ }
+ .btn-outline-success.btn-outline-lighten-3:hover {
+ background-color: #49ecbb !important;
+ }
+ .border-success.border-lighten-3 {
+ border: 1px solid #49ecbb !important;
+ }
+ .border-top-success.border-top-lighten-3 {
+ border-top: 1px solid #49ecbb !important;
+ }
+ .border-bottom-success.border-bottom-lighten-3 {
+ border-bottom: 1px solid #49ecbb !important;
+ }
+ .border-left-success.border-left-lighten-3 {
+ border-left: 1px solid #49ecbb !important;
+ }
+ .border-right-success.border-right-lighten-3 {
+ border-right: 1px solid #49ecbb !important;
+ }
+ .overlay-success.overlay-lighten-3 {
+ background: #49ecbb;
+ background: rgba(73, 236, 187, 0.8);
+ }
+ .bg-success.bg-lighten-2,
+ .btn-success.btn-lighten-2 {
+ background-color: #32eab2 !important;
+ }
+ .success.lighten-2 {
+ color: #32eab2 !important;
+ }
+ .btn-success.btn-lighten-2 {
+ border-color: #11a578 !important;
+ }
+ .btn-success.btn-lighten-2:hover {
+ border-color: #11a578 !important;
+ background-color: #0f8e67 !important;
+ }
+ .btn-success.btn-lighten-2:active,
+ .btn-success.btn-lighten-2:focus {
+ border-color: #0f8e67 !important;
+ background-color: #0c7757 !important;
+ }
+ .btn-outline-success.btn-outline-lighten-2 {
+ border-color: #32eab2 !important;
+ color: #32eab2 !important;
+ }
+ .btn-outline-success.btn-outline-lighten-2:hover {
+ background-color: #32eab2 !important;
+ }
+ .border-success.border-lighten-2 {
+ border: 1px solid #32eab2 !important;
+ }
+ .border-top-success.border-top-lighten-2 {
+ border-top: 1px solid #32eab2 !important;
+ }
+ .border-bottom-success.border-bottom-lighten-2 {
+ border-bottom: 1px solid #32eab2 !important;
+ }
+ .border-left-success.border-left-lighten-2 {
+ border-left: 1px solid #32eab2 !important;
+ }
+ .border-right-success.border-right-lighten-2 {
+ border-right: 1px solid #32eab2 !important;
+ }
+ .overlay-success.overlay-lighten-2 {
+ background: #32eab2;
+ background: rgba(50, 234, 178, 0.8);
+ }
+ .bg-success.bg-lighten-1,
+ .btn-success.btn-lighten-1 {
+ background-color: #1be7aa !important;
+ }
+ .success.lighten-1 {
+ color: #1be7aa !important;
+ }
+ .btn-success.btn-lighten-1 {
+ border-color: #11a578 !important;
+ }
+ .btn-success.btn-lighten-1:hover {
+ border-color: #11a578 !important;
+ background-color: #0f8e67 !important;
+ }
+ .btn-success.btn-lighten-1:active,
+ .btn-success.btn-lighten-1:focus {
+ border-color: #0f8e67 !important;
+ background-color: #0c7757 !important;
+ }
+ .btn-outline-success.btn-outline-lighten-1 {
+ border-color: #1be7aa !important;
+ color: #1be7aa !important;
+ }
+ .btn-outline-success.btn-outline-lighten-1:hover {
+ background-color: #1be7aa !important;
+ }
+ .border-success.border-lighten-1 {
+ border: 1px solid #1be7aa !important;
+ }
+ .border-top-success.border-top-lighten-1 {
+ border-top: 1px solid #1be7aa !important;
+ }
+ .border-bottom-success.border-bottom-lighten-1 {
+ border-bottom: 1px solid #1be7aa !important;
+ }
+ .border-left-success.border-left-lighten-1 {
+ border-left: 1px solid #1be7aa !important;
+ }
+ .border-right-success.border-right-lighten-1 {
+ border-right: 1px solid #1be7aa !important;
+ }
+ .overlay-success.overlay-lighten-1 {
+ background: #1be7aa;
+ background: rgba(27, 231, 170, 0.8);
+ }
+ .success {
+ color: #16d39a !important;
+ }
+ .bg-success {
+ background-color: #16d39a !important;
+ }
+ .bg-success .card-footer,
+ .bg-success .card-header {
+ background-color: transparent;
+ }
+ .alert-success {
+ border-color: #45ecb9 !important;
+ background-color: #45ecb9 !important;
+ color: #053124 !important;
+ }
+ .alert-success .alert-link {
+ color: #010c09 !important;
+ }
+ .bullet.bullet-success {
+ background-color: #16d39a;
+ }
+ .bg-light-success {
+ background-color: rgba(22, 211, 154, 0.15);
+ }
+ .bg-success.badge-glow,
+ .border-success.badge-glow {
+ box-shadow: 0 0 10px #16d39a;
+ }
+ .overlay-success {
+ background: #16d39a;
+ background: rgba(22, 211, 154, 0.8);
+ }
+ .btn-success {
+ background-color: #16d39a !important;
+ color: #fff;
+ }
+ .btn-success:hover {
+ border-color: #14bc89 !important;
+ background-color: #1be7aa !important;
+ color: #fff !important;
+ }
+ .btn-success:active,
+ .btn-success:focus {
+ border-color: #11a578 !important;
+ background-color: #0f8e67 !important;
+ color: #fff !important;
+ }
+ .btn-outline-success {
+ border-color: #16d39a;
+ background-color: transparent;
+ color: #16d39a;
+ }
+ .btn-outline-success:hover {
+ background-color: #16d39a;
+ color: #fff !important;
+ }
+ .widget-timeline .timeline-items.timeline-icon-success:before {
+ background-color: #16d39a;
+ }
+ input[type="checkbox"].bg-success + .custom-control-label:before,
+ input[type="radio"].bg-success + .custom-control-label:before {
+ background-color: #16d39a !important;
+ }
+ .bg-success.bg-darken-1,
+ .btn-success.btn-darken-1 {
+ background-color: #14bc89 !important;
+ }
+ .border-success {
+ border: 1px solid #16d39a !important;
+ }
+ .border-top-success {
+ border-top: 1px solid #16d39a;
+ }
+ .border-bottom-success {
+ border-bottom: 1px solid #16d39a;
+ }
+ .border-left-success {
+ border-left: 1px solid #16d39a;
+ }
+ .border-right-success {
+ border-right: 1px solid #16d39a;
+ }
+ .success.darken-1 {
+ color: #14bc89 !important;
+ }
+ .btn-success.btn-darken-1 {
+ border-color: #11a578 !important;
+ }
+ .btn-success.btn-darken-1:hover {
+ border-color: #11a578 !important;
+ background-color: #0f8e67 !important;
+ }
+ .btn-success.btn-darken-1:active,
+ .btn-success.btn-darken-1:focus {
+ border-color: #0f8e67 !important;
+ background-color: #0c7757 !important;
+ }
+ .btn-outline-success.btn-outline-darken-1 {
+ border-color: #14bc89 !important;
+ color: #14bc89 !important;
+ }
+ .btn-outline-success.btn-outline-darken-1:hover {
+ background-color: #14bc89 !important;
+ }
+ .border-success.border-darken-1 {
+ border: 1px solid #14bc89 !important;
+ }
+ .border-top-success.border-top-darken-1 {
+ border-top: 1px solid #14bc89 !important;
+ }
+ .border-bottom-success.border-bottom-darken-1 {
+ border-bottom: 1px solid #14bc89 !important;
+ }
+ .border-left-success.border-left-darken-1 {
+ border-left: 1px solid #14bc89 !important;
+ }
+ .border-right-success.border-right-darken-1 {
+ border-right: 1px solid #14bc89 !important;
+ }
+ .overlay-success.overlay-darken-1 {
+ background: #14bc89;
+ background: rgba(20, 188, 137, 0.8);
+ }
+ .bg-success.bg-darken-2,
+ .btn-success.btn-darken-2 {
+ background-color: #11a578 !important;
+ }
+ .success.darken-2 {
+ color: #11a578 !important;
+ }
+ .btn-success.btn-darken-2 {
+ border-color: #11a578 !important;
+ }
+ .btn-success.btn-darken-2:hover {
+ border-color: #11a578 !important;
+ background-color: #0f8e67 !important;
+ }
+ .btn-success.btn-darken-2:active,
+ .btn-success.btn-darken-2:focus {
+ border-color: #0f8e67 !important;
+ background-color: #0c7757 !important;
+ }
+ .btn-outline-success.btn-outline-darken-2 {
+ border-color: #11a578 !important;
+ color: #11a578 !important;
+ }
+ .btn-outline-success.btn-outline-darken-2:hover {
+ background-color: #11a578 !important;
+ }
+ .border-success.border-darken-2 {
+ border: 1px solid #11a578 !important;
+ }
+ .border-top-success.border-top-darken-2 {
+ border-top: 1px solid #11a578 !important;
+ }
+ .border-bottom-success.border-bottom-darken-2 {
+ border-bottom: 1px solid #11a578 !important;
+ }
+ .border-left-success.border-left-darken-2 {
+ border-left: 1px solid #11a578 !important;
+ }
+ .border-right-success.border-right-darken-2 {
+ border-right: 1px solid #11a578 !important;
+ }
+ .overlay-success.overlay-darken-2 {
+ background: #11a578;
+ background: rgba(17, 165, 120, 0.8);
+ }
+ .success.darken-3 {
+ color: #0f8e67 !important;
+ }
+ .bg-success.bg-darken-3 {
+ background-color: #0f8e67 !important;
+ }
+ .btn-success.btn-darken-3,
+ .btn-success.btn-darken-3:hover {
+ border-color: #11a578 !important;
+ background-color: #0f8e67 !important;
+ }
+ .btn-success.btn-darken-3:active,
+ .btn-success.btn-darken-3:focus {
+ border-color: #0f8e67 !important;
+ background-color: #0c7757 !important;
+ }
+ .btn-outline-success.btn-outline-darken-3 {
+ border-color: #0f8e67 !important;
+ color: #0f8e67 !important;
+ }
+ .btn-outline-success.btn-outline-darken-3:hover {
+ background-color: #0f8e67 !important;
+ }
+ .border-success.border-darken-3 {
+ border: 1px solid #0f8e67 !important;
+ }
+ .border-top-success.border-top-darken-3 {
+ border-top: 1px solid #0f8e67 !important;
+ }
+ .border-bottom-success.border-bottom-darken-3 {
+ border-bottom: 1px solid #0f8e67 !important;
+ }
+ .border-left-success.border-left-darken-3 {
+ border-left: 1px solid #0f8e67 !important;
+ }
+ .border-right-success.border-right-darken-3 {
+ border-right: 1px solid #0f8e67 !important;
+ }
+ .overlay-success.overlay-darken-3 {
+ background: #0f8e67;
+ background: rgba(15, 142, 103, 0.8);
+ }
+ .bg-success.bg-darken-4,
+ .btn-success.btn-darken-4 {
+ background-color: #0c7757 !important;
+ }
+ .success.darken-4 {
+ color: #0c7757 !important;
+ }
+ .btn-success.btn-darken-4 {
+ border-color: #11a578 !important;
+ }
+ .btn-success.btn-darken-4:hover {
+ border-color: #11a578 !important;
+ background-color: #0f8e67 !important;
+ }
+ .btn-success.btn-darken-4:active,
+ .btn-success.btn-darken-4:focus {
+ border-color: #0f8e67 !important;
+ background-color: #0c7757 !important;
+ }
+ .btn-outline-success.btn-outline-darken-4 {
+ border-color: #0c7757 !important;
+ color: #0c7757 !important;
+ }
+ .btn-outline-success.btn-outline-darken-4:hover {
+ background-color: #0c7757 !important;
+ }
+ .border-success.border-darken-4 {
+ border: 1px solid #0c7757 !important;
+ }
+ .border-top-success.border-top-darken-4 {
+ border-top: 1px solid #0c7757 !important;
+ }
+ .border-bottom-success.border-bottom-darken-4 {
+ border-bottom: 1px solid #0c7757 !important;
+ }
+ .border-left-success.border-left-darken-4 {
+ border-left: 1px solid #0c7757 !important;
+ }
+ .border-right-success.border-right-darken-4 {
+ border-right: 1px solid #0c7757 !important;
+ }
+ .overlay-success.overlay-darken-4 {
+ background: #0c7757;
+ background: rgba(12, 119, 87, 0.8);
+ }
+ .bg-success.bg-accent-1,
+ .btn-success.btn-accent-1 {
+ background-color: #e1fff1 !important;
+ }
+ .success.accent-1 {
+ color: #e1fff1 !important;
+ }
+ .btn-success.btn-accent-1 {
+ border-color: #11a578 !important;
+ }
+ .btn-success.btn-accent-1:hover {
+ border-color: #11a578 !important;
+ background-color: #0f8e67 !important;
+ }
+ .btn-success.btn-accent-1:active,
+ .btn-success.btn-accent-1:focus {
+ border-color: #0f8e67 !important;
+ background-color: #0c7757 !important;
+ }
+ .btn-outline-success.btn-outline-accent-1 {
+ border-color: #e1fff1 !important;
+ color: #e1fff1 !important;
+ }
+ .btn-outline-success.btn-outline-accent-1:hover {
+ background-color: #e1fff1 !important;
+ }
+ .border-success.border-accent-1 {
+ border: 1px solid #e1fff1 !important;
+ }
+ .border-top-success.border-top-accent-1 {
+ border-top: 1px solid #e1fff1 !important;
+ }
+ .border-bottom-success.border-bottom-accent-1 {
+ border-bottom: 1px solid #e1fff1 !important;
+ }
+ .border-left-success.border-left-accent-1 {
+ border-left: 1px solid #e1fff1 !important;
+ }
+ .border-right-success.border-right-accent-1 {
+ border-right: 1px solid #e1fff1 !important;
+ }
+ .overlay-success.overlay-accent-1 {
+ background: #e1fff1;
+ background: rgba(225, 255, 241, 0.8);
+ }
+ .bg-success.bg-accent-2,
+ .btn-success.btn-accent-2 {
+ background-color: #aeffd9 !important;
+ }
+ .success.accent-2 {
+ color: #aeffd9 !important;
+ }
+ .btn-success.btn-accent-2 {
+ border-color: #11a578 !important;
+ }
+ .btn-success.btn-accent-2:hover {
+ border-color: #11a578 !important;
+ background-color: #0f8e67 !important;
+ }
+ .btn-success.btn-accent-2:active,
+ .btn-success.btn-accent-2:focus {
+ border-color: #0f8e67 !important;
+ background-color: #0c7757 !important;
+ }
+ .btn-outline-success.btn-outline-accent-2 {
+ border-color: #aeffd9 !important;
+ color: #aeffd9 !important;
+ }
+ .btn-outline-success.btn-outline-accent-2:hover {
+ background-color: #aeffd9 !important;
+ }
+ .border-success.border-accent-2 {
+ border: 1px solid #aeffd9 !important;
+ }
+ .border-top-success.border-top-accent-2 {
+ border-top: 1px solid #aeffd9 !important;
+ }
+ .border-bottom-success.border-bottom-accent-2 {
+ border-bottom: 1px solid #aeffd9 !important;
+ }
+ .border-left-success.border-left-accent-2 {
+ border-left: 1px solid #aeffd9 !important;
+ }
+ .border-right-success.border-right-accent-2 {
+ border-right: 1px solid #aeffd9 !important;
+ }
+ .overlay-success.overlay-accent-2 {
+ background: #aeffd9;
+ background: rgba(174, 255, 217, 0.8);
+ }
+ .bg-success.bg-accent-3,
+ .btn-success.btn-accent-3 {
+ background-color: #7bffc1 !important;
+ }
+ .success.accent-3 {
+ color: #7bffc1 !important;
+ }
+ .btn-success.btn-accent-3 {
+ border-color: #11a578 !important;
+ }
+ .btn-success.btn-accent-3:hover {
+ border-color: #11a578 !important;
+ background-color: #0f8e67 !important;
+ }
+ .btn-success.btn-accent-3:active,
+ .btn-success.btn-accent-3:focus {
+ border-color: #0f8e67 !important;
+ background-color: #0c7757 !important;
+ }
+ .btn-outline-success.btn-outline-accent-3 {
+ border-color: #7bffc1 !important;
+ color: #7bffc1 !important;
+ }
+ .btn-outline-success.btn-outline-accent-3:hover {
+ background-color: #7bffc1 !important;
+ }
+ .border-success.border-accent-3 {
+ border: 1px solid #7bffc1 !important;
+ }
+ .border-top-success.border-top-accent-3 {
+ border-top: 1px solid #7bffc1 !important;
+ }
+ .border-bottom-success.border-bottom-accent-3 {
+ border-bottom: 1px solid #7bffc1 !important;
+ }
+ .border-left-success.border-left-accent-3 {
+ border-left: 1px solid #7bffc1 !important;
+ }
+ .border-right-success.border-right-accent-3 {
+ border-right: 1px solid #7bffc1 !important;
+ }
+ .overlay-success.overlay-accent-3 {
+ background: #7bffc1;
+ background: rgba(123, 255, 193, 0.8);
+ }
+ .bg-success.bg-accent-4,
+ .btn-success.btn-accent-4 {
+ background-color: #62ffb5 !important;
+ }
+ .success.accent-4 {
+ color: #62ffb5 !important;
+ }
+ .btn-success.btn-accent-4 {
+ border-color: #11a578 !important;
+ }
+ .btn-success.btn-accent-4:hover {
+ border-color: #11a578 !important;
+ background-color: #0f8e67 !important;
+ }
+ .btn-success.btn-accent-4:active,
+ .btn-success.btn-accent-4:focus {
+ border-color: #0f8e67 !important;
+ background-color: #0c7757 !important;
+ }
+ .btn-outline-success.btn-outline-accent-4 {
+ border-color: #62ffb5 !important;
+ color: #62ffb5 !important;
+ }
+ .btn-outline-success.btn-outline-accent-4:hover {
+ background-color: #62ffb5 !important;
+ }
+ input:focus ~ .bg-success {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #62ffb5 !important;
+ }
+ .border-success.border-accent-4 {
+ border: 1px solid #62ffb5 !important;
+ }
+ .border-top-success.border-top-accent-4 {
+ border-top: 1px solid #62ffb5 !important;
+ }
+ .border-bottom-success.border-bottom-accent-4 {
+ border-bottom: 1px solid #62ffb5 !important;
+ }
+ .border-left-success.border-left-accent-4 {
+ border-left: 1px solid #62ffb5 !important;
+ }
+ .border-right-success.border-right-accent-4 {
+ border-right: 1px solid #62ffb5 !important;
+ }
+ .btn-info.btn-lighten-5,
+ .btn-info.btn-lighten-5:hover {
+ border-color: #1ab0c3 !important;
+ }
+ .overlay-success.overlay-accent-4 {
+ background: #62ffb5;
+ background: rgba(98, 255, 181, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="success"]:before {
+ background-color: #62ffb5;
+ }
+ .bg-info.bg-lighten-5,
+ .btn-info.btn-lighten-5 {
+ background-color: #9ee8f2 !important;
+ }
+ .info.lighten-5 {
+ color: #9ee8f2 !important;
+ }
+ .btn-info.btn-lighten-5:hover {
+ background-color: #179bad !important;
+ }
+ .btn-info.btn-lighten-5:active,
+ .btn-info.btn-lighten-5:focus {
+ border-color: #179bad !important;
+ background-color: #148796 !important;
+ }
+ .btn-outline-info.btn-outline-lighten-5 {
+ border-color: #9ee8f2 !important;
+ color: #9ee8f2 !important;
+ }
+ .btn-outline-info.btn-outline-lighten-5:hover {
+ background-color: #9ee8f2 !important;
+ }
+ .border-info.border-lighten-5 {
+ border: 1px solid #9ee8f2 !important;
+ }
+ .border-top-info.border-top-lighten-5 {
+ border-top: 1px solid #9ee8f2 !important;
+ }
+ .border-bottom-info.border-bottom-lighten-5 {
+ border-bottom: 1px solid #9ee8f2 !important;
+ }
+ .border-left-info.border-left-lighten-5 {
+ border-left: 1px solid #9ee8f2 !important;
+ }
+ .border-right-info.border-right-lighten-5 {
+ border-right: 1px solid #9ee8f2 !important;
+ }
+ .btn-info.btn-lighten-4,
+ .btn-info.btn-lighten-4:hover {
+ border-color: #1ab0c3 !important;
+ }
+ .overlay-info.overlay-lighten-5 {
+ background: #9ee8f2;
+ background: rgba(158, 232, 242, 0.8);
+ }
+ .bg-info.bg-lighten-4,
+ .btn-info.btn-lighten-4 {
+ background-color: #87e3ef !important;
+ }
+ .info.lighten-4 {
+ color: #87e3ef !important;
+ }
+ .btn-info.btn-lighten-4:hover {
+ background-color: #179bad !important;
+ }
+ .btn-info.btn-lighten-4:active,
+ .btn-info.btn-lighten-4:focus {
+ border-color: #179bad !important;
+ background-color: #148796 !important;
+ }
+ .btn-outline-info.btn-outline-lighten-4 {
+ border-color: #87e3ef !important;
+ color: #87e3ef !important;
+ }
+ .btn-outline-info.btn-outline-lighten-4:hover {
+ background-color: #87e3ef !important;
+ }
+ .border-info.border-lighten-4 {
+ border: 1px solid #87e3ef !important;
+ }
+ .border-top-info.border-top-lighten-4 {
+ border-top: 1px solid #87e3ef !important;
+ }
+ .border-bottom-info.border-bottom-lighten-4 {
+ border-bottom: 1px solid #87e3ef !important;
+ }
+ .border-left-info.border-left-lighten-4 {
+ border-left: 1px solid #87e3ef !important;
+ }
+ .border-right-info.border-right-lighten-4 {
+ border-right: 1px solid #87e3ef !important;
+ }
+ .btn-info.btn-lighten-3,
+ .btn-info.btn-lighten-3:hover {
+ border-color: #1ab0c3 !important;
+ }
+ .overlay-info.overlay-lighten-4 {
+ background: #87e3ef;
+ background: rgba(135, 227, 239, 0.8);
+ }
+ .bg-info.bg-lighten-3,
+ .btn-info.btn-lighten-3 {
+ background-color: #71deec !important;
+ }
+ .info.lighten-3 {
+ color: #71deec !important;
+ }
+ .btn-info.btn-lighten-3:hover {
+ background-color: #179bad !important;
+ }
+ .btn-info.btn-lighten-3:active,
+ .btn-info.btn-lighten-3:focus {
+ border-color: #179bad !important;
+ background-color: #148796 !important;
+ }
+ .btn-outline-info.btn-outline-lighten-3 {
+ border-color: #71deec !important;
+ color: #71deec !important;
+ }
+ .btn-outline-info.btn-outline-lighten-3:hover {
+ background-color: #71deec !important;
+ }
+ .border-info.border-lighten-3 {
+ border: 1px solid #71deec !important;
+ }
+ .border-top-info.border-top-lighten-3 {
+ border-top: 1px solid #71deec !important;
+ }
+ .border-bottom-info.border-bottom-lighten-3 {
+ border-bottom: 1px solid #71deec !important;
+ }
+ .border-left-info.border-left-lighten-3 {
+ border-left: 1px solid #71deec !important;
+ }
+ .border-right-info.border-right-lighten-3 {
+ border-right: 1px solid #71deec !important;
+ }
+ .btn-info.btn-lighten-2,
+ .btn-info.btn-lighten-2:hover {
+ border-color: #1ab0c3 !important;
+ }
+ .overlay-info.overlay-lighten-3 {
+ background: #71deec;
+ background: rgba(113, 222, 236, 0.8);
+ }
+ .bg-info.bg-lighten-2,
+ .btn-info.btn-lighten-2 {
+ background-color: #5ad9e9 !important;
+ }
+ .info.lighten-2 {
+ color: #5ad9e9 !important;
+ }
+ .btn-info.btn-lighten-2:hover {
+ background-color: #179bad !important;
+ }
+ .btn-info.btn-lighten-2:active,
+ .btn-info.btn-lighten-2:focus {
+ border-color: #179bad !important;
+ background-color: #148796 !important;
+ }
+ .btn-outline-info.btn-outline-lighten-2 {
+ border-color: #5ad9e9 !important;
+ color: #5ad9e9 !important;
+ }
+ .btn-outline-info.btn-outline-lighten-2:hover {
+ background-color: #5ad9e9 !important;
+ }
+ .border-info.border-lighten-2 {
+ border: 1px solid #5ad9e9 !important;
+ }
+ .border-top-info.border-top-lighten-2 {
+ border-top: 1px solid #5ad9e9 !important;
+ }
+ .border-bottom-info.border-bottom-lighten-2 {
+ border-bottom: 1px solid #5ad9e9 !important;
+ }
+ .border-left-info.border-left-lighten-2 {
+ border-left: 1px solid #5ad9e9 !important;
+ }
+ .border-right-info.border-right-lighten-2 {
+ border-right: 1px solid #5ad9e9 !important;
+ }
+ .btn-info.btn-lighten-1,
+ .btn-info.btn-lighten-1:hover {
+ border-color: #1ab0c3 !important;
+ }
+ .overlay-info.overlay-lighten-2 {
+ background: #5ad9e9;
+ background: rgba(90, 217, 233, 0.8);
+ }
+ .bg-info.bg-lighten-1,
+ .btn-info.btn-lighten-1 {
+ background-color: #44d3e6 !important;
+ }
+ .info.lighten-1 {
+ color: #44d3e6 !important;
+ }
+ .btn-info.btn-lighten-1:hover {
+ background-color: #179bad !important;
+ }
+ .btn-info.btn-lighten-1:active,
+ .btn-info.btn-lighten-1:focus {
+ border-color: #179bad !important;
+ background-color: #148796 !important;
+ }
+ .btn-outline-info.btn-outline-lighten-1 {
+ border-color: #44d3e6 !important;
+ color: #44d3e6 !important;
+ }
+ .btn-outline-info.btn-outline-lighten-1:hover {
+ background-color: #44d3e6 !important;
+ }
+ .border-info.border-lighten-1 {
+ border: 1px solid #44d3e6 !important;
+ }
+ .border-top-info.border-top-lighten-1 {
+ border-top: 1px solid #44d3e6 !important;
+ }
+ .border-bottom-info.border-bottom-lighten-1 {
+ border-bottom: 1px solid #44d3e6 !important;
+ }
+ .border-left-info.border-left-lighten-1 {
+ border-left: 1px solid #44d3e6 !important;
+ }
+ .border-right-info.border-right-lighten-1 {
+ border-right: 1px solid #44d3e6 !important;
+ }
+ .overlay-info.overlay-lighten-1 {
+ background: #44d3e6;
+ background: rgba(68, 211, 230, 0.8);
+ }
+ .info {
+ color: #2dcee3 !important;
+ }
+ .bg-info {
+ background-color: #ababab !important;
+ }
+ .bg-info .card-footer,
+ .bg-info .card-header {
+ background-color: transparent;
+ }
+ .alert-info {
+ border-color: #6cddeb !important;
+ background-color: #6cddeb !important;
+ color: #0b4a53 !important;
+ }
+ .alert-info .alert-link {
+ color: #062a2f !important;
+ }
+ .bullet.bullet-info {
+ background-color: #2dcee3;
+ }
+ .bg-light-info {
+ background-color: rgba(45, 206, 227, 0.15);
+ }
+ .bg-info.badge-glow,
+ .border-info.badge-glow {
+ box-shadow: 0 0 10px #2dcee3;
+ }
+ .overlay-info {
+ background: #2dcee3;
+ background: rgba(45, 206, 227, 0.8);
+ }
+ .btn-info {
+ background-color: #2dcee3 !important;
+ color: #fff;
+ }
+ .btn-info:hover {
+ border-color: #1dc4da !important;
+ background-color: #44d3e6 !important;
+ color: #fff !important;
+ }
+ .btn-info:active,
+ .btn-info:focus {
+ border-color: #1ab0c3 !important;
+ background-color: #179bad !important;
+ color: #fff !important;
+ }
+ .btn-outline-info {
+ border-color: #2dcee3;
+ background-color: transparent;
+ color: #2dcee3;
+ }
+ .btn-outline-info:hover,
+ .widget-timeline .timeline-items.timeline-icon-info:before {
+ background-color: #2dcee3;
+ }
+ .btn-outline-info:hover {
+ color: #fff !important;
+ }
+ input[type="checkbox"].bg-info + .custom-control-label:before,
+ input[type="radio"].bg-info + .custom-control-label:before {
+ background-color: #2dcee3 !important;
+ }
+ .bg-info.bg-darken-1,
+ .btn-info.btn-darken-1 {
+ background-color: #1dc4da !important;
+ }
+ .border-info {
+ border: 1px solid #2dcee3 !important;
+ }
+ .border-top-info {
+ border-top: 1px solid #2dcee3;
+ }
+ .border-bottom-info {
+ border-bottom: 1px solid #2dcee3;
+ }
+ .border-left-info {
+ border-left: 1px solid #2dcee3;
+ }
+ .border-right-info {
+ border-right: 1px solid #2dcee3;
+ }
+ .info.darken-1 {
+ color: #1dc4da !important;
+ }
+ .btn-info.btn-darken-1 {
+ border-color: #1ab0c3 !important;
+ }
+ .btn-info.btn-darken-1:hover {
+ border-color: #1ab0c3 !important;
+ background-color: #179bad !important;
+ }
+ .btn-info.btn-darken-1:active,
+ .btn-info.btn-darken-1:focus {
+ border-color: #179bad !important;
+ background-color: #148796 !important;
+ }
+ .btn-outline-info.btn-outline-darken-1 {
+ border-color: #1dc4da !important;
+ color: #1dc4da !important;
+ }
+ .btn-outline-info.btn-outline-darken-1:hover {
+ background-color: #1dc4da !important;
+ }
+ .border-info.border-darken-1 {
+ border: 1px solid #1dc4da !important;
+ }
+ .border-top-info.border-top-darken-1 {
+ border-top: 1px solid #1dc4da !important;
+ }
+ .border-bottom-info.border-bottom-darken-1 {
+ border-bottom: 1px solid #1dc4da !important;
+ }
+ .border-left-info.border-left-darken-1 {
+ border-left: 1px solid #1dc4da !important;
+ }
+ .border-right-info.border-right-darken-1 {
+ border-right: 1px solid #1dc4da !important;
+ }
+ .btn-info.btn-darken-2,
+ .btn-info.btn-darken-2:hover {
+ border-color: #1ab0c3 !important;
+ }
+ .overlay-info.overlay-darken-1 {
+ background: #1dc4da;
+ background: rgba(29, 196, 218, 0.8);
+ }
+ .bg-info.bg-darken-2,
+ .btn-info.btn-darken-2 {
+ background-color: #1ab0c3 !important;
+ }
+ .info.darken-2 {
+ color: #1ab0c3 !important;
+ }
+ .btn-info.btn-darken-2:hover {
+ background-color: #179bad !important;
+ }
+ .btn-info.btn-darken-2:active,
+ .btn-info.btn-darken-2:focus {
+ border-color: #179bad !important;
+ background-color: #148796 !important;
+ }
+ .btn-outline-info.btn-outline-darken-2 {
+ border-color: #1ab0c3 !important;
+ color: #1ab0c3 !important;
+ }
+ .btn-outline-info.btn-outline-darken-2:hover {
+ background-color: #1ab0c3 !important;
+ }
+ .border-info.border-darken-2 {
+ border: 1px solid #1ab0c3 !important;
+ }
+ .border-top-info.border-top-darken-2 {
+ border-top: 1px solid #1ab0c3 !important;
+ }
+ .border-bottom-info.border-bottom-darken-2 {
+ border-bottom: 1px solid #1ab0c3 !important;
+ }
+ .border-left-info.border-left-darken-2 {
+ border-left: 1px solid #1ab0c3 !important;
+ }
+ .border-right-info.border-right-darken-2 {
+ border-right: 1px solid #1ab0c3 !important;
+ }
+ .overlay-info.overlay-darken-2 {
+ background: #1ab0c3;
+ background: rgba(26, 176, 195, 0.8);
+ }
+ .info.darken-3 {
+ color: #179bad !important;
+ }
+ .bg-info.bg-darken-3 {
+ background-color: #179bad !important;
+ }
+ .btn-info.btn-darken-3,
+ .btn-info.btn-darken-3:hover {
+ border-color: #1ab0c3 !important;
+ background-color: #179bad !important;
+ }
+ .btn-info.btn-darken-3:active,
+ .btn-info.btn-darken-3:focus {
+ border-color: #179bad !important;
+ background-color: #148796 !important;
+ }
+ .btn-outline-info.btn-outline-darken-3 {
+ border-color: #179bad !important;
+ color: #179bad !important;
+ }
+ .btn-outline-info.btn-outline-darken-3:hover {
+ background-color: #179bad !important;
+ }
+ .border-info.border-darken-3 {
+ border: 1px solid #179bad !important;
+ }
+ .border-top-info.border-top-darken-3 {
+ border-top: 1px solid #179bad !important;
+ }
+ .border-bottom-info.border-bottom-darken-3 {
+ border-bottom: 1px solid #179bad !important;
+ }
+ .border-left-info.border-left-darken-3 {
+ border-left: 1px solid #179bad !important;
+ }
+ .border-right-info.border-right-darken-3 {
+ border-right: 1px solid #179bad !important;
+ }
+ .btn-info.btn-darken-4,
+ .btn-info.btn-darken-4:hover {
+ border-color: #1ab0c3 !important;
+ }
+ .overlay-info.overlay-darken-3 {
+ background: #179bad;
+ background: rgba(23, 155, 173, 0.8);
+ }
+ .bg-info.bg-darken-4,
+ .btn-info.btn-darken-4 {
+ background-color: #148796 !important;
+ }
+ .info.darken-4 {
+ color: #148796 !important;
+ }
+ .btn-info.btn-darken-4:hover {
+ background-color: #179bad !important;
+ }
+ .btn-info.btn-darken-4:active,
+ .btn-info.btn-darken-4:focus {
+ border-color: #179bad !important;
+ background-color: #148796 !important;
+ }
+ .btn-outline-info.btn-outline-darken-4 {
+ border-color: #148796 !important;
+ color: #148796 !important;
+ }
+ .btn-outline-info.btn-outline-darken-4:hover {
+ background-color: #148796 !important;
+ }
+ .border-info.border-darken-4 {
+ border: 1px solid #148796 !important;
+ }
+ .border-top-info.border-top-darken-4 {
+ border-top: 1px solid #148796 !important;
+ }
+ .border-bottom-info.border-bottom-darken-4 {
+ border-bottom: 1px solid #148796 !important;
+ }
+ .border-left-info.border-left-darken-4 {
+ border-left: 1px solid #148796 !important;
+ }
+ .border-right-info.border-right-darken-4 {
+ border-right: 1px solid #148796 !important;
+ }
+ .btn-info.btn-accent-1,
+ .btn-info.btn-accent-1:hover {
+ border-color: #1ab0c3 !important;
+ }
+ .overlay-info.overlay-darken-4 {
+ background: #148796;
+ background: rgba(20, 135, 150, 0.8);
+ }
+ .bg-info.bg-accent-1,
+ .btn-info.btn-accent-1 {
+ background-color: #feffff !important;
+ }
+ .info.accent-1 {
+ color: #feffff !important;
+ }
+ .btn-info.btn-accent-1:hover {
+ background-color: #179bad !important;
+ }
+ .btn-info.btn-accent-1:active,
+ .btn-info.btn-accent-1:focus {
+ border-color: #179bad !important;
+ background-color: #148796 !important;
+ }
+ .btn-outline-info.btn-outline-accent-1 {
+ border-color: #feffff !important;
+ color: #feffff !important;
+ }
+ .btn-outline-info.btn-outline-accent-1:hover {
+ background-color: #feffff !important;
+ }
+ .border-info.border-accent-1 {
+ border: 1px solid #feffff !important;
+ }
+ .border-top-info.border-top-accent-1 {
+ border-top: 1px solid #feffff !important;
+ }
+ .border-bottom-info.border-bottom-accent-1 {
+ border-bottom: 1px solid #feffff !important;
+ }
+ .border-left-info.border-left-accent-1 {
+ border-left: 1px solid #feffff !important;
+ }
+ .border-right-info.border-right-accent-1 {
+ border-right: 1px solid #feffff !important;
+ }
+ .btn-info.btn-accent-2,
+ .btn-info.btn-accent-2:hover {
+ border-color: #1ab0c3 !important;
+ }
+ .overlay-info.overlay-accent-1 {
+ background: #feffff;
+ background: rgba(254, 255, 255, 0.8);
+ }
+ .bg-info.bg-accent-2,
+ .btn-info.btn-accent-2 {
+ background-color: #cbf5ff !important;
+ }
+ .info.accent-2 {
+ color: #cbf5ff !important;
+ }
+ .btn-info.btn-accent-2:hover {
+ background-color: #179bad !important;
+ }
+ .btn-info.btn-accent-2:active,
+ .btn-info.btn-accent-2:focus {
+ border-color: #179bad !important;
+ background-color: #148796 !important;
+ }
+ .btn-outline-info.btn-outline-accent-2 {
+ border-color: #cbf5ff !important;
+ color: #cbf5ff !important;
+ }
+ .btn-outline-info.btn-outline-accent-2:hover {
+ background-color: #cbf5ff !important;
+ }
+ .border-info.border-accent-2 {
+ border: 1px solid #cbf5ff !important;
+ }
+ .border-top-info.border-top-accent-2 {
+ border-top: 1px solid #cbf5ff !important;
+ }
+ .border-bottom-info.border-bottom-accent-2 {
+ border-bottom: 1px solid #cbf5ff !important;
+ }
+ .border-left-info.border-left-accent-2 {
+ border-left: 1px solid #cbf5ff !important;
+ }
+ .border-right-info.border-right-accent-2 {
+ border-right: 1px solid #cbf5ff !important;
+ }
+ .btn-info.btn-accent-3,
+ .btn-info.btn-accent-3:hover {
+ border-color: #1ab0c3 !important;
+ }
+ .overlay-info.overlay-accent-2 {
+ background: #cbf5ff;
+ background: rgba(203, 245, 255, 0.8);
+ }
+ .bg-info.bg-accent-3,
+ .btn-info.btn-accent-3 {
+ background-color: #98ecff !important;
+ }
+ .info.accent-3 {
+ color: #98ecff !important;
+ }
+ .btn-info.btn-accent-3:hover {
+ background-color: #179bad !important;
+ }
+ .btn-info.btn-accent-3:active,
+ .btn-info.btn-accent-3:focus {
+ border-color: #179bad !important;
+ background-color: #148796 !important;
+ }
+ .btn-outline-info.btn-outline-accent-3 {
+ border-color: #98ecff !important;
+ color: #98ecff !important;
+ }
+ .btn-outline-info.btn-outline-accent-3:hover {
+ background-color: #98ecff !important;
+ }
+ .border-info.border-accent-3 {
+ border: 1px solid #98ecff !important;
+ }
+ .border-top-info.border-top-accent-3 {
+ border-top: 1px solid #98ecff !important;
+ }
+ .border-bottom-info.border-bottom-accent-3 {
+ border-bottom: 1px solid #98ecff !important;
+ }
+ .border-left-info.border-left-accent-3 {
+ border-left: 1px solid #98ecff !important;
+ }
+ .border-right-info.border-right-accent-3 {
+ border-right: 1px solid #98ecff !important;
+ }
+ .btn-info.btn-accent-4,
+ .btn-info.btn-accent-4:hover {
+ border-color: #1ab0c3 !important;
+ }
+ .overlay-info.overlay-accent-3 {
+ background: #98ecff;
+ background: rgba(152, 236, 255, 0.8);
+ }
+ .bg-info.bg-accent-4,
+ .btn-info.btn-accent-4 {
+ background-color: #7fe7ff !important;
+ }
+ .info.accent-4 {
+ color: #7fe7ff !important;
+ }
+ .btn-info.btn-accent-4:hover {
+ background-color: #179bad !important;
+ }
+ .btn-info.btn-accent-4:active,
+ .btn-info.btn-accent-4:focus {
+ border-color: #179bad !important;
+ background-color: #148796 !important;
+ }
+ .btn-outline-info.btn-outline-accent-4 {
+ border-color: #7fe7ff !important;
+ color: #7fe7ff !important;
+ }
+ .btn-outline-info.btn-outline-accent-4:hover {
+ background-color: #7fe7ff !important;
+ }
+ input:focus ~ .bg-info {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #7fe7ff !important;
+ }
+ .border-info.border-accent-4 {
+ border: 1px solid #7fe7ff !important;
+ }
+ .border-top-info.border-top-accent-4 {
+ border-top: 1px solid #7fe7ff !important;
+ }
+ .border-bottom-info.border-bottom-accent-4 {
+ border-bottom: 1px solid #7fe7ff !important;
+ }
+ .border-left-info.border-left-accent-4 {
+ border-left: 1px solid #7fe7ff !important;
+ }
+ .border-right-info.border-right-accent-4 {
+ border-right: 1px solid #7fe7ff !important;
+ }
+ .overlay-info.overlay-accent-4 {
+ background: #7fe7ff;
+ background: rgba(127, 231, 255, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="info"]:before {
+ background-color: #7fe7ff;
+ }
+ .bg-warning.bg-lighten-5,
+ .btn-warning.btn-lighten-5 {
+ background-color: #fffdfd !important;
+ }
+ .warning.lighten-5 {
+ color: #fffdfd !important;
+ }
+ .btn-warning.btn-lighten-5 {
+ border-color: #ff864a !important;
+ }
+ .btn-warning.btn-lighten-5:hover {
+ border-color: #ff864a !important;
+ background-color: #ff7531 !important;
+ }
+ .btn-warning.btn-lighten-5:active,
+ .btn-warning.btn-lighten-5:focus {
+ border-color: #ff7531 !important;
+ background-color: #ff6417 !important;
+ }
+ .btn-outline-warning.btn-outline-lighten-5 {
+ border-color: #fffdfd !important;
+ color: #fffdfd !important;
+ }
+ .btn-outline-warning.btn-outline-lighten-5:hover {
+ background-color: #fffdfd !important;
+ }
+ .border-warning.border-lighten-5 {
+ border: 1px solid #fffdfd !important;
+ }
+ .border-top-warning.border-top-lighten-5 {
+ border-top: 1px solid #fffdfd !important;
+ }
+ .border-bottom-warning.border-bottom-lighten-5 {
+ border-bottom: 1px solid #fffdfd !important;
+ }
+ .border-left-warning.border-left-lighten-5 {
+ border-left: 1px solid #fffdfd !important;
+ }
+ .border-right-warning.border-right-lighten-5 {
+ border-right: 1px solid #fffdfd !important;
+ }
+ .overlay-warning.overlay-lighten-5 {
+ background: #fffdfd;
+ background: rgba(255, 253, 253, 0.8);
+ }
+ .bg-warning.bg-lighten-4,
+ .btn-warning.btn-lighten-4 {
+ background-color: #ffece3 !important;
+ }
+ .warning.lighten-4 {
+ color: #ffece3 !important;
+ }
+ .btn-warning.btn-lighten-4 {
+ border-color: #ff864a !important;
+ }
+ .btn-warning.btn-lighten-4:hover {
+ border-color: #ff864a !important;
+ background-color: #ff7531 !important;
+ }
+ .btn-warning.btn-lighten-4:active,
+ .btn-warning.btn-lighten-4:focus {
+ border-color: #ff7531 !important;
+ background-color: #ff6417 !important;
+ }
+ .btn-outline-warning.btn-outline-lighten-4 {
+ border-color: #ffece3 !important;
+ color: #ffece3 !important;
+ }
+ .btn-outline-warning.btn-outline-lighten-4:hover {
+ background-color: #ffece3 !important;
+ }
+ .border-warning.border-lighten-4 {
+ border: 1px solid #ffece3 !important;
+ }
+ .border-top-warning.border-top-lighten-4 {
+ border-top: 1px solid #ffece3 !important;
+ }
+ .border-bottom-warning.border-bottom-lighten-4 {
+ border-bottom: 1px solid #ffece3 !important;
+ }
+ .border-left-warning.border-left-lighten-4 {
+ border-left: 1px solid #ffece3 !important;
+ }
+ .border-right-warning.border-right-lighten-4 {
+ border-right: 1px solid #ffece3 !important;
+ }
+ .overlay-warning.overlay-lighten-4 {
+ background: #ffece3;
+ background: rgba(255, 236, 227, 0.8);
+ }
+ .bg-warning.bg-lighten-3,
+ .btn-warning.btn-lighten-3 {
+ background-color: #ffdbca !important;
+ }
+ .warning.lighten-3 {
+ color: #ffdbca !important;
+ }
+ .btn-warning.btn-lighten-3 {
+ border-color: #ff864a !important;
+ }
+ .btn-warning.btn-lighten-3:hover {
+ border-color: #ff864a !important;
+ background-color: #ff7531 !important;
+ }
+ .btn-warning.btn-lighten-3:active,
+ .btn-warning.btn-lighten-3:focus {
+ border-color: #ff7531 !important;
+ background-color: #ff6417 !important;
+ }
+ .btn-outline-warning.btn-outline-lighten-3 {
+ border-color: #ffdbca !important;
+ color: #ffdbca !important;
+ }
+ .btn-outline-warning.btn-outline-lighten-3:hover {
+ background-color: #ffdbca !important;
+ }
+ .border-warning.border-lighten-3 {
+ border: 1px solid #ffdbca !important;
+ }
+ .border-top-warning.border-top-lighten-3 {
+ border-top: 1px solid #ffdbca !important;
+ }
+ .border-bottom-warning.border-bottom-lighten-3 {
+ border-bottom: 1px solid #ffdbca !important;
+ }
+ .border-left-warning.border-left-lighten-3 {
+ border-left: 1px solid #ffdbca !important;
+ }
+ .border-right-warning.border-right-lighten-3 {
+ border-right: 1px solid #ffdbca !important;
+ }
+ .overlay-warning.overlay-lighten-3 {
+ background: #ffdbca;
+ background: rgba(255, 219, 202, 0.8);
+ }
+ .bg-warning.bg-lighten-2,
+ .btn-warning.btn-lighten-2 {
+ background-color: #ffcab0 !important;
+ }
+ .warning.lighten-2 {
+ color: #ffcab0 !important;
+ }
+ .btn-warning.btn-lighten-2 {
+ border-color: #ff864a !important;
+ }
+ .btn-warning.btn-lighten-2:hover {
+ border-color: #ff864a !important;
+ background-color: #ff7531 !important;
+ }
+ .btn-warning.btn-lighten-2:active,
+ .btn-warning.btn-lighten-2:focus {
+ border-color: #ff7531 !important;
+ background-color: #ff6417 !important;
+ }
+ .btn-outline-warning.btn-outline-lighten-2 {
+ border-color: #ffcab0 !important;
+ color: #ffcab0 !important;
+ }
+ .btn-outline-warning.btn-outline-lighten-2:hover {
+ background-color: #ffcab0 !important;
+ }
+ .border-warning.border-lighten-2 {
+ border: 1px solid #ffcab0 !important;
+ }
+ .border-top-warning.border-top-lighten-2 {
+ border-top: 1px solid #ffcab0 !important;
+ }
+ .border-bottom-warning.border-bottom-lighten-2 {
+ border-bottom: 1px solid #ffcab0 !important;
+ }
+ .border-left-warning.border-left-lighten-2 {
+ border-left: 1px solid #ffcab0 !important;
+ }
+ .border-right-warning.border-right-lighten-2 {
+ border-right: 1px solid #ffcab0 !important;
+ }
+ .overlay-warning.overlay-lighten-2 {
+ background: #ffcab0;
+ background: rgba(255, 202, 176, 0.8);
+ }
+ .bg-warning.bg-lighten-1,
+ .btn-warning.btn-lighten-1 {
+ background-color: #ffb997 !important;
+ }
+ .warning.lighten-1 {
+ color: #ffb997 !important;
+ }
+ .btn-warning.btn-lighten-1 {
+ border-color: #ff864a !important;
+ }
+ .btn-warning.btn-lighten-1:hover {
+ border-color: #ff864a !important;
+ background-color: #ff7531 !important;
+ }
+ .btn-warning.btn-lighten-1:active,
+ .btn-warning.btn-lighten-1:focus {
+ border-color: #ff7531 !important;
+ background-color: #ff6417 !important;
+ }
+ .btn-outline-warning.btn-outline-lighten-1 {
+ border-color: #ffb997 !important;
+ color: #ffb997 !important;
+ }
+ .btn-outline-warning.btn-outline-lighten-1:hover {
+ background-color: #ffb997 !important;
+ }
+ .border-warning.border-lighten-1 {
+ border: 1px solid #ffb997 !important;
+ }
+ .border-top-warning.border-top-lighten-1 {
+ border-top: 1px solid #ffb997 !important;
+ }
+ .border-bottom-warning.border-bottom-lighten-1 {
+ border-bottom: 1px solid #ffb997 !important;
+ }
+ .border-left-warning.border-left-lighten-1 {
+ border-left: 1px solid #ffb997 !important;
+ }
+ .border-right-warning.border-right-lighten-1 {
+ border-right: 1px solid #ffb997 !important;
+ }
+ .overlay-warning.overlay-lighten-1 {
+ background: #ffb997;
+ background: rgba(255, 185, 151, 0.8);
+ }
+ .warning {
+ color: #ffa87d !important;
+ }
+ .bg-warning {
+ background-color: #ffa87d !important;
+ }
+ .bg-warning .card-footer,
+ .bg-warning .card-header {
+ background-color: transparent;
+ }
+ .alert-warning {
+ border-color: #ffd8c4 !important;
+ background-color: #ffd8c4 !important;
+ color: #ca4300 !important;
+ }
+ .alert-warning .alert-link {
+ color: #a13500 !important;
+ }
+ .bullet.bullet-warning {
+ background-color: #ffa87d;
+ }
+ .bg-light-warning {
+ background-color: rgba(255, 168, 125, 0.15);
+ }
+ .bg-warning.badge-glow,
+ .border-warning.badge-glow {
+ box-shadow: 0 0 10px #ffa87d;
+ }
+ .overlay-warning {
+ background: #ffa87d;
+ background: rgba(255, 168, 125, 0.8);
+ }
+ .btn-warning {
+ background-color: #ffa87d !important;
+ color: #fff;
+ }
+ .btn-warning:hover {
+ border-color: #ff9764 !important;
+ background-color: #ffb997 !important;
+ color: #fff !important;
+ }
+ .btn-warning:active,
+ .btn-warning:focus {
+ border-color: #ff864a !important;
+ background-color: #ff7531 !important;
+ color: #fff !important;
+ }
+ .btn-outline-warning {
+ border-color: #ffa87d;
+ background-color: transparent;
+ color: #ffa87d;
+ }
+ .btn-outline-warning:hover {
+ background-color: #ffa87d;
+ color: #fff !important;
+ }
+ .widget-timeline .timeline-items.timeline-icon-warning:before {
+ background-color: #ffa87d;
+ }
+ input[type="checkbox"].bg-warning + .custom-control-label:before,
+ input[type="radio"].bg-warning + .custom-control-label:before {
+ background-color: #ffa87d !important;
+ }
+ .bg-warning.bg-darken-1,
+ .btn-warning.btn-darken-1 {
+ background-color: #ff9764 !important;
+ }
+ .border-warning {
+ border: 1px solid #ffa87d !important;
+ }
+ .border-top-warning {
+ border-top: 1px solid #ffa87d;
+ }
+ .border-bottom-warning {
+ border-bottom: 1px solid #ffa87d;
+ }
+ .border-left-warning {
+ border-left: 1px solid #ffa87d;
+ }
+ .border-right-warning {
+ border-right: 1px solid #ffa87d;
+ }
+ .warning.darken-1 {
+ color: #ff9764 !important;
+ }
+ .btn-warning.btn-darken-1 {
+ border-color: #ff864a !important;
+ }
+ .btn-warning.btn-darken-1:hover {
+ border-color: #ff864a !important;
+ background-color: #ff7531 !important;
+ }
+ .btn-warning.btn-darken-1:active,
+ .btn-warning.btn-darken-1:focus {
+ border-color: #ff7531 !important;
+ background-color: #ff6417 !important;
+ }
+ .btn-outline-warning.btn-outline-darken-1 {
+ border-color: #ff9764 !important;
+ color: #ff9764 !important;
+ }
+ .btn-outline-warning.btn-outline-darken-1:hover {
+ background-color: #ff9764 !important;
+ }
+ .border-warning.border-darken-1 {
+ border: 1px solid #ff9764 !important;
+ }
+ .border-top-warning.border-top-darken-1 {
+ border-top: 1px solid #ff9764 !important;
+ }
+ .border-bottom-warning.border-bottom-darken-1 {
+ border-bottom: 1px solid #ff9764 !important;
+ }
+ .border-left-warning.border-left-darken-1 {
+ border-left: 1px solid #ff9764 !important;
+ }
+ .border-right-warning.border-right-darken-1 {
+ border-right: 1px solid #ff9764 !important;
+ }
+ .overlay-warning.overlay-darken-1 {
+ background: #ff9764;
+ background: rgba(255, 151, 100, 0.8);
+ }
+ .bg-warning.bg-darken-2,
+ .btn-warning.btn-darken-2 {
+ background-color: #ff864a !important;
+ }
+ .warning.darken-2 {
+ color: #ff864a !important;
+ }
+ .btn-warning.btn-darken-2 {
+ border-color: #ff864a !important;
+ }
+ .btn-warning.btn-darken-2:hover {
+ border-color: #ff864a !important;
+ background-color: #ff7531 !important;
+ }
+ .btn-warning.btn-darken-2:active,
+ .btn-warning.btn-darken-2:focus {
+ border-color: #ff7531 !important;
+ background-color: #ff6417 !important;
+ }
+ .btn-outline-warning.btn-outline-darken-2 {
+ border-color: #ff864a !important;
+ color: #ff864a !important;
+ }
+ .btn-outline-warning.btn-outline-darken-2:hover {
+ background-color: #ff864a !important;
+ }
+ .border-warning.border-darken-2 {
+ border: 1px solid #ff864a !important;
+ }
+ .border-top-warning.border-top-darken-2 {
+ border-top: 1px solid #ff864a !important;
+ }
+ .border-bottom-warning.border-bottom-darken-2 {
+ border-bottom: 1px solid #ff864a !important;
+ }
+ .border-left-warning.border-left-darken-2 {
+ border-left: 1px solid #ff864a !important;
+ }
+ .border-right-warning.border-right-darken-2 {
+ border-right: 1px solid #ff864a !important;
+ }
+ .overlay-warning.overlay-darken-2 {
+ background: #ff864a;
+ background: rgba(255, 134, 74, 0.8);
+ }
+ .warning.darken-3 {
+ color: #ff7531 !important;
+ }
+ .bg-warning.bg-darken-3 {
+ background-color: #ff7531 !important;
+ }
+ .btn-warning.btn-darken-3,
+ .btn-warning.btn-darken-3:hover {
+ border-color: #ff864a !important;
+ background-color: #ff7531 !important;
+ }
+ .btn-warning.btn-darken-3:active,
+ .btn-warning.btn-darken-3:focus {
+ border-color: #ff7531 !important;
+ background-color: #ff6417 !important;
+ }
+ .btn-outline-warning.btn-outline-darken-3 {
+ border-color: #ff7531 !important;
+ color: #ff7531 !important;
+ }
+ .btn-outline-warning.btn-outline-darken-3:hover {
+ background-color: #ff7531 !important;
+ }
+ .border-warning.border-darken-3 {
+ border: 1px solid #ff7531 !important;
+ }
+ .border-top-warning.border-top-darken-3 {
+ border-top: 1px solid #ff7531 !important;
+ }
+ .border-bottom-warning.border-bottom-darken-3 {
+ border-bottom: 1px solid #ff7531 !important;
+ }
+ .border-left-warning.border-left-darken-3 {
+ border-left: 1px solid #ff7531 !important;
+ }
+ .border-right-warning.border-right-darken-3 {
+ border-right: 1px solid #ff7531 !important;
+ }
+ .overlay-warning.overlay-darken-3 {
+ background: #ff7531;
+ background: rgba(255, 117, 49, 0.8);
+ }
+ .bg-warning.bg-darken-4,
+ .btn-warning.btn-darken-4 {
+ background-color: #ff6417 !important;
+ }
+ .warning.darken-4 {
+ color: #ff6417 !important;
+ }
+ .btn-warning.btn-darken-4 {
+ border-color: #ff864a !important;
+ }
+ .btn-warning.btn-darken-4:hover {
+ border-color: #ff864a !important;
+ background-color: #ff7531 !important;
+ }
+ .btn-warning.btn-darken-4:active,
+ .btn-warning.btn-darken-4:focus {
+ border-color: #ff7531 !important;
+ background-color: #ff6417 !important;
+ }
+ .btn-outline-warning.btn-outline-darken-4 {
+ border-color: #ff6417 !important;
+ color: #ff6417 !important;
+ }
+ .btn-outline-warning.btn-outline-darken-4:hover {
+ background-color: #ff6417 !important;
+ }
+ .border-warning.border-darken-4 {
+ border: 1px solid #ff6417 !important;
+ }
+ .border-top-warning.border-top-darken-4 {
+ border-top: 1px solid #ff6417 !important;
+ }
+ .border-bottom-warning.border-bottom-darken-4 {
+ border-bottom: 1px solid #ff6417 !important;
+ }
+ .border-left-warning.border-left-darken-4 {
+ border-left: 1px solid #ff6417 !important;
+ }
+ .border-right-warning.border-right-darken-4 {
+ border-right: 1px solid #ff6417 !important;
+ }
+ .overlay-warning.overlay-darken-4 {
+ background: #ff6417;
+ background: rgba(255, 100, 23, 0.8);
+ }
+ .bg-warning.bg-accent-1,
+ .btn-warning.btn-accent-1 {
+ background-color: #fff5ef !important;
+ }
+ .warning.accent-1 {
+ color: #fff5ef !important;
+ }
+ .btn-warning.btn-accent-1 {
+ border-color: #ff864a !important;
+ }
+ .btn-warning.btn-accent-1:hover {
+ border-color: #ff864a !important;
+ background-color: #ff7531 !important;
+ }
+ .btn-warning.btn-accent-1:active,
+ .btn-warning.btn-accent-1:focus {
+ border-color: #ff7531 !important;
+ background-color: #ff6417 !important;
+ }
+ .btn-outline-warning.btn-outline-accent-1 {
+ border-color: #fff5ef !important;
+ color: #fff5ef !important;
+ }
+ .btn-outline-warning.btn-outline-accent-1:hover {
+ background-color: #fff5ef !important;
+ }
+ .border-warning.border-accent-1 {
+ border: 1px solid #fff5ef !important;
+ }
+ .border-top-warning.border-top-accent-1 {
+ border-top: 1px solid #fff5ef !important;
+ }
+ .border-bottom-warning.border-bottom-accent-1 {
+ border-bottom: 1px solid #fff5ef !important;
+ }
+ .border-left-warning.border-left-accent-1 {
+ border-left: 1px solid #fff5ef !important;
+ }
+ .border-right-warning.border-right-accent-1 {
+ border-right: 1px solid #fff5ef !important;
+ }
+ .overlay-warning.overlay-accent-1 {
+ background: #fff5ef;
+ background: rgba(255, 245, 239, 0.8);
+ }
+ .bg-warning.bg-accent-2,
+ .btn-warning.btn-accent-2 {
+ background-color: #ffe5d8 !important;
+ }
+ .warning.accent-2 {
+ color: #ffe5d8 !important;
+ }
+ .btn-warning.btn-accent-2 {
+ border-color: #ff864a !important;
+ }
+ .btn-warning.btn-accent-2:hover {
+ border-color: #ff864a !important;
+ background-color: #ff7531 !important;
+ }
+ .btn-warning.btn-accent-2:active,
+ .btn-warning.btn-accent-2:focus {
+ border-color: #ff7531 !important;
+ background-color: #ff6417 !important;
+ }
+ .btn-outline-warning.btn-outline-accent-2 {
+ border-color: #ffe5d8 !important;
+ color: #ffe5d8 !important;
+ }
+ .btn-outline-warning.btn-outline-accent-2:hover {
+ background-color: #ffe5d8 !important;
+ }
+ .border-warning.border-accent-2 {
+ border: 1px solid #ffe5d8 !important;
+ }
+ .border-top-warning.border-top-accent-2 {
+ border-top: 1px solid #ffe5d8 !important;
+ }
+ .border-bottom-warning.border-bottom-accent-2 {
+ border-bottom: 1px solid #ffe5d8 !important;
+ }
+ .border-left-warning.border-left-accent-2 {
+ border-left: 1px solid #ffe5d8 !important;
+ }
+ .border-right-warning.border-right-accent-2 {
+ border-right: 1px solid #ffe5d8 !important;
+ }
+ .overlay-warning.overlay-accent-2 {
+ background: #ffe5d8;
+ background: rgba(255, 229, 216, 0.8);
+ }
+ .bg-warning.bg-accent-3,
+ .btn-warning.btn-accent-3 {
+ background-color: #fff6f3 !important;
+ }
+ .warning.accent-3 {
+ color: #fff6f3 !important;
+ }
+ .btn-warning.btn-accent-3 {
+ border-color: #ff864a !important;
+ }
+ .btn-warning.btn-accent-3:hover {
+ border-color: #ff864a !important;
+ background-color: #ff7531 !important;
+ }
+ .btn-warning.btn-accent-3:active,
+ .btn-warning.btn-accent-3:focus {
+ border-color: #ff7531 !important;
+ background-color: #ff6417 !important;
+ }
+ .btn-outline-warning.btn-outline-accent-3 {
+ border-color: #fff6f3 !important;
+ color: #fff6f3 !important;
+ }
+ .btn-outline-warning.btn-outline-accent-3:hover {
+ background-color: #fff6f3 !important;
+ }
+ .border-warning.border-accent-3 {
+ border: 1px solid #fff6f3 !important;
+ }
+ .border-top-warning.border-top-accent-3 {
+ border-top: 1px solid #fff6f3 !important;
+ }
+ .border-bottom-warning.border-bottom-accent-3 {
+ border-bottom: 1px solid #fff6f3 !important;
+ }
+ .border-left-warning.border-left-accent-3 {
+ border-left: 1px solid #fff6f3 !important;
+ }
+ .border-right-warning.border-right-accent-3 {
+ border-right: 1px solid #fff6f3 !important;
+ }
+ .overlay-warning.overlay-accent-3 {
+ background: #fff6f3;
+ background: rgba(255, 246, 243, 0.8);
+ }
+ .bg-warning.bg-accent-4,
+ .btn-warning.btn-accent-4 {
+ background-color: #ffe3da !important;
+ }
+ .warning.accent-4 {
+ color: #ffe3da !important;
+ }
+ .btn-warning.btn-accent-4 {
+ border-color: #ff864a !important;
+ }
+ .btn-warning.btn-accent-4:hover {
+ border-color: #ff864a !important;
+ background-color: #ff7531 !important;
+ }
+ .btn-warning.btn-accent-4:active,
+ .btn-warning.btn-accent-4:focus {
+ border-color: #ff7531 !important;
+ background-color: #ff6417 !important;
+ }
+ .btn-outline-warning.btn-outline-accent-4 {
+ border-color: #ffe3da !important;
+ color: #ffe3da !important;
+ }
+ .btn-outline-warning.btn-outline-accent-4:hover {
+ background-color: #ffe3da !important;
+ }
+ input:focus ~ .bg-warning {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #ffe3da !important;
+ }
+ .border-warning.border-accent-4 {
+ border: 1px solid #ffe3da !important;
+ }
+ .border-top-warning.border-top-accent-4 {
+ border-top: 1px solid #ffe3da !important;
+ }
+ .border-bottom-warning.border-bottom-accent-4 {
+ border-bottom: 1px solid #ffe3da !important;
+ }
+ .border-left-warning.border-left-accent-4 {
+ border-left: 1px solid #ffe3da !important;
+ }
+ .border-right-warning.border-right-accent-4 {
+ border-right: 1px solid #ffe3da !important;
+ }
+ .overlay-warning.overlay-accent-4 {
+ background: #ffe3da;
+ background: rgba(255, 227, 218, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="warning"]:before {
+ background-color: #ffe3da;
+ }
+ .bg-danger.bg-lighten-5,
+ .btn-danger.btn-lighten-5 {
+ background-color: #fff5f6 !important;
+ }
+ .danger.lighten-5 {
+ color: #fff5f6 !important;
+ }
+ .btn-danger.btn-lighten-5 {
+ border-color: #ff425c !important;
+ }
+ .btn-danger.btn-lighten-5:hover {
+ border-color: #ff425c !important;
+ background-color: #ff2946 !important;
+ }
+ .btn-danger.btn-lighten-5:active,
+ .btn-danger.btn-lighten-5:focus {
+ border-color: #ff2946 !important;
+ background-color: #ff0f30 !important;
+ }
+ .btn-outline-danger.btn-outline-lighten-5 {
+ border-color: #fff5f6 !important;
+ color: #fff5f6 !important;
+ }
+ .btn-outline-danger.btn-outline-lighten-5:hover {
+ background-color: #fff5f6 !important;
+ }
+ .border-danger.border-lighten-5 {
+ border: 1px solid #fff5f6 !important;
+ }
+ .border-top-danger.border-top-lighten-5 {
+ border-top: 1px solid #fff5f6 !important;
+ }
+ .border-bottom-danger.border-bottom-lighten-5 {
+ border-bottom: 1px solid #fff5f6 !important;
+ }
+ .border-left-danger.border-left-lighten-5 {
+ border-left: 1px solid #fff5f6 !important;
+ }
+ .border-right-danger.border-right-lighten-5 {
+ border-right: 1px solid #fff5f6 !important;
+ }
+ .overlay-danger.overlay-lighten-5 {
+ background: #fff5f6;
+ background: rgba(255, 245, 246, 0.8);
+ }
+ .bg-danger.bg-lighten-4,
+ .btn-danger.btn-lighten-4 {
+ background-color: #ffdbe0 !important;
+ }
+ .danger.lighten-4 {
+ color: #ffdbe0 !important;
+ }
+ .btn-danger.btn-lighten-4 {
+ border-color: #ff425c !important;
+ }
+ .btn-danger.btn-lighten-4:hover {
+ border-color: #ff425c !important;
+ background-color: #ff2946 !important;
+ }
+ .btn-danger.btn-lighten-4:active,
+ .btn-danger.btn-lighten-4:focus {
+ border-color: #ff2946 !important;
+ background-color: #ff0f30 !important;
+ }
+ .btn-outline-danger.btn-outline-lighten-4 {
+ border-color: #ffdbe0 !important;
+ color: #ffdbe0 !important;
+ }
+ .btn-outline-danger.btn-outline-lighten-4:hover {
+ background-color: #ffdbe0 !important;
+ }
+ .border-danger.border-lighten-4 {
+ border: 1px solid #ffdbe0 !important;
+ }
+ .border-top-danger.border-top-lighten-4 {
+ border-top: 1px solid #ffdbe0 !important;
+ }
+ .border-bottom-danger.border-bottom-lighten-4 {
+ border-bottom: 1px solid #ffdbe0 !important;
+ }
+ .border-left-danger.border-left-lighten-4 {
+ border-left: 1px solid #ffdbe0 !important;
+ }
+ .border-right-danger.border-right-lighten-4 {
+ border-right: 1px solid #ffdbe0 !important;
+ }
+ .overlay-danger.overlay-lighten-4 {
+ background: #ffdbe0;
+ background: rgba(255, 219, 224, 0.8);
+ }
+ .bg-danger.bg-lighten-3,
+ .btn-danger.btn-lighten-3 {
+ background-color: #ffc2ca !important;
+ }
+ .danger.lighten-3 {
+ color: #ffc2ca !important;
+ }
+ .btn-danger.btn-lighten-3 {
+ border-color: #ff425c !important;
+ }
+ .btn-danger.btn-lighten-3:hover {
+ border-color: #ff425c !important;
+ background-color: #ff2946 !important;
+ }
+ .btn-danger.btn-lighten-3:active,
+ .btn-danger.btn-lighten-3:focus {
+ border-color: #ff2946 !important;
+ background-color: #ff0f30 !important;
+ }
+ .btn-outline-danger.btn-outline-lighten-3 {
+ border-color: #ffc2ca !important;
+ color: #ffc2ca !important;
+ }
+ .btn-outline-danger.btn-outline-lighten-3:hover {
+ background-color: #ffc2ca !important;
+ }
+ .border-danger.border-lighten-3 {
+ border: 1px solid #ffc2ca !important;
+ }
+ .border-top-danger.border-top-lighten-3 {
+ border-top: 1px solid #ffc2ca !important;
+ }
+ .border-bottom-danger.border-bottom-lighten-3 {
+ border-bottom: 1px solid #ffc2ca !important;
+ }
+ .border-left-danger.border-left-lighten-3 {
+ border-left: 1px solid #ffc2ca !important;
+ }
+ .border-right-danger.border-right-lighten-3 {
+ border-right: 1px solid #ffc2ca !important;
+ }
+ .overlay-danger.overlay-lighten-3 {
+ background: #ffc2ca;
+ background: rgba(255, 194, 202, 0.8);
+ }
+ .bg-danger.bg-lighten-2,
+ .btn-danger.btn-lighten-2 {
+ background-color: #ffa8b4 !important;
+ }
+ .danger.lighten-2 {
+ color: #ffa8b4 !important;
+ }
+ .btn-danger.btn-lighten-2 {
+ border-color: #ff425c !important;
+ }
+ .btn-danger.btn-lighten-2:hover {
+ border-color: #ff425c !important;
+ background-color: #ff2946 !important;
+ }
+ .btn-danger.btn-lighten-2:active,
+ .btn-danger.btn-lighten-2:focus {
+ border-color: #ff2946 !important;
+ background-color: #ff0f30 !important;
+ }
+ .btn-outline-danger.btn-outline-lighten-2 {
+ border-color: #ffa8b4 !important;
+ color: #ffa8b4 !important;
+ }
+ .btn-outline-danger.btn-outline-lighten-2:hover {
+ background-color: #ffa8b4 !important;
+ }
+ .border-danger.border-lighten-2 {
+ border: 1px solid #ffa8b4 !important;
+ }
+ .border-top-danger.border-top-lighten-2 {
+ border-top: 1px solid #ffa8b4 !important;
+ }
+ .border-bottom-danger.border-bottom-lighten-2 {
+ border-bottom: 1px solid #ffa8b4 !important;
+ }
+ .border-left-danger.border-left-lighten-2 {
+ border-left: 1px solid #ffa8b4 !important;
+ }
+ .border-right-danger.border-right-lighten-2 {
+ border-right: 1px solid #ffa8b4 !important;
+ }
+ .overlay-danger.overlay-lighten-2 {
+ background: #ffa8b4;
+ background: rgba(255, 168, 180, 0.8);
+ }
+ .bg-danger.bg-lighten-1,
+ .btn-danger.btn-lighten-1 {
+ background-color: #ff8f9e !important;
+ }
+ .danger.lighten-1 {
+ color: #ff8f9e !important;
+ }
+ .btn-danger.btn-lighten-1 {
+ border-color: #ff425c !important;
+ }
+ .btn-danger.btn-lighten-1:hover {
+ border-color: #ff425c !important;
+ background-color: #ff2946 !important;
+ }
+ .btn-danger.btn-lighten-1:active,
+ .btn-danger.btn-lighten-1:focus {
+ border-color: #ff2946 !important;
+ background-color: #ff0f30 !important;
+ }
+ .btn-outline-danger.btn-outline-lighten-1 {
+ border-color: #ff8f9e !important;
+ color: #ff8f9e !important;
+ }
+ .btn-outline-danger.btn-outline-lighten-1:hover {
+ background-color: #ff8f9e !important;
+ }
+ .border-danger.border-lighten-1 {
+ border: 1px solid #ff8f9e !important;
+ }
+ .border-top-danger.border-top-lighten-1 {
+ border-top: 1px solid #ff8f9e !important;
+ }
+ .border-bottom-danger.border-bottom-lighten-1 {
+ border-bottom: 1px solid #ff8f9e !important;
+ }
+ .border-left-danger.border-left-lighten-1 {
+ border-left: 1px solid #ff8f9e !important;
+ }
+ .border-right-danger.border-right-lighten-1 {
+ border-right: 1px solid #ff8f9e !important;
+ }
+ .overlay-danger.overlay-lighten-1 {
+ background: #ff8f9e;
+ background: rgba(255, 143, 158, 0.8);
+ }
+ .danger {
+ color: #F08080 !important;
+ }
+ .bg-danger {
+ background-color: #F08080 !important;
+ }
+ .bg-danger .card-footer,
+ .bg-danger .card-header {
+ background-color: transparent;
+ }
+ .alert-danger {
+ border-color: #ffbcc6 !important;
+ background-color: #ffbcc6 !important;
+ color: #c2001b !important;
+ }
+ .alert-danger .alert-link {
+ color: #990015 !important;
+ }
+ .bullet.bullet-danger {
+ background-color: #F08080;
+ }
+ .bg-light-danger {
+ background-color: rgba(255, 117, 136, 0.15);
+ }
+ .bg-danger.badge-glow,
+ .border-danger.badge-glow {
+ box-shadow: 0 0 10px #F08080;
+ }
+ .overlay-danger {
+ background: #F08080;
+ background: rgba(255, 117, 136, 0.8);
+ }
+ .btn-danger {
+ background-color: #F08080 !important;
+ color: #fff;
+ }
+ .btn-danger:hover {
+ border-color: #ff5c72 !important;
+ background-color: #ff8f9e !important;
+ color: #fff !important;
+ }
+ .btn-danger:active,
+ .btn-danger:focus {
+ border-color: #ff425c !important;
+ background-color: #ff2946 !important;
+ color: #fff !important;
+ }
+ .btn-outline-danger {
+ border-color: #F08080;
+ background-color: transparent;
+ color: #F08080;
+ }
+ .btn-outline-danger:hover {
+ background-color: #F08080;
+ color: #fff !important;
+ }
+ .widget-timeline .timeline-items.timeline-icon-danger:before {
+ background-color: #F08080;
+ }
+ input[type="checkbox"].bg-danger + .custom-control-label:before,
+ input[type="radio"].bg-danger + .custom-control-label:before {
+ background-color: #F08080 !important;
+ }
+ .bg-danger.bg-darken-1,
+ .btn-danger.btn-darken-1 {
+ background-color: #ff5c72 !important;
+ }
+ .border-danger {
+ border: 1px solid #F08080 !important;
+ }
+ .border-top-danger {
+ border-top: 1px solid #F08080;
+ }
+ .border-bottom-danger {
+ border-bottom: 1px solid #F08080;
+ }
+ .border-left-danger {
+ border-left: 1px solid #F08080;
+ }
+ .border-right-danger {
+ border-right: 1px solid #F08080;
+ }
+ .danger.darken-1 {
+ color: #ff5c72 !important;
+ }
+ .btn-danger.btn-darken-1 {
+ border-color: #ff425c !important;
+ }
+ .btn-danger.btn-darken-1:hover {
+ border-color: #ff425c !important;
+ background-color: #ff2946 !important;
+ }
+ .btn-danger.btn-darken-1:active,
+ .btn-danger.btn-darken-1:focus {
+ border-color: #ff2946 !important;
+ background-color: #ff0f30 !important;
+ }
+ .btn-outline-danger.btn-outline-darken-1 {
+ border-color: #ff5c72 !important;
+ color: #ff5c72 !important;
+ }
+ .btn-outline-danger.btn-outline-darken-1:hover {
+ background-color: #ff5c72 !important;
+ }
+ .border-danger.border-darken-1 {
+ border: 1px solid #ff5c72 !important;
+ }
+ .border-top-danger.border-top-darken-1 {
+ border-top: 1px solid #ff5c72 !important;
+ }
+ .border-bottom-danger.border-bottom-darken-1 {
+ border-bottom: 1px solid #ff5c72 !important;
+ }
+ .border-left-danger.border-left-darken-1 {
+ border-left: 1px solid #ff5c72 !important;
+ }
+ .border-right-danger.border-right-darken-1 {
+ border-right: 1px solid #ff5c72 !important;
+ }
+ .btn-danger.btn-darken-2,
+ .btn-danger.btn-darken-2:hover {
+ border-color: #ff425c !important;
+ }
+ .overlay-danger.overlay-darken-1 {
+ background: #ff5c72;
+ background: rgba(255, 92, 114, 0.8);
+ }
+ .bg-danger.bg-darken-2,
+ .btn-danger.btn-darken-2 {
+ background-color: #ff425c !important;
+ }
+ .danger.darken-2 {
+ color: #ff425c !important;
+ }
+ .btn-danger.btn-darken-2:hover {
+ background-color: #ff2946 !important;
+ }
+ .btn-danger.btn-darken-2:active,
+ .btn-danger.btn-darken-2:focus {
+ border-color: #ff2946 !important;
+ background-color: #ff0f30 !important;
+ }
+ .btn-outline-danger.btn-outline-darken-2 {
+ border-color: #ff425c !important;
+ color: #ff425c !important;
+ }
+ .btn-outline-danger.btn-outline-darken-2:hover {
+ background-color: #ff425c !important;
+ }
+ .border-danger.border-darken-2 {
+ border: 1px solid #ff425c !important;
+ }
+ .border-top-danger.border-top-darken-2 {
+ border-top: 1px solid #ff425c !important;
+ }
+ .border-bottom-danger.border-bottom-darken-2 {
+ border-bottom: 1px solid #ff425c !important;
+ }
+ .border-left-danger.border-left-darken-2 {
+ border-left: 1px solid #ff425c !important;
+ }
+ .border-right-danger.border-right-darken-2 {
+ border-right: 1px solid #ff425c !important;
+ }
+ .overlay-danger.overlay-darken-2 {
+ background: #ff425c;
+ background: rgba(255, 66, 92, 0.8);
+ }
+ .danger.darken-3 {
+ color: #ff2946 !important;
+ }
+ .bg-danger.bg-darken-3 {
+ background-color: #ff2946 !important;
+ }
+ .btn-danger.btn-darken-3,
+ .btn-danger.btn-darken-3:hover {
+ border-color: #ff425c !important;
+ background-color: #ff2946 !important;
+ }
+ .btn-danger.btn-darken-3:active,
+ .btn-danger.btn-darken-3:focus {
+ border-color: #ff2946 !important;
+ background-color: #ff0f30 !important;
+ }
+ .btn-outline-danger.btn-outline-darken-3 {
+ border-color: #ff2946 !important;
+ color: #ff2946 !important;
+ }
+ .btn-outline-danger.btn-outline-darken-3:hover {
+ background-color: #ff2946 !important;
+ }
+ .border-danger.border-darken-3 {
+ border: 1px solid #ff2946 !important;
+ }
+ .border-top-danger.border-top-darken-3 {
+ border-top: 1px solid #ff2946 !important;
+ }
+ .border-bottom-danger.border-bottom-darken-3 {
+ border-bottom: 1px solid #ff2946 !important;
+ }
+ .border-left-danger.border-left-darken-3 {
+ border-left: 1px solid #ff2946 !important;
+ }
+ .border-right-danger.border-right-darken-3 {
+ border-right: 1px solid #ff2946 !important;
+ }
+ .btn-danger.btn-darken-4,
+ .btn-danger.btn-darken-4:hover {
+ border-color: #ff425c !important;
+ }
+ .overlay-danger.overlay-darken-3 {
+ background: #ff2946;
+ background: rgba(255, 41, 70, 0.8);
+ }
+ .bg-danger.bg-darken-4,
+ .btn-danger.btn-darken-4 {
+ background-color: #ff0f30 !important;
+ }
+ .danger.darken-4 {
+ color: #ff0f30 !important;
+ }
+ .btn-danger.btn-darken-4:hover {
+ background-color: #ff2946 !important;
+ }
+ .btn-danger.btn-darken-4:active,
+ .btn-danger.btn-darken-4:focus {
+ border-color: #ff2946 !important;
+ background-color: #ff0f30 !important;
+ }
+ .btn-outline-danger.btn-outline-darken-4 {
+ border-color: #ff0f30 !important;
+ color: #ff0f30 !important;
+ }
+ .btn-outline-danger.btn-outline-darken-4:hover {
+ background-color: #ff0f30 !important;
+ }
+ .border-danger.border-darken-4 {
+ border: 1px solid #ff0f30 !important;
+ }
+ .border-top-danger.border-top-darken-4 {
+ border-top: 1px solid #ff0f30 !important;
+ }
+ .border-bottom-danger.border-bottom-darken-4 {
+ border-bottom: 1px solid #ff0f30 !important;
+ }
+ .border-left-danger.border-left-darken-4 {
+ border-left: 1px solid #ff0f30 !important;
+ }
+ .border-right-danger.border-right-darken-4 {
+ border-right: 1px solid #ff0f30 !important;
+ }
+ .btn-danger.btn-accent-1,
+ .btn-danger.btn-accent-1:hover {
+ border-color: #ff425c !important;
+ }
+ .overlay-danger.overlay-darken-4 {
+ background: #ff0f30;
+ background: rgba(255, 15, 48, 0.8);
+ }
+ .bg-danger.bg-accent-1,
+ .btn-danger.btn-accent-1 {
+ background-color: #ffeef1 !important;
+ }
+ .danger.accent-1 {
+ color: #ffeef1 !important;
+ }
+ .btn-danger.btn-accent-1:hover {
+ background-color: #ff2946 !important;
+ }
+ .btn-danger.btn-accent-1:active,
+ .btn-danger.btn-accent-1:focus {
+ border-color: #ff2946 !important;
+ background-color: #ff0f30 !important;
+ }
+ .btn-outline-danger.btn-outline-accent-1 {
+ border-color: #ffeef1 !important;
+ color: #ffeef1 !important;
+ }
+ .btn-outline-danger.btn-outline-accent-1:hover {
+ background-color: #ffeef1 !important;
+ }
+ .border-danger.border-accent-1 {
+ border: 1px solid #ffeef1 !important;
+ }
+ .border-top-danger.border-top-accent-1 {
+ border-top: 1px solid #ffeef1 !important;
+ }
+ .border-bottom-danger.border-bottom-accent-1 {
+ border-bottom: 1px solid #ffeef1 !important;
+ }
+ .border-left-danger.border-left-accent-1 {
+ border-left: 1px solid #ffeef1 !important;
+ }
+ .border-right-danger.border-right-accent-1 {
+ border-right: 1px solid #ffeef1 !important;
+ }
+ .btn-danger.btn-accent-2,
+ .btn-danger.btn-accent-2:hover {
+ border-color: #ff425c !important;
+ }
+ .overlay-danger.overlay-accent-1 {
+ background: #ffeef1;
+ background: rgba(255, 238, 241, 0.8);
+ }
+ .bg-danger.bg-accent-2,
+ .btn-danger.btn-accent-2 {
+ background-color: #ffd6db !important;
+ }
+ .danger.accent-2 {
+ color: #ffd6db !important;
+ }
+ .btn-danger.btn-accent-2:hover {
+ background-color: #ff2946 !important;
+ }
+ .btn-danger.btn-accent-2:active,
+ .btn-danger.btn-accent-2:focus {
+ border-color: #ff2946 !important;
+ background-color: #ff0f30 !important;
+ }
+ .btn-outline-danger.btn-outline-accent-2 {
+ border-color: #ffd6db !important;
+ color: #ffd6db !important;
+ }
+ .btn-outline-danger.btn-outline-accent-2:hover {
+ background-color: #ffd6db !important;
+ }
+ .border-danger.border-accent-2 {
+ border: 1px solid #ffd6db !important;
+ }
+ .border-top-danger.border-top-accent-2 {
+ border-top: 1px solid #ffd6db !important;
+ }
+ .border-bottom-danger.border-bottom-accent-2 {
+ border-bottom: 1px solid #ffd6db !important;
+ }
+ .border-left-danger.border-left-accent-2 {
+ border-left: 1px solid #ffd6db !important;
+ }
+ .border-right-danger.border-right-accent-2 {
+ border-right: 1px solid #ffd6db !important;
+ }
+ .btn-danger.btn-accent-3,
+ .btn-danger.btn-accent-3:hover {
+ border-color: #ff425c !important;
+ }
+ .overlay-danger.overlay-accent-2 {
+ background: #ffd6db;
+ background: rgba(255, 214, 219, 0.8);
+ }
+ .bg-danger.bg-accent-3,
+ .btn-danger.btn-accent-3 {
+ background-color: #ffecee !important;
+ }
+ .danger.accent-3 {
+ color: #ffecee !important;
+ }
+ .btn-danger.btn-accent-3:hover {
+ background-color: #ff2946 !important;
+ }
+ .btn-danger.btn-accent-3:active,
+ .btn-danger.btn-accent-3:focus {
+ border-color: #ff2946 !important;
+ background-color: #ff0f30 !important;
+ }
+ .btn-outline-danger.btn-outline-accent-3 {
+ border-color: #ffecee !important;
+ color: #ffecee !important;
+ }
+ .btn-outline-danger.btn-outline-accent-3:hover {
+ background-color: #ffecee !important;
+ }
+ .border-danger.border-accent-3 {
+ border: 1px solid #ffecee !important;
+ }
+ .border-top-danger.border-top-accent-3 {
+ border-top: 1px solid #ffecee !important;
+ }
+ .border-bottom-danger.border-bottom-accent-3 {
+ border-bottom: 1px solid #ffecee !important;
+ }
+ .border-left-danger.border-left-accent-3 {
+ border-left: 1px solid #ffecee !important;
+ }
+ .border-right-danger.border-right-accent-3 {
+ border-right: 1px solid #ffecee !important;
+ }
+ .btn-danger.btn-accent-4,
+ .btn-danger.btn-accent-4:hover {
+ border-color: #ff425c !important;
+ }
+ .overlay-danger.overlay-accent-3 {
+ background: #ffecee;
+ background: rgba(255, 236, 238, 0.8);
+ }
+ .bg-danger.bg-accent-4,
+ .btn-danger.btn-accent-4 {
+ background-color: #ffd3d7 !important;
+ }
+ .danger.accent-4 {
+ color: #ffd3d7 !important;
+ }
+ .btn-danger.btn-accent-4:hover {
+ background-color: #ff2946 !important;
+ }
+ .btn-danger.btn-accent-4:active,
+ .btn-danger.btn-accent-4:focus {
+ border-color: #ff2946 !important;
+ background-color: #ff0f30 !important;
+ }
+ .btn-outline-danger.btn-outline-accent-4 {
+ border-color: #ffd3d7 !important;
+ color: #ffd3d7 !important;
+ }
+ .btn-outline-danger.btn-outline-accent-4:hover {
+ background-color: #ffd3d7 !important;
+ }
+ input:focus ~ .bg-danger {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #ffd3d7 !important;
+ }
+ .border-danger.border-accent-4 {
+ border: 1px solid #ffd3d7 !important;
+ }
+ .border-top-danger.border-top-accent-4 {
+ border-top: 1px solid #ffd3d7 !important;
+ }
+ .border-bottom-danger.border-bottom-accent-4 {
+ border-bottom: 1px solid #ffd3d7 !important;
+ }
+ .border-left-danger.border-left-accent-4 {
+ border-left: 1px solid #ffd3d7 !important;
+ }
+ .border-right-danger.border-right-accent-4 {
+ border-right: 1px solid #ffd3d7 !important;
+ }
+ .btn-red.btn-lighten-5,
+ .btn-red.btn-lighten-5:hover {
+ border-color: #d32f2f !important;
+ }
+ .overlay-danger.overlay-accent-4 {
+ background: #ffd3d7;
+ background: rgba(255, 211, 215, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="danger"]:before {
+ background-color: #ffd3d7;
+ }
+ .bg-red.bg-lighten-5,
+ .btn-red.btn-lighten-5 {
+ background-color: #ffebee !important;
+ }
+ .red.lighten-5 {
+ color: #ffebee !important;
+ }
+ .btn-red.btn-lighten-5:hover {
+ background-color: #c62828 !important;
+ }
+ .btn-red.btn-lighten-5:active,
+ .btn-red.btn-lighten-5:focus {
+ border-color: #c62828 !important;
+ background-color: #b71c1c !important;
+ }
+ .btn-outline-red.btn-outline-lighten-5 {
+ border-color: #ffebee !important;
+ color: #ffebee !important;
+ }
+ .btn-outline-red.btn-outline-lighten-5:hover {
+ background-color: #ffebee !important;
+ }
+ .border-red.border-lighten-5 {
+ border: 1px solid #ffebee !important;
+ }
+ .border-top-red.border-top-lighten-5 {
+ border-top: 1px solid #ffebee !important;
+ }
+ .border-bottom-red.border-bottom-lighten-5 {
+ border-bottom: 1px solid #ffebee !important;
+ }
+ .border-left-red.border-left-lighten-5 {
+ border-left: 1px solid #ffebee !important;
+ }
+ .border-right-red.border-right-lighten-5 {
+ border-right: 1px solid #ffebee !important;
+ }
+ .btn-red.btn-lighten-4,
+ .btn-red.btn-lighten-4:hover {
+ border-color: #d32f2f !important;
+ }
+ .overlay-red.overlay-lighten-5 {
+ background: #ffebee;
+ background: rgba(255, 235, 238, 0.8);
+ }
+ .bg-red.bg-lighten-4,
+ .btn-red.btn-lighten-4 {
+ background-color: #ffcdd2 !important;
+ }
+ .red.lighten-4 {
+ color: #ffcdd2 !important;
+ }
+ .btn-red.btn-lighten-4:hover {
+ background-color: #c62828 !important;
+ }
+ .btn-red.btn-lighten-4:active,
+ .btn-red.btn-lighten-4:focus {
+ border-color: #c62828 !important;
+ background-color: #b71c1c !important;
+ }
+ .btn-outline-red.btn-outline-lighten-4 {
+ border-color: #ffcdd2 !important;
+ color: #ffcdd2 !important;
+ }
+ .btn-outline-red.btn-outline-lighten-4:hover {
+ background-color: #ffcdd2 !important;
+ }
+ .border-red.border-lighten-4 {
+ border: 1px solid #ffcdd2 !important;
+ }
+ .border-top-red.border-top-lighten-4 {
+ border-top: 1px solid #ffcdd2 !important;
+ }
+ .border-bottom-red.border-bottom-lighten-4 {
+ border-bottom: 1px solid #ffcdd2 !important;
+ }
+ .border-left-red.border-left-lighten-4 {
+ border-left: 1px solid #ffcdd2 !important;
+ }
+ .border-right-red.border-right-lighten-4 {
+ border-right: 1px solid #ffcdd2 !important;
+ }
+ .btn-red.btn-lighten-3,
+ .btn-red.btn-lighten-3:hover {
+ border-color: #d32f2f !important;
+ }
+ .overlay-red.overlay-lighten-4 {
+ background: #ffcdd2;
+ background: rgba(255, 205, 210, 0.8);
+ }
+ .bg-red.bg-lighten-3,
+ .btn-red.btn-lighten-3 {
+ background-color: #ef9a9a !important;
+ }
+ .red.lighten-3 {
+ color: #ef9a9a !important;
+ }
+ .btn-red.btn-lighten-3:hover {
+ background-color: #c62828 !important;
+ }
+ .btn-red.btn-lighten-3:active,
+ .btn-red.btn-lighten-3:focus {
+ border-color: #c62828 !important;
+ background-color: #b71c1c !important;
+ }
+ .btn-outline-red.btn-outline-lighten-3 {
+ border-color: #ef9a9a !important;
+ color: #ef9a9a !important;
+ }
+ .btn-outline-red.btn-outline-lighten-3:hover {
+ background-color: #ef9a9a !important;
+ }
+ .border-red.border-lighten-3 {
+ border: 1px solid #ef9a9a !important;
+ }
+ .border-top-red.border-top-lighten-3 {
+ border-top: 1px solid #ef9a9a !important;
+ }
+ .border-bottom-red.border-bottom-lighten-3 {
+ border-bottom: 1px solid #ef9a9a !important;
+ }
+ .border-left-red.border-left-lighten-3 {
+ border-left: 1px solid #ef9a9a !important;
+ }
+ .border-right-red.border-right-lighten-3 {
+ border-right: 1px solid #ef9a9a !important;
+ }
+ .btn-red.btn-lighten-2,
+ .btn-red.btn-lighten-2:hover {
+ border-color: #d32f2f !important;
+ }
+ .overlay-red.overlay-lighten-3 {
+ background: #ef9a9a;
+ background: rgba(239, 154, 154, 0.8);
+ }
+ .bg-red.bg-lighten-2,
+ .btn-red.btn-lighten-2 {
+ background-color: #e57373 !important;
+ }
+ .red.lighten-2 {
+ color: #e57373 !important;
+ }
+ .btn-red.btn-lighten-2:hover {
+ background-color: #c62828 !important;
+ }
+ .btn-red.btn-lighten-2:active,
+ .btn-red.btn-lighten-2:focus {
+ border-color: #c62828 !important;
+ background-color: #b71c1c !important;
+ }
+ .btn-outline-red.btn-outline-lighten-2 {
+ border-color: #e57373 !important;
+ color: #e57373 !important;
+ }
+ .btn-outline-red.btn-outline-lighten-2:hover {
+ background-color: #e57373 !important;
+ }
+ .border-red.border-lighten-2 {
+ border: 1px solid #e57373 !important;
+ }
+ .border-top-red.border-top-lighten-2 {
+ border-top: 1px solid #e57373 !important;
+ }
+ .border-bottom-red.border-bottom-lighten-2 {
+ border-bottom: 1px solid #e57373 !important;
+ }
+ .border-left-red.border-left-lighten-2 {
+ border-left: 1px solid #e57373 !important;
+ }
+ .border-right-red.border-right-lighten-2 {
+ border-right: 1px solid #e57373 !important;
+ }
+ .btn-red.btn-lighten-1,
+ .btn-red.btn-lighten-1:hover {
+ border-color: #d32f2f !important;
+ }
+ .overlay-red.overlay-lighten-2 {
+ background: #e57373;
+ background: rgba(229, 115, 115, 0.8);
+ }
+ .bg-red.bg-lighten-1,
+ .btn-red.btn-lighten-1 {
+ background-color: #ef5350 !important;
+ }
+ .red.lighten-1 {
+ color: #ef5350 !important;
+ }
+ .btn-red.btn-lighten-1:hover {
+ background-color: #c62828 !important;
+ }
+ .btn-red.btn-lighten-1:active,
+ .btn-red.btn-lighten-1:focus {
+ border-color: #c62828 !important;
+ background-color: #b71c1c !important;
+ }
+ .btn-outline-red.btn-outline-lighten-1 {
+ border-color: #ef5350 !important;
+ color: #ef5350 !important;
+ }
+ .btn-outline-red.btn-outline-lighten-1:hover {
+ background-color: #ef5350 !important;
+ }
+ .border-red.border-lighten-1 {
+ border: 1px solid #ef5350 !important;
+ }
+ .border-top-red.border-top-lighten-1 {
+ border-top: 1px solid #ef5350 !important;
+ }
+ .border-bottom-red.border-bottom-lighten-1 {
+ border-bottom: 1px solid #ef5350 !important;
+ }
+ .border-left-red.border-left-lighten-1 {
+ border-left: 1px solid #ef5350 !important;
+ }
+ .border-right-red.border-right-lighten-1 {
+ border-right: 1px solid #ef5350 !important;
+ }
+ .overlay-red.overlay-lighten-1 {
+ background: #ef5350;
+ background: rgba(239, 83, 80, 0.8);
+ }
+ .red {
+ color: #f44336 !important;
+ }
+ .bg-red {
+ background-color: #f44336 !important;
+ }
+ .bg-red .card-footer,
+ .bg-red .card-header {
+ background-color: transparent;
+ }
+ .alert-red {
+ border-color: #f8827a !important;
+ background-color: #f8827a !important;
+ color: #710e06 !important;
+ }
+ .alert-red .alert-link {
+ color: #4b0904 !important;
+ }
+ .bullet.bullet-red {
+ background-color: #f44336;
+ }
+ .bg-light-red {
+ background-color: rgba(244, 67, 54, 0.15);
+ }
+ .bg-red.badge-glow,
+ .border-red.badge-glow {
+ box-shadow: 0 0 10px #f44336;
+ }
+ .overlay-red {
+ background: #f44336;
+ background: rgba(244, 67, 54, 0.8);
+ }
+ .btn-red {
+ background-color: #f44336 !important;
+ color: #fff;
+ }
+ .btn-red:hover {
+ border-color: #e53935 !important;
+ background-color: #ef5350 !important;
+ color: #fff !important;
+ }
+ .btn-red:active,
+ .btn-red:focus {
+ border-color: #d32f2f !important;
+ background-color: #c62828 !important;
+ color: #fff !important;
+ }
+ .btn-outline-red {
+ border-color: #f44336;
+ background-color: transparent;
+ color: #f44336;
+ }
+ .btn-outline-red:hover,
+ .widget-timeline .timeline-items.timeline-icon-red:before {
+ background-color: #f44336;
+ }
+ .btn-outline-red:hover {
+ color: #fff !important;
+ }
+ input[type="checkbox"].bg-red + .custom-control-label:before,
+ input[type="radio"].bg-red + .custom-control-label:before {
+ background-color: #f44336 !important;
+ }
+ .bg-red.bg-darken-1,
+ .btn-red.btn-darken-1 {
+ background-color: #e53935 !important;
+ }
+ .border-red {
+ border: 1px solid #f44336 !important;
+ }
+ .border-top-red {
+ border-top: 1px solid #f44336;
+ }
+ .border-bottom-red {
+ border-bottom: 1px solid #f44336;
+ }
+ .border-left-red {
+ border-left: 1px solid #f44336;
+ }
+ .border-right-red {
+ border-right: 1px solid #f44336;
+ }
+ .red.darken-1 {
+ color: #e53935 !important;
+ }
+ .btn-red.btn-darken-1 {
+ border-color: #d32f2f !important;
+ }
+ .btn-red.btn-darken-1:hover {
+ border-color: #d32f2f !important;
+ background-color: #c62828 !important;
+ }
+ .btn-red.btn-darken-1:active,
+ .btn-red.btn-darken-1:focus {
+ border-color: #c62828 !important;
+ background-color: #b71c1c !important;
+ }
+ .btn-outline-red.btn-outline-darken-1 {
+ border-color: #e53935 !important;
+ color: #e53935 !important;
+ }
+ .btn-outline-red.btn-outline-darken-1:hover {
+ background-color: #e53935 !important;
+ }
+ .border-red.border-darken-1 {
+ border: 1px solid #e53935 !important;
+ }
+ .border-top-red.border-top-darken-1 {
+ border-top: 1px solid #e53935 !important;
+ }
+ .border-bottom-red.border-bottom-darken-1 {
+ border-bottom: 1px solid #e53935 !important;
+ }
+ .border-left-red.border-left-darken-1 {
+ border-left: 1px solid #e53935 !important;
+ }
+ .border-right-red.border-right-darken-1 {
+ border-right: 1px solid #e53935 !important;
+ }
+ .btn-red.btn-darken-2,
+ .btn-red.btn-darken-2:hover {
+ border-color: #d32f2f !important;
+ }
+ .overlay-red.overlay-darken-1 {
+ background: #e53935;
+ background: rgba(229, 57, 53, 0.8);
+ }
+ .bg-red.bg-darken-2,
+ .btn-red.btn-darken-2 {
+ background-color: #d32f2f !important;
+ }
+ .red.darken-2 {
+ color: #d32f2f !important;
+ }
+ .btn-red.btn-darken-2:hover {
+ background-color: #c62828 !important;
+ }
+ .btn-red.btn-darken-2:active,
+ .btn-red.btn-darken-2:focus {
+ border-color: #c62828 !important;
+ background-color: #b71c1c !important;
+ }
+ .btn-outline-red.btn-outline-darken-2 {
+ border-color: #d32f2f !important;
+ color: #d32f2f !important;
+ }
+ .btn-outline-red.btn-outline-darken-2:hover {
+ background-color: #d32f2f !important;
+ }
+ .border-red.border-darken-2 {
+ border: 1px solid #d32f2f !important;
+ }
+ .border-top-red.border-top-darken-2 {
+ border-top: 1px solid #d32f2f !important;
+ }
+ .border-bottom-red.border-bottom-darken-2 {
+ border-bottom: 1px solid #d32f2f !important;
+ }
+ .border-left-red.border-left-darken-2 {
+ border-left: 1px solid #d32f2f !important;
+ }
+ .border-right-red.border-right-darken-2 {
+ border-right: 1px solid #d32f2f !important;
+ }
+ .overlay-red.overlay-darken-2 {
+ background: #d32f2f;
+ background: rgba(211, 47, 47, 0.8);
+ }
+ .red.darken-3 {
+ color: #c62828 !important;
+ }
+ .bg-red.bg-darken-3 {
+ background-color: #c62828 !important;
+ }
+ .btn-red.btn-darken-3,
+ .btn-red.btn-darken-3:hover {
+ border-color: #d32f2f !important;
+ background-color: #c62828 !important;
+ }
+ .btn-red.btn-darken-3:active,
+ .btn-red.btn-darken-3:focus {
+ border-color: #c62828 !important;
+ background-color: #b71c1c !important;
+ }
+ .btn-outline-red.btn-outline-darken-3 {
+ border-color: #c62828 !important;
+ color: #c62828 !important;
+ }
+ .btn-outline-red.btn-outline-darken-3:hover {
+ background-color: #c62828 !important;
+ }
+ .border-red.border-darken-3 {
+ border: 1px solid #c62828 !important;
+ }
+ .border-top-red.border-top-darken-3 {
+ border-top: 1px solid #c62828 !important;
+ }
+ .border-bottom-red.border-bottom-darken-3 {
+ border-bottom: 1px solid #c62828 !important;
+ }
+ .border-left-red.border-left-darken-3 {
+ border-left: 1px solid #c62828 !important;
+ }
+ .border-right-red.border-right-darken-3 {
+ border-right: 1px solid #c62828 !important;
+ }
+ .btn-red.btn-darken-4,
+ .btn-red.btn-darken-4:hover {
+ border-color: #d32f2f !important;
+ }
+ .overlay-red.overlay-darken-3 {
+ background: #c62828;
+ background: rgba(198, 40, 40, 0.8);
+ }
+ .bg-red.bg-darken-4,
+ .btn-red.btn-darken-4 {
+ background-color: #b71c1c !important;
+ }
+ .red.darken-4 {
+ color: #b71c1c !important;
+ }
+ .btn-red.btn-darken-4:hover {
+ background-color: #c62828 !important;
+ }
+ .btn-red.btn-darken-4:active,
+ .btn-red.btn-darken-4:focus {
+ border-color: #c62828 !important;
+ background-color: #b71c1c !important;
+ }
+ .btn-outline-red.btn-outline-darken-4 {
+ border-color: #b71c1c !important;
+ color: #b71c1c !important;
+ }
+ .btn-outline-red.btn-outline-darken-4:hover {
+ background-color: #b71c1c !important;
+ }
+ .border-red.border-darken-4 {
+ border: 1px solid #b71c1c !important;
+ }
+ .border-top-red.border-top-darken-4 {
+ border-top: 1px solid #b71c1c !important;
+ }
+ .border-bottom-red.border-bottom-darken-4 {
+ border-bottom: 1px solid #b71c1c !important;
+ }
+ .border-left-red.border-left-darken-4 {
+ border-left: 1px solid #b71c1c !important;
+ }
+ .border-right-red.border-right-darken-4 {
+ border-right: 1px solid #b71c1c !important;
+ }
+ .btn-red.btn-accent-1,
+ .btn-red.btn-accent-1:hover {
+ border-color: #d32f2f !important;
+ }
+ .overlay-red.overlay-darken-4 {
+ background: #b71c1c;
+ background: rgba(183, 28, 28, 0.8);
+ }
+ .bg-red.bg-accent-1,
+ .btn-red.btn-accent-1 {
+ background-color: #ff8a80 !important;
+ }
+ .red.accent-1 {
+ color: #ff8a80 !important;
+ }
+ .btn-red.btn-accent-1:hover {
+ background-color: #c62828 !important;
+ }
+ .btn-red.btn-accent-1:active,
+ .btn-red.btn-accent-1:focus {
+ border-color: #c62828 !important;
+ background-color: #b71c1c !important;
+ }
+ .btn-outline-red.btn-outline-accent-1 {
+ border-color: #ff8a80 !important;
+ color: #ff8a80 !important;
+ }
+ .btn-outline-red.btn-outline-accent-1:hover {
+ background-color: #ff8a80 !important;
+ }
+ .border-red.border-accent-1 {
+ border: 1px solid #ff8a80 !important;
+ }
+ .border-top-red.border-top-accent-1 {
+ border-top: 1px solid #ff8a80 !important;
+ }
+ .border-bottom-red.border-bottom-accent-1 {
+ border-bottom: 1px solid #ff8a80 !important;
+ }
+ .border-left-red.border-left-accent-1 {
+ border-left: 1px solid #ff8a80 !important;
+ }
+ .border-right-red.border-right-accent-1 {
+ border-right: 1px solid #ff8a80 !important;
+ }
+ .btn-red.btn-accent-2,
+ .btn-red.btn-accent-2:hover {
+ border-color: #d32f2f !important;
+ }
+ .overlay-red.overlay-accent-1 {
+ background: #ff8a80;
+ background: rgba(255, 138, 128, 0.8);
+ }
+ .bg-red.bg-accent-2,
+ .btn-red.btn-accent-2 {
+ background-color: #ff5252 !important;
+ }
+ .red.accent-2 {
+ color: #ff5252 !important;
+ }
+ .btn-red.btn-accent-2:hover {
+ background-color: #c62828 !important;
+ }
+ .btn-red.btn-accent-2:active,
+ .btn-red.btn-accent-2:focus {
+ border-color: #c62828 !important;
+ background-color: #b71c1c !important;
+ }
+ .btn-outline-red.btn-outline-accent-2 {
+ border-color: #ff5252 !important;
+ color: #ff5252 !important;
+ }
+ .btn-outline-red.btn-outline-accent-2:hover {
+ background-color: #ff5252 !important;
+ }
+ .border-red.border-accent-2 {
+ border: 1px solid #ff5252 !important;
+ }
+ .border-top-red.border-top-accent-2 {
+ border-top: 1px solid #ff5252 !important;
+ }
+ .border-bottom-red.border-bottom-accent-2 {
+ border-bottom: 1px solid #ff5252 !important;
+ }
+ .border-left-red.border-left-accent-2 {
+ border-left: 1px solid #ff5252 !important;
+ }
+ .border-right-red.border-right-accent-2 {
+ border-right: 1px solid #ff5252 !important;
+ }
+ .btn-red.btn-accent-3,
+ .btn-red.btn-accent-3:hover {
+ border-color: #d32f2f !important;
+ }
+ .overlay-red.overlay-accent-2 {
+ background: #ff5252;
+ background: rgba(255, 82, 82, 0.8);
+ }
+ .bg-red.bg-accent-3,
+ .btn-red.btn-accent-3 {
+ background-color: #ff1744 !important;
+ }
+ .red.accent-3 {
+ color: #ff1744 !important;
+ }
+ .btn-red.btn-accent-3:hover {
+ background-color: #c62828 !important;
+ }
+ .btn-red.btn-accent-3:active,
+ .btn-red.btn-accent-3:focus {
+ border-color: #c62828 !important;
+ background-color: #b71c1c !important;
+ }
+ .btn-outline-red.btn-outline-accent-3 {
+ border-color: #ff1744 !important;
+ color: #ff1744 !important;
+ }
+ .btn-outline-red.btn-outline-accent-3:hover {
+ background-color: #ff1744 !important;
+ }
+ .border-red.border-accent-3 {
+ border: 1px solid #ff1744 !important;
+ }
+ .border-top-red.border-top-accent-3 {
+ border-top: 1px solid #ff1744 !important;
+ }
+ .border-bottom-red.border-bottom-accent-3 {
+ border-bottom: 1px solid #ff1744 !important;
+ }
+ .border-left-red.border-left-accent-3 {
+ border-left: 1px solid #ff1744 !important;
+ }
+ .border-right-red.border-right-accent-3 {
+ border-right: 1px solid #ff1744 !important;
+ }
+ .btn-red.btn-accent-4,
+ .btn-red.btn-accent-4:hover {
+ border-color: #d32f2f !important;
+ }
+ .overlay-red.overlay-accent-3 {
+ background: #ff1744;
+ background: rgba(255, 23, 68, 0.8);
+ }
+ .bg-red.bg-accent-4,
+ .btn-red.btn-accent-4 {
+ background-color: #d50000 !important;
+ }
+ .red.accent-4 {
+ color: #d50000 !important;
+ }
+ .btn-red.btn-accent-4:hover {
+ background-color: #c62828 !important;
+ }
+ .btn-red.btn-accent-4:active,
+ .btn-red.btn-accent-4:focus {
+ border-color: #c62828 !important;
+ background-color: #b71c1c !important;
+ }
+ .btn-outline-red.btn-outline-accent-4 {
+ border-color: #d50000 !important;
+ color: #d50000 !important;
+ }
+ .btn-outline-red.btn-outline-accent-4:hover {
+ background-color: #d50000 !important;
+ }
+ input:focus ~ .bg-red {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #d50000 !important;
+ }
+ .border-red.border-accent-4 {
+ border: 1px solid #d50000 !important;
+ }
+ .border-top-red.border-top-accent-4 {
+ border-top: 1px solid #d50000 !important;
+ }
+ .border-bottom-red.border-bottom-accent-4 {
+ border-bottom: 1px solid #d50000 !important;
+ }
+ .border-left-red.border-left-accent-4 {
+ border-left: 1px solid #d50000 !important;
+ }
+ .border-right-red.border-right-accent-4 {
+ border-right: 1px solid #d50000 !important;
+ }
+ .btn-pink.btn-lighten-5,
+ .btn-pink.btn-lighten-5:hover {
+ border-color: #c2185b !important;
+ }
+ .overlay-red.overlay-accent-4 {
+ background: #d50000;
+ background: rgba(213, 0, 0, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="red"]:before {
+ background-color: #d50000;
+ }
+ .bg-pink.bg-lighten-5,
+ .btn-pink.btn-lighten-5 {
+ background-color: #fce4ec !important;
+ }
+ .pink.lighten-5 {
+ color: #fce4ec !important;
+ }
+ .btn-pink.btn-lighten-5:hover {
+ background-color: #ad1457 !important;
+ }
+ .btn-pink.btn-lighten-5:active,
+ .btn-pink.btn-lighten-5:focus {
+ border-color: #ad1457 !important;
+ background-color: #880e4f !important;
+ }
+ .btn-outline-pink.btn-outline-lighten-5 {
+ border-color: #fce4ec !important;
+ color: #fce4ec !important;
+ }
+ .btn-outline-pink.btn-outline-lighten-5:hover {
+ background-color: #fce4ec !important;
+ }
+ .border-pink.border-lighten-5 {
+ border: 1px solid #fce4ec !important;
+ }
+ .border-top-pink.border-top-lighten-5 {
+ border-top: 1px solid #fce4ec !important;
+ }
+ .border-bottom-pink.border-bottom-lighten-5 {
+ border-bottom: 1px solid #fce4ec !important;
+ }
+ .border-left-pink.border-left-lighten-5 {
+ border-left: 1px solid #fce4ec !important;
+ }
+ .border-right-pink.border-right-lighten-5 {
+ border-right: 1px solid #fce4ec !important;
+ }
+ .btn-pink.btn-lighten-4,
+ .btn-pink.btn-lighten-4:hover {
+ border-color: #c2185b !important;
+ }
+ .overlay-pink.overlay-lighten-5 {
+ background: #fce4ec;
+ background: rgba(252, 228, 236, 0.8);
+ }
+ .bg-pink.bg-lighten-4,
+ .btn-pink.btn-lighten-4 {
+ background-color: #f8bbd0 !important;
+ }
+ .pink.lighten-4 {
+ color: #f8bbd0 !important;
+ }
+ .btn-pink.btn-lighten-4:hover {
+ background-color: #ad1457 !important;
+ }
+ .btn-pink.btn-lighten-4:active,
+ .btn-pink.btn-lighten-4:focus {
+ border-color: #ad1457 !important;
+ background-color: #880e4f !important;
+ }
+ .btn-outline-pink.btn-outline-lighten-4 {
+ border-color: #f8bbd0 !important;
+ color: #f8bbd0 !important;
+ }
+ .btn-outline-pink.btn-outline-lighten-4:hover {
+ background-color: #f8bbd0 !important;
+ }
+ .border-pink.border-lighten-4 {
+ border: 1px solid #f8bbd0 !important;
+ }
+ .border-top-pink.border-top-lighten-4 {
+ border-top: 1px solid #f8bbd0 !important;
+ }
+ .border-bottom-pink.border-bottom-lighten-4 {
+ border-bottom: 1px solid #f8bbd0 !important;
+ }
+ .border-left-pink.border-left-lighten-4 {
+ border-left: 1px solid #f8bbd0 !important;
+ }
+ .border-right-pink.border-right-lighten-4 {
+ border-right: 1px solid #f8bbd0 !important;
+ }
+ .btn-pink.btn-lighten-3,
+ .btn-pink.btn-lighten-3:hover {
+ border-color: #c2185b !important;
+ }
+ .overlay-pink.overlay-lighten-4 {
+ background: #f8bbd0;
+ background: rgba(248, 187, 208, 0.8);
+ }
+ .bg-pink.bg-lighten-3,
+ .btn-pink.btn-lighten-3 {
+ background-color: #f48fb1 !important;
+ }
+ .pink.lighten-3 {
+ color: #f48fb1 !important;
+ }
+ .btn-pink.btn-lighten-3:hover {
+ background-color: #ad1457 !important;
+ }
+ .btn-pink.btn-lighten-3:active,
+ .btn-pink.btn-lighten-3:focus {
+ border-color: #ad1457 !important;
+ background-color: #880e4f !important;
+ }
+ .btn-outline-pink.btn-outline-lighten-3 {
+ border-color: #f48fb1 !important;
+ color: #f48fb1 !important;
+ }
+ .btn-outline-pink.btn-outline-lighten-3:hover {
+ background-color: #f48fb1 !important;
+ }
+ .border-pink.border-lighten-3 {
+ border: 1px solid #f48fb1 !important;
+ }
+ .border-top-pink.border-top-lighten-3 {
+ border-top: 1px solid #f48fb1 !important;
+ }
+ .border-bottom-pink.border-bottom-lighten-3 {
+ border-bottom: 1px solid #f48fb1 !important;
+ }
+ .border-left-pink.border-left-lighten-3 {
+ border-left: 1px solid #f48fb1 !important;
+ }
+ .border-right-pink.border-right-lighten-3 {
+ border-right: 1px solid #f48fb1 !important;
+ }
+ .btn-pink.btn-lighten-2,
+ .btn-pink.btn-lighten-2:hover {
+ border-color: #c2185b !important;
+ }
+ .overlay-pink.overlay-lighten-3 {
+ background: #f48fb1;
+ background: rgba(244, 143, 177, 0.8);
+ }
+ .bg-pink.bg-lighten-2,
+ .btn-pink.btn-lighten-2 {
+ background-color: #f06292 !important;
+ }
+ .pink.lighten-2 {
+ color: #f06292 !important;
+ }
+ .btn-pink.btn-lighten-2:hover {
+ background-color: #ad1457 !important;
+ }
+ .btn-pink.btn-lighten-2:active,
+ .btn-pink.btn-lighten-2:focus {
+ border-color: #ad1457 !important;
+ background-color: #880e4f !important;
+ }
+ .btn-outline-pink.btn-outline-lighten-2 {
+ border-color: #f06292 !important;
+ color: #f06292 !important;
+ }
+ .btn-outline-pink.btn-outline-lighten-2:hover {
+ background-color: #f06292 !important;
+ }
+ .border-pink.border-lighten-2 {
+ border: 1px solid #f06292 !important;
+ }
+ .border-top-pink.border-top-lighten-2 {
+ border-top: 1px solid #f06292 !important;
+ }
+ .border-bottom-pink.border-bottom-lighten-2 {
+ border-bottom: 1px solid #f06292 !important;
+ }
+ .border-left-pink.border-left-lighten-2 {
+ border-left: 1px solid #f06292 !important;
+ }
+ .border-right-pink.border-right-lighten-2 {
+ border-right: 1px solid #f06292 !important;
+ }
+ .btn-pink.btn-lighten-1,
+ .btn-pink.btn-lighten-1:hover {
+ border-color: #c2185b !important;
+ }
+ .overlay-pink.overlay-lighten-2 {
+ background: #f06292;
+ background: rgba(240, 98, 146, 0.8);
+ }
+ .bg-pink.bg-lighten-1,
+ .btn-pink.btn-lighten-1 {
+ background-color: #ec407a !important;
+ }
+ .pink.lighten-1 {
+ color: #ec407a !important;
+ }
+ .btn-pink.btn-lighten-1:hover {
+ background-color: #ad1457 !important;
+ }
+ .btn-pink.btn-lighten-1:active,
+ .btn-pink.btn-lighten-1:focus {
+ border-color: #ad1457 !important;
+ background-color: #880e4f !important;
+ }
+ .btn-outline-pink.btn-outline-lighten-1 {
+ border-color: #ec407a !important;
+ color: #ec407a !important;
+ }
+ .btn-outline-pink.btn-outline-lighten-1:hover {
+ background-color: #ec407a !important;
+ }
+ .border-pink.border-lighten-1 {
+ border: 1px solid #ec407a !important;
+ }
+ .border-top-pink.border-top-lighten-1 {
+ border-top: 1px solid #ec407a !important;
+ }
+ .border-bottom-pink.border-bottom-lighten-1 {
+ border-bottom: 1px solid #ec407a !important;
+ }
+ .border-left-pink.border-left-lighten-1 {
+ border-left: 1px solid #ec407a !important;
+ }
+ .border-right-pink.border-right-lighten-1 {
+ border-right: 1px solid #ec407a !important;
+ }
+ .overlay-pink.overlay-lighten-1 {
+ background: #ec407a;
+ background: rgba(236, 64, 122, 0.8);
+ }
+ .pink {
+ color: #e91e63 !important;
+ }
+ .bg-pink {
+ background-color: #e91e63 !important;
+ }
+ .bg-pink .card-footer,
+ .bg-pink .card-header {
+ background-color: transparent;
+ }
+ .alert-pink {
+ border-color: #ef5f90 !important;
+ background-color: #ef5f90 !important;
+ color: #4d081f !important;
+ }
+ .alert-pink .alert-link {
+ color: #280410 !important;
+ }
+ .bullet.bullet-pink {
+ background-color: #e91e63;
+ }
+ .bg-light-pink {
+ background-color: rgba(233, 30, 99, 0.15);
+ }
+ .bg-pink.badge-glow,
+ .border-pink.badge-glow {
+ box-shadow: 0 0 10px #e91e63;
+ }
+ .overlay-pink {
+ background: #e91e63;
+ background: rgba(233, 30, 99, 0.8);
+ }
+ .btn-pink {
+ background-color: #e91e63 !important;
+ color: #fff;
+ }
+ .btn-pink:hover {
+ border-color: #d81b60 !important;
+ background-color: #ec407a !important;
+ color: #fff !important;
+ }
+ .btn-pink:active,
+ .btn-pink:focus {
+ border-color: #c2185b !important;
+ background-color: #ad1457 !important;
+ color: #fff !important;
+ }
+ .btn-outline-pink {
+ border-color: #e91e63;
+ background-color: transparent;
+ color: #e91e63;
+ }
+ .btn-outline-pink:hover,
+ .widget-timeline .timeline-items.timeline-icon-pink:before {
+ background-color: #e91e63;
+ }
+ .btn-outline-pink:hover {
+ color: #fff !important;
+ }
+ input[type="checkbox"].bg-pink + .custom-control-label:before,
+ input[type="radio"].bg-pink + .custom-control-label:before {
+ background-color: #e91e63 !important;
+ }
+ .bg-pink.bg-darken-1,
+ .btn-pink.btn-darken-1 {
+ background-color: #d81b60 !important;
+ }
+ .border-pink {
+ border: 1px solid #e91e63 !important;
+ }
+ .border-top-pink {
+ border-top: 1px solid #e91e63;
+ }
+ .border-bottom-pink {
+ border-bottom: 1px solid #e91e63;
+ }
+ .border-left-pink {
+ border-left: 1px solid #e91e63;
+ }
+ .border-right-pink {
+ border-right: 1px solid #e91e63;
+ }
+ .pink.darken-1 {
+ color: #d81b60 !important;
+ }
+ .btn-pink.btn-darken-1 {
+ border-color: #c2185b !important;
+ }
+ .btn-pink.btn-darken-1:hover {
+ border-color: #c2185b !important;
+ background-color: #ad1457 !important;
+ }
+ .btn-pink.btn-darken-1:active,
+ .btn-pink.btn-darken-1:focus {
+ border-color: #ad1457 !important;
+ background-color: #880e4f !important;
+ }
+ .btn-outline-pink.btn-outline-darken-1 {
+ border-color: #d81b60 !important;
+ color: #d81b60 !important;
+ }
+ .btn-outline-pink.btn-outline-darken-1:hover {
+ background-color: #d81b60 !important;
+ }
+ .border-pink.border-darken-1 {
+ border: 1px solid #d81b60 !important;
+ }
+ .border-top-pink.border-top-darken-1 {
+ border-top: 1px solid #d81b60 !important;
+ }
+ .border-bottom-pink.border-bottom-darken-1 {
+ border-bottom: 1px solid #d81b60 !important;
+ }
+ .border-left-pink.border-left-darken-1 {
+ border-left: 1px solid #d81b60 !important;
+ }
+ .border-right-pink.border-right-darken-1 {
+ border-right: 1px solid #d81b60 !important;
+ }
+ .btn-pink.btn-darken-2,
+ .btn-pink.btn-darken-2:hover {
+ border-color: #c2185b !important;
+ }
+ .overlay-pink.overlay-darken-1 {
+ background: #d81b60;
+ background: rgba(216, 27, 96, 0.8);
+ }
+ .bg-pink.bg-darken-2,
+ .btn-pink.btn-darken-2 {
+ background-color: #c2185b !important;
+ }
+ .pink.darken-2 {
+ color: #c2185b !important;
+ }
+ .btn-pink.btn-darken-2:hover {
+ background-color: #ad1457 !important;
+ }
+ .btn-pink.btn-darken-2:active,
+ .btn-pink.btn-darken-2:focus {
+ border-color: #ad1457 !important;
+ background-color: #880e4f !important;
+ }
+ .btn-outline-pink.btn-outline-darken-2 {
+ border-color: #c2185b !important;
+ color: #c2185b !important;
+ }
+ .btn-outline-pink.btn-outline-darken-2:hover {
+ background-color: #c2185b !important;
+ }
+ .border-pink.border-darken-2 {
+ border: 1px solid #c2185b !important;
+ }
+ .border-top-pink.border-top-darken-2 {
+ border-top: 1px solid #c2185b !important;
+ }
+ .border-bottom-pink.border-bottom-darken-2 {
+ border-bottom: 1px solid #c2185b !important;
+ }
+ .border-left-pink.border-left-darken-2 {
+ border-left: 1px solid #c2185b !important;
+ }
+ .border-right-pink.border-right-darken-2 {
+ border-right: 1px solid #c2185b !important;
+ }
+ .overlay-pink.overlay-darken-2 {
+ background: #c2185b;
+ background: rgba(194, 24, 91, 0.8);
+ }
+ .pink.darken-3 {
+ color: #ad1457 !important;
+ }
+ .bg-pink.bg-darken-3 {
+ background-color: #ad1457 !important;
+ }
+ .btn-pink.btn-darken-3,
+ .btn-pink.btn-darken-3:hover {
+ border-color: #c2185b !important;
+ background-color: #ad1457 !important;
+ }
+ .btn-pink.btn-darken-3:active,
+ .btn-pink.btn-darken-3:focus {
+ border-color: #ad1457 !important;
+ background-color: #880e4f !important;
+ }
+ .btn-outline-pink.btn-outline-darken-3 {
+ border-color: #ad1457 !important;
+ color: #ad1457 !important;
+ }
+ .btn-outline-pink.btn-outline-darken-3:hover {
+ background-color: #ad1457 !important;
+ }
+ .border-pink.border-darken-3 {
+ border: 1px solid #ad1457 !important;
+ }
+ .border-top-pink.border-top-darken-3 {
+ border-top: 1px solid #ad1457 !important;
+ }
+ .border-bottom-pink.border-bottom-darken-3 {
+ border-bottom: 1px solid #ad1457 !important;
+ }
+ .border-left-pink.border-left-darken-3 {
+ border-left: 1px solid #ad1457 !important;
+ }
+ .border-right-pink.border-right-darken-3 {
+ border-right: 1px solid #ad1457 !important;
+ }
+ .btn-pink.btn-darken-4,
+ .btn-pink.btn-darken-4:hover {
+ border-color: #c2185b !important;
+ }
+ .overlay-pink.overlay-darken-3 {
+ background: #ad1457;
+ background: rgba(173, 20, 87, 0.8);
+ }
+ .bg-pink.bg-darken-4,
+ .btn-pink.btn-darken-4 {
+ background-color: #880e4f !important;
+ }
+ .pink.darken-4 {
+ color: #880e4f !important;
+ }
+ .btn-pink.btn-darken-4:hover {
+ background-color: #ad1457 !important;
+ }
+ .btn-pink.btn-darken-4:active,
+ .btn-pink.btn-darken-4:focus {
+ border-color: #ad1457 !important;
+ background-color: #880e4f !important;
+ }
+ .btn-outline-pink.btn-outline-darken-4 {
+ border-color: #880e4f !important;
+ color: #880e4f !important;
+ }
+ .btn-outline-pink.btn-outline-darken-4:hover {
+ background-color: #880e4f !important;
+ }
+ .border-pink.border-darken-4 {
+ border: 1px solid #880e4f !important;
+ }
+ .border-top-pink.border-top-darken-4 {
+ border-top: 1px solid #880e4f !important;
+ }
+ .border-bottom-pink.border-bottom-darken-4 {
+ border-bottom: 1px solid #880e4f !important;
+ }
+ .border-left-pink.border-left-darken-4 {
+ border-left: 1px solid #880e4f !important;
+ }
+ .border-right-pink.border-right-darken-4 {
+ border-right: 1px solid #880e4f !important;
+ }
+ .btn-pink.btn-accent-1,
+ .btn-pink.btn-accent-1:hover {
+ border-color: #c2185b !important;
+ }
+ .overlay-pink.overlay-darken-4 {
+ background: #880e4f;
+ background: rgba(136, 14, 79, 0.8);
+ }
+ .bg-pink.bg-accent-1,
+ .btn-pink.btn-accent-1 {
+ background-color: #ff80ab !important;
+ }
+ .pink.accent-1 {
+ color: #ff80ab !important;
+ }
+ .btn-pink.btn-accent-1:hover {
+ background-color: #ad1457 !important;
+ }
+ .btn-pink.btn-accent-1:active,
+ .btn-pink.btn-accent-1:focus {
+ border-color: #ad1457 !important;
+ background-color: #880e4f !important;
+ }
+ .btn-outline-pink.btn-outline-accent-1 {
+ border-color: #ff80ab !important;
+ color: #ff80ab !important;
+ }
+ .btn-outline-pink.btn-outline-accent-1:hover {
+ background-color: #ff80ab !important;
+ }
+ .border-pink.border-accent-1 {
+ border: 1px solid #ff80ab !important;
+ }
+ .border-top-pink.border-top-accent-1 {
+ border-top: 1px solid #ff80ab !important;
+ }
+ .border-bottom-pink.border-bottom-accent-1 {
+ border-bottom: 1px solid #ff80ab !important;
+ }
+ .border-left-pink.border-left-accent-1 {
+ border-left: 1px solid #ff80ab !important;
+ }
+ .border-right-pink.border-right-accent-1 {
+ border-right: 1px solid #ff80ab !important;
+ }
+ .btn-pink.btn-accent-2,
+ .btn-pink.btn-accent-2:hover {
+ border-color: #c2185b !important;
+ }
+ .overlay-pink.overlay-accent-1 {
+ background: #ff80ab;
+ background: rgba(255, 128, 171, 0.8);
+ }
+ .bg-pink.bg-accent-2,
+ .btn-pink.btn-accent-2 {
+ background-color: #ff4081 !important;
+ }
+ .pink.accent-2 {
+ color: #ff4081 !important;
+ }
+ .btn-pink.btn-accent-2:hover {
+ background-color: #ad1457 !important;
+ }
+ .btn-pink.btn-accent-2:active,
+ .btn-pink.btn-accent-2:focus {
+ border-color: #ad1457 !important;
+ background-color: #880e4f !important;
+ }
+ .btn-outline-pink.btn-outline-accent-2 {
+ border-color: #ff4081 !important;
+ color: #ff4081 !important;
+ }
+ .btn-outline-pink.btn-outline-accent-2:hover {
+ background-color: #ff4081 !important;
+ }
+ .border-pink.border-accent-2 {
+ border: 1px solid #ff4081 !important;
+ }
+ .border-top-pink.border-top-accent-2 {
+ border-top: 1px solid #ff4081 !important;
+ }
+ .border-bottom-pink.border-bottom-accent-2 {
+ border-bottom: 1px solid #ff4081 !important;
+ }
+ .border-left-pink.border-left-accent-2 {
+ border-left: 1px solid #ff4081 !important;
+ }
+ .border-right-pink.border-right-accent-2 {
+ border-right: 1px solid #ff4081 !important;
+ }
+ .btn-pink.btn-accent-3,
+ .btn-pink.btn-accent-3:hover {
+ border-color: #c2185b !important;
+ }
+ .overlay-pink.overlay-accent-2 {
+ background: #ff4081;
+ background: rgba(255, 64, 129, 0.8);
+ }
+ .bg-pink.bg-accent-3,
+ .btn-pink.btn-accent-3 {
+ background-color: #f50057 !important;
+ }
+ .pink.accent-3 {
+ color: #f50057 !important;
+ }
+ .btn-pink.btn-accent-3:hover {
+ background-color: #ad1457 !important;
+ }
+ .btn-pink.btn-accent-3:active,
+ .btn-pink.btn-accent-3:focus {
+ border-color: #ad1457 !important;
+ background-color: #880e4f !important;
+ }
+ .btn-outline-pink.btn-outline-accent-3 {
+ border-color: #f50057 !important;
+ color: #f50057 !important;
+ }
+ .btn-outline-pink.btn-outline-accent-3:hover {
+ background-color: #f50057 !important;
+ }
+ .border-pink.border-accent-3 {
+ border: 1px solid #f50057 !important;
+ }
+ .border-top-pink.border-top-accent-3 {
+ border-top: 1px solid #f50057 !important;
+ }
+ .border-bottom-pink.border-bottom-accent-3 {
+ border-bottom: 1px solid #f50057 !important;
+ }
+ .border-left-pink.border-left-accent-3 {
+ border-left: 1px solid #f50057 !important;
+ }
+ .border-right-pink.border-right-accent-3 {
+ border-right: 1px solid #f50057 !important;
+ }
+ .btn-pink.btn-accent-4,
+ .btn-pink.btn-accent-4:hover {
+ border-color: #c2185b !important;
+ }
+ .overlay-pink.overlay-accent-3 {
+ background: #f50057;
+ background: rgba(245, 0, 87, 0.8);
+ }
+ .bg-pink.bg-accent-4,
+ .btn-pink.btn-accent-4 {
+ background-color: #c51162 !important;
+ }
+ .pink.accent-4 {
+ color: #c51162 !important;
+ }
+ .btn-pink.btn-accent-4:hover {
+ background-color: #ad1457 !important;
+ }
+ .btn-pink.btn-accent-4:active,
+ .btn-pink.btn-accent-4:focus {
+ border-color: #ad1457 !important;
+ background-color: #880e4f !important;
+ }
+ .btn-outline-pink.btn-outline-accent-4 {
+ border-color: #c51162 !important;
+ color: #c51162 !important;
+ }
+ .btn-outline-pink.btn-outline-accent-4:hover {
+ background-color: #c51162 !important;
+ }
+ input:focus ~ .bg-pink {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #c51162 !important;
+ }
+ .border-pink.border-accent-4 {
+ border: 1px solid #c51162 !important;
+ }
+ .border-top-pink.border-top-accent-4 {
+ border-top: 1px solid #c51162 !important;
+ }
+ .border-bottom-pink.border-bottom-accent-4 {
+ border-bottom: 1px solid #c51162 !important;
+ }
+ .border-left-pink.border-left-accent-4 {
+ border-left: 1px solid #c51162 !important;
+ }
+ .border-right-pink.border-right-accent-4 {
+ border-right: 1px solid #c51162 !important;
+ }
+ .overlay-pink.overlay-accent-4 {
+ background: #c51162;
+ background: rgba(197, 17, 98, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="pink"]:before {
+ background-color: #c51162;
+ }
+ .bg-purple.bg-lighten-5,
+ .btn-purple.btn-lighten-5 {
+ background-color: #f3e5f5 !important;
+ }
+ .purple.lighten-5 {
+ color: #f3e5f5 !important;
+ }
+ .btn-purple.btn-lighten-5 {
+ border-color: #7b1fa2 !important;
+ }
+ .btn-purple.btn-lighten-5:hover {
+ border-color: #7b1fa2 !important;
+ background-color: #6a1b9a !important;
+ }
+ .btn-purple.btn-lighten-5:active,
+ .btn-purple.btn-lighten-5:focus {
+ border-color: #6a1b9a !important;
+ background-color: #4a148c !important;
+ }
+ .btn-outline-purple.btn-outline-lighten-5 {
+ border-color: #f3e5f5 !important;
+ color: #f3e5f5 !important;
+ }
+ .btn-outline-purple.btn-outline-lighten-5:hover {
+ background-color: #f3e5f5 !important;
+ }
+ .border-purple.border-lighten-5 {
+ border: 1px solid #f3e5f5 !important;
+ }
+ .border-top-purple.border-top-lighten-5 {
+ border-top: 1px solid #f3e5f5 !important;
+ }
+ .border-bottom-purple.border-bottom-lighten-5 {
+ border-bottom: 1px solid #f3e5f5 !important;
+ }
+ .border-left-purple.border-left-lighten-5 {
+ border-left: 1px solid #f3e5f5 !important;
+ }
+ .border-right-purple.border-right-lighten-5 {
+ border-right: 1px solid #f3e5f5 !important;
+ }
+ .overlay-purple.overlay-lighten-5 {
+ background: #f3e5f5;
+ background: rgba(243, 229, 245, 0.8);
+ }
+ .bg-purple.bg-lighten-4,
+ .btn-purple.btn-lighten-4 {
+ background-color: #e1bee7 !important;
+ }
+ .purple.lighten-4 {
+ color: #e1bee7 !important;
+ }
+ .btn-purple.btn-lighten-4 {
+ border-color: #7b1fa2 !important;
+ }
+ .btn-purple.btn-lighten-4:hover {
+ border-color: #7b1fa2 !important;
+ background-color: #6a1b9a !important;
+ }
+ .btn-purple.btn-lighten-4:active,
+ .btn-purple.btn-lighten-4:focus {
+ border-color: #6a1b9a !important;
+ background-color: #4a148c !important;
+ }
+ .btn-outline-purple.btn-outline-lighten-4 {
+ border-color: #e1bee7 !important;
+ color: #e1bee7 !important;
+ }
+ .btn-outline-purple.btn-outline-lighten-4:hover {
+ background-color: #e1bee7 !important;
+ }
+ .border-purple.border-lighten-4 {
+ border: 1px solid #e1bee7 !important;
+ }
+ .border-top-purple.border-top-lighten-4 {
+ border-top: 1px solid #e1bee7 !important;
+ }
+ .border-bottom-purple.border-bottom-lighten-4 {
+ border-bottom: 1px solid #e1bee7 !important;
+ }
+ .border-left-purple.border-left-lighten-4 {
+ border-left: 1px solid #e1bee7 !important;
+ }
+ .border-right-purple.border-right-lighten-4 {
+ border-right: 1px solid #e1bee7 !important;
+ }
+ .overlay-purple.overlay-lighten-4 {
+ background: #e1bee7;
+ background: rgba(225, 190, 231, 0.8);
+ }
+ .bg-purple.bg-lighten-3,
+ .btn-purple.btn-lighten-3 {
+ background-color: #ce93d8 !important;
+ }
+ .purple.lighten-3 {
+ color: #ce93d8 !important;
+ }
+ .btn-purple.btn-lighten-3 {
+ border-color: #7b1fa2 !important;
+ }
+ .btn-purple.btn-lighten-3:hover {
+ border-color: #7b1fa2 !important;
+ background-color: #6a1b9a !important;
+ }
+ .btn-purple.btn-lighten-3:active,
+ .btn-purple.btn-lighten-3:focus {
+ border-color: #6a1b9a !important;
+ background-color: #4a148c !important;
+ }
+ .btn-outline-purple.btn-outline-lighten-3 {
+ border-color: #ce93d8 !important;
+ color: #ce93d8 !important;
+ }
+ .btn-outline-purple.btn-outline-lighten-3:hover {
+ background-color: #ce93d8 !important;
+ }
+ .border-purple.border-lighten-3 {
+ border: 1px solid #ce93d8 !important;
+ }
+ .border-top-purple.border-top-lighten-3 {
+ border-top: 1px solid #ce93d8 !important;
+ }
+ .border-bottom-purple.border-bottom-lighten-3 {
+ border-bottom: 1px solid #ce93d8 !important;
+ }
+ .border-left-purple.border-left-lighten-3 {
+ border-left: 1px solid #ce93d8 !important;
+ }
+ .border-right-purple.border-right-lighten-3 {
+ border-right: 1px solid #ce93d8 !important;
+ }
+ .overlay-purple.overlay-lighten-3 {
+ background: #ce93d8;
+ background: rgba(206, 147, 216, 0.8);
+ }
+ .bg-purple.bg-lighten-2,
+ .btn-purple.btn-lighten-2 {
+ background-color: #ba68c8 !important;
+ }
+ .purple.lighten-2 {
+ color: #ba68c8 !important;
+ }
+ .btn-purple.btn-lighten-2 {
+ border-color: #7b1fa2 !important;
+ }
+ .btn-purple.btn-lighten-2:hover {
+ border-color: #7b1fa2 !important;
+ background-color: #6a1b9a !important;
+ }
+ .btn-purple.btn-lighten-2:active,
+ .btn-purple.btn-lighten-2:focus {
+ border-color: #6a1b9a !important;
+ background-color: #4a148c !important;
+ }
+ .btn-outline-purple.btn-outline-lighten-2 {
+ border-color: #ba68c8 !important;
+ color: #ba68c8 !important;
+ }
+ .btn-outline-purple.btn-outline-lighten-2:hover {
+ background-color: #ba68c8 !important;
+ }
+ .border-purple.border-lighten-2 {
+ border: 1px solid #ba68c8 !important;
+ }
+ .border-top-purple.border-top-lighten-2 {
+ border-top: 1px solid #ba68c8 !important;
+ }
+ .border-bottom-purple.border-bottom-lighten-2 {
+ border-bottom: 1px solid #ba68c8 !important;
+ }
+ .border-left-purple.border-left-lighten-2 {
+ border-left: 1px solid #ba68c8 !important;
+ }
+ .border-right-purple.border-right-lighten-2 {
+ border-right: 1px solid #ba68c8 !important;
+ }
+ .overlay-purple.overlay-lighten-2 {
+ background: #ba68c8;
+ background: rgba(186, 104, 200, 0.8);
+ }
+ .bg-purple.bg-lighten-1,
+ .btn-purple.btn-lighten-1 {
+ background-color: #ab47bc !important;
+ }
+ .purple.lighten-1 {
+ color: #ab47bc !important;
+ }
+ .btn-purple.btn-lighten-1 {
+ border-color: #7b1fa2 !important;
+ }
+ .btn-purple.btn-lighten-1:hover {
+ border-color: #7b1fa2 !important;
+ background-color: #6a1b9a !important;
+ }
+ .btn-purple.btn-lighten-1:active,
+ .btn-purple.btn-lighten-1:focus {
+ border-color: #6a1b9a !important;
+ background-color: #4a148c !important;
+ }
+ .btn-outline-purple.btn-outline-lighten-1 {
+ border-color: #ab47bc !important;
+ color: #ab47bc !important;
+ }
+ .btn-outline-purple.btn-outline-lighten-1:hover {
+ background-color: #ab47bc !important;
+ }
+ .border-purple.border-lighten-1 {
+ border: 1px solid #ab47bc !important;
+ }
+ .border-top-purple.border-top-lighten-1 {
+ border-top: 1px solid #ab47bc !important;
+ }
+ .border-bottom-purple.border-bottom-lighten-1 {
+ border-bottom: 1px solid #ab47bc !important;
+ }
+ .border-left-purple.border-left-lighten-1 {
+ border-left: 1px solid #ab47bc !important;
+ }
+ .border-right-purple.border-right-lighten-1 {
+ border-right: 1px solid #ab47bc !important;
+ }
+ .overlay-purple.overlay-lighten-1 {
+ background: #ab47bc;
+ background: rgba(171, 71, 188, 0.8);
+ }
+ .purple {
+ color: #9c27b0 !important;
+ }
+ .bg-purple {
+ background-color: #9c27b0 !important;
+ }
+ .bg-purple .card-footer,
+ .bg-purple .card-header {
+ background-color: transparent;
+ }
+ .alert-purple {
+ border-color: #c248d6 !important;
+ background-color: #c248d6 !important;
+ color: #1a071e !important;
+ }
+ .alert-purple .alert-link {
+ color: #000 !important;
+ }
+ .bullet.bullet-purple {
+ background-color: #9c27b0;
+ }
+ .bg-light-purple {
+ background-color: rgba(156, 39, 176, 0.15);
+ }
+ .bg-purple.badge-glow,
+ .border-purple.badge-glow {
+ box-shadow: 0 0 10px #9c27b0;
+ }
+ .overlay-purple {
+ background: #9c27b0;
+ background: rgba(156, 39, 176, 0.8);
+ }
+ .btn-purple {
+ background-color: #9c27b0 !important;
+ color: #fff;
+ }
+ .btn-purple:hover {
+ border-color: #8e24aa !important;
+ background-color: #ab47bc !important;
+ color: #fff !important;
+ }
+ .btn-purple:active,
+ .btn-purple:focus {
+ border-color: #7b1fa2 !important;
+ background-color: #6a1b9a !important;
+ color: #fff !important;
+ }
+ .btn-outline-purple {
+ border-color: #9c27b0;
+ background-color: transparent;
+ color: #9c27b0;
+ }
+ .btn-outline-purple:hover {
+ background-color: #9c27b0;
+ color: #fff !important;
+ }
+ .widget-timeline .timeline-items.timeline-icon-purple:before {
+ background-color: #9c27b0;
+ }
+ input[type="checkbox"].bg-purple + .custom-control-label:before,
+ input[type="radio"].bg-purple + .custom-control-label:before {
+ background-color: #9c27b0 !important;
+ }
+ .bg-purple.bg-darken-1,
+ .btn-purple.btn-darken-1 {
+ background-color: #8e24aa !important;
+ }
+ .border-purple {
+ border: 1px solid #9c27b0 !important;
+ }
+ .border-top-purple {
+ border-top: 1px solid #9c27b0;
+ }
+ .border-bottom-purple {
+ border-bottom: 1px solid #9c27b0;
+ }
+ .border-left-purple {
+ border-left: 1px solid #9c27b0;
+ }
+ .border-right-purple {
+ border-right: 1px solid #9c27b0;
+ }
+ .purple.darken-1 {
+ color: #8e24aa !important;
+ }
+ .btn-purple.btn-darken-1 {
+ border-color: #7b1fa2 !important;
+ }
+ .btn-purple.btn-darken-1:hover {
+ border-color: #7b1fa2 !important;
+ background-color: #6a1b9a !important;
+ }
+ .btn-purple.btn-darken-1:active,
+ .btn-purple.btn-darken-1:focus {
+ border-color: #6a1b9a !important;
+ background-color: #4a148c !important;
+ }
+ .btn-outline-purple.btn-outline-darken-1 {
+ border-color: #8e24aa !important;
+ color: #8e24aa !important;
+ }
+ .btn-outline-purple.btn-outline-darken-1:hover {
+ background-color: #8e24aa !important;
+ }
+ .border-purple.border-darken-1 {
+ border: 1px solid #8e24aa !important;
+ }
+ .border-top-purple.border-top-darken-1 {
+ border-top: 1px solid #8e24aa !important;
+ }
+ .border-bottom-purple.border-bottom-darken-1 {
+ border-bottom: 1px solid #8e24aa !important;
+ }
+ .border-left-purple.border-left-darken-1 {
+ border-left: 1px solid #8e24aa !important;
+ }
+ .border-right-purple.border-right-darken-1 {
+ border-right: 1px solid #8e24aa !important;
+ }
+ .btn-purple.btn-darken-2,
+ .btn-purple.btn-darken-2:hover {
+ border-color: #7b1fa2 !important;
+ }
+ .overlay-purple.overlay-darken-1 {
+ background: #8e24aa;
+ background: rgba(142, 36, 170, 0.8);
+ }
+ .bg-purple.bg-darken-2,
+ .btn-purple.btn-darken-2 {
+ background-color: #7b1fa2 !important;
+ }
+ .purple.darken-2 {
+ color: #7b1fa2 !important;
+ }
+ .btn-purple.btn-darken-2:hover {
+ background-color: #6a1b9a !important;
+ }
+ .btn-purple.btn-darken-2:active,
+ .btn-purple.btn-darken-2:focus {
+ border-color: #6a1b9a !important;
+ background-color: #4a148c !important;
+ }
+ .btn-outline-purple.btn-outline-darken-2 {
+ border-color: #7b1fa2 !important;
+ color: #7b1fa2 !important;
+ }
+ .btn-outline-purple.btn-outline-darken-2:hover {
+ background-color: #7b1fa2 !important;
+ }
+ .border-purple.border-darken-2 {
+ border: 1px solid #7b1fa2 !important;
+ }
+ .border-top-purple.border-top-darken-2 {
+ border-top: 1px solid #7b1fa2 !important;
+ }
+ .border-bottom-purple.border-bottom-darken-2 {
+ border-bottom: 1px solid #7b1fa2 !important;
+ }
+ .border-left-purple.border-left-darken-2 {
+ border-left: 1px solid #7b1fa2 !important;
+ }
+ .border-right-purple.border-right-darken-2 {
+ border-right: 1px solid #7b1fa2 !important;
+ }
+ .overlay-purple.overlay-darken-2 {
+ background: #7b1fa2;
+ background: rgba(123, 31, 162, 0.8);
+ }
+ .purple.darken-3 {
+ color: #6a1b9a !important;
+ }
+ .bg-purple.bg-darken-3 {
+ background-color: #6a1b9a !important;
+ }
+ .btn-purple.btn-darken-3,
+ .btn-purple.btn-darken-3:hover {
+ border-color: #7b1fa2 !important;
+ background-color: #6a1b9a !important;
+ }
+ .btn-purple.btn-darken-3:active,
+ .btn-purple.btn-darken-3:focus {
+ border-color: #6a1b9a !important;
+ background-color: #4a148c !important;
+ }
+ .btn-outline-purple.btn-outline-darken-3 {
+ border-color: #6a1b9a !important;
+ color: #6a1b9a !important;
+ }
+ .btn-outline-purple.btn-outline-darken-3:hover {
+ background-color: #6a1b9a !important;
+ }
+ .border-purple.border-darken-3 {
+ border: 1px solid #6a1b9a !important;
+ }
+ .border-top-purple.border-top-darken-3 {
+ border-top: 1px solid #6a1b9a !important;
+ }
+ .border-bottom-purple.border-bottom-darken-3 {
+ border-bottom: 1px solid #6a1b9a !important;
+ }
+ .border-left-purple.border-left-darken-3 {
+ border-left: 1px solid #6a1b9a !important;
+ }
+ .border-right-purple.border-right-darken-3 {
+ border-right: 1px solid #6a1b9a !important;
+ }
+ .btn-purple.btn-darken-4,
+ .btn-purple.btn-darken-4:hover {
+ border-color: #7b1fa2 !important;
+ }
+ .overlay-purple.overlay-darken-3 {
+ background: #6a1b9a;
+ background: rgba(106, 27, 154, 0.8);
+ }
+ .bg-purple.bg-darken-4,
+ .btn-purple.btn-darken-4 {
+ background-color: #4a148c !important;
+ }
+ .purple.darken-4 {
+ color: #4a148c !important;
+ }
+ .btn-purple.btn-darken-4:hover {
+ background-color: #6a1b9a !important;
+ }
+ .btn-purple.btn-darken-4:active,
+ .btn-purple.btn-darken-4:focus {
+ border-color: #6a1b9a !important;
+ background-color: #4a148c !important;
+ }
+ .btn-outline-purple.btn-outline-darken-4 {
+ border-color: #4a148c !important;
+ color: #4a148c !important;
+ }
+ .btn-outline-purple.btn-outline-darken-4:hover {
+ background-color: #4a148c !important;
+ }
+ .border-purple.border-darken-4 {
+ border: 1px solid #4a148c !important;
+ }
+ .border-top-purple.border-top-darken-4 {
+ border-top: 1px solid #4a148c !important;
+ }
+ .border-bottom-purple.border-bottom-darken-4 {
+ border-bottom: 1px solid #4a148c !important;
+ }
+ .border-left-purple.border-left-darken-4 {
+ border-left: 1px solid #4a148c !important;
+ }
+ .border-right-purple.border-right-darken-4 {
+ border-right: 1px solid #4a148c !important;
+ }
+ .btn-purple.btn-accent-1,
+ .btn-purple.btn-accent-1:hover {
+ border-color: #7b1fa2 !important;
+ }
+ .overlay-purple.overlay-darken-4 {
+ background: #4a148c;
+ background: rgba(74, 20, 140, 0.8);
+ }
+ .bg-purple.bg-accent-1,
+ .btn-purple.btn-accent-1 {
+ background-color: #ea80fc !important;
+ }
+ .purple.accent-1 {
+ color: #ea80fc !important;
+ }
+ .btn-purple.btn-accent-1:hover {
+ background-color: #6a1b9a !important;
+ }
+ .btn-purple.btn-accent-1:active,
+ .btn-purple.btn-accent-1:focus {
+ border-color: #6a1b9a !important;
+ background-color: #4a148c !important;
+ }
+ .btn-outline-purple.btn-outline-accent-1 {
+ border-color: #ea80fc !important;
+ color: #ea80fc !important;
+ }
+ .btn-outline-purple.btn-outline-accent-1:hover {
+ background-color: #ea80fc !important;
+ }
+ .border-purple.border-accent-1 {
+ border: 1px solid #ea80fc !important;
+ }
+ .border-top-purple.border-top-accent-1 {
+ border-top: 1px solid #ea80fc !important;
+ }
+ .border-bottom-purple.border-bottom-accent-1 {
+ border-bottom: 1px solid #ea80fc !important;
+ }
+ .border-left-purple.border-left-accent-1 {
+ border-left: 1px solid #ea80fc !important;
+ }
+ .border-right-purple.border-right-accent-1 {
+ border-right: 1px solid #ea80fc !important;
+ }
+ .btn-purple.btn-accent-2,
+ .btn-purple.btn-accent-2:hover {
+ border-color: #7b1fa2 !important;
+ }
+ .overlay-purple.overlay-accent-1 {
+ background: #ea80fc;
+ background: rgba(234, 128, 252, 0.8);
+ }
+ .bg-purple.bg-accent-2,
+ .btn-purple.btn-accent-2 {
+ background-color: #e040fb !important;
+ }
+ .purple.accent-2 {
+ color: #e040fb !important;
+ }
+ .btn-purple.btn-accent-2:hover {
+ background-color: #6a1b9a !important;
+ }
+ .btn-purple.btn-accent-2:active,
+ .btn-purple.btn-accent-2:focus {
+ border-color: #6a1b9a !important;
+ background-color: #4a148c !important;
+ }
+ .btn-outline-purple.btn-outline-accent-2 {
+ border-color: #e040fb !important;
+ color: #e040fb !important;
+ }
+ .btn-outline-purple.btn-outline-accent-2:hover {
+ background-color: #e040fb !important;
+ }
+ .border-purple.border-accent-2 {
+ border: 1px solid #e040fb !important;
+ }
+ .border-top-purple.border-top-accent-2 {
+ border-top: 1px solid #e040fb !important;
+ }
+ .border-bottom-purple.border-bottom-accent-2 {
+ border-bottom: 1px solid #e040fb !important;
+ }
+ .border-left-purple.border-left-accent-2 {
+ border-left: 1px solid #e040fb !important;
+ }
+ .border-right-purple.border-right-accent-2 {
+ border-right: 1px solid #e040fb !important;
+ }
+ .btn-purple.btn-accent-3,
+ .btn-purple.btn-accent-3:hover {
+ border-color: #7b1fa2 !important;
+ }
+ .overlay-purple.overlay-accent-2 {
+ background: #e040fb;
+ background: rgba(224, 64, 251, 0.8);
+ }
+ .bg-purple.bg-accent-3,
+ .btn-purple.btn-accent-3 {
+ background-color: #d500f9 !important;
+ }
+ .purple.accent-3 {
+ color: #d500f9 !important;
+ }
+ .btn-purple.btn-accent-3:hover {
+ background-color: #6a1b9a !important;
+ }
+ .btn-purple.btn-accent-3:active,
+ .btn-purple.btn-accent-3:focus {
+ border-color: #6a1b9a !important;
+ background-color: #4a148c !important;
+ }
+ .btn-outline-purple.btn-outline-accent-3 {
+ border-color: #d500f9 !important;
+ color: #d500f9 !important;
+ }
+ .btn-outline-purple.btn-outline-accent-3:hover {
+ background-color: #d500f9 !important;
+ }
+ .border-purple.border-accent-3 {
+ border: 1px solid #d500f9 !important;
+ }
+ .border-top-purple.border-top-accent-3 {
+ border-top: 1px solid #d500f9 !important;
+ }
+ .border-bottom-purple.border-bottom-accent-3 {
+ border-bottom: 1px solid #d500f9 !important;
+ }
+ .border-left-purple.border-left-accent-3 {
+ border-left: 1px solid #d500f9 !important;
+ }
+ .border-right-purple.border-right-accent-3 {
+ border-right: 1px solid #d500f9 !important;
+ }
+ .btn-purple.btn-accent-4,
+ .btn-purple.btn-accent-4:hover {
+ border-color: #7b1fa2 !important;
+ }
+ .overlay-purple.overlay-accent-3 {
+ background: #d500f9;
+ background: rgba(213, 0, 249, 0.8);
+ }
+ .bg-purple.bg-accent-4,
+ .btn-purple.btn-accent-4 {
+ background-color: #d0f !important;
+ }
+ .purple.accent-4 {
+ color: #d0f !important;
+ }
+ .btn-purple.btn-accent-4:hover {
+ background-color: #6a1b9a !important;
+ }
+ .btn-purple.btn-accent-4:active,
+ .btn-purple.btn-accent-4:focus {
+ border-color: #6a1b9a !important;
+ background-color: #4a148c !important;
+ }
+ .btn-outline-purple.btn-outline-accent-4 {
+ border-color: #d0f !important;
+ color: #d0f !important;
+ }
+ .btn-outline-purple.btn-outline-accent-4:hover {
+ background-color: #d0f !important;
+ }
+ input:focus ~ .bg-purple {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #d0f !important;
+ }
+ .border-purple.border-accent-4 {
+ border: 1px solid #d0f !important;
+ }
+ .border-top-purple.border-top-accent-4 {
+ border-top: 1px solid #d0f !important;
+ }
+ .border-bottom-purple.border-bottom-accent-4 {
+ border-bottom: 1px solid #d0f !important;
+ }
+ .border-left-purple.border-left-accent-4 {
+ border-left: 1px solid #d0f !important;
+ }
+ .border-right-purple.border-right-accent-4 {
+ border-right: 1px solid #d0f !important;
+ }
+ .btn-blue.btn-lighten-5,
+ .btn-blue.btn-lighten-5:hover {
+ border-color: #1976d2 !important;
+ }
+ .overlay-purple.overlay-accent-4 {
+ background: #d0f;
+ background: rgba(221, 0, 255, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="purple"]:before {
+ background-color: #d0f;
+ }
+ .bg-blue.bg-lighten-5,
+ .btn-blue.btn-lighten-5 {
+ background-color: #e3f2fd !important;
+ }
+ .blue.lighten-5 {
+ color: #e3f2fd !important;
+ }
+ .btn-blue.btn-lighten-5:hover {
+ background-color: #1565c0 !important;
+ }
+ .btn-blue.btn-lighten-5:active,
+ .btn-blue.btn-lighten-5:focus {
+ border-color: #1565c0 !important;
+ background-color: #0d47a1 !important;
+ }
+ .btn-outline-blue.btn-outline-lighten-5 {
+ border-color: #e3f2fd !important;
+ color: #e3f2fd !important;
+ }
+ .btn-outline-blue.btn-outline-lighten-5:hover {
+ background-color: #e3f2fd !important;
+ }
+ .border-blue.border-lighten-5 {
+ border: 1px solid #e3f2fd !important;
+ }
+ .border-top-blue.border-top-lighten-5 {
+ border-top: 1px solid #e3f2fd !important;
+ }
+ .border-bottom-blue.border-bottom-lighten-5 {
+ border-bottom: 1px solid #e3f2fd !important;
+ }
+ .border-left-blue.border-left-lighten-5 {
+ border-left: 1px solid #e3f2fd !important;
+ }
+ .border-right-blue.border-right-lighten-5 {
+ border-right: 1px solid #e3f2fd !important;
+ }
+ .btn-blue.btn-lighten-4,
+ .btn-blue.btn-lighten-4:hover {
+ border-color: #1976d2 !important;
+ }
+ .overlay-blue.overlay-lighten-5 {
+ background: #e3f2fd;
+ background: rgba(227, 242, 253, 0.8);
+ }
+ .bg-blue.bg-lighten-4,
+ .btn-blue.btn-lighten-4 {
+ background-color: #bbdefb !important;
+ }
+ .blue.lighten-4 {
+ color: #bbdefb !important;
+ }
+ .btn-blue.btn-lighten-4:hover {
+ background-color: #1565c0 !important;
+ }
+ .btn-blue.btn-lighten-4:active,
+ .btn-blue.btn-lighten-4:focus {
+ border-color: #1565c0 !important;
+ background-color: #0d47a1 !important;
+ }
+ .btn-outline-blue.btn-outline-lighten-4 {
+ border-color: #bbdefb !important;
+ color: #bbdefb !important;
+ }
+ .btn-outline-blue.btn-outline-lighten-4:hover {
+ background-color: #bbdefb !important;
+ }
+ .border-blue.border-lighten-4 {
+ border: 1px solid #bbdefb !important;
+ }
+ .border-top-blue.border-top-lighten-4 {
+ border-top: 1px solid #bbdefb !important;
+ }
+ .border-bottom-blue.border-bottom-lighten-4 {
+ border-bottom: 1px solid #bbdefb !important;
+ }
+ .border-left-blue.border-left-lighten-4 {
+ border-left: 1px solid #bbdefb !important;
+ }
+ .border-right-blue.border-right-lighten-4 {
+ border-right: 1px solid #bbdefb !important;
+ }
+ .btn-blue.btn-lighten-3,
+ .btn-blue.btn-lighten-3:hover {
+ border-color: #1976d2 !important;
+ }
+ .overlay-blue.overlay-lighten-4 {
+ background: #bbdefb;
+ background: rgba(187, 222, 251, 0.8);
+ }
+ .bg-blue.bg-lighten-3,
+ .btn-blue.btn-lighten-3 {
+ background-color: #90caf9 !important;
+ }
+ .blue.lighten-3 {
+ color: #90caf9 !important;
+ }
+ .btn-blue.btn-lighten-3:hover {
+ background-color: #1565c0 !important;
+ }
+ .btn-blue.btn-lighten-3:active,
+ .btn-blue.btn-lighten-3:focus {
+ border-color: #1565c0 !important;
+ background-color: #0d47a1 !important;
+ }
+ .btn-outline-blue.btn-outline-lighten-3 {
+ border-color: #90caf9 !important;
+ color: #90caf9 !important;
+ }
+ .btn-outline-blue.btn-outline-lighten-3:hover {
+ background-color: #90caf9 !important;
+ }
+ .border-blue.border-lighten-3 {
+ border: 1px solid #90caf9 !important;
+ }
+ .border-top-blue.border-top-lighten-3 {
+ border-top: 1px solid #90caf9 !important;
+ }
+ .border-bottom-blue.border-bottom-lighten-3 {
+ border-bottom: 1px solid #90caf9 !important;
+ }
+ .border-left-blue.border-left-lighten-3 {
+ border-left: 1px solid #90caf9 !important;
+ }
+ .border-right-blue.border-right-lighten-3 {
+ border-right: 1px solid #90caf9 !important;
+ }
+ .btn-blue.btn-lighten-2,
+ .btn-blue.btn-lighten-2:hover {
+ border-color: #1976d2 !important;
+ }
+ .overlay-blue.overlay-lighten-3 {
+ background: #90caf9;
+ background: rgba(144, 202, 249, 0.8);
+ }
+ .bg-blue.bg-lighten-2,
+ .btn-blue.btn-lighten-2 {
+ background-color: #64b5f6 !important;
+ }
+ .blue.lighten-2 {
+ color: #64b5f6 !important;
+ }
+ .btn-blue.btn-lighten-2:hover {
+ background-color: #1565c0 !important;
+ }
+ .btn-blue.btn-lighten-2:active,
+ .btn-blue.btn-lighten-2:focus {
+ border-color: #1565c0 !important;
+ background-color: #0d47a1 !important;
+ }
+ .btn-outline-blue.btn-outline-lighten-2 {
+ border-color: #64b5f6 !important;
+ color: #64b5f6 !important;
+ }
+ .btn-outline-blue.btn-outline-lighten-2:hover {
+ background-color: #64b5f6 !important;
+ }
+ .border-blue.border-lighten-2 {
+ border: 1px solid #64b5f6 !important;
+ }
+ .border-top-blue.border-top-lighten-2 {
+ border-top: 1px solid #64b5f6 !important;
+ }
+ .border-bottom-blue.border-bottom-lighten-2 {
+ border-bottom: 1px solid #64b5f6 !important;
+ }
+ .border-left-blue.border-left-lighten-2 {
+ border-left: 1px solid #64b5f6 !important;
+ }
+ .border-right-blue.border-right-lighten-2 {
+ border-right: 1px solid #64b5f6 !important;
+ }
+ .btn-blue.btn-lighten-1,
+ .btn-blue.btn-lighten-1:hover {
+ border-color: #1976d2 !important;
+ }
+ .overlay-blue.overlay-lighten-2 {
+ background: #64b5f6;
+ background: rgba(100, 181, 246, 0.8);
+ }
+ .bg-blue.bg-lighten-1,
+ .btn-blue.btn-lighten-1 {
+ background-color: #42a5f5 !important;
+ }
+ .blue.lighten-1 {
+ color: #42a5f5 !important;
+ }
+ .btn-blue.btn-lighten-1:hover {
+ background-color: #1565c0 !important;
+ }
+ .btn-blue.btn-lighten-1:active,
+ .btn-blue.btn-lighten-1:focus {
+ border-color: #1565c0 !important;
+ background-color: #0d47a1 !important;
+ }
+ .btn-outline-blue.btn-outline-lighten-1 {
+ border-color: #42a5f5 !important;
+ color: #42a5f5 !important;
+ }
+ .btn-outline-blue.btn-outline-lighten-1:hover {
+ background-color: #42a5f5 !important;
+ }
+ .border-blue.border-lighten-1 {
+ border: 1px solid #42a5f5 !important;
+ }
+ .border-top-blue.border-top-lighten-1 {
+ border-top: 1px solid #42a5f5 !important;
+ }
+ .border-bottom-blue.border-bottom-lighten-1 {
+ border-bottom: 1px solid #42a5f5 !important;
+ }
+ .border-left-blue.border-left-lighten-1 {
+ border-left: 1px solid #42a5f5 !important;
+ }
+ .border-right-blue.border-right-lighten-1 {
+ border-right: 1px solid #42a5f5 !important;
+ }
+ .overlay-blue.overlay-lighten-1 {
+ background: #42a5f5;
+ background: rgba(66, 165, 245, 0.8);
+ }
+ .blue {
+ color: #2196f3 !important;
+ }
+ .bg-blue {
+ background-color: #2196f3 !important;
+ }
+ .bg-blue .card-footer,
+ .bg-blue .card-header {
+ background-color: transparent;
+ }
+ .alert-blue {
+ border-color: #65b6f7 !important;
+ background-color: #65b6f7 !important;
+ color: #05365d !important;
+ }
+ .alert-blue .alert-link {
+ color: #031f36 !important;
+ }
+ .bullet.bullet-blue {
+ background-color: #2196f3;
+ }
+ .bg-light-blue {
+ background-color: rgba(33, 150, 243, 0.15);
+ }
+ .bg-blue.badge-glow,
+ .border-blue.badge-glow {
+ box-shadow: 0 0 10px #2196f3;
+ }
+ .overlay-blue {
+ background: #2196f3;
+ background: rgba(33, 150, 243, 0.8);
+ }
+ .btn-blue {
+ background-color: #2196f3 !important;
+ color: #fff;
+ }
+ .btn-blue:hover {
+ border-color: #1e88e5 !important;
+ background-color: #42a5f5 !important;
+ color: #fff !important;
+ }
+ .btn-blue:active,
+ .btn-blue:focus {
+ border-color: #1976d2 !important;
+ background-color: #1565c0 !important;
+ color: #fff !important;
+ }
+ .btn-outline-blue {
+ border-color: #2196f3;
+ background-color: transparent;
+ color: #2196f3;
+ }
+ .btn-outline-blue:hover,
+ .widget-timeline .timeline-items.timeline-icon-blue:before {
+ background-color: #2196f3;
+ }
+ .btn-outline-blue:hover {
+ color: #fff !important;
+ }
+ input[type="checkbox"].bg-blue + .custom-control-label:before,
+ input[type="radio"].bg-blue + .custom-control-label:before {
+ background-color: #2196f3 !important;
+ }
+ .bg-blue.bg-darken-1,
+ .btn-blue.btn-darken-1 {
+ background-color: #1e88e5 !important;
+ }
+ .border-blue {
+ border: 1px solid #2196f3 !important;
+ }
+ .border-top-blue {
+ border-top: 1px solid #2196f3;
+ }
+ .border-bottom-blue {
+ border-bottom: 1px solid #2196f3;
+ }
+ .border-left-blue {
+ border-left: 1px solid #2196f3;
+ }
+ .border-right-blue {
+ border-right: 1px solid #2196f3;
+ }
+ .blue.darken-1 {
+ color: #1e88e5 !important;
+ }
+ .btn-blue.btn-darken-1 {
+ border-color: #1976d2 !important;
+ }
+ .btn-blue.btn-darken-1:hover {
+ border-color: #1976d2 !important;
+ background-color: #1565c0 !important;
+ }
+ .btn-blue.btn-darken-1:active,
+ .btn-blue.btn-darken-1:focus {
+ border-color: #1565c0 !important;
+ background-color: #0d47a1 !important;
+ }
+ .btn-outline-blue.btn-outline-darken-1 {
+ border-color: #1e88e5 !important;
+ color: #1e88e5 !important;
+ }
+ .btn-outline-blue.btn-outline-darken-1:hover {
+ background-color: #1e88e5 !important;
+ }
+ .border-blue.border-darken-1 {
+ border: 1px solid #1e88e5 !important;
+ }
+ .border-top-blue.border-top-darken-1 {
+ border-top: 1px solid #1e88e5 !important;
+ }
+ .border-bottom-blue.border-bottom-darken-1 {
+ border-bottom: 1px solid #1e88e5 !important;
+ }
+ .border-left-blue.border-left-darken-1 {
+ border-left: 1px solid #1e88e5 !important;
+ }
+ .border-right-blue.border-right-darken-1 {
+ border-right: 1px solid #1e88e5 !important;
+ }
+ .btn-blue.btn-darken-2,
+ .btn-blue.btn-darken-2:hover {
+ border-color: #1976d2 !important;
+ }
+ .overlay-blue.overlay-darken-1 {
+ background: #1e88e5;
+ background: rgba(30, 136, 229, 0.8);
+ }
+ .bg-blue.bg-darken-2,
+ .btn-blue.btn-darken-2 {
+ background-color: #1976d2 !important;
+ }
+ .blue.darken-2 {
+ color: #1976d2 !important;
+ }
+ .btn-blue.btn-darken-2:hover {
+ background-color: #1565c0 !important;
+ }
+ .btn-blue.btn-darken-2:active,
+ .btn-blue.btn-darken-2:focus {
+ border-color: #1565c0 !important;
+ background-color: #0d47a1 !important;
+ }
+ .btn-outline-blue.btn-outline-darken-2 {
+ border-color: #1976d2 !important;
+ color: #1976d2 !important;
+ }
+ .btn-outline-blue.btn-outline-darken-2:hover {
+ background-color: #1976d2 !important;
+ }
+ .border-blue.border-darken-2 {
+ border: 1px solid #1976d2 !important;
+ }
+ .border-top-blue.border-top-darken-2 {
+ border-top: 1px solid #1976d2 !important;
+ }
+ .border-bottom-blue.border-bottom-darken-2 {
+ border-bottom: 1px solid #1976d2 !important;
+ }
+ .border-left-blue.border-left-darken-2 {
+ border-left: 1px solid #1976d2 !important;
+ }
+ .border-right-blue.border-right-darken-2 {
+ border-right: 1px solid #1976d2 !important;
+ }
+ .overlay-blue.overlay-darken-2 {
+ background: #1976d2;
+ background: rgba(25, 118, 210, 0.8);
+ }
+ .blue.darken-3 {
+ color: #1565c0 !important;
+ }
+ .bg-blue.bg-darken-3 {
+ background-color: #1565c0 !important;
+ }
+ .btn-blue.btn-darken-3,
+ .btn-blue.btn-darken-3:hover {
+ border-color: #1976d2 !important;
+ background-color: #1565c0 !important;
+ }
+ .btn-blue.btn-darken-3:active,
+ .btn-blue.btn-darken-3:focus {
+ border-color: #1565c0 !important;
+ background-color: #0d47a1 !important;
+ }
+ .btn-outline-blue.btn-outline-darken-3 {
+ border-color: #1565c0 !important;
+ color: #1565c0 !important;
+ }
+ .btn-outline-blue.btn-outline-darken-3:hover {
+ background-color: #1565c0 !important;
+ }
+ .border-blue.border-darken-3 {
+ border: 1px solid #1565c0 !important;
+ }
+ .border-top-blue.border-top-darken-3 {
+ border-top: 1px solid #1565c0 !important;
+ }
+ .border-bottom-blue.border-bottom-darken-3 {
+ border-bottom: 1px solid #1565c0 !important;
+ }
+ .border-left-blue.border-left-darken-3 {
+ border-left: 1px solid #1565c0 !important;
+ }
+ .border-right-blue.border-right-darken-3 {
+ border-right: 1px solid #1565c0 !important;
+ }
+ .btn-blue.btn-darken-4,
+ .btn-blue.btn-darken-4:hover {
+ border-color: #1976d2 !important;
+ }
+ .overlay-blue.overlay-darken-3 {
+ background: #1565c0;
+ background: rgba(21, 101, 192, 0.8);
+ }
+ .bg-blue.bg-darken-4,
+ .btn-blue.btn-darken-4 {
+ background-color: #0d47a1 !important;
+ }
+ .blue.darken-4 {
+ color: #0d47a1 !important;
+ }
+ .btn-blue.btn-darken-4:hover {
+ background-color: #1565c0 !important;
+ }
+ .btn-blue.btn-darken-4:active,
+ .btn-blue.btn-darken-4:focus {
+ border-color: #1565c0 !important;
+ background-color: #0d47a1 !important;
+ }
+ .btn-outline-blue.btn-outline-darken-4 {
+ border-color: #0d47a1 !important;
+ color: #0d47a1 !important;
+ }
+ .btn-outline-blue.btn-outline-darken-4:hover {
+ background-color: #0d47a1 !important;
+ }
+ .border-blue.border-darken-4 {
+ border: 1px solid #0d47a1 !important;
+ }
+ .border-top-blue.border-top-darken-4 {
+ border-top: 1px solid #0d47a1 !important;
+ }
+ .border-bottom-blue.border-bottom-darken-4 {
+ border-bottom: 1px solid #0d47a1 !important;
+ }
+ .border-left-blue.border-left-darken-4 {
+ border-left: 1px solid #0d47a1 !important;
+ }
+ .border-right-blue.border-right-darken-4 {
+ border-right: 1px solid #0d47a1 !important;
+ }
+ .btn-blue.btn-accent-1,
+ .btn-blue.btn-accent-1:hover {
+ border-color: #1976d2 !important;
+ }
+ .overlay-blue.overlay-darken-4 {
+ background: #0d47a1;
+ background: rgba(13, 71, 161, 0.8);
+ }
+ .bg-blue.bg-accent-1,
+ .btn-blue.btn-accent-1 {
+ background-color: #82b1ff !important;
+ }
+ .blue.accent-1 {
+ color: #82b1ff !important;
+ }
+ .btn-blue.btn-accent-1:hover {
+ background-color: #1565c0 !important;
+ }
+ .btn-blue.btn-accent-1:active,
+ .btn-blue.btn-accent-1:focus {
+ border-color: #1565c0 !important;
+ background-color: #0d47a1 !important;
+ }
+ .btn-outline-blue.btn-outline-accent-1 {
+ border-color: #82b1ff !important;
+ color: #82b1ff !important;
+ }
+ .btn-outline-blue.btn-outline-accent-1:hover {
+ background-color: #82b1ff !important;
+ }
+ .border-blue.border-accent-1 {
+ border: 1px solid #82b1ff !important;
+ }
+ .border-top-blue.border-top-accent-1 {
+ border-top: 1px solid #82b1ff !important;
+ }
+ .border-bottom-blue.border-bottom-accent-1 {
+ border-bottom: 1px solid #82b1ff !important;
+ }
+ .border-left-blue.border-left-accent-1 {
+ border-left: 1px solid #82b1ff !important;
+ }
+ .border-right-blue.border-right-accent-1 {
+ border-right: 1px solid #82b1ff !important;
+ }
+ .btn-blue.btn-accent-2,
+ .btn-blue.btn-accent-2:hover {
+ border-color: #1976d2 !important;
+ }
+ .overlay-blue.overlay-accent-1 {
+ background: #82b1ff;
+ background: rgba(130, 177, 255, 0.8);
+ }
+ .bg-blue.bg-accent-2,
+ .btn-blue.btn-accent-2 {
+ background-color: #448aff !important;
+ }
+ .blue.accent-2 {
+ color: #448aff !important;
+ }
+ .btn-blue.btn-accent-2:hover {
+ background-color: #1565c0 !important;
+ }
+ .btn-blue.btn-accent-2:active,
+ .btn-blue.btn-accent-2:focus {
+ border-color: #1565c0 !important;
+ background-color: #0d47a1 !important;
+ }
+ .btn-outline-blue.btn-outline-accent-2 {
+ border-color: #448aff !important;
+ color: #448aff !important;
+ }
+ .btn-outline-blue.btn-outline-accent-2:hover {
+ background-color: #448aff !important;
+ }
+ .border-blue.border-accent-2 {
+ border: 1px solid #448aff !important;
+ }
+ .border-top-blue.border-top-accent-2 {
+ border-top: 1px solid #448aff !important;
+ }
+ .border-bottom-blue.border-bottom-accent-2 {
+ border-bottom: 1px solid #448aff !important;
+ }
+ .border-left-blue.border-left-accent-2 {
+ border-left: 1px solid #448aff !important;
+ }
+ .border-right-blue.border-right-accent-2 {
+ border-right: 1px solid #448aff !important;
+ }
+ .btn-blue.btn-accent-3,
+ .btn-blue.btn-accent-3:hover {
+ border-color: #1976d2 !important;
+ }
+ .overlay-blue.overlay-accent-2 {
+ background: #448aff;
+ background: rgba(68, 138, 255, 0.8);
+ }
+ .bg-blue.bg-accent-3,
+ .btn-blue.btn-accent-3 {
+ background-color: #2979ff !important;
+ }
+ .blue.accent-3 {
+ color: #2979ff !important;
+ }
+ .btn-blue.btn-accent-3:hover {
+ background-color: #1565c0 !important;
+ }
+ .btn-blue.btn-accent-3:active,
+ .btn-blue.btn-accent-3:focus {
+ border-color: #1565c0 !important;
+ background-color: #0d47a1 !important;
+ }
+ .btn-outline-blue.btn-outline-accent-3 {
+ border-color: #2979ff !important;
+ color: #2979ff !important;
+ }
+ .btn-outline-blue.btn-outline-accent-3:hover {
+ background-color: #2979ff !important;
+ }
+ .border-blue.border-accent-3 {
+ border: 1px solid #2979ff !important;
+ }
+ .border-top-blue.border-top-accent-3 {
+ border-top: 1px solid #2979ff !important;
+ }
+ .border-bottom-blue.border-bottom-accent-3 {
+ border-bottom: 1px solid #2979ff !important;
+ }
+ .border-left-blue.border-left-accent-3 {
+ border-left: 1px solid #2979ff !important;
+ }
+ .border-right-blue.border-right-accent-3 {
+ border-right: 1px solid #2979ff !important;
+ }
+ .btn-blue.btn-accent-4,
+ .btn-blue.btn-accent-4:hover {
+ border-color: #1976d2 !important;
+ }
+ .overlay-blue.overlay-accent-3 {
+ background: #2979ff;
+ background: rgba(41, 121, 255, 0.8);
+ }
+ .bg-blue.bg-accent-4,
+ .btn-blue.btn-accent-4 {
+ background-color: #2962ff !important;
+ }
+ .blue.accent-4 {
+ color: #2962ff !important;
+ }
+ .btn-blue.btn-accent-4:hover {
+ background-color: #1565c0 !important;
+ }
+ .btn-blue.btn-accent-4:active,
+ .btn-blue.btn-accent-4:focus {
+ border-color: #1565c0 !important;
+ background-color: #0d47a1 !important;
+ }
+ .btn-outline-blue.btn-outline-accent-4 {
+ border-color: #2962ff !important;
+ color: #2962ff !important;
+ }
+ .btn-outline-blue.btn-outline-accent-4:hover {
+ background-color: #2962ff !important;
+ }
+ input:focus ~ .bg-blue {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #2962ff !important;
+ }
+ .border-blue.border-accent-4 {
+ border: 1px solid #2962ff !important;
+ }
+ .border-top-blue.border-top-accent-4 {
+ border-top: 1px solid #2962ff !important;
+ }
+ .border-bottom-blue.border-bottom-accent-4 {
+ border-bottom: 1px solid #2962ff !important;
+ }
+ .border-left-blue.border-left-accent-4 {
+ border-left: 1px solid #2962ff !important;
+ }
+ .border-right-blue.border-right-accent-4 {
+ border-right: 1px solid #2962ff !important;
+ }
+ .btn-cyan.btn-lighten-5,
+ .btn-cyan.btn-lighten-5:hover {
+ border-color: #0097a7 !important;
+ }
+ .overlay-blue.overlay-accent-4 {
+ background: #2962ff;
+ background: rgba(41, 98, 255, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="blue"]:before {
+ background-color: #2962ff;
+ }
+ .bg-cyan.bg-lighten-5,
+ .btn-cyan.btn-lighten-5 {
+ background-color: #e0f7fa !important;
+ }
+ .cyan.lighten-5 {
+ color: #e0f7fa !important;
+ }
+ .btn-cyan.btn-lighten-5:hover {
+ background-color: #00838f !important;
+ }
+ .btn-cyan.btn-lighten-5:active,
+ .btn-cyan.btn-lighten-5:focus {
+ border-color: #00838f !important;
+ background-color: #006064 !important;
+ }
+ .btn-outline-cyan.btn-outline-lighten-5 {
+ border-color: #e0f7fa !important;
+ color: #e0f7fa !important;
+ }
+ .btn-outline-cyan.btn-outline-lighten-5:hover {
+ background-color: #e0f7fa !important;
+ }
+ .border-cyan.border-lighten-5 {
+ border: 1px solid #e0f7fa !important;
+ }
+ .border-top-cyan.border-top-lighten-5 {
+ border-top: 1px solid #e0f7fa !important;
+ }
+ .border-bottom-cyan.border-bottom-lighten-5 {
+ border-bottom: 1px solid #e0f7fa !important;
+ }
+ .border-left-cyan.border-left-lighten-5 {
+ border-left: 1px solid #e0f7fa !important;
+ }
+ .border-right-cyan.border-right-lighten-5 {
+ border-right: 1px solid #e0f7fa !important;
+ }
+ .btn-cyan.btn-lighten-4,
+ .btn-cyan.btn-lighten-4:hover {
+ border-color: #0097a7 !important;
+ }
+ .overlay-cyan.overlay-lighten-5 {
+ background: #e0f7fa;
+ background: rgba(224, 247, 250, 0.8);
+ }
+ .bg-cyan.bg-lighten-4,
+ .btn-cyan.btn-lighten-4 {
+ background-color: #b2ebf2 !important;
+ }
+ .cyan.lighten-4 {
+ color: #b2ebf2 !important;
+ }
+ .btn-cyan.btn-lighten-4:hover {
+ background-color: #00838f !important;
+ }
+ .btn-cyan.btn-lighten-4:active,
+ .btn-cyan.btn-lighten-4:focus {
+ border-color: #00838f !important;
+ background-color: #006064 !important;
+ }
+ .btn-outline-cyan.btn-outline-lighten-4 {
+ border-color: #b2ebf2 !important;
+ color: #b2ebf2 !important;
+ }
+ .btn-outline-cyan.btn-outline-lighten-4:hover {
+ background-color: #b2ebf2 !important;
+ }
+ .border-cyan.border-lighten-4 {
+ border: 1px solid #b2ebf2 !important;
+ }
+ .border-top-cyan.border-top-lighten-4 {
+ border-top: 1px solid #b2ebf2 !important;
+ }
+ .border-bottom-cyan.border-bottom-lighten-4 {
+ border-bottom: 1px solid #b2ebf2 !important;
+ }
+ .border-left-cyan.border-left-lighten-4 {
+ border-left: 1px solid #b2ebf2 !important;
+ }
+ .border-right-cyan.border-right-lighten-4 {
+ border-right: 1px solid #b2ebf2 !important;
+ }
+ .btn-cyan.btn-lighten-3,
+ .btn-cyan.btn-lighten-3:hover {
+ border-color: #0097a7 !important;
+ }
+ .overlay-cyan.overlay-lighten-4 {
+ background: #b2ebf2;
+ background: rgba(178, 235, 242, 0.8);
+ }
+ .bg-cyan.bg-lighten-3,
+ .btn-cyan.btn-lighten-3 {
+ background-color: #80deea !important;
+ }
+ .cyan.lighten-3 {
+ color: #80deea !important;
+ }
+ .btn-cyan.btn-lighten-3:hover {
+ background-color: #00838f !important;
+ }
+ .btn-cyan.btn-lighten-3:active,
+ .btn-cyan.btn-lighten-3:focus {
+ border-color: #00838f !important;
+ background-color: #006064 !important;
+ }
+ .btn-outline-cyan.btn-outline-lighten-3 {
+ border-color: #80deea !important;
+ color: #80deea !important;
+ }
+ .btn-outline-cyan.btn-outline-lighten-3:hover {
+ background-color: #80deea !important;
+ }
+ .border-cyan.border-lighten-3 {
+ border: 1px solid #80deea !important;
+ }
+ .border-top-cyan.border-top-lighten-3 {
+ border-top: 1px solid #80deea !important;
+ }
+ .border-bottom-cyan.border-bottom-lighten-3 {
+ border-bottom: 1px solid #80deea !important;
+ }
+ .border-left-cyan.border-left-lighten-3 {
+ border-left: 1px solid #80deea !important;
+ }
+ .border-right-cyan.border-right-lighten-3 {
+ border-right: 1px solid #80deea !important;
+ }
+ .btn-cyan.btn-lighten-2,
+ .btn-cyan.btn-lighten-2:hover {
+ border-color: #0097a7 !important;
+ }
+ .overlay-cyan.overlay-lighten-3 {
+ background: #80deea;
+ background: rgba(128, 222, 234, 0.8);
+ }
+ .bg-cyan.bg-lighten-2,
+ .btn-cyan.btn-lighten-2 {
+ background-color: #4dd0e1 !important;
+ }
+ .cyan.lighten-2 {
+ color: #4dd0e1 !important;
+ }
+ .btn-cyan.btn-lighten-2:hover {
+ background-color: #00838f !important;
+ }
+ .btn-cyan.btn-lighten-2:active,
+ .btn-cyan.btn-lighten-2:focus {
+ border-color: #00838f !important;
+ background-color: #006064 !important;
+ }
+ .btn-outline-cyan.btn-outline-lighten-2 {
+ border-color: #4dd0e1 !important;
+ color: #4dd0e1 !important;
+ }
+ .btn-outline-cyan.btn-outline-lighten-2:hover {
+ background-color: #4dd0e1 !important;
+ }
+ .border-cyan.border-lighten-2 {
+ border: 1px solid #4dd0e1 !important;
+ }
+ .border-top-cyan.border-top-lighten-2 {
+ border-top: 1px solid #4dd0e1 !important;
+ }
+ .border-bottom-cyan.border-bottom-lighten-2 {
+ border-bottom: 1px solid #4dd0e1 !important;
+ }
+ .border-left-cyan.border-left-lighten-2 {
+ border-left: 1px solid #4dd0e1 !important;
+ }
+ .border-right-cyan.border-right-lighten-2 {
+ border-right: 1px solid #4dd0e1 !important;
+ }
+ .btn-cyan.btn-lighten-1,
+ .btn-cyan.btn-lighten-1:hover {
+ border-color: #0097a7 !important;
+ }
+ .overlay-cyan.overlay-lighten-2 {
+ background: #4dd0e1;
+ background: rgba(77, 208, 225, 0.8);
+ }
+ .bg-cyan.bg-lighten-1,
+ .btn-cyan.btn-lighten-1 {
+ background-color: #26c6da !important;
+ }
+ .cyan.lighten-1 {
+ color: #26c6da !important;
+ }
+ .btn-cyan.btn-lighten-1:hover {
+ background-color: #00838f !important;
+ }
+ .btn-cyan.btn-lighten-1:active,
+ .btn-cyan.btn-lighten-1:focus {
+ border-color: #00838f !important;
+ background-color: #006064 !important;
+ }
+ .btn-outline-cyan.btn-outline-lighten-1 {
+ border-color: #26c6da !important;
+ color: #26c6da !important;
+ }
+ .btn-outline-cyan.btn-outline-lighten-1:hover {
+ background-color: #26c6da !important;
+ }
+ .border-cyan.border-lighten-1 {
+ border: 1px solid #26c6da !important;
+ }
+ .border-top-cyan.border-top-lighten-1 {
+ border-top: 1px solid #26c6da !important;
+ }
+ .border-bottom-cyan.border-bottom-lighten-1 {
+ border-bottom: 1px solid #26c6da !important;
+ }
+ .border-left-cyan.border-left-lighten-1 {
+ border-left: 1px solid #26c6da !important;
+ }
+ .border-right-cyan.border-right-lighten-1 {
+ border-right: 1px solid #26c6da !important;
+ }
+ .overlay-cyan.overlay-lighten-1 {
+ background: #26c6da;
+ background: rgba(38, 198, 218, 0.8);
+ }
+ .cyan {
+ color: #00bcd4 !important;
+ }
+ .bg-cyan {
+ background-color: #00bcd4 !important;
+ }
+ .bg-cyan .card-footer,
+ .bg-cyan .card-header {
+ background-color: transparent;
+ }
+ .alert-cyan {
+ border-color: #1ce5ff !important;
+ background-color: #1ce5ff !important;
+ color: #001e22 !important;
+ }
+ .alert-cyan .alert-link {
+ color: #000 !important;
+ }
+ .bullet.bullet-cyan {
+ background-color: #00bcd4;
+ }
+ .bg-light-cyan {
+ background-color: rgba(0, 188, 212, 0.15);
+ }
+ .bg-cyan.badge-glow,
+ .border-cyan.badge-glow {
+ box-shadow: 0 0 10px #00bcd4;
+ }
+ .overlay-cyan {
+ background: #00bcd4;
+ background: rgba(0, 188, 212, 0.8);
+ }
+ .btn-cyan {
+ background-color: #00bcd4 !important;
+ color: #fff;
+ }
+ .btn-cyan:hover {
+ border-color: #00acc1 !important;
+ background-color: #26c6da !important;
+ color: #fff !important;
+ }
+ .btn-cyan:active,
+ .btn-cyan:focus {
+ border-color: #0097a7 !important;
+ background-color: #00838f !important;
+ color: #fff !important;
+ }
+ .btn-outline-cyan {
+ border-color: #00bcd4;
+ background-color: transparent;
+ color: #00bcd4;
+ }
+ .btn-outline-cyan:hover,
+ .widget-timeline .timeline-items.timeline-icon-cyan:before {
+ background-color: #00bcd4;
+ }
+ .btn-outline-cyan:hover {
+ color: #fff !important;
+ }
+ input[type="checkbox"].bg-cyan + .custom-control-label:before,
+ input[type="radio"].bg-cyan + .custom-control-label:before {
+ background-color: #00bcd4 !important;
+ }
+ .bg-cyan.bg-darken-1,
+ .btn-cyan.btn-darken-1 {
+ background-color: #00acc1 !important;
+ }
+ .border-cyan {
+ border: 1px solid #00bcd4 !important;
+ }
+ .border-top-cyan {
+ border-top: 1px solid #00bcd4;
+ }
+ .border-bottom-cyan {
+ border-bottom: 1px solid #00bcd4;
+ }
+ .border-left-cyan {
+ border-left: 1px solid #00bcd4;
+ }
+ .border-right-cyan {
+ border-right: 1px solid #00bcd4;
+ }
+ .cyan.darken-1 {
+ color: #00acc1 !important;
+ }
+ .btn-cyan.btn-darken-1 {
+ border-color: #0097a7 !important;
+ }
+ .btn-cyan.btn-darken-1:hover {
+ border-color: #0097a7 !important;
+ background-color: #00838f !important;
+ }
+ .btn-cyan.btn-darken-1:active,
+ .btn-cyan.btn-darken-1:focus {
+ border-color: #00838f !important;
+ background-color: #006064 !important;
+ }
+ .btn-outline-cyan.btn-outline-darken-1 {
+ border-color: #00acc1 !important;
+ color: #00acc1 !important;
+ }
+ .btn-outline-cyan.btn-outline-darken-1:hover {
+ background-color: #00acc1 !important;
+ }
+ .border-cyan.border-darken-1 {
+ border: 1px solid #00acc1 !important;
+ }
+ .border-top-cyan.border-top-darken-1 {
+ border-top: 1px solid #00acc1 !important;
+ }
+ .border-bottom-cyan.border-bottom-darken-1 {
+ border-bottom: 1px solid #00acc1 !important;
+ }
+ .border-left-cyan.border-left-darken-1 {
+ border-left: 1px solid #00acc1 !important;
+ }
+ .border-right-cyan.border-right-darken-1 {
+ border-right: 1px solid #00acc1 !important;
+ }
+ .btn-cyan.btn-darken-2,
+ .btn-cyan.btn-darken-2:hover {
+ border-color: #0097a7 !important;
+ }
+ .overlay-cyan.overlay-darken-1 {
+ background: #00acc1;
+ background: rgba(0, 172, 193, 0.8);
+ }
+ .bg-cyan.bg-darken-2,
+ .btn-cyan.btn-darken-2 {
+ background-color: #0097a7 !important;
+ }
+ .cyan.darken-2 {
+ color: #0097a7 !important;
+ }
+ .btn-cyan.btn-darken-2:hover {
+ background-color: #00838f !important;
+ }
+ .btn-cyan.btn-darken-2:active,
+ .btn-cyan.btn-darken-2:focus {
+ border-color: #00838f !important;
+ background-color: #006064 !important;
+ }
+ .btn-outline-cyan.btn-outline-darken-2 {
+ border-color: #0097a7 !important;
+ color: #0097a7 !important;
+ }
+ .btn-outline-cyan.btn-outline-darken-2:hover {
+ background-color: #0097a7 !important;
+ }
+ .border-cyan.border-darken-2 {
+ border: 1px solid #0097a7 !important;
+ }
+ .border-top-cyan.border-top-darken-2 {
+ border-top: 1px solid #0097a7 !important;
+ }
+ .border-bottom-cyan.border-bottom-darken-2 {
+ border-bottom: 1px solid #0097a7 !important;
+ }
+ .border-left-cyan.border-left-darken-2 {
+ border-left: 1px solid #0097a7 !important;
+ }
+ .border-right-cyan.border-right-darken-2 {
+ border-right: 1px solid #0097a7 !important;
+ }
+ .overlay-cyan.overlay-darken-2 {
+ background: #0097a7;
+ background: rgba(0, 151, 167, 0.8);
+ }
+ .cyan.darken-3 {
+ color: #00838f !important;
+ }
+ .bg-cyan.bg-darken-3 {
+ background-color: #00838f !important;
+ }
+ .btn-cyan.btn-darken-3,
+ .btn-cyan.btn-darken-3:hover {
+ border-color: #0097a7 !important;
+ background-color: #00838f !important;
+ }
+ .btn-cyan.btn-darken-3:active,
+ .btn-cyan.btn-darken-3:focus {
+ border-color: #00838f !important;
+ background-color: #006064 !important;
+ }
+ .btn-outline-cyan.btn-outline-darken-3 {
+ border-color: #00838f !important;
+ color: #00838f !important;
+ }
+ .btn-outline-cyan.btn-outline-darken-3:hover {
+ background-color: #00838f !important;
+ }
+ .border-cyan.border-darken-3 {
+ border: 1px solid #00838f !important;
+ }
+ .border-top-cyan.border-top-darken-3 {
+ border-top: 1px solid #00838f !important;
+ }
+ .border-bottom-cyan.border-bottom-darken-3 {
+ border-bottom: 1px solid #00838f !important;
+ }
+ .border-left-cyan.border-left-darken-3 {
+ border-left: 1px solid #00838f !important;
+ }
+ .border-right-cyan.border-right-darken-3 {
+ border-right: 1px solid #00838f !important;
+ }
+ .btn-cyan.btn-darken-4,
+ .btn-cyan.btn-darken-4:hover {
+ border-color: #0097a7 !important;
+ }
+ .overlay-cyan.overlay-darken-3 {
+ background: #00838f;
+ background: rgba(0, 131, 143, 0.8);
+ }
+ .bg-cyan.bg-darken-4,
+ .btn-cyan.btn-darken-4 {
+ background-color: #006064 !important;
+ }
+ .cyan.darken-4 {
+ color: #006064 !important;
+ }
+ .btn-cyan.btn-darken-4:hover {
+ background-color: #00838f !important;
+ }
+ .btn-cyan.btn-darken-4:active,
+ .btn-cyan.btn-darken-4:focus {
+ border-color: #00838f !important;
+ background-color: #006064 !important;
+ }
+ .btn-outline-cyan.btn-outline-darken-4 {
+ border-color: #006064 !important;
+ color: #006064 !important;
+ }
+ .btn-outline-cyan.btn-outline-darken-4:hover {
+ background-color: #006064 !important;
+ }
+ .border-cyan.border-darken-4 {
+ border: 1px solid #006064 !important;
+ }
+ .border-top-cyan.border-top-darken-4 {
+ border-top: 1px solid #006064 !important;
+ }
+ .border-bottom-cyan.border-bottom-darken-4 {
+ border-bottom: 1px solid #006064 !important;
+ }
+ .border-left-cyan.border-left-darken-4 {
+ border-left: 1px solid #006064 !important;
+ }
+ .border-right-cyan.border-right-darken-4 {
+ border-right: 1px solid #006064 !important;
+ }
+ .btn-cyan.btn-accent-1,
+ .btn-cyan.btn-accent-1:hover {
+ border-color: #0097a7 !important;
+ }
+ .overlay-cyan.overlay-darken-4 {
+ background: #006064;
+ background: rgba(0, 96, 100, 0.8);
+ }
+ .bg-cyan.bg-accent-1,
+ .btn-cyan.btn-accent-1 {
+ background-color: #84ffff !important;
+ }
+ .cyan.accent-1 {
+ color: #84ffff !important;
+ }
+ .btn-cyan.btn-accent-1:hover {
+ background-color: #00838f !important;
+ }
+ .btn-cyan.btn-accent-1:active,
+ .btn-cyan.btn-accent-1:focus {
+ border-color: #00838f !important;
+ background-color: #006064 !important;
+ }
+ .btn-outline-cyan.btn-outline-accent-1 {
+ border-color: #84ffff !important;
+ color: #84ffff !important;
+ }
+ .btn-outline-cyan.btn-outline-accent-1:hover {
+ background-color: #84ffff !important;
+ }
+ .border-cyan.border-accent-1 {
+ border: 1px solid #84ffff !important;
+ }
+ .border-top-cyan.border-top-accent-1 {
+ border-top: 1px solid #84ffff !important;
+ }
+ .border-bottom-cyan.border-bottom-accent-1 {
+ border-bottom: 1px solid #84ffff !important;
+ }
+ .border-left-cyan.border-left-accent-1 {
+ border-left: 1px solid #84ffff !important;
+ }
+ .border-right-cyan.border-right-accent-1 {
+ border-right: 1px solid #84ffff !important;
+ }
+ .btn-cyan.btn-accent-2,
+ .btn-cyan.btn-accent-2:hover {
+ border-color: #0097a7 !important;
+ }
+ .overlay-cyan.overlay-accent-1 {
+ background: #84ffff;
+ background: rgba(132, 255, 255, 0.8);
+ }
+ .bg-cyan.bg-accent-2,
+ .btn-cyan.btn-accent-2 {
+ background-color: #18ffff !important;
+ }
+ .cyan.accent-2 {
+ color: #18ffff !important;
+ }
+ .btn-cyan.btn-accent-2:hover {
+ background-color: #00838f !important;
+ }
+ .btn-cyan.btn-accent-2:active,
+ .btn-cyan.btn-accent-2:focus {
+ border-color: #00838f !important;
+ background-color: #006064 !important;
+ }
+ .btn-outline-cyan.btn-outline-accent-2 {
+ border-color: #18ffff !important;
+ color: #18ffff !important;
+ }
+ .btn-outline-cyan.btn-outline-accent-2:hover {
+ background-color: #18ffff !important;
+ }
+ .border-cyan.border-accent-2 {
+ border: 1px solid #18ffff !important;
+ }
+ .border-top-cyan.border-top-accent-2 {
+ border-top: 1px solid #18ffff !important;
+ }
+ .border-bottom-cyan.border-bottom-accent-2 {
+ border-bottom: 1px solid #18ffff !important;
+ }
+ .border-left-cyan.border-left-accent-2 {
+ border-left: 1px solid #18ffff !important;
+ }
+ .border-right-cyan.border-right-accent-2 {
+ border-right: 1px solid #18ffff !important;
+ }
+ .btn-cyan.btn-accent-3,
+ .btn-cyan.btn-accent-3:hover {
+ border-color: #0097a7 !important;
+ }
+ .overlay-cyan.overlay-accent-2 {
+ background: #18ffff;
+ background: rgba(24, 255, 255, 0.8);
+ }
+ .bg-cyan.bg-accent-3,
+ .btn-cyan.btn-accent-3 {
+ background-color: #00e5ff !important;
+ }
+ .cyan.accent-3 {
+ color: #00e5ff !important;
+ }
+ .btn-cyan.btn-accent-3:hover {
+ background-color: #00838f !important;
+ }
+ .btn-cyan.btn-accent-3:active,
+ .btn-cyan.btn-accent-3:focus {
+ border-color: #00838f !important;
+ background-color: #006064 !important;
+ }
+ .btn-outline-cyan.btn-outline-accent-3 {
+ border-color: #00e5ff !important;
+ color: #00e5ff !important;
+ }
+ .btn-outline-cyan.btn-outline-accent-3:hover {
+ background-color: #00e5ff !important;
+ }
+ .border-cyan.border-accent-3 {
+ border: 1px solid #00e5ff !important;
+ }
+ .border-top-cyan.border-top-accent-3 {
+ border-top: 1px solid #00e5ff !important;
+ }
+ .border-bottom-cyan.border-bottom-accent-3 {
+ border-bottom: 1px solid #00e5ff !important;
+ }
+ .border-left-cyan.border-left-accent-3 {
+ border-left: 1px solid #00e5ff !important;
+ }
+ .border-right-cyan.border-right-accent-3 {
+ border-right: 1px solid #00e5ff !important;
+ }
+ .btn-cyan.btn-accent-4,
+ .btn-cyan.btn-accent-4:hover {
+ border-color: #0097a7 !important;
+ }
+ .overlay-cyan.overlay-accent-3 {
+ background: #00e5ff;
+ background: rgba(0, 229, 255, 0.8);
+ }
+ .bg-cyan.bg-accent-4,
+ .btn-cyan.btn-accent-4 {
+ background-color: #00b8d4 !important;
+ }
+ .cyan.accent-4 {
+ color: #00b8d4 !important;
+ }
+ .btn-cyan.btn-accent-4:hover {
+ background-color: #00838f !important;
+ }
+ .btn-cyan.btn-accent-4:active,
+ .btn-cyan.btn-accent-4:focus {
+ border-color: #00838f !important;
+ background-color: #006064 !important;
+ }
+ .btn-outline-cyan.btn-outline-accent-4 {
+ border-color: #00b8d4 !important;
+ color: #00b8d4 !important;
+ }
+ .btn-outline-cyan.btn-outline-accent-4:hover {
+ background-color: #00b8d4 !important;
+ }
+ input:focus ~ .bg-cyan {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #00b8d4 !important;
+ }
+ .border-cyan.border-accent-4 {
+ border: 1px solid #00b8d4 !important;
+ }
+ .border-top-cyan.border-top-accent-4 {
+ border-top: 1px solid #00b8d4 !important;
+ }
+ .border-bottom-cyan.border-bottom-accent-4 {
+ border-bottom: 1px solid #00b8d4 !important;
+ }
+ .border-left-cyan.border-left-accent-4 {
+ border-left: 1px solid #00b8d4 !important;
+ }
+ .border-right-cyan.border-right-accent-4 {
+ border-right: 1px solid #00b8d4 !important;
+ }
+ .btn-teal.btn-lighten-5,
+ .btn-teal.btn-lighten-5:hover {
+ border-color: #00796b !important;
+ }
+ .overlay-cyan.overlay-accent-4 {
+ background: #00b8d4;
+ background: rgba(0, 184, 212, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="cyan"]:before {
+ background-color: #00b8d4;
+ }
+ .bg-teal.bg-lighten-5,
+ .btn-teal.btn-lighten-5 {
+ background-color: #e0f2f1 !important;
+ }
+ .teal.lighten-5 {
+ color: #e0f2f1 !important;
+ }
+ .btn-teal.btn-lighten-5:hover {
+ background-color: #00695c !important;
+ }
+ .btn-teal.btn-lighten-5:active,
+ .btn-teal.btn-lighten-5:focus {
+ border-color: #00695c !important;
+ background-color: #004d40 !important;
+ }
+ .btn-outline-teal.btn-outline-lighten-5 {
+ border-color: #e0f2f1 !important;
+ color: #e0f2f1 !important;
+ }
+ .btn-outline-teal.btn-outline-lighten-5:hover {
+ background-color: #e0f2f1 !important;
+ }
+ .border-teal.border-lighten-5 {
+ border: 1px solid #e0f2f1 !important;
+ }
+ .border-top-teal.border-top-lighten-5 {
+ border-top: 1px solid #e0f2f1 !important;
+ }
+ .border-bottom-teal.border-bottom-lighten-5 {
+ border-bottom: 1px solid #e0f2f1 !important;
+ }
+ .border-left-teal.border-left-lighten-5 {
+ border-left: 1px solid #e0f2f1 !important;
+ }
+ .border-right-teal.border-right-lighten-5 {
+ border-right: 1px solid #e0f2f1 !important;
+ }
+ .btn-teal.btn-lighten-4,
+ .btn-teal.btn-lighten-4:hover {
+ border-color: #00796b !important;
+ }
+ .overlay-teal.overlay-lighten-5 {
+ background: #e0f2f1;
+ background: rgba(224, 242, 241, 0.8);
+ }
+ .bg-teal.bg-lighten-4,
+ .btn-teal.btn-lighten-4 {
+ background-color: #b2dfdb !important;
+ }
+ .teal.lighten-4 {
+ color: #b2dfdb !important;
+ }
+ .btn-teal.btn-lighten-4:hover {
+ background-color: #00695c !important;
+ }
+ .btn-teal.btn-lighten-4:active,
+ .btn-teal.btn-lighten-4:focus {
+ border-color: #00695c !important;
+ background-color: #004d40 !important;
+ }
+ .btn-outline-teal.btn-outline-lighten-4 {
+ border-color: #b2dfdb !important;
+ color: #b2dfdb !important;
+ }
+ .btn-outline-teal.btn-outline-lighten-4:hover {
+ background-color: #b2dfdb !important;
+ }
+ .border-teal.border-lighten-4 {
+ border: 1px solid #b2dfdb !important;
+ }
+ .border-top-teal.border-top-lighten-4 {
+ border-top: 1px solid #b2dfdb !important;
+ }
+ .border-bottom-teal.border-bottom-lighten-4 {
+ border-bottom: 1px solid #b2dfdb !important;
+ }
+ .border-left-teal.border-left-lighten-4 {
+ border-left: 1px solid #b2dfdb !important;
+ }
+ .border-right-teal.border-right-lighten-4 {
+ border-right: 1px solid #b2dfdb !important;
+ }
+ .btn-teal.btn-lighten-3,
+ .btn-teal.btn-lighten-3:hover {
+ border-color: #00796b !important;
+ }
+ .overlay-teal.overlay-lighten-4 {
+ background: #b2dfdb;
+ background: rgba(178, 223, 219, 0.8);
+ }
+ .bg-teal.bg-lighten-3,
+ .btn-teal.btn-lighten-3 {
+ background-color: #80cbc4 !important;
+ }
+ .teal.lighten-3 {
+ color: #80cbc4 !important;
+ }
+ .btn-teal.btn-lighten-3:hover {
+ background-color: #00695c !important;
+ }
+ .btn-teal.btn-lighten-3:active,
+ .btn-teal.btn-lighten-3:focus {
+ border-color: #00695c !important;
+ background-color: #004d40 !important;
+ }
+ .btn-outline-teal.btn-outline-lighten-3 {
+ border-color: #80cbc4 !important;
+ color: #80cbc4 !important;
+ }
+ .btn-outline-teal.btn-outline-lighten-3:hover {
+ background-color: #80cbc4 !important;
+ }
+ .border-teal.border-lighten-3 {
+ border: 1px solid #80cbc4 !important;
+ }
+ .border-top-teal.border-top-lighten-3 {
+ border-top: 1px solid #80cbc4 !important;
+ }
+ .border-bottom-teal.border-bottom-lighten-3 {
+ border-bottom: 1px solid #80cbc4 !important;
+ }
+ .border-left-teal.border-left-lighten-3 {
+ border-left: 1px solid #80cbc4 !important;
+ }
+ .border-right-teal.border-right-lighten-3 {
+ border-right: 1px solid #80cbc4 !important;
+ }
+ .btn-teal.btn-lighten-2,
+ .btn-teal.btn-lighten-2:hover {
+ border-color: #00796b !important;
+ }
+ .overlay-teal.overlay-lighten-3 {
+ background: #80cbc4;
+ background: rgba(128, 203, 196, 0.8);
+ }
+ .bg-teal.bg-lighten-2,
+ .btn-teal.btn-lighten-2 {
+ background-color: #4db6ac !important;
+ }
+ .teal.lighten-2 {
+ color: #4db6ac !important;
+ }
+ .btn-teal.btn-lighten-2:hover {
+ background-color: #00695c !important;
+ }
+ .btn-teal.btn-lighten-2:active,
+ .btn-teal.btn-lighten-2:focus {
+ border-color: #00695c !important;
+ background-color: #004d40 !important;
+ }
+ .btn-outline-teal.btn-outline-lighten-2 {
+ border-color: #4db6ac !important;
+ color: #4db6ac !important;
+ }
+ .btn-outline-teal.btn-outline-lighten-2:hover {
+ background-color: #4db6ac !important;
+ }
+ .border-teal.border-lighten-2 {
+ border: 1px solid #4db6ac !important;
+ }
+ .border-top-teal.border-top-lighten-2 {
+ border-top: 1px solid #4db6ac !important;
+ }
+ .border-bottom-teal.border-bottom-lighten-2 {
+ border-bottom: 1px solid #4db6ac !important;
+ }
+ .border-left-teal.border-left-lighten-2 {
+ border-left: 1px solid #4db6ac !important;
+ }
+ .border-right-teal.border-right-lighten-2 {
+ border-right: 1px solid #4db6ac !important;
+ }
+ .btn-teal.btn-lighten-1,
+ .btn-teal.btn-lighten-1:hover {
+ border-color: #00796b !important;
+ }
+ .overlay-teal.overlay-lighten-2 {
+ background: #4db6ac;
+ background: rgba(77, 182, 172, 0.8);
+ }
+ .bg-teal.bg-lighten-1,
+ .btn-teal.btn-lighten-1 {
+ background-color: #26a69a !important;
+ }
+ .teal.lighten-1 {
+ color: #26a69a !important;
+ }
+ .btn-teal.btn-lighten-1:hover {
+ background-color: #00695c !important;
+ }
+ .btn-teal.btn-lighten-1:active,
+ .btn-teal.btn-lighten-1:focus {
+ border-color: #00695c !important;
+ background-color: #004d40 !important;
+ }
+ .btn-outline-teal.btn-outline-lighten-1 {
+ border-color: #26a69a !important;
+ color: #26a69a !important;
+ }
+ .btn-outline-teal.btn-outline-lighten-1:hover {
+ background-color: #26a69a !important;
+ }
+ .border-teal.border-lighten-1 {
+ border: 1px solid #26a69a !important;
+ }
+ .border-top-teal.border-top-lighten-1 {
+ border-top: 1px solid #26a69a !important;
+ }
+ .border-bottom-teal.border-bottom-lighten-1 {
+ border-bottom: 1px solid #26a69a !important;
+ }
+ .border-left-teal.border-left-lighten-1 {
+ border-left: 1px solid #26a69a !important;
+ }
+ .border-right-teal.border-right-lighten-1 {
+ border-right: 1px solid #26a69a !important;
+ }
+ .overlay-teal.overlay-lighten-1 {
+ background: #26a69a;
+ background: rgba(38, 166, 154, 0.8);
+ }
+ .teal {
+ color: #009688 !important;
+ }
+ .alert-teal,
+ .alert-teal .alert-link {
+ color: #000 !important;
+ }
+ .bg-teal {
+ background-color: #009688 !important;
+ }
+ .bg-teal .card-footer,
+ .bg-teal .card-header {
+ background-color: transparent;
+ }
+ .alert-teal {
+ border-color: #00ddc9 !important;
+ background-color: #00ddc9 !important;
+ }
+ .bullet.bullet-teal {
+ background-color: #009688;
+ }
+ .bg-light-teal {
+ background-color: rgba(0, 150, 136, 0.15);
+ }
+ .bg-teal.badge-glow,
+ .border-teal.badge-glow {
+ box-shadow: 0 0 10px #009688;
+ }
+ .overlay-teal {
+ background: #009688;
+ background: rgba(0, 150, 136, 0.8);
+ }
+ .btn-teal {
+ background-color: #009688 !important;
+ color: #fff;
+ }
+ .btn-teal:hover {
+ border-color: #00897b !important;
+ background-color: #26a69a !important;
+ color: #fff !important;
+ }
+ .btn-teal:active,
+ .btn-teal:focus {
+ border-color: #00796b !important;
+ background-color: #00695c !important;
+ color: #fff !important;
+ }
+ .btn-outline-teal {
+ border-color: #009688;
+ background-color: transparent;
+ color: #009688;
+ }
+ .btn-outline-teal:hover,
+ .widget-timeline .timeline-items.timeline-icon-teal:before {
+ background-color: #009688;
+ }
+ .btn-outline-teal:hover {
+ color: #fff !important;
+ }
+ input[type="checkbox"].bg-teal + .custom-control-label:before,
+ input[type="radio"].bg-teal + .custom-control-label:before {
+ background-color: #009688 !important;
+ }
+ .bg-teal.bg-darken-1,
+ .btn-teal.btn-darken-1 {
+ background-color: #00897b !important;
+ }
+ .border-teal {
+ border: 1px solid #009688 !important;
+ }
+ .border-top-teal {
+ border-top: 1px solid #009688;
+ }
+ .border-bottom-teal {
+ border-bottom: 1px solid #009688;
+ }
+ .border-left-teal {
+ border-left: 1px solid #009688;
+ }
+ .border-right-teal {
+ border-right: 1px solid #009688;
+ }
+ .teal.darken-1 {
+ color: #00897b !important;
+ }
+ .btn-teal.btn-darken-1 {
+ border-color: #00796b !important;
+ }
+ .btn-teal.btn-darken-1:hover {
+ border-color: #00796b !important;
+ background-color: #00695c !important;
+ }
+ .btn-teal.btn-darken-1:active,
+ .btn-teal.btn-darken-1:focus {
+ border-color: #00695c !important;
+ background-color: #004d40 !important;
+ }
+ .btn-outline-teal.btn-outline-darken-1 {
+ border-color: #00897b !important;
+ color: #00897b !important;
+ }
+ .btn-outline-teal.btn-outline-darken-1:hover {
+ background-color: #00897b !important;
+ }
+ .border-teal.border-darken-1 {
+ border: 1px solid #00897b !important;
+ }
+ .border-top-teal.border-top-darken-1 {
+ border-top: 1px solid #00897b !important;
+ }
+ .border-bottom-teal.border-bottom-darken-1 {
+ border-bottom: 1px solid #00897b !important;
+ }
+ .border-left-teal.border-left-darken-1 {
+ border-left: 1px solid #00897b !important;
+ }
+ .border-right-teal.border-right-darken-1 {
+ border-right: 1px solid #00897b !important;
+ }
+ .btn-teal.btn-darken-2,
+ .btn-teal.btn-darken-2:hover {
+ border-color: #00796b !important;
+ }
+ .overlay-teal.overlay-darken-1 {
+ background: #00897b;
+ background: rgba(0, 137, 123, 0.8);
+ }
+ .bg-teal.bg-darken-2,
+ .btn-teal.btn-darken-2 {
+ background-color: #00796b !important;
+ }
+ .teal.darken-2 {
+ color: #00796b !important;
+ }
+ .btn-teal.btn-darken-2:hover {
+ background-color: #00695c !important;
+ }
+ .btn-teal.btn-darken-2:active,
+ .btn-teal.btn-darken-2:focus {
+ border-color: #00695c !important;
+ background-color: #004d40 !important;
+ }
+ .btn-outline-teal.btn-outline-darken-2 {
+ border-color: #00796b !important;
+ color: #00796b !important;
+ }
+ .btn-outline-teal.btn-outline-darken-2:hover {
+ background-color: #00796b !important;
+ }
+ .border-teal.border-darken-2 {
+ border: 1px solid #00796b !important;
+ }
+ .border-top-teal.border-top-darken-2 {
+ border-top: 1px solid #00796b !important;
+ }
+ .border-bottom-teal.border-bottom-darken-2 {
+ border-bottom: 1px solid #00796b !important;
+ }
+ .border-left-teal.border-left-darken-2 {
+ border-left: 1px solid #00796b !important;
+ }
+ .border-right-teal.border-right-darken-2 {
+ border-right: 1px solid #00796b !important;
+ }
+ .overlay-teal.overlay-darken-2 {
+ background: #00796b;
+ background: rgba(0, 121, 107, 0.8);
+ }
+ .teal.darken-3 {
+ color: #00695c !important;
+ }
+ .bg-teal.bg-darken-3 {
+ background-color: #00695c !important;
+ }
+ .btn-teal.btn-darken-3,
+ .btn-teal.btn-darken-3:hover {
+ border-color: #00796b !important;
+ background-color: #00695c !important;
+ }
+ .btn-teal.btn-darken-3:active,
+ .btn-teal.btn-darken-3:focus {
+ border-color: #00695c !important;
+ background-color: #004d40 !important;
+ }
+ .btn-outline-teal.btn-outline-darken-3 {
+ border-color: #00695c !important;
+ color: #00695c !important;
+ }
+ .btn-outline-teal.btn-outline-darken-3:hover {
+ background-color: #00695c !important;
+ }
+ .border-teal.border-darken-3 {
+ border: 1px solid #00695c !important;
+ }
+ .border-top-teal.border-top-darken-3 {
+ border-top: 1px solid #00695c !important;
+ }
+ .border-bottom-teal.border-bottom-darken-3 {
+ border-bottom: 1px solid #00695c !important;
+ }
+ .border-left-teal.border-left-darken-3 {
+ border-left: 1px solid #00695c !important;
+ }
+ .border-right-teal.border-right-darken-3 {
+ border-right: 1px solid #00695c !important;
+ }
+ .btn-teal.btn-darken-4,
+ .btn-teal.btn-darken-4:hover {
+ border-color: #00796b !important;
+ }
+ .overlay-teal.overlay-darken-3 {
+ background: #00695c;
+ background: rgba(0, 105, 92, 0.8);
+ }
+ .bg-teal.bg-darken-4,
+ .btn-teal.btn-darken-4 {
+ background-color: #004d40 !important;
+ }
+ .teal.darken-4 {
+ color: #004d40 !important;
+ }
+ .btn-teal.btn-darken-4:hover {
+ background-color: #00695c !important;
+ }
+ .btn-teal.btn-darken-4:active,
+ .btn-teal.btn-darken-4:focus {
+ border-color: #00695c !important;
+ background-color: #004d40 !important;
+ }
+ .btn-outline-teal.btn-outline-darken-4 {
+ border-color: #004d40 !important;
+ color: #004d40 !important;
+ }
+ .btn-outline-teal.btn-outline-darken-4:hover {
+ background-color: #004d40 !important;
+ }
+ .border-teal.border-darken-4 {
+ border: 1px solid #004d40 !important;
+ }
+ .border-top-teal.border-top-darken-4 {
+ border-top: 1px solid #004d40 !important;
+ }
+ .border-bottom-teal.border-bottom-darken-4 {
+ border-bottom: 1px solid #004d40 !important;
+ }
+ .border-left-teal.border-left-darken-4 {
+ border-left: 1px solid #004d40 !important;
+ }
+ .border-right-teal.border-right-darken-4 {
+ border-right: 1px solid #004d40 !important;
+ }
+ .btn-teal.btn-accent-1,
+ .btn-teal.btn-accent-1:hover {
+ border-color: #00796b !important;
+ }
+ .overlay-teal.overlay-darken-4 {
+ background: #004d40;
+ background: rgba(0, 77, 64, 0.8);
+ }
+ .bg-teal.bg-accent-1,
+ .btn-teal.btn-accent-1 {
+ background-color: #a7ffeb !important;
+ }
+ .teal.accent-1 {
+ color: #a7ffeb !important;
+ }
+ .btn-teal.btn-accent-1:hover {
+ background-color: #00695c !important;
+ }
+ .btn-teal.btn-accent-1:active,
+ .btn-teal.btn-accent-1:focus {
+ border-color: #00695c !important;
+ background-color: #004d40 !important;
+ }
+ .btn-outline-teal.btn-outline-accent-1 {
+ border-color: #a7ffeb !important;
+ color: #a7ffeb !important;
+ }
+ .btn-outline-teal.btn-outline-accent-1:hover {
+ background-color: #a7ffeb !important;
+ }
+ .border-teal.border-accent-1 {
+ border: 1px solid #a7ffeb !important;
+ }
+ .border-top-teal.border-top-accent-1 {
+ border-top: 1px solid #a7ffeb !important;
+ }
+ .border-bottom-teal.border-bottom-accent-1 {
+ border-bottom: 1px solid #a7ffeb !important;
+ }
+ .border-left-teal.border-left-accent-1 {
+ border-left: 1px solid #a7ffeb !important;
+ }
+ .border-right-teal.border-right-accent-1 {
+ border-right: 1px solid #a7ffeb !important;
+ }
+ .btn-teal.btn-accent-2,
+ .btn-teal.btn-accent-2:hover {
+ border-color: #00796b !important;
+ }
+ .overlay-teal.overlay-accent-1 {
+ background: #a7ffeb;
+ background: rgba(167, 255, 235, 0.8);
+ }
+ .bg-teal.bg-accent-2,
+ .btn-teal.btn-accent-2 {
+ background-color: #64ffda !important;
+ }
+ .teal.accent-2 {
+ color: #64ffda !important;
+ }
+ .btn-teal.btn-accent-2:hover {
+ background-color: #00695c !important;
+ }
+ .btn-teal.btn-accent-2:active,
+ .btn-teal.btn-accent-2:focus {
+ border-color: #00695c !important;
+ background-color: #004d40 !important;
+ }
+ .btn-outline-teal.btn-outline-accent-2 {
+ border-color: #64ffda !important;
+ color: #64ffda !important;
+ }
+ .btn-outline-teal.btn-outline-accent-2:hover {
+ background-color: #64ffda !important;
+ }
+ .border-teal.border-accent-2 {
+ border: 1px solid #64ffda !important;
+ }
+ .border-top-teal.border-top-accent-2 {
+ border-top: 1px solid #64ffda !important;
+ }
+ .border-bottom-teal.border-bottom-accent-2 {
+ border-bottom: 1px solid #64ffda !important;
+ }
+ .border-left-teal.border-left-accent-2 {
+ border-left: 1px solid #64ffda !important;
+ }
+ .border-right-teal.border-right-accent-2 {
+ border-right: 1px solid #64ffda !important;
+ }
+ .btn-teal.btn-accent-3,
+ .btn-teal.btn-accent-3:hover {
+ border-color: #00796b !important;
+ }
+ .overlay-teal.overlay-accent-2 {
+ background: #64ffda;
+ background: rgba(100, 255, 218, 0.8);
+ }
+ .bg-teal.bg-accent-3,
+ .btn-teal.btn-accent-3 {
+ background-color: #1de9b6 !important;
+ }
+ .teal.accent-3 {
+ color: #1de9b6 !important;
+ }
+ .btn-teal.btn-accent-3:hover {
+ background-color: #00695c !important;
+ }
+ .btn-teal.btn-accent-3:active,
+ .btn-teal.btn-accent-3:focus {
+ border-color: #00695c !important;
+ background-color: #004d40 !important;
+ }
+ .btn-outline-teal.btn-outline-accent-3 {
+ border-color: #1de9b6 !important;
+ color: #1de9b6 !important;
+ }
+ .btn-outline-teal.btn-outline-accent-3:hover {
+ background-color: #1de9b6 !important;
+ }
+ .border-teal.border-accent-3 {
+ border: 1px solid #1de9b6 !important;
+ }
+ .border-top-teal.border-top-accent-3 {
+ border-top: 1px solid #1de9b6 !important;
+ }
+ .border-bottom-teal.border-bottom-accent-3 {
+ border-bottom: 1px solid #1de9b6 !important;
+ }
+ .border-left-teal.border-left-accent-3 {
+ border-left: 1px solid #1de9b6 !important;
+ }
+ .border-right-teal.border-right-accent-3 {
+ border-right: 1px solid #1de9b6 !important;
+ }
+ .btn-teal.btn-accent-4,
+ .btn-teal.btn-accent-4:hover {
+ border-color: #00796b !important;
+ }
+ .overlay-teal.overlay-accent-3 {
+ background: #1de9b6;
+ background: rgba(29, 233, 182, 0.8);
+ }
+ .bg-teal.bg-accent-4,
+ .btn-teal.btn-accent-4 {
+ background-color: #00bfa5 !important;
+ }
+ .teal.accent-4 {
+ color: #00bfa5 !important;
+ }
+ .btn-teal.btn-accent-4:hover {
+ background-color: #00695c !important;
+ }
+ .btn-teal.btn-accent-4:active,
+ .btn-teal.btn-accent-4:focus {
+ border-color: #00695c !important;
+ background-color: #004d40 !important;
+ }
+ .btn-outline-teal.btn-outline-accent-4 {
+ border-color: #00bfa5 !important;
+ color: #00bfa5 !important;
+ }
+ .btn-outline-teal.btn-outline-accent-4:hover {
+ background-color: #00bfa5 !important;
+ }
+ input:focus ~ .bg-teal {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #00bfa5 !important;
+ }
+ .border-teal.border-accent-4 {
+ border: 1px solid #00bfa5 !important;
+ }
+ .border-top-teal.border-top-accent-4 {
+ border-top: 1px solid #00bfa5 !important;
+ }
+ .border-bottom-teal.border-bottom-accent-4 {
+ border-bottom: 1px solid #00bfa5 !important;
+ }
+ .border-left-teal.border-left-accent-4 {
+ border-left: 1px solid #00bfa5 !important;
+ }
+ .border-right-teal.border-right-accent-4 {
+ border-right: 1px solid #00bfa5 !important;
+ }
+ .overlay-teal.overlay-accent-4 {
+ background: #00bfa5;
+ background: rgba(0, 191, 165, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="teal"]:before {
+ background-color: #00bfa5;
+ }
+ .bg-yellow.bg-lighten-5,
+ .btn-yellow.btn-lighten-5 {
+ background-color: #fffde7 !important;
+ }
+ .yellow.lighten-5 {
+ color: #fffde7 !important;
+ }
+ .btn-yellow.btn-lighten-5 {
+ border-color: #fbc02d !important;
+ }
+ .btn-yellow.btn-lighten-5:hover {
+ border-color: #fbc02d !important;
+ background-color: #f9a825 !important;
+ }
+ .btn-yellow.btn-lighten-5:active,
+ .btn-yellow.btn-lighten-5:focus {
+ border-color: #f9a825 !important;
+ background-color: #f57f17 !important;
+ }
+ .btn-outline-yellow.btn-outline-lighten-5 {
+ border-color: #fffde7 !important;
+ color: #fffde7 !important;
+ }
+ .btn-outline-yellow.btn-outline-lighten-5:hover {
+ background-color: #fffde7 !important;
+ }
+ .border-yellow.border-lighten-5 {
+ border: 1px solid #fffde7 !important;
+ }
+ .border-top-yellow.border-top-lighten-5 {
+ border-top: 1px solid #fffde7 !important;
+ }
+ .border-bottom-yellow.border-bottom-lighten-5 {
+ border-bottom: 1px solid #fffde7 !important;
+ }
+ .border-left-yellow.border-left-lighten-5 {
+ border-left: 1px solid #fffde7 !important;
+ }
+ .border-right-yellow.border-right-lighten-5 {
+ border-right: 1px solid #fffde7 !important;
+ }
+ .overlay-yellow.overlay-lighten-5 {
+ background: #fffde7;
+ background: rgba(255, 253, 231, 0.8);
+ }
+ .bg-yellow.bg-lighten-4,
+ .btn-yellow.btn-lighten-4 {
+ background-color: #fff9c4 !important;
+ }
+ .yellow.lighten-4 {
+ color: #fff9c4 !important;
+ }
+ .btn-yellow.btn-lighten-4 {
+ border-color: #fbc02d !important;
+ }
+ .btn-yellow.btn-lighten-4:hover {
+ border-color: #fbc02d !important;
+ background-color: #f9a825 !important;
+ }
+ .btn-yellow.btn-lighten-4:active,
+ .btn-yellow.btn-lighten-4:focus {
+ border-color: #f9a825 !important;
+ background-color: #f57f17 !important;
+ }
+ .btn-outline-yellow.btn-outline-lighten-4 {
+ border-color: #fff9c4 !important;
+ color: #fff9c4 !important;
+ }
+ .btn-outline-yellow.btn-outline-lighten-4:hover {
+ background-color: #fff9c4 !important;
+ }
+ .border-yellow.border-lighten-4 {
+ border: 1px solid #fff9c4 !important;
+ }
+ .border-top-yellow.border-top-lighten-4 {
+ border-top: 1px solid #fff9c4 !important;
+ }
+ .border-bottom-yellow.border-bottom-lighten-4 {
+ border-bottom: 1px solid #fff9c4 !important;
+ }
+ .border-left-yellow.border-left-lighten-4 {
+ border-left: 1px solid #fff9c4 !important;
+ }
+ .border-right-yellow.border-right-lighten-4 {
+ border-right: 1px solid #fff9c4 !important;
+ }
+ .overlay-yellow.overlay-lighten-4 {
+ background: #fff9c4;
+ background: rgba(255, 249, 196, 0.8);
+ }
+ .bg-yellow.bg-lighten-3,
+ .btn-yellow.btn-lighten-3 {
+ background-color: #fff59d !important;
+ }
+ .yellow.lighten-3 {
+ color: #fff59d !important;
+ }
+ .btn-yellow.btn-lighten-3 {
+ border-color: #fbc02d !important;
+ }
+ .btn-yellow.btn-lighten-3:hover {
+ border-color: #fbc02d !important;
+ background-color: #f9a825 !important;
+ }
+ .btn-yellow.btn-lighten-3:active,
+ .btn-yellow.btn-lighten-3:focus {
+ border-color: #f9a825 !important;
+ background-color: #f57f17 !important;
+ }
+ .btn-outline-yellow.btn-outline-lighten-3 {
+ border-color: #fff59d !important;
+ color: #fff59d !important;
+ }
+ .btn-outline-yellow.btn-outline-lighten-3:hover {
+ background-color: #fff59d !important;
+ }
+ .border-yellow.border-lighten-3 {
+ border: 1px solid #fff59d !important;
+ }
+ .border-top-yellow.border-top-lighten-3 {
+ border-top: 1px solid #fff59d !important;
+ }
+ .border-bottom-yellow.border-bottom-lighten-3 {
+ border-bottom: 1px solid #fff59d !important;
+ }
+ .border-left-yellow.border-left-lighten-3 {
+ border-left: 1px solid #fff59d !important;
+ }
+ .border-right-yellow.border-right-lighten-3 {
+ border-right: 1px solid #fff59d !important;
+ }
+ .overlay-yellow.overlay-lighten-3 {
+ background: #fff59d;
+ background: rgba(255, 245, 157, 0.8);
+ }
+ .bg-yellow.bg-lighten-2,
+ .btn-yellow.btn-lighten-2 {
+ background-color: #fff176 !important;
+ }
+ .yellow.lighten-2 {
+ color: #fff176 !important;
+ }
+ .btn-yellow.btn-lighten-2 {
+ border-color: #fbc02d !important;
+ }
+ .btn-yellow.btn-lighten-2:hover {
+ border-color: #fbc02d !important;
+ background-color: #f9a825 !important;
+ }
+ .btn-yellow.btn-lighten-2:active,
+ .btn-yellow.btn-lighten-2:focus {
+ border-color: #f9a825 !important;
+ background-color: #f57f17 !important;
+ }
+ .btn-outline-yellow.btn-outline-lighten-2 {
+ border-color: #fff176 !important;
+ color: #fff176 !important;
+ }
+ .btn-outline-yellow.btn-outline-lighten-2:hover {
+ background-color: #fff176 !important;
+ }
+ .border-yellow.border-lighten-2 {
+ border: 1px solid #fff176 !important;
+ }
+ .border-top-yellow.border-top-lighten-2 {
+ border-top: 1px solid #fff176 !important;
+ }
+ .border-bottom-yellow.border-bottom-lighten-2 {
+ border-bottom: 1px solid #fff176 !important;
+ }
+ .border-left-yellow.border-left-lighten-2 {
+ border-left: 1px solid #fff176 !important;
+ }
+ .border-right-yellow.border-right-lighten-2 {
+ border-right: 1px solid #fff176 !important;
+ }
+ .overlay-yellow.overlay-lighten-2 {
+ background: #fff176;
+ background: rgba(255, 241, 118, 0.8);
+ }
+ .bg-yellow.bg-lighten-1,
+ .btn-yellow.btn-lighten-1 {
+ background-color: #ffee58 !important;
+ }
+ .yellow.lighten-1 {
+ color: #ffee58 !important;
+ }
+ .btn-yellow.btn-lighten-1 {
+ border-color: #fbc02d !important;
+ }
+ .btn-yellow.btn-lighten-1:hover {
+ border-color: #fbc02d !important;
+ background-color: #f9a825 !important;
+ }
+ .btn-yellow.btn-lighten-1:active,
+ .btn-yellow.btn-lighten-1:focus {
+ border-color: #f9a825 !important;
+ background-color: #f57f17 !important;
+ }
+ .btn-outline-yellow.btn-outline-lighten-1 {
+ border-color: #ffee58 !important;
+ color: #ffee58 !important;
+ }
+ .btn-outline-yellow.btn-outline-lighten-1:hover {
+ background-color: #ffee58 !important;
+ }
+ .border-yellow.border-lighten-1 {
+ border: 1px solid #ffee58 !important;
+ }
+ .border-top-yellow.border-top-lighten-1 {
+ border-top: 1px solid #ffee58 !important;
+ }
+ .border-bottom-yellow.border-bottom-lighten-1 {
+ border-bottom: 1px solid #ffee58 !important;
+ }
+ .border-left-yellow.border-left-lighten-1 {
+ border-left: 1px solid #ffee58 !important;
+ }
+ .border-right-yellow.border-right-lighten-1 {
+ border-right: 1px solid #ffee58 !important;
+ }
+ .overlay-yellow.overlay-lighten-1 {
+ background: #ffee58;
+ background: rgba(255, 238, 88, 0.8);
+ }
+ .yellow {
+ color: #ffeb3b !important;
+ }
+ .bg-yellow {
+ background-color: #ffeb3b !important;
+ }
+ .bg-yellow .card-footer,
+ .bg-yellow .card-header {
+ background-color: transparent;
+ }
+ .alert-yellow {
+ border-color: #fff282 !important;
+ background-color: #fff282 !important;
+ color: #887a00 !important;
+ }
+ .alert-yellow .alert-link {
+ color: #5f5500 !important;
+ }
+ .bullet.bullet-yellow {
+ background-color: #ffeb3b;
+ }
+ .bg-light-yellow {
+ background-color: rgba(255, 235, 59, 0.15);
+ }
+ .bg-yellow.badge-glow,
+ .border-yellow.badge-glow {
+ box-shadow: 0 0 10px #ffeb3b;
+ }
+ .overlay-yellow {
+ background: #ffeb3b;
+ background: rgba(255, 235, 59, 0.8);
+ }
+ .btn-yellow {
+ background-color: #ffeb3b !important;
+ color: #fff;
+ }
+ .btn-yellow:hover {
+ border-color: #fdd835 !important;
+ background-color: #ffee58 !important;
+ color: #fff !important;
+ }
+ .btn-yellow:active,
+ .btn-yellow:focus {
+ border-color: #fbc02d !important;
+ background-color: #f9a825 !important;
+ color: #fff !important;
+ }
+ .btn-outline-yellow {
+ border-color: #ffeb3b;
+ background-color: transparent;
+ color: #ffeb3b;
+ }
+ .btn-outline-yellow:hover {
+ background-color: #ffeb3b;
+ color: #fff !important;
+ }
+ .widget-timeline .timeline-items.timeline-icon-yellow:before {
+ background-color: #ffeb3b;
+ }
+ input[type="checkbox"].bg-yellow + .custom-control-label:before,
+ input[type="radio"].bg-yellow + .custom-control-label:before {
+ background-color: #ffeb3b !important;
+ }
+ .bg-yellow.bg-darken-1,
+ .btn-yellow.btn-darken-1 {
+ background-color: #fdd835 !important;
+ }
+ .border-yellow {
+ border: 1px solid #ffeb3b !important;
+ }
+ .border-top-yellow {
+ border-top: 1px solid #ffeb3b;
+ }
+ .border-bottom-yellow {
+ border-bottom: 1px solid #ffeb3b;
+ }
+ .border-left-yellow {
+ border-left: 1px solid #ffeb3b;
+ }
+ .border-right-yellow {
+ border-right: 1px solid #ffeb3b;
+ }
+ .yellow.darken-1 {
+ color: #fdd835 !important;
+ }
+ .btn-yellow.btn-darken-1 {
+ border-color: #fbc02d !important;
+ }
+ .btn-yellow.btn-darken-1:hover {
+ border-color: #fbc02d !important;
+ background-color: #f9a825 !important;
+ }
+ .btn-yellow.btn-darken-1:active,
+ .btn-yellow.btn-darken-1:focus {
+ border-color: #f9a825 !important;
+ background-color: #f57f17 !important;
+ }
+ .btn-outline-yellow.btn-outline-darken-1 {
+ border-color: #fdd835 !important;
+ color: #fdd835 !important;
+ }
+ .btn-outline-yellow.btn-outline-darken-1:hover {
+ background-color: #fdd835 !important;
+ }
+ .border-yellow.border-darken-1 {
+ border: 1px solid #fdd835 !important;
+ }
+ .border-top-yellow.border-top-darken-1 {
+ border-top: 1px solid #fdd835 !important;
+ }
+ .border-bottom-yellow.border-bottom-darken-1 {
+ border-bottom: 1px solid #fdd835 !important;
+ }
+ .border-left-yellow.border-left-darken-1 {
+ border-left: 1px solid #fdd835 !important;
+ }
+ .border-right-yellow.border-right-darken-1 {
+ border-right: 1px solid #fdd835 !important;
+ }
+ .btn-yellow.btn-darken-2,
+ .btn-yellow.btn-darken-2:hover {
+ border-color: #fbc02d !important;
+ }
+ .overlay-yellow.overlay-darken-1 {
+ background: #fdd835;
+ background: rgba(253, 216, 53, 0.8);
+ }
+ .bg-yellow.bg-darken-2,
+ .btn-yellow.btn-darken-2 {
+ background-color: #fbc02d !important;
+ }
+ .yellow.darken-2 {
+ color: #fbc02d !important;
+ }
+ .btn-yellow.btn-darken-2:hover {
+ background-color: #f9a825 !important;
+ }
+ .btn-yellow.btn-darken-2:active,
+ .btn-yellow.btn-darken-2:focus {
+ border-color: #f9a825 !important;
+ background-color: #f57f17 !important;
+ }
+ .btn-outline-yellow.btn-outline-darken-2 {
+ border-color: #fbc02d !important;
+ color: #fbc02d !important;
+ }
+ .btn-outline-yellow.btn-outline-darken-2:hover {
+ background-color: #fbc02d !important;
+ }
+ .border-yellow.border-darken-2 {
+ border: 1px solid #fbc02d !important;
+ }
+ .border-top-yellow.border-top-darken-2 {
+ border-top: 1px solid #fbc02d !important;
+ }
+ .border-bottom-yellow.border-bottom-darken-2 {
+ border-bottom: 1px solid #fbc02d !important;
+ }
+ .border-left-yellow.border-left-darken-2 {
+ border-left: 1px solid #fbc02d !important;
+ }
+ .border-right-yellow.border-right-darken-2 {
+ border-right: 1px solid #fbc02d !important;
+ }
+ .overlay-yellow.overlay-darken-2 {
+ background: #fbc02d;
+ background: rgba(251, 192, 45, 0.8);
+ }
+ .yellow.darken-3 {
+ color: #f9a825 !important;
+ }
+ .bg-yellow.bg-darken-3 {
+ background-color: #f9a825 !important;
+ }
+ .btn-yellow.btn-darken-3,
+ .btn-yellow.btn-darken-3:hover {
+ border-color: #fbc02d !important;
+ background-color: #f9a825 !important;
+ }
+ .btn-yellow.btn-darken-3:active,
+ .btn-yellow.btn-darken-3:focus {
+ border-color: #f9a825 !important;
+ background-color: #f57f17 !important;
+ }
+ .btn-outline-yellow.btn-outline-darken-3 {
+ border-color: #f9a825 !important;
+ color: #f9a825 !important;
+ }
+ .btn-outline-yellow.btn-outline-darken-3:hover {
+ background-color: #f9a825 !important;
+ }
+ .border-yellow.border-darken-3 {
+ border: 1px solid #f9a825 !important;
+ }
+ .border-top-yellow.border-top-darken-3 {
+ border-top: 1px solid #f9a825 !important;
+ }
+ .border-bottom-yellow.border-bottom-darken-3 {
+ border-bottom: 1px solid #f9a825 !important;
+ }
+ .border-left-yellow.border-left-darken-3 {
+ border-left: 1px solid #f9a825 !important;
+ }
+ .border-right-yellow.border-right-darken-3 {
+ border-right: 1px solid #f9a825 !important;
+ }
+ .btn-yellow.btn-darken-4,
+ .btn-yellow.btn-darken-4:hover {
+ border-color: #fbc02d !important;
+ }
+ .overlay-yellow.overlay-darken-3 {
+ background: #f9a825;
+ background: rgba(249, 168, 37, 0.8);
+ }
+ .bg-yellow.bg-darken-4,
+ .btn-yellow.btn-darken-4 {
+ background-color: #f57f17 !important;
+ }
+ .yellow.darken-4 {
+ color: #f57f17 !important;
+ }
+ .btn-yellow.btn-darken-4:hover {
+ background-color: #f9a825 !important;
+ }
+ .btn-yellow.btn-darken-4:active,
+ .btn-yellow.btn-darken-4:focus {
+ border-color: #f9a825 !important;
+ background-color: #f57f17 !important;
+ }
+ .btn-outline-yellow.btn-outline-darken-4 {
+ border-color: #f57f17 !important;
+ color: #f57f17 !important;
+ }
+ .btn-outline-yellow.btn-outline-darken-4:hover {
+ background-color: #f57f17 !important;
+ }
+ .border-yellow.border-darken-4 {
+ border: 1px solid #f57f17 !important;
+ }
+ .border-top-yellow.border-top-darken-4 {
+ border-top: 1px solid #f57f17 !important;
+ }
+ .border-bottom-yellow.border-bottom-darken-4 {
+ border-bottom: 1px solid #f57f17 !important;
+ }
+ .border-left-yellow.border-left-darken-4 {
+ border-left: 1px solid #f57f17 !important;
+ }
+ .border-right-yellow.border-right-darken-4 {
+ border-right: 1px solid #f57f17 !important;
+ }
+ .btn-yellow.btn-accent-1,
+ .btn-yellow.btn-accent-1:hover {
+ border-color: #fbc02d !important;
+ }
+ .overlay-yellow.overlay-darken-4 {
+ background: #f57f17;
+ background: rgba(245, 127, 23, 0.8);
+ }
+ .bg-yellow.bg-accent-1,
+ .btn-yellow.btn-accent-1 {
+ background-color: #ffff8d !important;
+ }
+ .yellow.accent-1 {
+ color: #ffff8d !important;
+ }
+ .btn-yellow.btn-accent-1:hover {
+ background-color: #f9a825 !important;
+ }
+ .btn-yellow.btn-accent-1:active,
+ .btn-yellow.btn-accent-1:focus {
+ border-color: #f9a825 !important;
+ background-color: #f57f17 !important;
+ }
+ .btn-outline-yellow.btn-outline-accent-1 {
+ border-color: #ffff8d !important;
+ color: #ffff8d !important;
+ }
+ .btn-outline-yellow.btn-outline-accent-1:hover {
+ background-color: #ffff8d !important;
+ }
+ .border-yellow.border-accent-1 {
+ border: 1px solid #ffff8d !important;
+ }
+ .border-top-yellow.border-top-accent-1 {
+ border-top: 1px solid #ffff8d !important;
+ }
+ .border-bottom-yellow.border-bottom-accent-1 {
+ border-bottom: 1px solid #ffff8d !important;
+ }
+ .border-left-yellow.border-left-accent-1 {
+ border-left: 1px solid #ffff8d !important;
+ }
+ .border-right-yellow.border-right-accent-1 {
+ border-right: 1px solid #ffff8d !important;
+ }
+ .btn-yellow.btn-accent-2,
+ .btn-yellow.btn-accent-2:hover {
+ border-color: #fbc02d !important;
+ }
+ .overlay-yellow.overlay-accent-1 {
+ background: #ffff8d;
+ background: rgba(255, 255, 141, 0.8);
+ }
+ .bg-yellow.bg-accent-2,
+ .btn-yellow.btn-accent-2 {
+ background-color: #ff0 !important;
+ }
+ .yellow.accent-2 {
+ color: #ff0 !important;
+ }
+ .btn-yellow.btn-accent-2:hover {
+ background-color: #f9a825 !important;
+ }
+ .btn-yellow.btn-accent-2:active,
+ .btn-yellow.btn-accent-2:focus {
+ border-color: #f9a825 !important;
+ background-color: #f57f17 !important;
+ }
+ .btn-outline-yellow.btn-outline-accent-2 {
+ border-color: #ff0 !important;
+ color: #ff0 !important;
+ }
+ .btn-outline-yellow.btn-outline-accent-2:hover {
+ background-color: #ff0 !important;
+ }
+ .border-yellow.border-accent-2 {
+ border: 1px solid #ff0 !important;
+ }
+ .border-top-yellow.border-top-accent-2 {
+ border-top: 1px solid #ff0 !important;
+ }
+ .border-bottom-yellow.border-bottom-accent-2 {
+ border-bottom: 1px solid #ff0 !important;
+ }
+ .border-left-yellow.border-left-accent-2 {
+ border-left: 1px solid #ff0 !important;
+ }
+ .border-right-yellow.border-right-accent-2 {
+ border-right: 1px solid #ff0 !important;
+ }
+ .btn-yellow.btn-accent-3,
+ .btn-yellow.btn-accent-3:hover {
+ border-color: #fbc02d !important;
+ }
+ .overlay-yellow.overlay-accent-2 {
+ background: #ff0;
+ background: rgba(255, 255, 0, 0.8);
+ }
+ .bg-yellow.bg-accent-3,
+ .btn-yellow.btn-accent-3 {
+ background-color: #ffea00 !important;
+ }
+ .yellow.accent-3 {
+ color: #ffea00 !important;
+ }
+ .btn-yellow.btn-accent-3:hover {
+ background-color: #f9a825 !important;
+ }
+ .btn-yellow.btn-accent-3:active,
+ .btn-yellow.btn-accent-3:focus {
+ border-color: #f9a825 !important;
+ background-color: #f57f17 !important;
+ }
+ .btn-outline-yellow.btn-outline-accent-3 {
+ border-color: #ffea00 !important;
+ color: #ffea00 !important;
+ }
+ .btn-outline-yellow.btn-outline-accent-3:hover {
+ background-color: #ffea00 !important;
+ }
+ .border-yellow.border-accent-3 {
+ border: 1px solid #ffea00 !important;
+ }
+ .border-top-yellow.border-top-accent-3 {
+ border-top: 1px solid #ffea00 !important;
+ }
+ .border-bottom-yellow.border-bottom-accent-3 {
+ border-bottom: 1px solid #ffea00 !important;
+ }
+ .border-left-yellow.border-left-accent-3 {
+ border-left: 1px solid #ffea00 !important;
+ }
+ .border-right-yellow.border-right-accent-3 {
+ border-right: 1px solid #ffea00 !important;
+ }
+ .btn-yellow.btn-accent-4,
+ .btn-yellow.btn-accent-4:hover {
+ border-color: #fbc02d !important;
+ }
+ .overlay-yellow.overlay-accent-3 {
+ background: #ffea00;
+ background: rgba(255, 234, 0, 0.8);
+ }
+ .bg-yellow.bg-accent-4,
+ .btn-yellow.btn-accent-4 {
+ background-color: #ffd600 !important;
+ }
+ .yellow.accent-4 {
+ color: #ffd600 !important;
+ }
+ .btn-yellow.btn-accent-4:hover {
+ background-color: #f9a825 !important;
+ }
+ .btn-yellow.btn-accent-4:active,
+ .btn-yellow.btn-accent-4:focus {
+ border-color: #f9a825 !important;
+ background-color: #f57f17 !important;
+ }
+ .btn-outline-yellow.btn-outline-accent-4 {
+ border-color: #ffd600 !important;
+ color: #ffd600 !important;
+ }
+ .btn-outline-yellow.btn-outline-accent-4:hover {
+ background-color: #ffd600 !important;
+ }
+ input:focus ~ .bg-yellow {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #ffd600 !important;
+ }
+ .border-yellow.border-accent-4 {
+ border: 1px solid #ffd600 !important;
+ }
+ .border-top-yellow.border-top-accent-4 {
+ border-top: 1px solid #ffd600 !important;
+ }
+ .border-bottom-yellow.border-bottom-accent-4 {
+ border-bottom: 1px solid #ffd600 !important;
+ }
+ .border-left-yellow.border-left-accent-4 {
+ border-left: 1px solid #ffd600 !important;
+ }
+ .border-right-yellow.border-right-accent-4 {
+ border-right: 1px solid #ffd600 !important;
+ }
+ .btn-amber.btn-lighten-5,
+ .btn-amber.btn-lighten-5:hover {
+ border-color: #ffa000 !important;
+ }
+ .overlay-yellow.overlay-accent-4 {
+ background: #ffd600;
+ background: rgba(255, 214, 0, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="yellow"]:before {
+ background-color: #ffd600;
+ }
+ .bg-amber.bg-lighten-5,
+ .btn-amber.btn-lighten-5 {
+ background-color: #fff8e1 !important;
+ }
+ .amber.lighten-5 {
+ color: #fff8e1 !important;
+ }
+ .btn-amber.btn-lighten-5:hover {
+ background-color: #ff8f00 !important;
+ }
+ .btn-amber.btn-lighten-5:active,
+ .btn-amber.btn-lighten-5:focus {
+ border-color: #ff8f00 !important;
+ background-color: #ff6f00 !important;
+ }
+ .btn-outline-amber.btn-outline-lighten-5 {
+ border-color: #fff8e1 !important;
+ color: #fff8e1 !important;
+ }
+ .btn-outline-amber.btn-outline-lighten-5:hover {
+ background-color: #fff8e1 !important;
+ }
+ .border-amber.border-lighten-5 {
+ border: 1px solid #fff8e1 !important;
+ }
+ .border-top-amber.border-top-lighten-5 {
+ border-top: 1px solid #fff8e1 !important;
+ }
+ .border-bottom-amber.border-bottom-lighten-5 {
+ border-bottom: 1px solid #fff8e1 !important;
+ }
+ .border-left-amber.border-left-lighten-5 {
+ border-left: 1px solid #fff8e1 !important;
+ }
+ .border-right-amber.border-right-lighten-5 {
+ border-right: 1px solid #fff8e1 !important;
+ }
+ .btn-amber.btn-lighten-4,
+ .btn-amber.btn-lighten-4:hover {
+ border-color: #ffa000 !important;
+ }
+ .overlay-amber.overlay-lighten-5 {
+ background: #fff8e1;
+ background: rgba(255, 248, 225, 0.8);
+ }
+ .bg-amber.bg-lighten-4,
+ .btn-amber.btn-lighten-4 {
+ background-color: #ffecb3 !important;
+ }
+ .amber.lighten-4 {
+ color: #ffecb3 !important;
+ }
+ .btn-amber.btn-lighten-4:hover {
+ background-color: #ff8f00 !important;
+ }
+ .btn-amber.btn-lighten-4:active,
+ .btn-amber.btn-lighten-4:focus {
+ border-color: #ff8f00 !important;
+ background-color: #ff6f00 !important;
+ }
+ .btn-outline-amber.btn-outline-lighten-4 {
+ border-color: #ffecb3 !important;
+ color: #ffecb3 !important;
+ }
+ .btn-outline-amber.btn-outline-lighten-4:hover {
+ background-color: #ffecb3 !important;
+ }
+ .border-amber.border-lighten-4 {
+ border: 1px solid #ffecb3 !important;
+ }
+ .border-top-amber.border-top-lighten-4 {
+ border-top: 1px solid #ffecb3 !important;
+ }
+ .border-bottom-amber.border-bottom-lighten-4 {
+ border-bottom: 1px solid #ffecb3 !important;
+ }
+ .border-left-amber.border-left-lighten-4 {
+ border-left: 1px solid #ffecb3 !important;
+ }
+ .border-right-amber.border-right-lighten-4 {
+ border-right: 1px solid #ffecb3 !important;
+ }
+ .btn-amber.btn-lighten-3,
+ .btn-amber.btn-lighten-3:hover {
+ border-color: #ffa000 !important;
+ }
+ .overlay-amber.overlay-lighten-4 {
+ background: #ffecb3;
+ background: rgba(255, 236, 179, 0.8);
+ }
+ .bg-amber.bg-lighten-3,
+ .btn-amber.btn-lighten-3 {
+ background-color: #ffe082 !important;
+ }
+ .amber.lighten-3 {
+ color: #ffe082 !important;
+ }
+ .btn-amber.btn-lighten-3:hover {
+ background-color: #ff8f00 !important;
+ }
+ .btn-amber.btn-lighten-3:active,
+ .btn-amber.btn-lighten-3:focus {
+ border-color: #ff8f00 !important;
+ background-color: #ff6f00 !important;
+ }
+ .btn-outline-amber.btn-outline-lighten-3 {
+ border-color: #ffe082 !important;
+ color: #ffe082 !important;
+ }
+ .btn-outline-amber.btn-outline-lighten-3:hover {
+ background-color: #ffe082 !important;
+ }
+ .border-amber.border-lighten-3 {
+ border: 1px solid #ffe082 !important;
+ }
+ .border-top-amber.border-top-lighten-3 {
+ border-top: 1px solid #ffe082 !important;
+ }
+ .border-bottom-amber.border-bottom-lighten-3 {
+ border-bottom: 1px solid #ffe082 !important;
+ }
+ .border-left-amber.border-left-lighten-3 {
+ border-left: 1px solid #ffe082 !important;
+ }
+ .border-right-amber.border-right-lighten-3 {
+ border-right: 1px solid #ffe082 !important;
+ }
+ .btn-amber.btn-lighten-2,
+ .btn-amber.btn-lighten-2:hover {
+ border-color: #ffa000 !important;
+ }
+ .overlay-amber.overlay-lighten-3 {
+ background: #ffe082;
+ background: rgba(255, 224, 130, 0.8);
+ }
+ .bg-amber.bg-lighten-2,
+ .btn-amber.btn-lighten-2 {
+ background-color: #ffd54f !important;
+ }
+ .amber.lighten-2 {
+ color: #ffd54f !important;
+ }
+ .btn-amber.btn-lighten-2:hover {
+ background-color: #ff8f00 !important;
+ }
+ .btn-amber.btn-lighten-2:active,
+ .btn-amber.btn-lighten-2:focus {
+ border-color: #ff8f00 !important;
+ background-color: #ff6f00 !important;
+ }
+ .btn-outline-amber.btn-outline-lighten-2 {
+ border-color: #ffd54f !important;
+ color: #ffd54f !important;
+ }
+ .btn-outline-amber.btn-outline-lighten-2:hover {
+ background-color: #ffd54f !important;
+ }
+ .border-amber.border-lighten-2 {
+ border: 1px solid #ffd54f !important;
+ }
+ .border-top-amber.border-top-lighten-2 {
+ border-top: 1px solid #ffd54f !important;
+ }
+ .border-bottom-amber.border-bottom-lighten-2 {
+ border-bottom: 1px solid #ffd54f !important;
+ }
+ .border-left-amber.border-left-lighten-2 {
+ border-left: 1px solid #ffd54f !important;
+ }
+ .border-right-amber.border-right-lighten-2 {
+ border-right: 1px solid #ffd54f !important;
+ }
+ .btn-amber.btn-lighten-1,
+ .btn-amber.btn-lighten-1:hover {
+ border-color: #ffa000 !important;
+ }
+ .overlay-amber.overlay-lighten-2 {
+ background: #ffd54f;
+ background: rgba(255, 213, 79, 0.8);
+ }
+ .bg-amber.bg-lighten-1,
+ .btn-amber.btn-lighten-1 {
+ background-color: #ffca28 !important;
+ }
+ .amber.lighten-1 {
+ color: #ffca28 !important;
+ }
+ .btn-amber.btn-lighten-1:hover {
+ background-color: #ff8f00 !important;
+ }
+ .btn-amber.btn-lighten-1:active,
+ .btn-amber.btn-lighten-1:focus {
+ border-color: #ff8f00 !important;
+ background-color: #ff6f00 !important;
+ }
+ .btn-outline-amber.btn-outline-lighten-1 {
+ border-color: #ffca28 !important;
+ color: #ffca28 !important;
+ }
+ .btn-outline-amber.btn-outline-lighten-1:hover {
+ background-color: #ffca28 !important;
+ }
+ .border-amber.border-lighten-1 {
+ border: 1px solid #ffca28 !important;
+ }
+ .border-top-amber.border-top-lighten-1 {
+ border-top: 1px solid #ffca28 !important;
+ }
+ .border-bottom-amber.border-bottom-lighten-1 {
+ border-bottom: 1px solid #ffca28 !important;
+ }
+ .border-left-amber.border-left-lighten-1 {
+ border-left: 1px solid #ffca28 !important;
+ }
+ .border-right-amber.border-right-lighten-1 {
+ border-right: 1px solid #ffca28 !important;
+ }
+ .overlay-amber.overlay-lighten-1 {
+ background: #ffca28;
+ background: rgba(255, 202, 40, 0.8);
+ }
+ .amber {
+ color: #ffc107 !important;
+ }
+ .bg-amber {
+ background-color: #ffc107 !important;
+ }
+ .bg-amber .card-footer,
+ .bg-amber .card-header {
+ background-color: transparent;
+ }
+ .alert-amber {
+ border-color: #ffd34e !important;
+ background-color: #ffd34e !important;
+ color: #543f00 !important;
+ }
+ .alert-amber .alert-link {
+ color: #2b2000 !important;
+ }
+ .bullet.bullet-amber {
+ background-color: #ffc107;
+ }
+ .bg-light-amber {
+ background-color: rgba(255, 193, 7, 0.15);
+ }
+ .bg-amber.badge-glow,
+ .border-amber.badge-glow {
+ box-shadow: 0 0 10px #ffc107;
+ }
+ .overlay-amber {
+ background: #ffc107;
+ background: rgba(255, 193, 7, 0.8);
+ }
+ .btn-amber {
+ background-color: #ffc107 !important;
+ color: #fff;
+ }
+ .btn-amber:hover {
+ border-color: #ffb300 !important;
+ background-color: #ffca28 !important;
+ color: #fff !important;
+ }
+ .btn-amber:active,
+ .btn-amber:focus {
+ border-color: #ffa000 !important;
+ background-color: #ff8f00 !important;
+ color: #fff !important;
+ }
+ .btn-outline-amber {
+ border-color: #ffc107;
+ background-color: transparent;
+ color: #ffc107;
+ }
+ .btn-outline-amber:hover,
+ .widget-timeline .timeline-items.timeline-icon-amber:before {
+ background-color: #ffc107;
+ }
+ .btn-outline-amber:hover {
+ color: #fff !important;
+ }
+ input[type="checkbox"].bg-amber + .custom-control-label:before,
+ input[type="radio"].bg-amber + .custom-control-label:before {
+ background-color: #ffc107 !important;
+ }
+ .bg-amber.bg-darken-1,
+ .btn-amber.btn-darken-1 {
+ background-color: #ffb300 !important;
+ }
+ .border-amber {
+ border: 1px solid #ffc107 !important;
+ }
+ .border-top-amber {
+ border-top: 1px solid #ffc107;
+ }
+ .border-bottom-amber {
+ border-bottom: 1px solid #ffc107;
+ }
+ .border-left-amber {
+ border-left: 1px solid #ffc107;
+ }
+ .border-right-amber {
+ border-right: 1px solid #ffc107;
+ }
+ .amber.darken-1 {
+ color: #ffb300 !important;
+ }
+ .btn-amber.btn-darken-1 {
+ border-color: #ffa000 !important;
+ }
+ .btn-amber.btn-darken-1:hover {
+ border-color: #ffa000 !important;
+ background-color: #ff8f00 !important;
+ }
+ .btn-amber.btn-darken-1:active,
+ .btn-amber.btn-darken-1:focus {
+ border-color: #ff8f00 !important;
+ background-color: #ff6f00 !important;
+ }
+ .btn-outline-amber.btn-outline-darken-1 {
+ border-color: #ffb300 !important;
+ color: #ffb300 !important;
+ }
+ .btn-outline-amber.btn-outline-darken-1:hover {
+ background-color: #ffb300 !important;
+ }
+ .border-amber.border-darken-1 {
+ border: 1px solid #ffb300 !important;
+ }
+ .border-top-amber.border-top-darken-1 {
+ border-top: 1px solid #ffb300 !important;
+ }
+ .border-bottom-amber.border-bottom-darken-1 {
+ border-bottom: 1px solid #ffb300 !important;
+ }
+ .border-left-amber.border-left-darken-1 {
+ border-left: 1px solid #ffb300 !important;
+ }
+ .border-right-amber.border-right-darken-1 {
+ border-right: 1px solid #ffb300 !important;
+ }
+ .btn-amber.btn-darken-2,
+ .btn-amber.btn-darken-2:hover {
+ border-color: #ffa000 !important;
+ }
+ .overlay-amber.overlay-darken-1 {
+ background: #ffb300;
+ background: rgba(255, 179, 0, 0.8);
+ }
+ .bg-amber.bg-darken-2,
+ .btn-amber.btn-darken-2 {
+ background-color: #ffa000 !important;
+ }
+ .amber.darken-2 {
+ color: #ffa000 !important;
+ }
+ .btn-amber.btn-darken-2:hover {
+ background-color: #ff8f00 !important;
+ }
+ .btn-amber.btn-darken-2:active,
+ .btn-amber.btn-darken-2:focus {
+ border-color: #ff8f00 !important;
+ background-color: #ff6f00 !important;
+ }
+ .btn-outline-amber.btn-outline-darken-2 {
+ border-color: #ffa000 !important;
+ color: #ffa000 !important;
+ }
+ .btn-outline-amber.btn-outline-darken-2:hover {
+ background-color: #ffa000 !important;
+ }
+ .border-amber.border-darken-2 {
+ border: 1px solid #ffa000 !important;
+ }
+ .border-top-amber.border-top-darken-2 {
+ border-top: 1px solid #ffa000 !important;
+ }
+ .border-bottom-amber.border-bottom-darken-2 {
+ border-bottom: 1px solid #ffa000 !important;
+ }
+ .border-left-amber.border-left-darken-2 {
+ border-left: 1px solid #ffa000 !important;
+ }
+ .border-right-amber.border-right-darken-2 {
+ border-right: 1px solid #ffa000 !important;
+ }
+ .overlay-amber.overlay-darken-2 {
+ background: #ffa000;
+ background: rgba(255, 160, 0, 0.8);
+ }
+ .amber.darken-3 {
+ color: #ff8f00 !important;
+ }
+ .bg-amber.bg-darken-3 {
+ background-color: #ff8f00 !important;
+ }
+ .btn-amber.btn-darken-3,
+ .btn-amber.btn-darken-3:hover {
+ border-color: #ffa000 !important;
+ background-color: #ff8f00 !important;
+ }
+ .btn-amber.btn-darken-3:active,
+ .btn-amber.btn-darken-3:focus {
+ border-color: #ff8f00 !important;
+ background-color: #ff6f00 !important;
+ }
+ .btn-outline-amber.btn-outline-darken-3 {
+ border-color: #ff8f00 !important;
+ color: #ff8f00 !important;
+ }
+ .btn-outline-amber.btn-outline-darken-3:hover {
+ background-color: #ff8f00 !important;
+ }
+ .border-amber.border-darken-3 {
+ border: 1px solid #ff8f00 !important;
+ }
+ .border-top-amber.border-top-darken-3 {
+ border-top: 1px solid #ff8f00 !important;
+ }
+ .border-bottom-amber.border-bottom-darken-3 {
+ border-bottom: 1px solid #ff8f00 !important;
+ }
+ .border-left-amber.border-left-darken-3 {
+ border-left: 1px solid #ff8f00 !important;
+ }
+ .border-right-amber.border-right-darken-3 {
+ border-right: 1px solid #ff8f00 !important;
+ }
+ .btn-amber.btn-darken-4,
+ .btn-amber.btn-darken-4:hover {
+ border-color: #ffa000 !important;
+ }
+ .overlay-amber.overlay-darken-3 {
+ background: #ff8f00;
+ background: rgba(255, 143, 0, 0.8);
+ }
+ .bg-amber.bg-darken-4,
+ .btn-amber.btn-darken-4 {
+ background-color: #ff6f00 !important;
+ }
+ .amber.darken-4 {
+ color: #ff6f00 !important;
+ }
+ .btn-amber.btn-darken-4:hover {
+ background-color: #ff8f00 !important;
+ }
+ .btn-amber.btn-darken-4:active,
+ .btn-amber.btn-darken-4:focus {
+ border-color: #ff8f00 !important;
+ background-color: #ff6f00 !important;
+ }
+ .btn-outline-amber.btn-outline-darken-4 {
+ border-color: #ff6f00 !important;
+ color: #ff6f00 !important;
+ }
+ .btn-outline-amber.btn-outline-darken-4:hover {
+ background-color: #ff6f00 !important;
+ }
+ .border-amber.border-darken-4 {
+ border: 1px solid #ff6f00 !important;
+ }
+ .border-top-amber.border-top-darken-4 {
+ border-top: 1px solid #ff6f00 !important;
+ }
+ .border-bottom-amber.border-bottom-darken-4 {
+ border-bottom: 1px solid #ff6f00 !important;
+ }
+ .border-left-amber.border-left-darken-4 {
+ border-left: 1px solid #ff6f00 !important;
+ }
+ .border-right-amber.border-right-darken-4 {
+ border-right: 1px solid #ff6f00 !important;
+ }
+ .btn-amber.btn-accent-1,
+ .btn-amber.btn-accent-1:hover {
+ border-color: #ffa000 !important;
+ }
+ .overlay-amber.overlay-darken-4 {
+ background: #ff6f00;
+ background: rgba(255, 111, 0, 0.8);
+ }
+ .bg-amber.bg-accent-1,
+ .btn-amber.btn-accent-1 {
+ background-color: #ffe57f !important;
+ }
+ .amber.accent-1 {
+ color: #ffe57f !important;
+ }
+ .btn-amber.btn-accent-1:hover {
+ background-color: #ff8f00 !important;
+ }
+ .btn-amber.btn-accent-1:active,
+ .btn-amber.btn-accent-1:focus {
+ border-color: #ff8f00 !important;
+ background-color: #ff6f00 !important;
+ }
+ .btn-outline-amber.btn-outline-accent-1 {
+ border-color: #ffe57f !important;
+ color: #ffe57f !important;
+ }
+ .btn-outline-amber.btn-outline-accent-1:hover {
+ background-color: #ffe57f !important;
+ }
+ .border-amber.border-accent-1 {
+ border: 1px solid #ffe57f !important;
+ }
+ .border-top-amber.border-top-accent-1 {
+ border-top: 1px solid #ffe57f !important;
+ }
+ .border-bottom-amber.border-bottom-accent-1 {
+ border-bottom: 1px solid #ffe57f !important;
+ }
+ .border-left-amber.border-left-accent-1 {
+ border-left: 1px solid #ffe57f !important;
+ }
+ .border-right-amber.border-right-accent-1 {
+ border-right: 1px solid #ffe57f !important;
+ }
+ .btn-amber.btn-accent-2,
+ .btn-amber.btn-accent-2:hover {
+ border-color: #ffa000 !important;
+ }
+ .overlay-amber.overlay-accent-1 {
+ background: #ffe57f;
+ background: rgba(255, 229, 127, 0.8);
+ }
+ .bg-amber.bg-accent-2,
+ .btn-amber.btn-accent-2 {
+ background-color: #ffd740 !important;
+ }
+ .amber.accent-2 {
+ color: #ffd740 !important;
+ }
+ .btn-amber.btn-accent-2:hover {
+ background-color: #ff8f00 !important;
+ }
+ .btn-amber.btn-accent-2:active,
+ .btn-amber.btn-accent-2:focus {
+ border-color: #ff8f00 !important;
+ background-color: #ff6f00 !important;
+ }
+ .btn-outline-amber.btn-outline-accent-2 {
+ border-color: #ffd740 !important;
+ color: #ffd740 !important;
+ }
+ .btn-outline-amber.btn-outline-accent-2:hover {
+ background-color: #ffd740 !important;
+ }
+ .border-amber.border-accent-2 {
+ border: 1px solid #ffd740 !important;
+ }
+ .border-top-amber.border-top-accent-2 {
+ border-top: 1px solid #ffd740 !important;
+ }
+ .border-bottom-amber.border-bottom-accent-2 {
+ border-bottom: 1px solid #ffd740 !important;
+ }
+ .border-left-amber.border-left-accent-2 {
+ border-left: 1px solid #ffd740 !important;
+ }
+ .border-right-amber.border-right-accent-2 {
+ border-right: 1px solid #ffd740 !important;
+ }
+ .btn-amber.btn-accent-3,
+ .btn-amber.btn-accent-3:hover {
+ border-color: #ffa000 !important;
+ }
+ .overlay-amber.overlay-accent-2 {
+ background: #ffd740;
+ background: rgba(255, 215, 64, 0.8);
+ }
+ .bg-amber.bg-accent-3,
+ .btn-amber.btn-accent-3 {
+ background-color: #ffc400 !important;
+ }
+ .amber.accent-3 {
+ color: #ffc400 !important;
+ }
+ .btn-amber.btn-accent-3:hover {
+ background-color: #ff8f00 !important;
+ }
+ .btn-amber.btn-accent-3:active,
+ .btn-amber.btn-accent-3:focus {
+ border-color: #ff8f00 !important;
+ background-color: #ff6f00 !important;
+ }
+ .btn-outline-amber.btn-outline-accent-3 {
+ border-color: #ffc400 !important;
+ color: #ffc400 !important;
+ }
+ .btn-outline-amber.btn-outline-accent-3:hover {
+ background-color: #ffc400 !important;
+ }
+ .border-amber.border-accent-3 {
+ border: 1px solid #ffc400 !important;
+ }
+ .border-top-amber.border-top-accent-3 {
+ border-top: 1px solid #ffc400 !important;
+ }
+ .border-bottom-amber.border-bottom-accent-3 {
+ border-bottom: 1px solid #ffc400 !important;
+ }
+ .border-left-amber.border-left-accent-3 {
+ border-left: 1px solid #ffc400 !important;
+ }
+ .border-right-amber.border-right-accent-3 {
+ border-right: 1px solid #ffc400 !important;
+ }
+ .btn-amber.btn-accent-4,
+ .btn-amber.btn-accent-4:hover {
+ border-color: #ffa000 !important;
+ }
+ .overlay-amber.overlay-accent-3 {
+ background: #ffc400;
+ background: rgba(255, 196, 0, 0.8);
+ }
+ .bg-amber.bg-accent-4,
+ .btn-amber.btn-accent-4 {
+ background-color: #ffab00 !important;
+ }
+ .amber.accent-4 {
+ color: #ffab00 !important;
+ }
+ .btn-amber.btn-accent-4:hover {
+ background-color: #ff8f00 !important;
+ }
+ .btn-amber.btn-accent-4:active,
+ .btn-amber.btn-accent-4:focus {
+ border-color: #ff8f00 !important;
+ background-color: #ff6f00 !important;
+ }
+ .btn-outline-amber.btn-outline-accent-4 {
+ border-color: #ffab00 !important;
+ color: #ffab00 !important;
+ }
+ .btn-outline-amber.btn-outline-accent-4:hover {
+ background-color: #ffab00 !important;
+ }
+ input:focus ~ .bg-amber {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #ffab00 !important;
+ }
+ .border-amber.border-accent-4 {
+ border: 1px solid #ffab00 !important;
+ }
+ .border-top-amber.border-top-accent-4 {
+ border-top: 1px solid #ffab00 !important;
+ }
+ .border-bottom-amber.border-bottom-accent-4 {
+ border-bottom: 1px solid #ffab00 !important;
+ }
+ .border-left-amber.border-left-accent-4 {
+ border-left: 1px solid #ffab00 !important;
+ }
+ .border-right-amber.border-right-accent-4 {
+ border-right: 1px solid #ffab00 !important;
+ }
+ .overlay-amber.overlay-accent-4 {
+ background: #ffab00;
+ background: rgba(255, 171, 0, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="amber"]:before {
+ background-color: #ffab00;
+ }
+ .bg-blue-grey.bg-lighten-5,
+ .btn-blue-grey.btn-lighten-5 {
+ background-color: #eceff1 !important;
+ }
+ .blue-grey.lighten-5 {
+ color: #eceff1 !important;
+ }
+ .btn-blue-grey.btn-lighten-5 {
+ border-color: #455a64 !important;
+ }
+ .btn-blue-grey.btn-lighten-5:hover {
+ border-color: #455a64 !important;
+ background-color: #37474f !important;
+ }
+ .btn-blue-grey.btn-lighten-5:active,
+ .btn-blue-grey.btn-lighten-5:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-blue-grey.btn-outline-lighten-5 {
+ border-color: #eceff1 !important;
+ color: #eceff1 !important;
+ }
+ .btn-outline-blue-grey.btn-outline-lighten-5:hover {
+ background-color: #eceff1 !important;
+ }
+ .border-blue-grey.border-lighten-5 {
+ border: 1px solid #eceff1 !important;
+ }
+ .border-top-blue-grey.border-top-lighten-5 {
+ border-top: 1px solid #eceff1 !important;
+ }
+ .border-bottom-blue-grey.border-bottom-lighten-5 {
+ border-bottom: 1px solid #eceff1 !important;
+ }
+ .border-left-blue-grey.border-left-lighten-5 {
+ border-left: 1px solid #eceff1 !important;
+ }
+ .border-right-blue-grey.border-right-lighten-5 {
+ border-right: 1px solid #eceff1 !important;
+ }
+ .overlay-blue-grey.overlay-lighten-5 {
+ background: #eceff1;
+ background: rgba(236, 239, 241, 0.8);
+ }
+ .bg-blue-grey.bg-lighten-4,
+ .btn-blue-grey.btn-lighten-4 {
+ background-color: #cfd8dc !important;
+ }
+ .blue-grey.lighten-4 {
+ color: #cfd8dc !important;
+ }
+ .btn-blue-grey.btn-lighten-4 {
+ border-color: #455a64 !important;
+ }
+ .btn-blue-grey.btn-lighten-4:hover {
+ border-color: #455a64 !important;
+ background-color: #37474f !important;
+ }
+ .btn-blue-grey.btn-lighten-4:active,
+ .btn-blue-grey.btn-lighten-4:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-blue-grey.btn-outline-lighten-4 {
+ border-color: #cfd8dc !important;
+ color: #cfd8dc !important;
+ }
+ .btn-outline-blue-grey.btn-outline-lighten-4:hover {
+ background-color: #cfd8dc !important;
+ }
+ .border-blue-grey.border-lighten-4 {
+ border: 1px solid #cfd8dc !important;
+ }
+ .border-top-blue-grey.border-top-lighten-4 {
+ border-top: 1px solid #cfd8dc !important;
+ }
+ .border-bottom-blue-grey.border-bottom-lighten-4 {
+ border-bottom: 1px solid #cfd8dc !important;
+ }
+ .border-left-blue-grey.border-left-lighten-4 {
+ border-left: 1px solid #cfd8dc !important;
+ }
+ .border-right-blue-grey.border-right-lighten-4 {
+ border-right: 1px solid #cfd8dc !important;
+ }
+ .overlay-blue-grey.overlay-lighten-4 {
+ background: #cfd8dc;
+ background: rgba(207, 216, 220, 0.8);
+ }
+ .bg-blue-grey.bg-lighten-3,
+ .btn-blue-grey.btn-lighten-3 {
+ background-color: #b0bec5 !important;
+ }
+ .blue-grey.lighten-3 {
+ color: #b0bec5 !important;
+ }
+ .btn-blue-grey.btn-lighten-3 {
+ border-color: #455a64 !important;
+ }
+ .btn-blue-grey.btn-lighten-3:hover {
+ border-color: #455a64 !important;
+ background-color: #37474f !important;
+ }
+ .btn-blue-grey.btn-lighten-3:active,
+ .btn-blue-grey.btn-lighten-3:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-blue-grey.btn-outline-lighten-3 {
+ border-color: #b0bec5 !important;
+ color: #b0bec5 !important;
+ }
+ .btn-outline-blue-grey.btn-outline-lighten-3:hover {
+ background-color: #b0bec5 !important;
+ }
+ .border-blue-grey.border-lighten-3 {
+ border: 1px solid #b0bec5 !important;
+ }
+ .border-top-blue-grey.border-top-lighten-3 {
+ border-top: 1px solid #b0bec5 !important;
+ }
+ .border-bottom-blue-grey.border-bottom-lighten-3 {
+ border-bottom: 1px solid #b0bec5 !important;
+ }
+ .border-left-blue-grey.border-left-lighten-3 {
+ border-left: 1px solid #b0bec5 !important;
+ }
+ .border-right-blue-grey.border-right-lighten-3 {
+ border-right: 1px solid #b0bec5 !important;
+ }
+ .overlay-blue-grey.overlay-lighten-3 {
+ background: #b0bec5;
+ background: rgba(176, 190, 197, 0.8);
+ }
+ .bg-blue-grey.bg-lighten-2,
+ .btn-blue-grey.btn-lighten-2 {
+ background-color: #90a4ae !important;
+ }
+ .blue-grey.lighten-2 {
+ color: #90a4ae !important;
+ }
+ .btn-blue-grey.btn-lighten-2 {
+ border-color: #455a64 !important;
+ }
+ .btn-blue-grey.btn-lighten-2:hover {
+ border-color: #455a64 !important;
+ background-color: #37474f !important;
+ }
+ .btn-blue-grey.btn-lighten-2:active,
+ .btn-blue-grey.btn-lighten-2:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-blue-grey.btn-outline-lighten-2 {
+ border-color: #90a4ae !important;
+ color: #90a4ae !important;
+ }
+ .btn-outline-blue-grey.btn-outline-lighten-2:hover {
+ background-color: #90a4ae !important;
+ }
+ .border-blue-grey.border-lighten-2 {
+ border: 1px solid #90a4ae !important;
+ }
+ .border-top-blue-grey.border-top-lighten-2 {
+ border-top: 1px solid #90a4ae !important;
+ }
+ .border-bottom-blue-grey.border-bottom-lighten-2 {
+ border-bottom: 1px solid #90a4ae !important;
+ }
+ .border-left-blue-grey.border-left-lighten-2 {
+ border-left: 1px solid #90a4ae !important;
+ }
+ .border-right-blue-grey.border-right-lighten-2 {
+ border-right: 1px solid #90a4ae !important;
+ }
+ .overlay-blue-grey.overlay-lighten-2 {
+ background: #90a4ae;
+ background: rgba(144, 164, 174, 0.8);
+ }
+ .bg-blue-grey.bg-lighten-1,
+ .btn-blue-grey.btn-lighten-1 {
+ background-color: #78909c !important;
+ }
+ .blue-grey.lighten-1 {
+ color: #78909c !important;
+ }
+ .btn-blue-grey.btn-lighten-1 {
+ border-color: #455a64 !important;
+ }
+ .btn-blue-grey.btn-lighten-1:hover {
+ border-color: #455a64 !important;
+ background-color: #37474f !important;
+ }
+ .btn-blue-grey.btn-lighten-1:active,
+ .btn-blue-grey.btn-lighten-1:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-blue-grey.btn-outline-lighten-1 {
+ border-color: #78909c !important;
+ color: #78909c !important;
+ }
+ .btn-outline-blue-grey.btn-outline-lighten-1:hover {
+ background-color: #78909c !important;
+ }
+ .border-blue-grey.border-lighten-1 {
+ border: 1px solid #78909c !important;
+ }
+ .border-top-blue-grey.border-top-lighten-1 {
+ border-top: 1px solid #78909c !important;
+ }
+ .border-bottom-blue-grey.border-bottom-lighten-1 {
+ border-bottom: 1px solid #78909c !important;
+ }
+ .border-left-blue-grey.border-left-lighten-1 {
+ border-left: 1px solid #78909c !important;
+ }
+ .border-right-blue-grey.border-right-lighten-1 {
+ border-right: 1px solid #78909c !important;
+ }
+ .overlay-blue-grey.overlay-lighten-1 {
+ background: #78909c;
+ background: rgba(120, 144, 156, 0.8);
+ }
+ .blue-grey {
+ color: #607d8b !important;
+ }
+ .bg-blue-grey {
+ background-color: #607d8b !important;
+ }
+ .bg-blue-grey .card-footer,
+ .bg-blue-grey .card-header {
+ background-color: transparent;
+ }
+ .alert-blue-grey {
+ border-color: #87a0ac !important;
+ background-color: #87a0ac !important;
+ color: #171e21 !important;
+ }
+ .alert-blue-grey .alert-link {
+ color: #060809 !important;
+ }
+ .bullet.bullet-blue-grey {
+ background-color: #607d8b;
+ }
+ .bg-light-blue-grey {
+ background-color: rgba(96, 125, 139, 0.15);
+ }
+ .bg-blue-grey.badge-glow,
+ .border-blue-grey.badge-glow {
+ box-shadow: 0 0 10px #607d8b;
+ }
+ .overlay-blue-grey {
+ background: #607d8b;
+ background: rgba(96, 125, 139, 0.8);
+ }
+ .btn-blue-grey {
+ background-color: #607d8b !important;
+ color: #fff;
+ }
+ .btn-blue-grey:hover {
+ border-color: #546e7a !important;
+ background-color: #78909c !important;
+ color: #fff !important;
+ }
+ .btn-blue-grey:active,
+ .btn-blue-grey:focus {
+ border-color: #455a64 !important;
+ background-color: #37474f !important;
+ color: #fff !important;
+ }
+ .btn-outline-blue-grey {
+ border-color: #607d8b;
+ background-color: transparent;
+ color: #607d8b;
+ }
+ .btn-outline-blue-grey:hover {
+ background-color: #607d8b;
+ color: #fff !important;
+ }
+ .widget-timeline .timeline-items.timeline-icon-blue-grey:before {
+ background-color: #607d8b;
+ }
+ input[type="checkbox"].bg-blue-grey + .custom-control-label:before,
+ input[type="radio"].bg-blue-grey + .custom-control-label:before {
+ background-color: #607d8b !important;
+ }
+ .bg-blue-grey.bg-darken-1,
+ .btn-blue-grey.btn-darken-1 {
+ background-color: #546e7a !important;
+ }
+ .border-blue-grey {
+ border: 1px solid #607d8b !important;
+ }
+ .border-top-blue-grey {
+ border-top: 1px solid #607d8b;
+ }
+ .border-bottom-blue-grey {
+ border-bottom: 1px solid #607d8b;
+ }
+ .border-left-blue-grey {
+ border-left: 1px solid #607d8b;
+ }
+ .border-right-blue-grey {
+ border-right: 1px solid #607d8b;
+ }
+ .blue-grey.darken-1 {
+ color: #546e7a !important;
+ }
+ .btn-blue-grey.btn-darken-1 {
+ border-color: #455a64 !important;
+ }
+ .btn-blue-grey.btn-darken-1:hover {
+ border-color: #455a64 !important;
+ background-color: #37474f !important;
+ }
+ .btn-blue-grey.btn-darken-1:active,
+ .btn-blue-grey.btn-darken-1:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-blue-grey.btn-outline-darken-1 {
+ border-color: #546e7a !important;
+ color: #546e7a !important;
+ }
+ .btn-outline-blue-grey.btn-outline-darken-1:hover {
+ background-color: #546e7a !important;
+ }
+ .border-blue-grey.border-darken-1 {
+ border: 1px solid #546e7a !important;
+ }
+ .border-top-blue-grey.border-top-darken-1 {
+ border-top: 1px solid #546e7a !important;
+ }
+ .border-bottom-blue-grey.border-bottom-darken-1 {
+ border-bottom: 1px solid #546e7a !important;
+ }
+ .border-left-blue-grey.border-left-darken-1 {
+ border-left: 1px solid #546e7a !important;
+ }
+ .border-right-blue-grey.border-right-darken-1 {
+ border-right: 1px solid #546e7a !important;
+ }
+ .overlay-blue-grey.overlay-darken-1 {
+ background: #546e7a;
+ background: rgba(84, 110, 122, 0.8);
+ }
+ .bg-blue-grey.bg-darken-2,
+ .btn-blue-grey.btn-darken-2 {
+ background-color: #455a64 !important;
+ }
+ .blue-grey.darken-2 {
+ color: #455a64 !important;
+ }
+ .btn-blue-grey.btn-darken-2 {
+ border-color: #455a64 !important;
+ }
+ .btn-blue-grey.btn-darken-2:hover {
+ border-color: #455a64 !important;
+ background-color: #37474f !important;
+ }
+ .btn-blue-grey.btn-darken-2:active,
+ .btn-blue-grey.btn-darken-2:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-blue-grey.btn-outline-darken-2 {
+ border-color: #455a64 !important;
+ color: #455a64 !important;
+ }
+ .btn-outline-blue-grey.btn-outline-darken-2:hover {
+ background-color: #455a64 !important;
+ }
+ .border-blue-grey.border-darken-2 {
+ border: 1px solid #455a64 !important;
+ }
+ .border-top-blue-grey.border-top-darken-2 {
+ border-top: 1px solid #455a64 !important;
+ }
+ .border-bottom-blue-grey.border-bottom-darken-2 {
+ border-bottom: 1px solid #455a64 !important;
+ }
+ .border-left-blue-grey.border-left-darken-2 {
+ border-left: 1px solid #455a64 !important;
+ }
+ .border-right-blue-grey.border-right-darken-2 {
+ border-right: 1px solid #455a64 !important;
+ }
+ .overlay-blue-grey.overlay-darken-2 {
+ background: #455a64;
+ background: rgba(69, 90, 100, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="blue-grey"]:before {
+ background-color: #455a64;
+ }
+ .blue-grey.darken-3 {
+ color: #37474f !important;
+ }
+ .bg-blue-grey.bg-darken-3 {
+ background-color: #37474f !important;
+ }
+ .btn-blue-grey.btn-darken-3,
+ .btn-blue-grey.btn-darken-3:hover {
+ border-color: #455a64 !important;
+ background-color: #37474f !important;
+ }
+ .btn-blue-grey.btn-darken-3:active,
+ .btn-blue-grey.btn-darken-3:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-blue-grey.btn-outline-darken-3 {
+ border-color: #37474f !important;
+ color: #37474f !important;
+ }
+ .btn-outline-blue-grey.btn-outline-darken-3:hover {
+ background-color: #37474f !important;
+ }
+ .border-blue-grey.border-darken-3 {
+ border: 1px solid #37474f !important;
+ }
+ .border-top-blue-grey.border-top-darken-3 {
+ border-top: 1px solid #37474f !important;
+ }
+ .border-bottom-blue-grey.border-bottom-darken-3 {
+ border-bottom: 1px solid #37474f !important;
+ }
+ .border-left-blue-grey.border-left-darken-3 {
+ border-left: 1px solid #37474f !important;
+ }
+ .border-right-blue-grey.border-right-darken-3 {
+ border-right: 1px solid #37474f !important;
+ }
+ .overlay-blue-grey.overlay-darken-3 {
+ background: #37474f;
+ background: rgba(55, 71, 79, 0.8);
+ }
+ .bg-blue-grey.bg-darken-4,
+ .btn-blue-grey.btn-darken-4 {
+ background-color: #263238 !important;
+ }
+ .blue-grey.darken-4 {
+ color: #263238 !important;
+ }
+ .btn-blue-grey.btn-darken-4 {
+ border-color: #455a64 !important;
+ }
+ .btn-blue-grey.btn-darken-4:hover {
+ border-color: #455a64 !important;
+ background-color: #37474f !important;
+ }
+ .btn-blue-grey.btn-darken-4:active,
+ .btn-blue-grey.btn-darken-4:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-blue-grey.btn-outline-darken-4 {
+ border-color: #263238 !important;
+ color: #263238 !important;
+ }
+ .btn-outline-blue-grey.btn-outline-darken-4:hover {
+ background-color: #263238 !important;
+ }
+ input:focus ~ .bg-blue-grey {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #263238 !important;
+ }
+ .border-blue-grey.border-darken-4 {
+ border: 1px solid #263238 !important;
+ }
+ .border-top-blue-grey.border-top-darken-4 {
+ border-top: 1px solid #263238 !important;
+ }
+ .border-bottom-blue-grey.border-bottom-darken-4 {
+ border-bottom: 1px solid #263238 !important;
+ }
+ .border-left-blue-grey.border-left-darken-4 {
+ border-left: 1px solid #263238 !important;
+ }
+ .border-right-blue-grey.border-right-darken-4 {
+ border-right: 1px solid #263238 !important;
+ }
+ .overlay-blue-grey.overlay-darken-4 {
+ background: #263238;
+ background: rgba(38, 50, 56, 0.8);
+ }
+ .kanban-container .kanban-board .kanban-item[data-border="blue-grey"]:before {
+ background-color: #263238;
+ }
+ .bg-grey-blue.bg-lighten-5,
+ .btn-grey-blue.btn-lighten-5 {
+ background-color: #eceff1 !important;
+ }
+ .grey-blue.lighten-5 {
+ color: #eceff1 !important;
+ }
+ .btn-grey-blue.btn-lighten-5 {
+ border-color: #404e67 !important;
+ }
+ .btn-grey-blue.btn-lighten-5:hover {
+ border-color: #404e67 !important;
+ background-color: #37474f !important;
+ }
+ .btn-grey-blue.btn-lighten-5:active,
+ .btn-grey-blue.btn-lighten-5:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-grey-blue.btn-outline-lighten-5 {
+ border-color: #eceff1 !important;
+ color: #eceff1 !important;
+ }
+ .btn-outline-grey-blue.btn-outline-lighten-5:hover {
+ background-color: #eceff1 !important;
+ }
+ .border-grey-blue.border-lighten-5 {
+ border: 1px solid #eceff1 !important;
+ }
+ .border-top-grey-blue.border-top-lighten-5 {
+ border-top: 1px solid #eceff1 !important;
+ }
+ .border-bottom-grey-blue.border-bottom-lighten-5 {
+ border-bottom: 1px solid #eceff1 !important;
+ }
+ .border-left-grey-blue.border-left-lighten-5 {
+ border-left: 1px solid #eceff1 !important;
+ }
+ .border-right-grey-blue.border-right-lighten-5 {
+ border-right: 1px solid #eceff1 !important;
+ }
+ .overlay-grey-blue.overlay-lighten-5 {
+ background: #eceff1;
+ background: rgba(236, 239, 241, 0.8);
+ }
+ .bg-grey-blue.bg-lighten-4,
+ .btn-grey-blue.btn-lighten-4 {
+ background-color: #cfd8dc !important;
+ }
+ .grey-blue.lighten-4 {
+ color: #cfd8dc !important;
+ }
+ .btn-grey-blue.btn-lighten-4 {
+ border-color: #404e67 !important;
+ }
+ .btn-grey-blue.btn-lighten-4:hover {
+ border-color: #404e67 !important;
+ background-color: #37474f !important;
+ }
+ .btn-grey-blue.btn-lighten-4:active,
+ .btn-grey-blue.btn-lighten-4:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-grey-blue.btn-outline-lighten-4 {
+ border-color: #cfd8dc !important;
+ color: #cfd8dc !important;
+ }
+ .btn-outline-grey-blue.btn-outline-lighten-4:hover {
+ background-color: #cfd8dc !important;
+ }
+ .border-grey-blue.border-lighten-4 {
+ border: 1px solid #cfd8dc !important;
+ }
+ .border-top-grey-blue.border-top-lighten-4 {
+ border-top: 1px solid #cfd8dc !important;
+ }
+ .border-bottom-grey-blue.border-bottom-lighten-4 {
+ border-bottom: 1px solid #cfd8dc !important;
+ }
+ .border-left-grey-blue.border-left-lighten-4 {
+ border-left: 1px solid #cfd8dc !important;
+ }
+ .border-right-grey-blue.border-right-lighten-4 {
+ border-right: 1px solid #cfd8dc !important;
+ }
+ .overlay-grey-blue.overlay-lighten-4 {
+ background: #cfd8dc;
+ background: rgba(207, 216, 220, 0.8);
+ }
+ .bg-grey-blue.bg-lighten-3,
+ .btn-grey-blue.btn-lighten-3 {
+ background-color: #b0bec5 !important;
+ }
+ .grey-blue.lighten-3 {
+ color: #b0bec5 !important;
+ }
+ .btn-grey-blue.btn-lighten-3 {
+ border-color: #404e67 !important;
+ }
+ .btn-grey-blue.btn-lighten-3:hover {
+ border-color: #404e67 !important;
+ background-color: #37474f !important;
+ }
+ .btn-grey-blue.btn-lighten-3:active,
+ .btn-grey-blue.btn-lighten-3:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-grey-blue.btn-outline-lighten-3 {
+ border-color: #b0bec5 !important;
+ color: #b0bec5 !important;
+ }
+ .btn-outline-grey-blue.btn-outline-lighten-3:hover {
+ background-color: #b0bec5 !important;
+ }
+ .border-grey-blue.border-lighten-3 {
+ border: 1px solid #b0bec5 !important;
+ }
+ .border-top-grey-blue.border-top-lighten-3 {
+ border-top: 1px solid #b0bec5 !important;
+ }
+ .border-bottom-grey-blue.border-bottom-lighten-3 {
+ border-bottom: 1px solid #b0bec5 !important;
+ }
+ .border-left-grey-blue.border-left-lighten-3 {
+ border-left: 1px solid #b0bec5 !important;
+ }
+ .border-right-grey-blue.border-right-lighten-3 {
+ border-right: 1px solid #b0bec5 !important;
+ }
+ .overlay-grey-blue.overlay-lighten-3 {
+ background: #b0bec5;
+ background: rgba(176, 190, 197, 0.8);
+ }
+ .bg-grey-blue.bg-lighten-2,
+ .btn-grey-blue.btn-lighten-2 {
+ background-color: #6f85ad !important;
+ }
+ .grey-blue.lighten-2 {
+ color: #6f85ad !important;
+ }
+ .btn-grey-blue.btn-lighten-2 {
+ border-color: #404e67 !important;
+ }
+ .btn-grey-blue.btn-lighten-2:hover {
+ border-color: #404e67 !important;
+ background-color: #37474f !important;
+ }
+ .btn-grey-blue.btn-lighten-2:active,
+ .btn-grey-blue.btn-lighten-2:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-grey-blue.btn-outline-lighten-2 {
+ border-color: #6f85ad !important;
+ color: #6f85ad !important;
+ }
+ .btn-outline-grey-blue.btn-outline-lighten-2:hover {
+ background-color: #6f85ad !important;
+ }
+ .border-grey-blue.border-lighten-2 {
+ border: 1px solid #6f85ad !important;
+ }
+ .border-top-grey-blue.border-top-lighten-2 {
+ border-top: 1px solid #6f85ad !important;
+ }
+ .border-bottom-grey-blue.border-bottom-lighten-2 {
+ border-bottom: 1px solid #6f85ad !important;
+ }
+ .border-left-grey-blue.border-left-lighten-2 {
+ border-left: 1px solid #6f85ad !important;
+ }
+ .border-right-grey-blue.border-right-lighten-2 {
+ border-right: 1px solid #6f85ad !important;
+ }
+ .overlay-grey-blue.overlay-lighten-2 {
+ background: #6f85ad;
+ background: rgba(111, 133, 173, 0.8);
+ }
+ .bg-grey-blue.bg-lighten-1,
+ .btn-grey-blue.btn-lighten-1 {
+ background-color: #78909c !important;
+ }
+ .grey-blue.lighten-1 {
+ color: #78909c !important;
+ }
+ .btn-grey-blue.btn-lighten-1 {
+ border-color: #404e67 !important;
+ }
+ .btn-grey-blue.btn-lighten-1:hover {
+ border-color: #404e67 !important;
+ background-color: #37474f !important;
+ }
+ .btn-grey-blue.btn-lighten-1:active,
+ .btn-grey-blue.btn-lighten-1:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-grey-blue.btn-outline-lighten-1 {
+ border-color: #78909c !important;
+ color: #78909c !important;
+ }
+ .btn-outline-grey-blue.btn-outline-lighten-1:hover {
+ background-color: #78909c !important;
+ }
+ .border-grey-blue.border-lighten-1 {
+ border: 1px solid #78909c !important;
+ }
+ .border-top-grey-blue.border-top-lighten-1 {
+ border-top: 1px solid #78909c !important;
+ }
+ .border-bottom-grey-blue.border-bottom-lighten-1 {
+ border-bottom: 1px solid #78909c !important;
+ }
+ .border-left-grey-blue.border-left-lighten-1 {
+ border-left: 1px solid #78909c !important;
+ }
+ .border-right-grey-blue.border-right-lighten-1 {
+ border-right: 1px solid #78909c !important;
+ }
+ .overlay-grey-blue.overlay-lighten-1 {
+ background: #78909c;
+ background: rgba(120, 144, 156, 0.8);
+ }
+ .grey-blue {
+ color: #1b2942 !important;
+ }
+ .alert-grey-blue,
+ .alert-grey-blue .alert-link {
+ color: #000 !important;
+ }
+ .bg-grey-blue {
+ background-color: #1b2942 !important;
+ }
+ .bg-grey-blue .card-footer,
+ .bg-grey-blue .card-header {
+ background-color: transparent;
+ }
+ .alert-grey-blue {
+ border-color: #304875 !important;
+ background-color: #304875 !important;
+ }
+ .bullet.bullet-grey-blue {
+ background-color: #1b2942;
+ }
+ .bg-light-grey-blue {
+ background-color: rgba(27, 41, 66, 0.15);
+ }
+ .bg-grey-blue.badge-glow,
+ .border-grey-blue.badge-glow {
+ box-shadow: 0 0 10px #1b2942;
+ }
+ .overlay-grey-blue {
+ background: #1b2942;
+ background: rgba(27, 41, 66, 0.8);
+ }
+ .btn-grey-blue {
+ background-color: #1b2942 !important;
+ color: #fff;
+ }
+ .btn-grey-blue:hover {
+ border-color: #546e7a !important;
+ background-color: #78909c !important;
+ color: #fff !important;
+ }
+ .btn-grey-blue:active,
+ .btn-grey-blue:focus {
+ border-color: #404e67 !important;
+ background-color: #37474f !important;
+ color: #fff !important;
+ }
+ .btn-outline-grey-blue {
+ border-color: #1b2942;
+ background-color: transparent;
+ color: #1b2942;
+ }
+ .btn-outline-grey-blue:hover {
+ background-color: #1b2942;
+ color: #fff !important;
+ }
+ .widget-timeline .timeline-items.timeline-icon-grey-blue:before {
+ background-color: #1b2942;
+ }
+ input[type="checkbox"].bg-grey-blue + .custom-control-label:before,
+ input[type="radio"].bg-grey-blue + .custom-control-label:before {
+ background-color: #1b2942 !important;
+ }
+ .bg-grey-blue.bg-darken-1,
+ .btn-grey-blue.btn-darken-1 {
+ background-color: #546e7a !important;
+ }
+ .border-grey-blue {
+ border: 1px solid #1b2942 !important;
+ }
+ .border-top-grey-blue {
+ border-top: 1px solid #1b2942;
+ }
+ .border-bottom-grey-blue {
+ border-bottom: 1px solid #1b2942;
+ }
+ .border-left-grey-blue {
+ border-left: 1px solid #1b2942;
+ }
+ .border-right-grey-blue {
+ border-right: 1px solid #1b2942;
+ }
+ .grey-blue.darken-1 {
+ color: #546e7a !important;
+ }
+ .btn-grey-blue.btn-darken-1 {
+ border-color: #404e67 !important;
+ }
+ .btn-grey-blue.btn-darken-1:hover {
+ border-color: #404e67 !important;
+ background-color: #37474f !important;
+ }
+ .btn-grey-blue.btn-darken-1:active,
+ .btn-grey-blue.btn-darken-1:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-grey-blue.btn-outline-darken-1 {
+ border-color: #546e7a !important;
+ color: #546e7a !important;
+ }
+ .btn-outline-grey-blue.btn-outline-darken-1:hover {
+ background-color: #546e7a !important;
+ }
+ .border-grey-blue.border-darken-1 {
+ border: 1px solid #546e7a !important;
+ }
+ .border-top-grey-blue.border-top-darken-1 {
+ border-top: 1px solid #546e7a !important;
+ }
+ .border-bottom-grey-blue.border-bottom-darken-1 {
+ border-bottom: 1px solid #546e7a !important;
+ }
+ .border-left-grey-blue.border-left-darken-1 {
+ border-left: 1px solid #546e7a !important;
+ }
+ .border-right-grey-blue.border-right-darken-1 {
+ border-right: 1px solid #546e7a !important;
+ }
+ .overlay-grey-blue.overlay-darken-1 {
+ background: #546e7a;
+ background: rgba(84, 110, 122, 0.8);
+ }
+ .bg-grey-blue.bg-darken-2,
+ .btn-grey-blue.btn-darken-2 {
+ background-color: #404e67 !important;
+ }
+ .grey-blue.darken-2 {
+ color: #404e67 !important;
+ }
+ .btn-grey-blue.btn-darken-2 {
+ border-color: #404e67 !important;
+ }
+ .btn-grey-blue.btn-darken-2:hover {
+ border-color: #404e67 !important;
+ background-color: #37474f !important;
+ }
+ .btn-grey-blue.btn-darken-2:active,
+ .btn-grey-blue.btn-darken-2:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-grey-blue.btn-outline-darken-2 {
+ border-color: #404e67 !important;
+ color: #404e67 !important;
+ }
+ .btn-outline-grey-blue.btn-outline-darken-2:hover {
+ background-color: #404e67 !important;
+ }
+ .border-grey-blue.border-darken-2 {
+ border: 1px solid #404e67 !important;
+ }
+ .border-top-grey-blue.border-top-darken-2 {
+ border-top: 1px solid #404e67 !important;
+ }
+ .border-bottom-grey-blue.border-bottom-darken-2 {
+ border-bottom: 1px solid #404e67 !important;
+ }
+ .border-left-grey-blue.border-left-darken-2 {
+ border-left: 1px solid #404e67 !important;
+ }
+ .border-right-grey-blue.border-right-darken-2 {
+ border-right: 1px solid #404e67 !important;
+ }
+ .overlay-grey-blue.overlay-darken-2 {
+ background: #404e67;
+ background: rgba(64, 78, 103, 0.8);
+ }
+ .grey-blue.darken-3 {
+ color: #37474f !important;
+ }
+ .bg-grey-blue.bg-darken-3 {
+ background-color: #37474f !important;
+ }
+ .btn-grey-blue.btn-darken-3,
+ .btn-grey-blue.btn-darken-3:hover {
+ border-color: #404e67 !important;
+ background-color: #37474f !important;
+ }
+ .btn-grey-blue.btn-darken-3:active,
+ .btn-grey-blue.btn-darken-3:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-grey-blue.btn-outline-darken-3 {
+ border-color: #37474f !important;
+ color: #37474f !important;
+ }
+ .btn-outline-grey-blue.btn-outline-darken-3:hover {
+ background-color: #37474f !important;
+ }
+ .border-grey-blue.border-darken-3 {
+ border: 1px solid #37474f !important;
+ }
+ .border-top-grey-blue.border-top-darken-3 {
+ border-top: 1px solid #37474f !important;
+ }
+ .border-bottom-grey-blue.border-bottom-darken-3 {
+ border-bottom: 1px solid #37474f !important;
+ }
+ .border-left-grey-blue.border-left-darken-3 {
+ border-left: 1px solid #37474f !important;
+ }
+ .border-right-grey-blue.border-right-darken-3 {
+ border-right: 1px solid #37474f !important;
+ }
+ .overlay-grey-blue.overlay-darken-3 {
+ background: #37474f;
+ background: rgba(55, 71, 79, 0.8);
+ }
+ .bg-grey-blue.bg-darken-4,
+ .btn-grey-blue.btn-darken-4 {
+ background-color: #263238 !important;
+ }
+ .grey-blue.darken-4 {
+ color: #263238 !important;
+ }
+ .btn-grey-blue.btn-darken-4 {
+ border-color: #404e67 !important;
+ }
+ .btn-grey-blue.btn-darken-4:hover {
+ border-color: #404e67 !important;
+ background-color: #37474f !important;
+ }
+ .btn-grey-blue.btn-darken-4:active,
+ .btn-grey-blue.btn-darken-4:focus {
+ border-color: #37474f !important;
+ background-color: #263238 !important;
+ }
+ .btn-outline-grey-blue.btn-outline-darken-4 {
+ border-color: #263238 !important;
+ color: #263238 !important;
+ }
+ .btn-outline-grey-blue.btn-outline-darken-4:hover {
+ background-color: #263238 !important;
+ }
+ input:focus ~ .bg-grey-blue {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #263238 !important;
+ }
+ .border-grey-blue.border-darken-4 {
+ border: 1px solid #263238 !important;
+ }
+ .border-top-grey-blue.border-top-darken-4 {
+ border-top: 1px solid #263238 !important;
+ }
+ .border-bottom-grey-blue.border-bottom-darken-4 {
+ border-bottom: 1px solid #263238 !important;
+ }
+ .border-left-grey-blue.border-left-darken-4 {
+ border-left: 1px solid #263238 !important;
+ }
+ .border-right-grey-blue.border-right-darken-4 {
+ border-right: 1px solid #263238 !important;
+ }
+ .overlay-grey-blue.overlay-darken-4 {
+ background: #263238;
+ background: rgba(38, 50, 56, 0.8);
+ }
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="grey-blue"]:before {
+ background-color: #263238;
+ }
+ .bg-shades.bg-black,
+ .btn-outline-shades.btn-outline-black:hover,
+ .btn-shades.btn-black {
+ background-color: #000 !important;
+ }
+ .shades.black {
+ color: #000 !important;
+ }
+ .btn-outline-shades.btn-outline-black {
+ border-color: #000 !important;
+ color: #000 !important;
+ }
+ .border-shades.border-black {
+ border: 1px solid #000 !important;
+ }
+ .border-top-shades.border-top-black {
+ border-top: 1px solid #000 !important;
+ }
+ .border-bottom-shades.border-bottom-black {
+ border-bottom: 1px solid #000 !important;
+ }
+ .border-left-shades.border-left-black {
+ border-left: 1px solid #000 !important;
+ }
+ .border-right-shades.border-right-black {
+ border-right: 1px solid #000 !important;
+ }
+ .overlay-shades.overlay-black {
+ background: #000;
+ background: rgba(0, 0, 0, 0.8);
+ }
+ .bg-shades.bg-white,
+ .btn-outline-shades.btn-outline-white:hover,
+ .btn-shades.btn-white {
+ background-color: #fff !important;
+ }
+ .shades.white {
+ color: #fff !important;
+ }
+ .btn-outline-shades.btn-outline-white {
+ border-color: #fff !important;
+ color: #fff !important;
+ }
+ .border-shades.border-white {
+ border: 1px solid #fff !important;
+ }
+ .border-top-shades.border-top-white {
+ border-top: 1px solid #fff !important;
+ }
+ .border-bottom-shades.border-bottom-white {
+ border-bottom: 1px solid #fff !important;
+ }
+ .border-left-shades.border-left-white {
+ border-left: 1px solid #fff !important;
+ }
+ .border-right-shades.border-right-white {
+ border-right: 1px solid #fff !important;
+ }
+ .overlay-shades.overlay-white {
+ background: #fff;
+ background: rgba(255, 255, 255, 0.8);
+ }
+ .bg-shades.bg-transparent,
+ .btn-outline-shades.btn-outline-transparent:hover,
+ .btn-shades.btn-transparent {
+ background-color: transparent !important;
+ }
+ .shades.transparent {
+ color: transparent !important;
+ }
+ .btn-outline-shades.btn-outline-transparent {
+ border-color: transparent !important;
+ color: transparent !important;
+ }
+ input:focus ~ .bg-shades {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem transparent !important;
+ }
+ .border-shades.border-transparent {
+ border: 1px solid transparent !important;
+ }
+ .border-top-shades.border-top-transparent {
+ border-top: 1px solid transparent !important;
+ }
+ .border-bottom-shades.border-bottom-transparent {
+ border-bottom: 1px solid transparent !important;
+ }
+ .border-left-shades.border-left-transparent {
+ border-left: 1px solid transparent !important;
+ }
+ .border-right-shades.border-right-transparent {
+ border-right: 1px solid transparent !important;
+ }
+ .overlay-shades.overlay-transparent {
+ background: 0 0;
+ background: rgba(0, 0, 0, 0.8);
+ }
+ .bg-transparent,
+ .edit-kanban-item select option.bg-color_name,
+ .kanban-container .kanban-board .kanban-item[data-border="shades"]:before {
+ background-color: transparent;
+ }
+ .border-top-black {
+ border-top: 1px solid #000;
+ }
+ .border-bottom-black {
+ border-bottom: 1px solid #000;
+ }
+ .border-left-black {
+ border-left: 1px solid #000;
+ }
+ .border-right-black {
+ border-right: 1px solid #000;
+ }
+ .border-top-white {
+ border-top: 1px solid #fff;
+ }
+ .border-bottom-white {
+ border-bottom: 1px solid #fff;
+ }
+ .border-left-white {
+ border-left: 1px solid #fff;
+ }
+ .border-right-white {
+ border-right: 1px solid #fff;
+ }
+ .transparent {
+ color: transparent;
+ }
+ input:focus ~ .bg-transparent {
+ box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem transparent;
+ }
+ .border-transparent {
+ border: 1px solid transparent;
+ }
+ .border-top-transparent {
+ border-top: 1px solid transparent;
+ }
+ .border-bottom-transparent {
+ border-bottom: 1px solid transparent;
+ }
+ .border-left-transparent {
+ border-left: 1px solid transparent;
+ }
+ .border-right-transparent {
+ border-right: 1px solid transparent;
+ }
diff --git a/frontend-app/harness-webapp/tsconfig.app.json b/frontend-app/harness-webapp/tsconfig.app.json
new file mode 100644
index 0000000..f57c85a
--- /dev/null
+++ b/frontend-app/harness-webapp/tsconfig.app.json
@@ -0,0 +1,20 @@
+/* To learn more about this file see: https://angular.io/config/tsconfig. */
+{
+ "extends": "./tsconfig.json",
+ "compilerOptions": {
+ "outDir": "./out-tsc/app",
+ "typeRoots": ["src/types", "node_modules/@types"],
+ "types": [
+ "node"
+ ]
+ },
+ "files": [
+ "src/main.ts",
+ "src/main.server.ts",
+ "src/app/_types/global.d.ts",
+ "server.ts"
+ ],
+ "include": [
+ "src/**/*.d.ts"
+ ]
+}
diff --git a/frontend-app/harness-webapp/tsconfig.json b/frontend-app/harness-webapp/tsconfig.json
new file mode 100644
index 0000000..115e17e
--- /dev/null
+++ b/frontend-app/harness-webapp/tsconfig.json
@@ -0,0 +1,34 @@
+/* To learn more about this file see: https://angular.io/config/tsconfig. */
+{
+ "compileOnSave": false,
+ "compilerOptions": {
+ "outDir": "./dist/out-tsc",
+ "forceConsistentCasingInFileNames": true,
+ "strict": true,
+ "noImplicitOverride": true,
+ "noPropertyAccessFromIndexSignature": true,
+ "noImplicitReturns": true,
+ "noFallthroughCasesInSwitch": true,
+ "skipLibCheck": true,
+ "esModuleInterop": true,
+ "sourceMap": true,
+ "declaration": false,
+ "experimentalDecorators": true,
+ "moduleResolution": "node",
+ "importHelpers": true,
+ "target": "ES2022",
+ "module": "ES2022",
+ "useDefineForClassFields": false,
+ "allowSyntheticDefaultImports": true,
+ "lib": [
+ "ES2022",
+ "dom"
+ ]
+ },
+ "angularCompilerOptions": {
+ "enableI18nLegacyMessageIdFormat": false,
+ "strictInjectionParameters": true,
+ "strictInputAccessModifiers": true,
+ "strictTemplates": true
+ }
+}
diff --git a/frontend-app/harness-webapp/tsconfig.spec.json b/frontend-app/harness-webapp/tsconfig.spec.json
new file mode 100644
index 0000000..be7e9da
--- /dev/null
+++ b/frontend-app/harness-webapp/tsconfig.spec.json
@@ -0,0 +1,14 @@
+/* To learn more about this file see: https://angular.io/config/tsconfig. */
+{
+ "extends": "./tsconfig.json",
+ "compilerOptions": {
+ "outDir": "./out-tsc/spec",
+ "types": [
+ "jasmine"
+ ]
+ },
+ "include": [
+ "src/**/*.spec.ts",
+ "src/**/*.d.ts"
+ ]
+}
diff --git a/harness-deploy/backend/manifests/Deployment.yaml b/harness-deploy/backend/manifests/Deployment.yaml
new file mode 100644
index 0000000..b03c90d
--- /dev/null
+++ b/harness-deploy/backend/manifests/Deployment.yaml
@@ -0,0 +1,70 @@
+{{- if .Values.env.config}}
+apiVersion: v1
+kind: ConfigMap
+metadata:
+ name: {{lower .Values.name}}
+data:
+{{.Values.env.config | toYaml | indent 2}}
+---
+{{- end}}
+
+{{- if .Values.env.secrets}}
+apiVersion: v1
+kind: Secret
+metadata:
+ name: {{lower .Values.name}}
+stringData:
+{{.Values.env.secrets | toYaml | indent 2}}
+---
+{{- end}}
+
+{{- if .Values.dockercfg}}
+apiVersion: v1
+kind: Secret
+metadata:
+ name: {{lower .Values.name}}-dockercfg
+ annotations:
+ harness.io/skip-versioning: "true"
+data:
+ .dockercfg: {{.Values.dockercfg}}
+type: kubernetes.io/dockercfg
+---
+{{- end}}
+---
+apiVersion: apps/v1
+kind: Deployment
+metadata:
+ name: {{lower .Values.name}}-deployment
+ labels:
+ app: {{lower .Values.name}}
+spec:
+ replicas: {{int .Values.replicas}}
+ selector:
+ matchLabels:
+ app: {{lower .Values.name}}
+ template:
+ metadata:
+ labels:
+ app: {{lower .Values.name}}
+ spec:
+ {{- if .Values.dockercfg}}
+ imagePullSecrets:
+ - name: {{lower .Values.name}}-dockercfg
+ {{- end}}
+ containers:
+ - name: {{lower .Values.name}}
+ image: {{.Values.image}}
+ securityContext:
+ allowPrivilegeEscalation: false
+ runAsUser: 0
+ {{- if or .Values.env.config .Values.env.secrets}}
+ envFrom:
+ {{- if .Values.env.config}}
+ - configMapRef:
+ name: {{lower .Values.name}}
+ {{- end}}
+ {{- if .Values.env.secrets}}
+ - secretRef:
+ name: {{lower .Values.name}}
+ {{- end}}
+ {{- end}}
diff --git a/harness-deploy/backend/manifests/Service.yaml b/harness-deploy/backend/manifests/Service.yaml
new file mode 100644
index 0000000..826f653
--- /dev/null
+++ b/harness-deploy/backend/manifests/Service.yaml
@@ -0,0 +1,12 @@
+apiVersion: v1
+kind: Service
+metadata:
+ name: web-{{ lower .Values.name}}-svc
+spec:
+ type: {{ .Values.serviceType }}
+ ports:
+ - port: {{ .Values.servicePort }}
+ targetPort: {{ .Values.serviceTargetPort }}
+ protocol: TCP
+ selector:
+ app: {{lower .Values.name}}
diff --git a/harness-deploy/backend/values.yaml b/harness-deploy/backend/values.yaml
new file mode 100644
index 0000000..14cba91
--- /dev/null
+++ b/harness-deploy/backend/values.yaml
@@ -0,0 +1,15 @@
+name: <+service.name>
+replicas: 5
+image: <+artifact.image>
+dockercfg: <+artifact.imagePullSecret>
+namespace: <+infra.namespace>
+serviceType: LoadBalancer
+servicePort: 8081
+serviceTargetPort: 8000
+env:
+ config:
+ APPLICATION_VERSION: v1.<+pipeline.sequenceId>
+ SERVICE_NAME: <+service.name>
+ LAST_EXECUTION_ID: <+pipeline.executionId>
+ HARNESS_BUILD: <+pipeline.sequenceId>
+ ARTIFACT_VERSION: <+artifact.image>
diff --git a/harness-deploy/frontend/manifests/Deployment.yaml b/harness-deploy/frontend/manifests/Deployment.yaml
new file mode 100644
index 0000000..79e8f11
--- /dev/null
+++ b/harness-deploy/frontend/manifests/Deployment.yaml
@@ -0,0 +1,68 @@
+{{- if .Values.env.config}}
+apiVersion: v1
+kind: ConfigMap
+metadata:
+ name: {{lower .Values.name}}
+data:
+{{.Values.env.config | toYaml | indent 2}}
+---
+{{- end}}
+
+{{- if .Values.env.secrets}}
+apiVersion: v1
+kind: Secret
+metadata:
+ name: {{lower .Values.name}}
+stringData:
+{{.Values.env.secrets | toYaml | indent 2}}
+---
+{{- end}}
+
+{{- if .Values.dockercfg}}
+apiVersion: v1
+kind: Secret
+metadata:
+ name: {{lower .Values.name}}-dockercfg
+ annotations:
+ harness.io/skip-versioning: "true"
+data:
+ .dockercfg: {{.Values.dockercfg}}
+type: kubernetes.io/dockercfg
+---
+{{- end}}
+---
+apiVersion: apps/v1
+kind: Deployment
+metadata:
+ name: {{lower .Values.name}}-deployment
+ labels:
+ app: {{lower .Values.name}}
+spec:
+ replicas: {{int .Values.replicas}}
+ selector:
+ matchLabels:
+ app: {{ lower .Values.name }}
+ template:
+ metadata:
+ labels:
+ app: {{lower .Values.name}}
+ spec:
+ {{- if .Values.dockercfg}}
+ imagePullSecrets:
+ - name: {{lower .Values.name}}-dockercfg
+ {{- end}}
+ containers:
+ - name: {{ lower .Values.name }}
+ imagePullPolicy: Always
+ image: {{.Values.image}}
+ {{- if or .Values.env.config .Values.env.secrets}}
+ envFrom:
+ {{- if .Values.env.config}}
+ - configMapRef:
+ name: {{lower .Values.name}}
+ {{- end}}
+ {{- if .Values.env.secrets}}
+ - secretRef:
+ name: {{lower .Values.name}}
+ {{- end}}
+ {{- end}}
diff --git a/harness-deploy/frontend/manifests/Service.yaml b/harness-deploy/frontend/manifests/Service.yaml
new file mode 100644
index 0000000..826f653
--- /dev/null
+++ b/harness-deploy/frontend/manifests/Service.yaml
@@ -0,0 +1,12 @@
+apiVersion: v1
+kind: Service
+metadata:
+ name: web-{{ lower .Values.name}}-svc
+spec:
+ type: {{ .Values.serviceType }}
+ ports:
+ - port: {{ .Values.servicePort }}
+ targetPort: {{ .Values.serviceTargetPort }}
+ protocol: TCP
+ selector:
+ app: {{lower .Values.name}}
diff --git a/harness-deploy/frontend/values.yaml b/harness-deploy/frontend/values.yaml
new file mode 100644
index 0000000..092a06e
--- /dev/null
+++ b/harness-deploy/frontend/values.yaml
@@ -0,0 +1,9 @@
+name: <+service.name>
+replicas: 1
+image: <+artifact.image>
+dockercfg: <+artifact.imagePullSecret>
+namespace: <+infra.namespace>
+#createNamespace: "true"
+serviceType: LoadBalancer
+servicePort: 8080
+serviceTargetPort: 4000
diff --git a/kit/main.tf b/kit/main.tf
new file mode 100644
index 0000000..7ec41a3
--- /dev/null
+++ b/kit/main.tf
@@ -0,0 +1,422 @@
+terraform {
+ required_providers {
+ harness = {
+ source = "harness/harness"
+ version = "~> 0.30"
+ }
+ }
+}
+
+variable "account_id" {}
+variable "pat" {}
+variable "docker_username" {}
+variable "docker_password" {}
+
+variable "org_id" {
+ default = "default"
+}
+
+provider "harness" {
+ endpoint = "https://app.harness.io/gateway"
+ account_id = var.account_id
+ platform_api_key = var.pat
+}
+
+resource "harness_platform_project" "base_demo" {
+ identifier = "Base_Demo"
+ name = "Base Demo"
+ org_id = var.org_id
+ color = "#0063F7"
+}
+
+resource "harness_platform_repo" "partner_base_demo" {
+ identifier = "partner_base_demo"
+ org_id = var.org_id
+ project_id = harness_platform_project.base_demo.identifier
+ default_branch = "main"
+ description = "Base demo repository for Harness partner workshops"
+ source {
+ repo = "harness-community/partner-demo-kit"
+ type = "github"
+ }
+
+ depends_on = [
+ harness_platform_project.base_demo
+ ]
+
+ lifecycle {
+ ignore_changes = [
+ source,
+ description
+ ]
+ }
+}
+
+resource "harness_platform_connector_kubernetes" "instruqt" {
+ org_id = var.org_id
+ project_id = harness_platform_project.base_demo.identifier
+ identifier = "instruqt_k8"
+ name = "Instruqt K8s"
+ description = "Connector to Instruqt workshop K8s cluster"
+
+ inherit_from_delegate {
+ delegate_selectors = ["helm-delegate"]
+ }
+
+ depends_on = [
+ harness_platform_project.base_demo
+ ]
+}
+
+resource "harness_platform_secret_text" "docker_username" {
+ identifier = "docker_username"
+ name = "docker-username"
+ org_id = var.org_id
+ project_id = harness_platform_project.base_demo.identifier
+ secret_manager_identifier = "harnessSecretManager"
+ value_type = "Inline"
+ value = var.docker_username
+
+ depends_on = [
+ harness_platform_project.base_demo
+ ]
+}
+
+resource "harness_platform_secret_text" "docker_password" {
+ identifier = "docker_password"
+ name = "docker-pw"
+ org_id = var.org_id
+ project_id = harness_platform_project.base_demo.identifier
+ secret_manager_identifier = "harnessSecretManager"
+ value_type = "Inline"
+ value = var.docker_password
+
+ depends_on = [
+ harness_platform_project.base_demo
+ ]
+}
+
+resource "harness_platform_connector_docker" "workshopdocker" {
+ identifier = "workshopdocker"
+ name = "Workshop Docker"
+ org_id = var.org_id
+ project_id = harness_platform_project.base_demo.identifier
+ type = "DockerHub"
+ url = "https://index.docker.io/v2/"
+ execute_on_delegate = false
+
+ credentials {
+ username_ref = harness_platform_secret_text.docker_username.identifier
+ password_ref = harness_platform_secret_text.docker_password.identifier
+ }
+
+ depends_on = [
+ harness_platform_project.base_demo,
+ harness_platform_secret_text.docker_username,
+ harness_platform_secret_text.docker_password
+ ]
+}
+
+resource "harness_platform_template" "compile_application" {
+ identifier = "Compile_Application"
+ org_id = var.org_id
+ project_id = harness_platform_project.base_demo.identifier
+ name = "Compile Application"
+ version = "v0.1"
+ is_stable = true
+ template_yaml = <<-EOT
+template:
+ name: "Compile Application"
+ identifier: "Compile_Application"
+ versionLabel: "v0.1"
+ type: Step
+ projectIdentifier: ${harness_platform_project.base_demo.identifier}
+ orgIdentifier: ${var.org_id}
+ tags: {}
+ spec:
+ type: Run
+ spec:
+ connectorRef: ${harness_platform_connector_docker.workshopdocker.identifier}
+ image: node:20-alpine
+ shell: Sh
+ command: |-
+ cd frontend-app/harness-webapp
+ npm install
+ npm install -g @angular/cli
+
+ mkdir -p ./src/environments
+ echo "export const environment = {
+ production: true,
+ defaultApiUrl: "'"https://backend.sandbox.<+variable.sandbox_id>.instruqt.io"'",
+ defaultSDKKey: "'"<+variable.sdk>"'"
+ };" > ./src/environments/environment.prod.ts
+
+
+ echo "export const environment = {
+ production: true,
+ defaultApiUrl: "'"https://backend.sandbox.<+variable.sandbox_id>.instruqt.io"'",
+ defaultSDKKey: "'"<+variable.sdk>"'"
+ };" > ./src/environments/environment.ts
+
+ npm run build
+ EOT
+
+ depends_on = [
+ harness_platform_project.base_demo,
+ harness_platform_connector_docker.workshopdocker
+ ]
+}
+
+resource "harness_platform_connector_prometheus" "prometheus" {
+ identifier = "prometheus"
+ name = "Prometheus"
+ org_id = var.org_id
+ project_id = harness_platform_project.base_demo.identifier
+ description = "Connector to Instruqt workshop Prometheus instance"
+ url = "http://prometheus-k8s.monitoring.svc.cluster.local:9090/"
+ delegate_selectors = ["helm-delegate"]
+
+ depends_on = [
+ harness_platform_project.base_demo
+ ]
+}
+
+resource "harness_platform_environment" "dev" {
+ identifier = "dev"
+ name = "Dev"
+ org_id = var.org_id
+ project_id = harness_platform_project.base_demo.identifier
+ type = "PreProduction"
+ tags = []
+
+ yaml = <<-EOT
+environment:
+ name: Dev
+ identifier: dev
+ tags: {}
+ type: PreProduction
+ orgIdentifier: ${var.org_id}
+ projectIdentifier: ${harness_platform_project.base_demo.identifier}
+EOT
+
+ depends_on = [
+ harness_platform_project.base_demo
+ ]
+}
+
+resource "harness_platform_environment" "prod" {
+ identifier = "prod"
+ name = "Prod"
+ org_id = var.org_id
+ project_id = harness_platform_project.base_demo.identifier
+ type = "Production"
+ tags = []
+
+ yaml = <<-EOT
+environment:
+ name: Prod
+ identifier: prod
+ tags: {}
+ type: Production
+ orgIdentifier: ${var.org_id}
+ projectIdentifier: ${harness_platform_project.base_demo.identifier}
+EOT
+
+ depends_on = [
+ harness_platform_project.base_demo
+ ]
+}
+
+resource "harness_platform_infrastructure" "k8s_dev" {
+ identifier = "k8s_dev"
+ name = "K8s Dev"
+ org_id = var.org_id
+ project_id = harness_platform_project.base_demo.identifier
+ env_id = harness_platform_environment.dev.identifier
+ type = "KubernetesDirect"
+ deployment_type = "Kubernetes"
+ yaml = <<-EOT
+infrastructureDefinition:
+ name: K8s Dev
+ identifier: k8s_dev
+ description: ""
+ tags:
+ owner: ed.slatt
+ orgIdentifier: ${var.org_id}
+ projectIdentifier: ${harness_platform_project.base_demo.identifier}
+ environmentRef: ${harness_platform_environment.dev.identifier}
+ deploymentType: Kubernetes
+ type: KubernetesDirect
+ spec:
+ connectorRef: ${harness_platform_connector_kubernetes.instruqt.identifier}
+ namespace: default
+ releaseName: release-<+INFRA_KEY>
+ allowSimultaneousDeployments: true
+EOT
+
+ depends_on = [
+ harness_platform_project.base_demo,
+ harness_platform_environment.dev,
+ harness_platform_connector_kubernetes.instruqt
+ ]
+}
+
+resource "harness_platform_service" "backend" {
+ identifier = "backend"
+ name = "backend"
+ org_id = var.org_id
+ project_id = harness_platform_project.base_demo.identifier
+ yaml = <<-EOT
+service:
+ name: backend
+ identifier: backend
+ orgIdentifier: ${var.org_id}
+ projectIdentifier: ${harness_platform_project.base_demo.identifier}
+ serviceDefinition:
+ spec:
+ manifests:
+ - manifest:
+ identifier: backend
+ type: K8sManifest
+ spec:
+ store:
+ type: HarnessCode
+ spec:
+ repoName: partner_base_demo
+ gitFetchType: Branch
+ paths:
+ - harness-deploy/backend/manifests
+ branch: main
+ valuesPaths:
+ - harness-deploy/backend/values.yaml
+ skipResourceVersioning: false
+ enableDeclarativeRollback: false
+ artifacts:
+ primary:
+ primaryArtifactRef: <+input>
+ sources:
+ - spec:
+ connectorRef: ${harness_platform_connector_docker.workshopdocker.identifier}
+ imagePath: edslatt/harness-demo
+ tag: backend-latest
+ digest: ""
+ identifier: backend
+ type: DockerRegistry
+ type: Kubernetes
+EOT
+
+ depends_on = [
+ harness_platform_project.base_demo,
+ harness_platform_connector_docker.workshopdocker
+ ]
+}
+
+resource "harness_platform_monitored_service" "backend_dev" {
+ org_id = var.org_id
+ project_id = harness_platform_project.base_demo.identifier
+ identifier = "backend_dev"
+ request {
+ name = "backend"
+ type = "Application"
+ service_ref = harness_platform_service.backend.identifier
+ environment_ref = harness_platform_environment.dev.identifier
+ health_sources {
+ name = "Prometheus"
+ identifier = "prometheus"
+ type = "Prometheus"
+ spec = jsonencode({
+ connectorRef = harness_platform_connector_prometheus.prometheus.identifier
+ feature = "apm"
+ metricDefinitions = [
+ {
+ identifier = "Prometheus_Metric"
+ metricName = "Prometheus Metric"
+ riskProfile = {
+ riskCategory = "Performance_Other"
+ thresholdTypes = [
+ "ACT_WHEN_HIGHER"
+ ]
+ }
+ analysis = {
+ liveMonitoring = {
+ enabled = true
+ }
+ deploymentVerification = {
+ enabled = true
+ serviceInstanceFieldName = "pod"
+ }
+ sli = {
+ enabled = true
+ }
+ }
+ query = "avg(container_cpu_system_seconds_total{namespace=\"default\", container=\"backend\"})"
+ groupName = "Infrastructure"
+ isManualQuery = true
+ }
+ ]
+ })
+ }
+ }
+
+ depends_on = [
+ harness_platform_project.base_demo,
+ harness_platform_service.backend,
+ harness_platform_environment.dev,
+ harness_platform_connector_prometheus.prometheus
+ ]
+}
+
+resource "harness_platform_monitored_service" "backend_prod" {
+ org_id = var.org_id
+ project_id = harness_platform_project.base_demo.identifier
+ identifier = "backend_prod"
+ request {
+ name = "backend"
+ type = "Application"
+ service_ref = harness_platform_service.backend.identifier
+ environment_ref = harness_platform_environment.prod.identifier
+ health_sources {
+ name = "Prometheus"
+ identifier = "prometheus"
+ type = "Prometheus"
+ spec = jsonencode({
+ connectorRef = harness_platform_connector_prometheus.prometheus.identifier
+ feature = "apm"
+ metricDefinitions = [
+ {
+ identifier = "Prometheus_Metric"
+ metricName = "Prometheus Metric"
+ riskProfile = {
+ riskCategory = "Performance_Other"
+ thresholdTypes = [
+ "ACT_WHEN_HIGHER"
+ ]
+ }
+ analysis = {
+ liveMonitoring = {
+ enabled = true
+ }
+ deploymentVerification = {
+ enabled = true
+ serviceInstanceFieldName = "pod"
+ }
+ sli = {
+ enabled = true
+ }
+ }
+ query = "avg(container_cpu_system_seconds_total{namespace=\"default\", container=\"backend\"})"
+ groupName = "Infrastructure"
+ isManualQuery = true
+ }
+ ]
+ })
+ }
+ }
+
+ depends_on = [
+ harness_platform_project.base_demo,
+ harness_platform_service.backend,
+ harness_platform_environment.prod,
+ harness_platform_connector_prometheus.prometheus
+ ]
+}
\ No newline at end of file
diff --git a/kit/prometheus.yml b/kit/prometheus.yml
new file mode 100644
index 0000000..1dc034b
--- /dev/null
+++ b/kit/prometheus.yml
@@ -0,0 +1,238 @@
+##Prometheus Configuration
+#Version:
+ #Prometheus: v2.52.0
+#Updated: 06/18/2024
+
+---
+apiVersion: v1
+kind: ServiceAccount
+metadata:
+ name: prometheus
+ labels:
+ app: prometheus
+
+---
+apiVersion: rbac.authorization.k8s.io/v1
+kind: ClusterRole
+metadata:
+ name: prometheus-role
+rules:
+- apiGroups: [""]
+ resources: ["pods", "nodes"]
+ verbs: ["get", "list", "watch"]
+- apiGroups: ["metrics.k8s.io"]
+ resources: ["pods", "nodes"]
+ verbs: ["get", "list", "watch"]
+
+---
+apiVersion: rbac.authorization.k8s.io/v1
+kind: ClusterRoleBinding
+metadata:
+ name: prometheus-role-binding
+subjects:
+- kind: ServiceAccount
+ name: prometheus
+ namespace: monitoring
+roleRef:
+ kind: ClusterRole
+ name: cluster-admin
+ apiGroup: rbac.authorization.k8s.io
+
+---
+apiVersion: v1
+kind: ConfigMap
+metadata:
+ name: prometheus-alertrules
+data:
+ alert.rules: |-
+ groups:
+ - name: Continuous Verification Demo Alert
+ rules:
+ - alert: High Pod Memory
+ expr: sum(container_memory_usage_bytes) > 1
+ for: 1m
+ labels:
+ severity: slack
+ annotations:
+ summary: High Memory Usage
+
+---
+apiVersion: v1
+kind: ConfigMap
+metadata:
+ name: prometheus-configmap
+data:
+ prometheus.yml: |-
+ global:
+ scrape_interval: 5s
+ evaluation_interval: 5s
+ rule_files:
+ - /etc/prometheus-rules/alert.rules
+ alerting:
+ alertmanagers:
+ - scheme: http
+ static_configs:
+ - targets:
+ - "alertmanager:9093"
+ scrape_configs:
+ - job_name: 'node-exporter'
+ kubernetes_sd_configs:
+ - role: endpoints
+ relabel_configs:
+ - source_labels: [__meta_kubernetes_endpoints_name]
+ regex: 'node-exporter'
+ action: keep
+ - job_name: 'kubernetes-apiservers'
+ kubernetes_sd_configs:
+ - role: endpoints
+ scheme: https
+ tls_config:
+ ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt
+ bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token
+ relabel_configs:
+ - source_labels: [__meta_kubernetes_namespace, __meta_kubernetes_service_name, __meta_kubernetes_endpoint_port_name]
+ action: keep
+ regex: default;kubernetes;https
+ - job_name: 'kubernetes-nodes'
+ scheme: https
+ tls_config:
+ ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt
+ bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token
+ kubernetes_sd_configs:
+ - role: node
+ relabel_configs:
+ - action: labelmap
+ regex: __meta_kubernetes_node_label_(.+)
+ - target_label: __address__
+ replacement: kubernetes.default.svc:443
+ - source_labels: [__meta_kubernetes_node_name]
+ regex: (.+)
+ target_label: __metrics_path__
+ replacement: /api/v1/nodes/${1}/proxy/metrics
+ - job_name: 'kubernetes-pods'
+ kubernetes_sd_configs:
+ - role: pod
+ relabel_configs:
+ - source_labels: [__meta_kubernetes_pod_annotation_prometheus_io_scrape]
+ action: keep
+ regex: true
+ - source_labels: [__meta_kubernetes_pod_annotation_prometheus_io_path]
+ action: replace
+ target_label: __metrics_path__
+ regex: (.+)
+ - source_labels: [__address__, __meta_kubernetes_pod_annotation_prometheus_io_port]
+ action: replace
+ regex: ([^:]+)(?::\d+)?;(\d+)
+ replacement: $1:$2
+ target_label: __address__
+ - action: labelmap
+ regex: __meta_kubernetes_pod_label_(.+)
+ - source_labels: [__meta_kubernetes_namespace]
+ action: replace
+ target_label: kubernetes_namespace
+ - source_labels: [__meta_kubernetes_pod_name]
+ action: replace
+ target_label: kubernetes_pod_name
+ - job_name: 'kubernetes-service-endpoints'
+ kubernetes_sd_configs:
+ - role: endpoints
+ relabel_configs:
+ - source_labels: [__meta_kubernetes_service_annotation_prometheus_io_scrape]
+ action: keep
+ regex: true
+ - source_labels: [__meta_kubernetes_service_annotation_prometheus_io_scheme]
+ action: replace
+ target_label: __scheme__
+ regex: (https?)
+ - source_labels: [__meta_kubernetes_service_annotation_prometheus_io_path]
+ action: replace
+ target_label: __metrics_path__
+ regex: (.+)
+ - source_labels: [__address__, __meta_kubernetes_service_annotation_prometheus_io_port]
+ action: replace
+ target_label: __address__
+ regex: ([^:]+)(?::\d+)?;(\d+)
+ replacement: $1:$2
+ - action: labelmap
+ regex: __meta_kubernetes_service_label_(.+)
+ - source_labels: [__meta_kubernetes_namespace]
+ action: replace
+ target_label: kubernetes_namespace
+ - source_labels: [__meta_kubernetes_service_name]
+ action: replace
+ target_label: kubernetes_name
+ - job_name: 'kubernetes-cadvisor'
+ scheme: https
+ tls_config:
+ ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt
+ bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token
+ kubernetes_sd_configs:
+ - role: node
+ relabel_configs:
+ - action: labelmap
+ regex: __meta_kubernetes_node_label_(.+)
+ - target_label: __address__
+ replacement: kubernetes.default.svc:443
+ - source_labels: [__meta_kubernetes_node_name]
+ regex: (.+)
+ target_label: __metrics_path__
+ replacement: /api/v1/nodes/${1}/proxy/metrics/cadvisor
+
+---
+apiVersion: apps/v1
+kind: Deployment
+metadata:
+ name: prometheus-deployment
+spec:
+ replicas: 1
+ selector:
+ matchLabels:
+ app: prometheus
+ template:
+ metadata:
+ labels:
+ app: prometheus
+ name: prometheus
+ spec:
+ serviceAccountName: prometheus
+ containers:
+ - args:
+ - --storage.tsdb.retention.time=360h
+ - --config.file=/etc/prometheus/prometheus.yml
+ image: prom/prometheus:v2.52.0
+ imagePullPolicy: IfNotPresent
+ name: prometheus
+ ports:
+ - containerPort: 9090
+ name: web
+ protocol: TCP
+ volumeMounts:
+ - mountPath: /etc/prometheus
+ name: config-volume
+ - mountPath: /etc/prometheus-rules
+ name: alertrules-volume
+ volumes:
+ - configMap:
+ defaultMode: 420
+ name: prometheus-configmap
+ name: config-volume
+ - configMap:
+ defaultMode: 420
+ name: prometheus-alertrules
+ name: alertrules-volume
+
+---
+apiVersion: v1
+kind: Service
+metadata:
+ name: prometheus-k8s
+ labels:
+ app: prometheus-k8s
+spec:
+ type: LoadBalancer
+ ports:
+ - port: 9090
+ targetPort: 9090
+ selector:
+ app: prometheus
+
diff --git a/kit/se-parms.tfvars b/kit/se-parms.tfvars
new file mode 100644
index 0000000..0113543
--- /dev/null
+++ b/kit/se-parms.tfvars
@@ -0,0 +1,5 @@
+ # quite likely I will forget and push my docker_password so
+account_id = "VEuU4vZ6QmSJZcgvnccqYQ"
+
+docker_username = "username"
+docker_password = "password"
diff --git a/markdown/0-login.md b/markdown/0-login.md
new file mode 100644
index 0000000..d948a02
--- /dev/null
+++ b/markdown/0-login.md
@@ -0,0 +1,38 @@
+
+👋 Welcome to your Harness Workshop Sandbox!
+
+
+
+> [!IMPORTANT]
+> Make sure you scroll to the bottom of the lab guide in each lab
+>
+
+
+
+## A Sandbox Account has been provisioned for you to use for the duration of this workshop.
+Login to your **Harness Sandbox** account using the details provided below.👇
+
+---
+## Harness Sandbox Account details:
+| | |
+| ----- | ----- |
+| **Username** |`[[ Instruqt-Var key="HARNESS_USER" hostname="sandbox" ]]` |
+| **Password** |`[[ Instruqt-Var key="HARNESS_PWD" hostname="sandbox" ]]` |
+
+> [!NOTE]
+> *All credentials for this lab can always be found on the:
+> `Lab Credentials` tab*
+
+
+---
+
+> 📝 *Click Single sign-on*
+> *Login using the credentials above:*
+> 
+
+===============
+
+Click the **Check** button to continue.
diff --git a/markdown/1-coderepo.md b/markdown/1-coderepo.md
new file mode 100644
index 0000000..504a882
--- /dev/null
+++ b/markdown/1-coderepo.md
@@ -0,0 +1,72 @@
+
+Harness Code
+
+
+
+First let's select the project that's been created for this workshop
+
+
+## Let's take a look at our code
+
+
+Select the **Code Repository** module from the list
+
+Click on the **harnessrepo** that's been setup for you
+
+
+Click on **Clone** in the top right
+And then click ```+Generate Clone Credential```
+
+
+Copy the values from here and store them on the `Notes` 📝 tab or locally on your machine.
+
+> # Switch to the ```>_Shell``` tab to continue
+
+### Update our credential file
+> [!NOTE]
+> This step is optional, but will eliminate the need to enter the username and password in subsequent steps.
+
+
+
+Click `▶️ run` and then provide the token you just copied.
+```bash,run
+./script.sh
+```
+
+### Clone the repo
+```bash,run
+git clone [[ Instruqt-Var key="HARNESS_REPO_URL" hostname="sandbox" ]]
+```
+
+> # Switch to the ```Code Editor``` tab to continue
+
+### Update `backend` **>** `entrypoint.sh` file
+- Under `APP_PORT=${PORT:-8000}`
+ - Add:
+```bash
+TOKEN="02290a2a-7f5a-4836-8745-d4d797e475d0"
+```
+
+1) Click on `Source Control` tab on the left nav
+2) Enter your commit message e.g., `added my password`
+3) Click the dropdown `v`
+4) Click `Commit & Push` \
+ 
+5) Click `Yes` \
+ 
+
+
+## Our commit has been blocked...
+
+- Click on `Show Command Output` to see the details
+
+## *Why wait until your secrets are committed to detect them?*
+### With ***Harness Code*** you don't have to
+Harness Code provides security features to protect your code and ***prevent*** `secrets` or `vulnerabilities` from being pushed to your Git repositories. ***Blocking*** secrets and vulnerabilities from being introduced into your repos is crucial for securing your codebase.
+
+===============
+
+Click the **Check** button to continue.
diff --git a/markdown/2-build.md b/markdown/2-build.md
new file mode 100644
index 0000000..c7d9bfa
--- /dev/null
+++ b/markdown/2-build.md
@@ -0,0 +1,108 @@
+
+Setup a CI Pipeline
+
+
+
+## Let's create a pipeline
+
+
+Select **Unified View** from the list
+
+> 
+> ### Click on **Pipelines** in the left Nav
+> - Click `+Create Pipeline` \
+> 
+
+> **Create new Pipeline**
+> - Name: `Workshop Build and Deploy`
+> - Store: `Inline`
+
+> [!NOTE]
+> Inline vs. Remote - We're using inline for this lab, but you can also use a remote repository like GitHub. This is useful for teams that want to keep their _pipelines as code_ bundled up snuggly with _application code_. Cozy!
+
+Click `+Add Stage`
+
+> Choose **Build** stage type
+> 
+
+> **Build Stage**
+> - Stage Name: `Build`
+> - Clone Codebase: `Enabled`
+> - Repository Name: `harnessrepo`
+> - Click **Set Up Stage**
+
+
+
+> 
+> ### On the **Infrastructure** tab
+> - Select `Cloud` and click **Continue >**
+
+> [!NOTE]
+> ***Harness Cloud is the BESTEST cloud***
+> Something awesome happened right there. With zero configuration (well ok... ooooooone click!) you instantly configured an autoscaling build environment in the cloud that requires no management on your part and is dramatically less expensive than on-premise.
+
+Plus Harness is using the [fastest bare-metal hardware](https://www.harness.io/products/continuous-integration/ci-cloud) in the Solar System. Seriously. Astronauts checked.
+
+
+> 
+> ### On the **Execution** tab
+> - Select `Add Step`, then `Add Step` again \
+> 
+> - Select `Test Intelligence` from the Step Library and configure with the details below ↓
+
+
+> **Test Intelligence**
+> - Name: `Test Intelligence`
+> - Command:
+> ```
+> cd ./python-tests
+> pytest
+> ```
+> - After completing configuration select **Apply Changes** from the top right of the configuration popup
+
+> [!NOTE]
+> ***What is Test Intelligence?***
+> Test Intelligence helps accelerate test cycles by up to 80%. By running only relevant tests, you can achieve faster builds, shorter feedback loops, and significant cost savings.
+
+> ### Add a step to compile our application
+> - Select `Add Step`, then `Use template`
+> - To standardize our build, a template has been precreated
+> - Feel free to open up the template if you'd like to see what it's doing
+> - Select the `Compile Application` template and click `Use template`
+> - Name: `Compile`
+> - Click **Apply Changes** from the top right of the configuration popup
+
+> ### Add a step to build and push our artifact
+> - Select `Add Step`, then `Add Step` again \
+> 
+> - Select `Build and Push an image to Dockerhub` from the Step Library and configure with the details below ↓
+
+> **Build and Push an image to Dockerhub**
+> - Name: `Push to Dockerhub`
+> - Docker Connector: `workshop-docker`
+> - Docker Repository: `edslatt/harness-demo`
+> - Tags: Click `+ Add`
+> - demo-base-<+pipeline.sequenceId>
+> - **Optional Configuration ⏷** *(Required for this Lab)*
+> - Dockerfile: `/harness/frontend-app/harness-webapp/Dockerfile`
+> - Context: `/harness/frontend-app/harness-webapp`
+> - After completing configuration select **Apply Changes** from the top right of the configuration popup
+
+### Execute your new Pipeline
+> Click **Save** in the top right to save your new pipeline.
+> 
+
+> Now click **Run** to execute the pipeline.
+> 
+
+> [!NOTE]
+> You might have noticed an option to pick the branch before running the pipeline. We're using `main` for simplicity, but it's a great example of how this complete build pipeline could easily be reused for other branches (or repositories or services).
+
+
+
+===============
+
+Click the **Check** button to continue.
diff --git a/markdown/3-cd-frontend.md b/markdown/3-cd-frontend.md
new file mode 100644
index 0000000..26a1fa4
--- /dev/null
+++ b/markdown/3-cd-frontend.md
@@ -0,0 +1,97 @@
+
+Continuous Deployment - Frontend
+
+
+
+## Time to deploy our new artifact
+### Go back to the `Pipeline Studio` and add a `Deployment` stage
+
+Click `+Add Stage`
+
+> Choose **Deploy** stage type
+> 
+
+> **Deploy Stage**
+> - Stage Name: `Frontend - Deployment`
+> - Deployment Type: `Kubernetes`
+> - Click **Set Up Stage**
+
+
+
+> 
+> ### On the **Service** tab
+> - Click `+ Add Service`
+> - **New Service**
+> - ***About the Service***
+> - Name: `frontend`
+> - Store: `Inline`
+> - ***Service Definition***
+> - Deployment Type: `Kubernetes`
+> - Manifests: `+ Add Manifest`
+> - ***Manifest***
+> 1) Manifest Type: `K8s Manifest`
+> 2) Manifest Source: `Code`
+> 3) Manifest Details
+> - Manifest Identifier: `templates`
+> - Repository Name: `harnessrepo`
+> - Branch: `main`
+> - File/Folder Path: `harness-deploy/frontend/manifests`
+> - Values.yaml: `+ Add File`
+> - harness-deploy/frontend/values.yaml
+> - Click **Submit >**
+> - Artifacts: `+ Add Artifact Source`
+> - ***Artifact***
+> 1) Artifact Repository Type: `Docker Registry`
+> 2) Artifact Repository: `workshop-docker`
+> 3) Artifact Location
+> - Artifact Source Identifier: `frontend`
+> - Image Path: `edslatt/harness-demo`
+> - Tag: demo-base-<+pipeline.sequenceId>
\
+> (change the field type to expression) \
+> 
+> - Click **Submit >**
+> - Click **Save**
+> - Click **Continue >**
+
+
+
+> 
+> ### On the **Environment** tab
+> - Specify Environment: `dev`
+> - Specify Infrastructure: `K8s Dev`
+> - Click **Continue >**
+
+> [!NOTE]
+> With Harness, a platform team can easily create and manage environments and infrastructure, then developers can use them to deploy their applications.
+
+
+
+> 
+> ### On the **Execution** tab
+> - Select: `Rolling` \
+> 
+> - Click **Use Strategy**
+
+> [!NOTE]
+> The frontend is a static application so there isn't a need for `Canary` or `Blue/Green` at this time.
+> In the next Lab we will use the `Canary` release strategy for our backend service.
+
+### Execute your Pipeline
+> Click **Save** in the top right to save your pipeline.
+> 
+
+> Now click **Run** to execute the pipeline.
+> 
+
+> The build should run using:
+> 
+> - Branch Name: `main`
+> - Stage: **Frontend - Deployment**
+> - Primary Artifact: `frontend`
+
+===============
+
+Click the **Check** button to continue.
diff --git a/markdown/4-cd-backend.md b/markdown/4-cd-backend.md
new file mode 100644
index 0000000..4343294
--- /dev/null
+++ b/markdown/4-cd-backend.md
@@ -0,0 +1,63 @@
+
+Continuous Deployment - Backend
+
+
+
+## Now let's deploy the backend artifact
+### Go back to the `Pipeline Studio` and add a `Deployment` stage
+
+Click `+Add Stage`
+
+> Choose **Deploy** stage type
+> 
+
+> **Deploy Stage**
+> - Stage Name: `Backend - Deployment`
+> - Deployment Type: `Kubernetes`
+> Click **Set Up Stage**
+
+
+
+> 
+> ### On the **Service** tab
+> - Click `Select Service`
+> - Select: `backend` (this has been preconfigured for us)
+> - Click **Continue >**
+
+
+
+> 
+> ### On the **Environment** tab
+> - Click `Propagate Environment From`
+> - Select: `Stage [Frontend - Deployment]`
+> - Click **Continue >**
+
+
+
+> 
+> ### On the **Execution** tab
+> - Select: `Canary` \
+> 
+> - Click **Use Strategy**
+
+### Execute your Pipeline
+> Click **Save** in the top right to save your pipeline.
+> 
+
+> Now click **Run** to execute the pipeline.
+> 
+
+> The build should run using:
+> 
+> - Branch Name: `main`
+> - Stage: **Frontend - Deployment**
+> - Primary Artifact: `frontend`
+> - Stage: **Backend - Deployment**
+> - Primary Artifact: `backend`
+
+===============
+
+Click the **Check** button to continue.
diff --git a/markdown/5-security.md b/markdown/5-security.md
new file mode 100644
index 0000000..f149a5e
--- /dev/null
+++ b/markdown/5-security.md
@@ -0,0 +1,91 @@
+
+Integrate Security Scanners
+
+
+
+## Integrating Security Scans
+Harness offers robust and versatile solutions tailored to meet the stringent demands of even the most discerning security professionals.
+### Go back to the `Pipeline Studio` and edit your pipeline
+
+## Harness Built-in Scanners
+### Adding SCA Scanners
+> 1) In the existing pipeline, within the ***Build*** stage `after` the ***Compile*** step click on `+ Add Step` \
+> 
+> 2) Select `Add Step` \
+> 
+> 3) Select `Built-in Scanners` \
+> 
+> 4) Select `SCA` and click **Add Scanners**
+> 5) Rename the steps to `OWASP` and `OSV Scan`
+
+### Adding Container Image Scanner
+> 1) In the existing pipeline, within the ***Build*** stage `after` the ***Push To Dockerhub*** step click on `+ Add Step` \
+> 
+> 2) Select `Add Step` \
+> 
+> 3) Select `Built-in Scanners` \
+> 
+> 4) Select `Container` from the Step Library and configure with the details below ↓
+>
+> **Built-in Container Scanners**
+> - Check: `Aqua Trivy`
+> - *Uncheck the other scanners*
+> - **Container Information**
+> - Type: `Docker V2`
+> - Image: edslatt/harness-demo:demo-base-<+pipeline.sequenceId>
+> - After completing configuration select **Add Scanners**
+>
+> 5) Rename the step to `Aqua Trivy`
+> 6) Then click on the `dind` step \
+>  \
+> and configure with the details below ↓
+> **Configure Background Step**
+> - **Additional Configuration ⏷**
+> - Container Registry: `workshop-docker`
+> - (You may need to click the `All` or `Org` tab to see the registry)
+> - Click **Apply Changes** from the top right of the configuration popup
+
+### DAST Scan Template Owned by the Security Team
+Now we are going to add a `Stage` template to run DAST Scans.
+
+> [!NOTE]
+> Typically, the security team owns these scans, and as such, they will manage and version the template as needed. They simply require that we include it in our pipeline.
+
+> 1) In the existing pipeline, click on the `+` icon under the ***Backend - Deployment*** stage to add a new stage \
+> 
+> 2) Select `Use template` \
+> 
+> 3) Select `DAST Scans` template and click `Use template`
+> 4) Name the stage `DAST Scans`
+
+
+
+### Execute your updated Pipeline
+> Click **Save** in the top right to save your pipeline.
+> 
+
+> Now click **Run** to execute the pipeline.
+> 
+
+### Security Scan Results
+The scans take ~3 minutes to run.
+After the execution is complete, go to the `Security Tests` tab to see the *deduplicated*, *normalized* and *prioritized* list of `vulnerabilities` discovered across your scanners.
+
+
+## ***BONUS***
+### Adding SAST Scanner
+> 1) In the existing pipeline, within the ***Build*** stage `under` the ***OSV Scan*** step click on `+ Add Step` \
+> 
+> 2) Select `Add Step` \
+> 
+> 3) Select `Built-in Scanners` \
+> 
+> 4) Select `SAST` and click **Add Scanner**
+> 5) Rename the step to `Semgrep`
+
+===============
+
+Click the **Check** button to continue.
diff --git a/markdown/6-cv.md b/markdown/6-cv.md
new file mode 100644
index 0000000..2792699
--- /dev/null
+++ b/markdown/6-cv.md
@@ -0,0 +1,61 @@
+
+Continuous Verification
+
+
+
+## Now let's add Continuous Verification
+### Go back to the `Pipeline Studio`
+1) In the existing pipeline, within the ***Backend - Deployment*** stage `after` the ***Canary Deployment*** step click on the `+` icon to add a new step \
+ 
+2) Select `Add Step` \
+ 
+3) Select `Verify` from the Step Library and configure with the details below ↓
+
+> **Verify**
+> - Name: `Verify`
+> - Continuous Verification Type: `Canary`
+> - Sensitivity: `Low`
+> - Duration: `5mins`
+> - Click **Apply Changes** from the top right of the configuration popup
+
+> [!NOTE]
+> ***Continuous Verification Sensitivity***
+> This is to define how sensitive the ML algorithms are going to be on deviation from the baseline.
+
+### Execute your Pipeline
+> Click **Save** in the top right to save your pipeline.
+> 
+
+> Now click **Run** to execute the pipeline.
+> 
+
+> # Switch to the ```Demo App``` tab to continue
+
+### While the canary deployment is ongoing see if you can spot the canary!
+- Click the `Check Release` button
+- (Don't worry! Keep on clicking it!) \
+ 
+
+### Distribution Test
+- Now click on the `Start` button on the **Distribution Test** panel
+- Then click the **Play** `▶️` button to start the test and observe the traffic distribution \
+ 
+
+> # Switch to the ```Harness Platform``` tab to continue
+
+### Validate the outcome of the verification on the pipeline execution details
+> 
+> 1) Toggle `Console View`
+> 2) Select the `Verify` step
+> 3) Uncheck the option to `Display only anomalous metrics and affected nodes`
+> 4) Click the `⏷` to view the details
+
+## This is just the beginning.
+`Harness Continuous Verification` integrates with APMs and logging tools to verify that the deployment is running safely and efficiently. Harness CV applies **machine learning** algorithms to every deployment for identifying normal behavior. This allows Harness to identify and flag anomalies in future deployments. During the Verify step, Harness CV `automatically` triggers a **rollback** if anomalies are found.
+
+===============
+
+Click the **Check** button to continue.
diff --git a/markdown/7-opa.md b/markdown/7-opa.md
new file mode 100644
index 0000000..7c2a29b
--- /dev/null
+++ b/markdown/7-opa.md
@@ -0,0 +1,138 @@
+
+Guardrails through OPA Policy
+
+
+
+# Now let's configure a policy
+- Click on **Project Settings** in the left Nav
+- Then scroll down to **Security and Governance** and click **Policies**
+- This is the Overview screen. In the top right of this screen click **Policies** \
+ 
+- And then click ```+New Policy```
+
+## Create new Policy to require approval for Production releases
+> **Policy Name**
+> - Name: `Production Approval`
+> - Store: `Inline`
+
+> [!NOTE]
+> ***OPA Rego Policy***
+> This policy mandates an ***Approval*** stage prior to production deployments.
+> In this lab we are using the `Harness Approval` but this could also use our native integrations with `ServiceNow` and `Jira`.
+
+```
+package pipeline
+
+required_steps = ["HarnessApproval"]
+
+deny[msg] {
+ some prod_index
+ input.pipeline.stages[prod_index].stage.spec.infrastructure.environment.type == "Production"
+ not approval_before_prod(prod_index)
+ msg := sprintf("Deployment to higher environments require an approval stage. '%s' does not have an Approval stage", [input.pipeline.stages[prod_index].stage.name])
+}
+
+deny[msg] {
+ stage = input.pipeline.stages[_].stage
+ stage.type == "Approval"
+ existing_steps := [s | s = stage.spec.execution.steps[_].step.type]
+ required_step := required_steps[_]
+ not contains(existing_steps, required_step)
+ msg := sprintf("Approval stage '%s' is missing required step '%s'", [stage.name, required_step])
+}
+
+approval_before_prod(prod_index) {
+ some approval_index
+ approval_index < prod_index
+ input.pipeline.stages[approval_index].stage.type == "Approval"
+}
+
+contains(arr, elem) {
+ arr[_] = elem
+}
+```
+> Click **Save** in the top right to save your new policy
+
+## Create new Policy Set
+> 1) In the top right of this screen click **Policy Sets** \
+> 
+> 2) And then click `+New Policy Set`
+>
+> **Policy Set**
+> - **Overview**
+> - Name: `Approval Required for Production Deployments`
+> - Entity Type: `Pipeline`
+> - Evaluation: `On Save`
+> - Click **Continue**
+> - **Policy evaluation criteria**
+> - Click : `+ Add Policy`
+> - Policy to Evaluate: `Production Approval`
+> - Policy Action: `Error and exit`
+> - Click **Apply**
+> - Click **Finish** to save your **Policy Set**
+
+
+> [!WARNING]
+> 
+> Be sure to click the `toggle` under **ENFORCED** to enable your **Policy Set** !!
+
+## Let's test it out
+> Head back over to your pipeline.
+> 1) Select the ***Frontend - Deployment*** stage \
+> 
+> 2) Click on the **Environment** tab
+> - Specify Environment: `prod`
+> - Specify Infrastructure: `K8s Prod`
+
+> Click **Save** in the top right to save your pipeline.
+> 
+
+## Pipeline can not be saved due to the policy evaluation failures
+
+
+> [!IMPORTANT]
+> Oops. That's not allowed. Let's add an approval stage so we can get back on track.
+
+> 1) `Before` the ***Frontend - Deployment*** stage click on the `+` icon to add a new stage \
+> 
+> 2) Select `Approval` and configure with the details below ↓ \
+> 
+>
+> **About your Stage**
+> - Stage Name: `Approval`
+> - Approval Type: `Harness Approval`
+> - Click **Setup Stage**
+>
+> 3) Click on the `Approval` step and configure with the details below ↓
+>
+> **Manual Approval**
+> - Name: `Harness Approval`
+> - **Approvers**
+> - User Groups: `Production Approvers` \
+> 
+> - After completing configuration click **Apply Changes** from the top right of the configuration popup
+
+> Click **Save** in the top right to save your pipeline.
+> 
+
+# Success!
+
+### Execute your Pipeline
+> Now click **Run** to execute the pipeline.
+> 
+
+
+
+> [!NOTE]
+> That is `Policy as Code` in action! Isn't it beautiful?
+> Harness has wrapped the ***entire platform*** with `OPA` so this is just the tip of the iceberg!
+
+# Congratulations on completing this **Harness workshop**! 🏆
+### That's all for now. We hope you enjoyed your hands-on experience with the Harness platform. 📈 We are always looking to improve so please rate your experience and share any suggestions or issues you may have encountered. Thank you!
+
+===============
+
+Click the **Check** button to continue.
diff --git a/python-tests/test_credit_score.py b/python-tests/test_credit_score.py
new file mode 100644
index 0000000..ce53699
--- /dev/null
+++ b/python-tests/test_credit_score.py
@@ -0,0 +1,549 @@
+import pytest
+
+
+def test_user_can_create_a_mortgage_application():
+ assert "mortgage" == "mortgage"
+
+
+def test_user_can_create_a_savings_account():
+ assert "savings" == "savings"
+
+
+def test_user_can_create_a_checking_account():
+ assert "checking" == "checking"
+
+
+def test_user_can_apply_for_a_credit_card():
+ assert "credit_card" == "credit_card"
+
+
+def test_user_can_transfer_funds_between_accounts():
+ assert "fund_transfer" == "fund_transfer"
+
+
+def test_user_can_deposit_money_into_savings():
+ assert "deposit" == "deposit"
+
+
+def test_user_can_withdraw_money_from_checking():
+ assert "withdrawal" == "withdrawal"
+
+
+def test_user_can_check_account_balance():
+ assert "balance_check" == "balance_check"
+
+
+def test_user_can_view_transaction_history():
+ assert "transaction_history" == "transaction_history"
+
+
+def test_user_can_setup_direct_deposit():
+ assert "direct_deposit" == "direct_deposit"
+
+
+def test_user_can_pay_bills_online():
+ assert "bill_pay" == "bill_pay"
+
+
+def test_user_can_update_personal_information():
+ assert "update_info" == "update_info"
+
+
+def test_user_can_add_a_new_payee():
+ assert "add_payee" == "add_payee"
+
+
+def test_user_can_remove_a_payee():
+ assert "remove_payee" == "remove_payee"
+
+
+def test_user_can_request_a_loan():
+ assert "loan_request" == "loan_request"
+
+
+def test_user_can_view_loan_status():
+ assert "loan_status" == "loan_status"
+
+
+def test_user_can_view_mortgage_details():
+ assert "mortgage_details" == "mortgage_details"
+
+
+def test_user_can_calculate_loan_eligibility():
+ assert "loan_eligibility" == "loan_eligibility"
+
+
+def test_user_can_schedule_appointments_with_bankers():
+ assert "schedule_appointment" == "schedule_appointment"
+
+
+def test_user_can_send_messages_to_customer_service():
+ assert "send_message" == "send_message"
+
+
+def test_user_can_view_investment_portfolio():
+ assert "view_investment" == "view_investment"
+
+
+def test_user_can_buy_stocks():
+ assert "buy_stocks" == "buy_stocks"
+
+
+def test_user_can_sell_stocks():
+ assert "sell_stocks" == "sell_stocks"
+
+
+def test_user_can_view_stock_market_trends():
+ assert "market_trends" == "market_trends"
+
+
+def test_user_can_apply_for_auto_loan():
+ assert "auto_loan" == "auto_loan"
+
+
+def test_user_can_apply_for_personal_loan():
+ assert "personal_loan" == "personal_loan"
+
+
+def test_user_can_setup_recurring_transfers():
+ assert "recurring_transfer" == "recurring_transfer"
+
+
+def test_user_can_edit_scheduled_transfers():
+ assert "edit_transfer" == "edit_transfer"
+
+
+def test_user_can_cancel_scheduled_transfers():
+ assert "cancel_transfer" == "cancel_transfer"
+
+
+def test_user_can_enable_two_factor_authentication():
+ assert "two_factor" == "two_factor"
+
+
+def test_user_can_disable_two_factor_authentication():
+ assert "disable_two_factor" == "disable_two_factor"
+
+
+def test_user_can_reset_password():
+ assert "reset_password" == "reset_password"
+
+
+def test_user_can_change_pin():
+ assert "change_pin" == "change_pin"
+
+
+def test_user_can_activate_new_card():
+ assert "activate_card" == "activate_card"
+
+
+def test_user_can_freeze_card():
+ assert "freeze_card" == "freeze_card"
+
+
+def test_user_can_unfreeze_card():
+ assert "unfreeze_card" == "unfreeze_card"
+
+
+def test_user_can_report_lost_card():
+ assert "report_lost_card" == "report_lost_card"
+
+
+def test_user_can_request_new_card():
+ assert "request_new_card" == "request_new_card"
+
+
+def test_user_can_apply_for_overdraft_protection():
+ assert "overdraft_protection" == "overdraft_protection"
+
+
+def test_user_can_disable_overdraft_protection():
+ assert "disable_overdraft" == "disable_overdraft"
+
+
+def test_user_can_set_transaction_alerts():
+ assert "set_alerts" == "set_alerts"
+
+
+def test_user_can_update_alert_preferences():
+ assert "update_alerts" == "update_alerts"
+
+
+def test_user_can_view_account_statements():
+ assert "view_statements" == "view_statements"
+
+
+def test_user_can_download_account_statements():
+ assert "download_statements" == "download_statements"
+
+
+def test_user_can_request_statement_by_mail():
+ assert "request_statement" == "request_statement"
+
+
+def test_user_can_view_tax_documents():
+ assert "view_tax_documents" == "view_tax_documents"
+
+
+def test_user_can_download_tax_documents():
+ assert "download_tax_documents" == "download_tax_documents"
+
+
+def test_user_can_view_credit_score():
+ assert "view_credit_score" == "view_credit_score"
+
+
+def test_user_can_update_notification_preferences():
+ assert "update_notifications" == "update_notifications"
+
+
+def test_user_can_set_up_savings_goals():
+ assert "savings_goals" == "savings_goals"
+
+
+def test_user_can_track_savings_goals():
+ assert "track_savings_goals" == "track_savings_goals"
+
+
+def test_user_can_modify_savings_goals():
+ assert "modify_savings_goals" == "modify_savings_goals"
+
+
+def test_user_can_delete_savings_goals():
+ assert "delete_savings_goals" == "delete_savings_goals"
+
+
+def test_user_can_open_a_fixed_deposit_account():
+ assert "fixed_deposit" == "fixed_deposit"
+
+
+def test_user_can_view_fixed_deposit_details():
+ assert "view_fixed_deposit" == "view_fixed_deposit"
+
+
+def test_user_can_close_fixed_deposit_account():
+ assert "close_fixed_deposit" == "close_fixed_deposit"
+
+
+def test_user_can_open_a_recurring_deposit_account():
+ assert "recurring_deposit" == "recurring_deposit"
+
+
+def test_user_can_view_recurring_deposit_details():
+ assert "view_recurring_deposit" == "view_recurring_deposit"
+
+
+def test_user_can_close_recurring_deposit_account():
+ assert "close_recurring_deposit" == "close_recurring_deposit"
+
+
+def test_user_can_apply_for_student_loan():
+ assert "student_loan" == "student_loan"
+
+
+def test_user_can_view_student_loan_status():
+ assert "view_student_loan" == "view_student_loan"
+
+
+def test_user_can_apply_for_home_equity_loan():
+ assert "home_equity_loan" == "home_equity_loan"
+
+
+def test_user_can_view_home_equity_loan_status():
+ assert "view_home_equity_loan" == "view_home_equity_loan"
+
+
+def test_user_can_schedule_bill_payments():
+ assert "schedule_bill_payments" == "schedule_bill_payments"
+
+
+def test_user_can_edit_scheduled_bill_payments():
+ assert "edit_bill_payments" == "edit_bill_payments"
+
+
+def test_user_can_cancel_scheduled_bill_payments():
+ assert "cancel_bill_payments" == "cancel_bill_payments"
+
+
+def test_user_can_view_payment_history():
+ assert "view_payment_history" == "view_payment_history"
+
+
+def test_user_can_view_upcoming_payments():
+ assert "view_upcoming_payments" == "view_upcoming_payments"
+
+
+def test_user_can_view_investment_summary():
+ assert "view_investment_summary" == "view_investment_summary"
+
+
+def test_user_can_view_investment_performance():
+ assert "view_investment_performance" == "view_investment_performance"
+
+
+def test_user_can_view_dividend_payments():
+ assert "view_dividend_payments" == "view_dividend_payments"
+
+
+def test_user_can_reinvest_dividends():
+ assert "reinvest_dividends" == "reinvest_dividends"
+
+
+def test_user_can_change_investment_strategy():
+ assert "change_investment_strategy" == "change_investment_strategy"
+
+
+def test_user_can_view_retirement_accounts():
+ assert "view_retirement_accounts" == "view_retirement_accounts"
+
+
+def test_user_can_contribute_to_retirement_accounts():
+ assert "contribute_retirement_accounts" == "contribute_retirement_accounts"
+
+
+def test_user_can_withdraw_from_retirement_accounts():
+ assert "withdraw_retirement_accounts" == "withdraw_retirement_accounts"
+
+
+def test_user_can_view_loan_payment_schedule():
+ assert "view_loan_payment_schedule" == "view_loan_payment_schedule"
+
+
+def test_user_can_make_loan_payments():
+ assert "make_loan_payments" == "make_loan_payments"
+
+
+def test_user_can_view_loan_payment_history():
+ assert "view_loan_payment_history" == "view_loan_payment_history"
+
+
+def test_user_can_change_auto_pay_settings():
+ assert "change_auto_pay" == "change_auto_pay"
+
+
+def test_user_can_setup_auto_pay_for_loans():
+ assert "setup_auto_pay" == "setup_auto_pay"
+
+
+def test_user_can_view_auto_pay_settings():
+ assert "view_auto_pay_settings" == "view_auto_pay_settings"
+
+
+def test_user_can_change_loan_due_date():
+ assert "change_loan_due_date" == "change_loan_due_date"
+
+
+def test_user_can_apply_for_loan_deferment():
+ assert "apply_loan_deferment" == "apply_loan_deferment"
+
+
+def test_user_can_view_deferment_status():
+ assert "view_deferment_status" == "view_deferment_status"
+
+
+def test_user_can_repay_loan_early():
+ assert "repay_loan_early" == "repay_loan_early"
+
+
+def test_user_can_request_loan_amortization_schedule():
+ assert "loan_amortization_schedule" == "loan_amortization_schedule"
+
+
+def test_user_can_view_account_summary():
+ assert "view_account_summary" == "view_account_summary"
+
+
+def test_user_can_view_interest_earned():
+ assert "view_interest_earned" == "view_interest_earned"
+
+
+def test_user_can_view_fees_charged():
+ assert "view_fees_charged" == "view_fees_charged"
+
+
+def test_user_can_view_available_credit():
+ assert "view_available_credit" == "view_available_credit"
+
+
+def test_user_can_request_credit_increase():
+ assert "request_credit_increase" == "request_credit_increase"
+
+
+def test_user_can_view_credit_card_transactions():
+ assert "view_credit_card_transactions" == "view_credit_card_transactions"
+
+
+def test_user_can_view_rewards_points():
+ assert "view_rewards_points" == "view_rewards_points"
+
+
+def test_user_can_redeem_rewards_points():
+ assert "redeem_rewards_points" == "redeem_rewards_points"
+
+
+def test_user_can_transfer_rewards_points():
+ assert "transfer_rewards_points" == "transfer_rewards_points"
+
+
+def test_user_can_view_spending_categories():
+ assert "view_spending_categories" == "view_spending_categories"
+
+
+def test_user_can_set_budget_limits():
+ assert "set_budget_limits" == "set_budget_limits"
+
+
+def test_user_can_view_budget_status():
+ assert "view_budget_status" == "view_budget_status"
+
+
+def test_user_can_edit_budget_limits():
+ assert "edit_budget_limits" == "edit_budget_limits"
+
+
+def test_user_can_view_net_worth():
+ assert "view_net_worth" == "view_net_worth"
+
+
+def test_user_can_view_income_expense_summary():
+ assert "view_income_expense_summary" == "view_income_expense_summary"
+
+
+def test_user_can_view_account_balance_details():
+ assert "view_account_balance_details" == "view_account_balance_details"
+
+
+def test_user_can_view_recent_activity():
+ assert "view_recent_activity" == "view_recent_activity"
+
+
+def test_user_can_view_scheduled_transactions():
+ assert "view_scheduled_transactions" == "view_scheduled_transactions"
+
+
+def test_user_can_cancel_scheduled_transactions():
+ assert "cancel_scheduled_transactions" == "cancel_scheduled_transactions"
+
+
+def test_user_can_view_recurring_transactions():
+ assert "view_recurring_transactions" == "view_recurring_transactions"
+
+
+def test_user_can_edit_recurring_transactions():
+ assert "edit_recurring_transactions" == "edit_recurring_transactions"
+
+
+def test_user_can_delete_recurring_transactions():
+ assert "delete_recurring_transactions" == "delete_recurring_transactions"
+
+
+def test_user_can_add_external_bank_accounts():
+ assert "add_external_accounts" == "add_external_accounts"
+
+
+def test_user_can_view_external_bank_accounts():
+ assert "view_external_accounts" == "view_external_accounts"
+
+
+def test_user_can_remove_external_bank_accounts():
+ assert "remove_external_accounts" == "remove_external_accounts"
+
+
+def test_user_can_view_international_transfers():
+ assert "view_international_transfers" == "view_international_transfers"
+
+
+def test_user_can_initiate_international_transfers():
+ assert "initiate_international_transfers" == "initiate_international_transfers"
+
+
+def test_user_can_cancel_international_transfers():
+ assert "cancel_international_transfers" == "cancel_international_transfers"
+
+
+def test_user_can_track_international_transfer_status():
+ assert "track_international_transfers" == "track_international_transfers"
+
+
+def test_user_can_view_forex_rates():
+ assert "view_forex_rates" == "view_forex_rates"
+
+
+def test_user_can_set_forex_alerts():
+ assert "set_forex_alerts" == "set_forex_alerts"
+
+
+def test_user_can_update_forex_alerts():
+ assert "update_forex_alerts" == "update_forex_alerts"
+
+
+def test_user_can_view_branch_locations():
+ assert "view_branch_locations" == "view_branch_locations"
+
+
+def test_user_can_schedule_appointments_at_branches():
+ assert "schedule_branch_appointments" == "schedule_branch_appointments"
+
+
+def test_user_can_view_atm_locations():
+ assert "view_atm_locations" == "view_atm_locations"
+
+
+def test_user_can_report_fraudulent_activity():
+ assert "report_fraudulent_activity" == "report_fraudulent_activity"
+
+
+def test_user_can_dispute_transactions():
+ assert "dispute_transactions" == "dispute_transactions"
+
+
+def test_user_can_view_dispute_status():
+ assert "view_dispute_status" == "view_dispute_status"
+
+
+def test_user_can_view_security_settings():
+ assert "view_security_settings" == "view_security_settings"
+
+
+def test_user_can_update_security_settings():
+ assert "update_security_settings" == "update_security_settings"
+
+
+def test_user_can_enable_sms_alerts():
+ assert "enable_sms_alerts" == "enable_sms_alerts"
+
+
+def test_user_can_disable_sms_alerts():
+ assert "disable_sms_alerts" == "disable_sms_alerts"
+
+
+def test_user_can_enable_email_alerts():
+ assert "enable_email_alerts" == "enable_email_alerts"
+
+
+def test_user_can_disable_email_alerts():
+ assert "disable_email_alerts" == "disable_email_alerts"
+
+
+def test_user_can_enable_push_notifications():
+ assert "enable_push_notifications" == "enable_push_notifications"
+
+
+def test_user_can_disable_push_notifications():
+ assert "disable_push_notifications" == "disable_push_notifications"
+
+
+def test_user_can_view_account_limits():
+ assert "view_account_limits" == "view_account_limits"
+
+
+def test_user_can_update_account_limits():
+ assert "update_account_limits" == "update_account_limits"
+
+
+def test_user_can_view_card_limits():
+ assert "view_card_limits" == "view_card_limits"
+
+
+def test_user_can_update_card_limits():
+ assert "update_card_limits" == "update_card_limits"
diff --git a/python-tests/test_mortgages.py b/python-tests/test_mortgages.py
new file mode 100644
index 0000000..ce53699
--- /dev/null
+++ b/python-tests/test_mortgages.py
@@ -0,0 +1,549 @@
+import pytest
+
+
+def test_user_can_create_a_mortgage_application():
+ assert "mortgage" == "mortgage"
+
+
+def test_user_can_create_a_savings_account():
+ assert "savings" == "savings"
+
+
+def test_user_can_create_a_checking_account():
+ assert "checking" == "checking"
+
+
+def test_user_can_apply_for_a_credit_card():
+ assert "credit_card" == "credit_card"
+
+
+def test_user_can_transfer_funds_between_accounts():
+ assert "fund_transfer" == "fund_transfer"
+
+
+def test_user_can_deposit_money_into_savings():
+ assert "deposit" == "deposit"
+
+
+def test_user_can_withdraw_money_from_checking():
+ assert "withdrawal" == "withdrawal"
+
+
+def test_user_can_check_account_balance():
+ assert "balance_check" == "balance_check"
+
+
+def test_user_can_view_transaction_history():
+ assert "transaction_history" == "transaction_history"
+
+
+def test_user_can_setup_direct_deposit():
+ assert "direct_deposit" == "direct_deposit"
+
+
+def test_user_can_pay_bills_online():
+ assert "bill_pay" == "bill_pay"
+
+
+def test_user_can_update_personal_information():
+ assert "update_info" == "update_info"
+
+
+def test_user_can_add_a_new_payee():
+ assert "add_payee" == "add_payee"
+
+
+def test_user_can_remove_a_payee():
+ assert "remove_payee" == "remove_payee"
+
+
+def test_user_can_request_a_loan():
+ assert "loan_request" == "loan_request"
+
+
+def test_user_can_view_loan_status():
+ assert "loan_status" == "loan_status"
+
+
+def test_user_can_view_mortgage_details():
+ assert "mortgage_details" == "mortgage_details"
+
+
+def test_user_can_calculate_loan_eligibility():
+ assert "loan_eligibility" == "loan_eligibility"
+
+
+def test_user_can_schedule_appointments_with_bankers():
+ assert "schedule_appointment" == "schedule_appointment"
+
+
+def test_user_can_send_messages_to_customer_service():
+ assert "send_message" == "send_message"
+
+
+def test_user_can_view_investment_portfolio():
+ assert "view_investment" == "view_investment"
+
+
+def test_user_can_buy_stocks():
+ assert "buy_stocks" == "buy_stocks"
+
+
+def test_user_can_sell_stocks():
+ assert "sell_stocks" == "sell_stocks"
+
+
+def test_user_can_view_stock_market_trends():
+ assert "market_trends" == "market_trends"
+
+
+def test_user_can_apply_for_auto_loan():
+ assert "auto_loan" == "auto_loan"
+
+
+def test_user_can_apply_for_personal_loan():
+ assert "personal_loan" == "personal_loan"
+
+
+def test_user_can_setup_recurring_transfers():
+ assert "recurring_transfer" == "recurring_transfer"
+
+
+def test_user_can_edit_scheduled_transfers():
+ assert "edit_transfer" == "edit_transfer"
+
+
+def test_user_can_cancel_scheduled_transfers():
+ assert "cancel_transfer" == "cancel_transfer"
+
+
+def test_user_can_enable_two_factor_authentication():
+ assert "two_factor" == "two_factor"
+
+
+def test_user_can_disable_two_factor_authentication():
+ assert "disable_two_factor" == "disable_two_factor"
+
+
+def test_user_can_reset_password():
+ assert "reset_password" == "reset_password"
+
+
+def test_user_can_change_pin():
+ assert "change_pin" == "change_pin"
+
+
+def test_user_can_activate_new_card():
+ assert "activate_card" == "activate_card"
+
+
+def test_user_can_freeze_card():
+ assert "freeze_card" == "freeze_card"
+
+
+def test_user_can_unfreeze_card():
+ assert "unfreeze_card" == "unfreeze_card"
+
+
+def test_user_can_report_lost_card():
+ assert "report_lost_card" == "report_lost_card"
+
+
+def test_user_can_request_new_card():
+ assert "request_new_card" == "request_new_card"
+
+
+def test_user_can_apply_for_overdraft_protection():
+ assert "overdraft_protection" == "overdraft_protection"
+
+
+def test_user_can_disable_overdraft_protection():
+ assert "disable_overdraft" == "disable_overdraft"
+
+
+def test_user_can_set_transaction_alerts():
+ assert "set_alerts" == "set_alerts"
+
+
+def test_user_can_update_alert_preferences():
+ assert "update_alerts" == "update_alerts"
+
+
+def test_user_can_view_account_statements():
+ assert "view_statements" == "view_statements"
+
+
+def test_user_can_download_account_statements():
+ assert "download_statements" == "download_statements"
+
+
+def test_user_can_request_statement_by_mail():
+ assert "request_statement" == "request_statement"
+
+
+def test_user_can_view_tax_documents():
+ assert "view_tax_documents" == "view_tax_documents"
+
+
+def test_user_can_download_tax_documents():
+ assert "download_tax_documents" == "download_tax_documents"
+
+
+def test_user_can_view_credit_score():
+ assert "view_credit_score" == "view_credit_score"
+
+
+def test_user_can_update_notification_preferences():
+ assert "update_notifications" == "update_notifications"
+
+
+def test_user_can_set_up_savings_goals():
+ assert "savings_goals" == "savings_goals"
+
+
+def test_user_can_track_savings_goals():
+ assert "track_savings_goals" == "track_savings_goals"
+
+
+def test_user_can_modify_savings_goals():
+ assert "modify_savings_goals" == "modify_savings_goals"
+
+
+def test_user_can_delete_savings_goals():
+ assert "delete_savings_goals" == "delete_savings_goals"
+
+
+def test_user_can_open_a_fixed_deposit_account():
+ assert "fixed_deposit" == "fixed_deposit"
+
+
+def test_user_can_view_fixed_deposit_details():
+ assert "view_fixed_deposit" == "view_fixed_deposit"
+
+
+def test_user_can_close_fixed_deposit_account():
+ assert "close_fixed_deposit" == "close_fixed_deposit"
+
+
+def test_user_can_open_a_recurring_deposit_account():
+ assert "recurring_deposit" == "recurring_deposit"
+
+
+def test_user_can_view_recurring_deposit_details():
+ assert "view_recurring_deposit" == "view_recurring_deposit"
+
+
+def test_user_can_close_recurring_deposit_account():
+ assert "close_recurring_deposit" == "close_recurring_deposit"
+
+
+def test_user_can_apply_for_student_loan():
+ assert "student_loan" == "student_loan"
+
+
+def test_user_can_view_student_loan_status():
+ assert "view_student_loan" == "view_student_loan"
+
+
+def test_user_can_apply_for_home_equity_loan():
+ assert "home_equity_loan" == "home_equity_loan"
+
+
+def test_user_can_view_home_equity_loan_status():
+ assert "view_home_equity_loan" == "view_home_equity_loan"
+
+
+def test_user_can_schedule_bill_payments():
+ assert "schedule_bill_payments" == "schedule_bill_payments"
+
+
+def test_user_can_edit_scheduled_bill_payments():
+ assert "edit_bill_payments" == "edit_bill_payments"
+
+
+def test_user_can_cancel_scheduled_bill_payments():
+ assert "cancel_bill_payments" == "cancel_bill_payments"
+
+
+def test_user_can_view_payment_history():
+ assert "view_payment_history" == "view_payment_history"
+
+
+def test_user_can_view_upcoming_payments():
+ assert "view_upcoming_payments" == "view_upcoming_payments"
+
+
+def test_user_can_view_investment_summary():
+ assert "view_investment_summary" == "view_investment_summary"
+
+
+def test_user_can_view_investment_performance():
+ assert "view_investment_performance" == "view_investment_performance"
+
+
+def test_user_can_view_dividend_payments():
+ assert "view_dividend_payments" == "view_dividend_payments"
+
+
+def test_user_can_reinvest_dividends():
+ assert "reinvest_dividends" == "reinvest_dividends"
+
+
+def test_user_can_change_investment_strategy():
+ assert "change_investment_strategy" == "change_investment_strategy"
+
+
+def test_user_can_view_retirement_accounts():
+ assert "view_retirement_accounts" == "view_retirement_accounts"
+
+
+def test_user_can_contribute_to_retirement_accounts():
+ assert "contribute_retirement_accounts" == "contribute_retirement_accounts"
+
+
+def test_user_can_withdraw_from_retirement_accounts():
+ assert "withdraw_retirement_accounts" == "withdraw_retirement_accounts"
+
+
+def test_user_can_view_loan_payment_schedule():
+ assert "view_loan_payment_schedule" == "view_loan_payment_schedule"
+
+
+def test_user_can_make_loan_payments():
+ assert "make_loan_payments" == "make_loan_payments"
+
+
+def test_user_can_view_loan_payment_history():
+ assert "view_loan_payment_history" == "view_loan_payment_history"
+
+
+def test_user_can_change_auto_pay_settings():
+ assert "change_auto_pay" == "change_auto_pay"
+
+
+def test_user_can_setup_auto_pay_for_loans():
+ assert "setup_auto_pay" == "setup_auto_pay"
+
+
+def test_user_can_view_auto_pay_settings():
+ assert "view_auto_pay_settings" == "view_auto_pay_settings"
+
+
+def test_user_can_change_loan_due_date():
+ assert "change_loan_due_date" == "change_loan_due_date"
+
+
+def test_user_can_apply_for_loan_deferment():
+ assert "apply_loan_deferment" == "apply_loan_deferment"
+
+
+def test_user_can_view_deferment_status():
+ assert "view_deferment_status" == "view_deferment_status"
+
+
+def test_user_can_repay_loan_early():
+ assert "repay_loan_early" == "repay_loan_early"
+
+
+def test_user_can_request_loan_amortization_schedule():
+ assert "loan_amortization_schedule" == "loan_amortization_schedule"
+
+
+def test_user_can_view_account_summary():
+ assert "view_account_summary" == "view_account_summary"
+
+
+def test_user_can_view_interest_earned():
+ assert "view_interest_earned" == "view_interest_earned"
+
+
+def test_user_can_view_fees_charged():
+ assert "view_fees_charged" == "view_fees_charged"
+
+
+def test_user_can_view_available_credit():
+ assert "view_available_credit" == "view_available_credit"
+
+
+def test_user_can_request_credit_increase():
+ assert "request_credit_increase" == "request_credit_increase"
+
+
+def test_user_can_view_credit_card_transactions():
+ assert "view_credit_card_transactions" == "view_credit_card_transactions"
+
+
+def test_user_can_view_rewards_points():
+ assert "view_rewards_points" == "view_rewards_points"
+
+
+def test_user_can_redeem_rewards_points():
+ assert "redeem_rewards_points" == "redeem_rewards_points"
+
+
+def test_user_can_transfer_rewards_points():
+ assert "transfer_rewards_points" == "transfer_rewards_points"
+
+
+def test_user_can_view_spending_categories():
+ assert "view_spending_categories" == "view_spending_categories"
+
+
+def test_user_can_set_budget_limits():
+ assert "set_budget_limits" == "set_budget_limits"
+
+
+def test_user_can_view_budget_status():
+ assert "view_budget_status" == "view_budget_status"
+
+
+def test_user_can_edit_budget_limits():
+ assert "edit_budget_limits" == "edit_budget_limits"
+
+
+def test_user_can_view_net_worth():
+ assert "view_net_worth" == "view_net_worth"
+
+
+def test_user_can_view_income_expense_summary():
+ assert "view_income_expense_summary" == "view_income_expense_summary"
+
+
+def test_user_can_view_account_balance_details():
+ assert "view_account_balance_details" == "view_account_balance_details"
+
+
+def test_user_can_view_recent_activity():
+ assert "view_recent_activity" == "view_recent_activity"
+
+
+def test_user_can_view_scheduled_transactions():
+ assert "view_scheduled_transactions" == "view_scheduled_transactions"
+
+
+def test_user_can_cancel_scheduled_transactions():
+ assert "cancel_scheduled_transactions" == "cancel_scheduled_transactions"
+
+
+def test_user_can_view_recurring_transactions():
+ assert "view_recurring_transactions" == "view_recurring_transactions"
+
+
+def test_user_can_edit_recurring_transactions():
+ assert "edit_recurring_transactions" == "edit_recurring_transactions"
+
+
+def test_user_can_delete_recurring_transactions():
+ assert "delete_recurring_transactions" == "delete_recurring_transactions"
+
+
+def test_user_can_add_external_bank_accounts():
+ assert "add_external_accounts" == "add_external_accounts"
+
+
+def test_user_can_view_external_bank_accounts():
+ assert "view_external_accounts" == "view_external_accounts"
+
+
+def test_user_can_remove_external_bank_accounts():
+ assert "remove_external_accounts" == "remove_external_accounts"
+
+
+def test_user_can_view_international_transfers():
+ assert "view_international_transfers" == "view_international_transfers"
+
+
+def test_user_can_initiate_international_transfers():
+ assert "initiate_international_transfers" == "initiate_international_transfers"
+
+
+def test_user_can_cancel_international_transfers():
+ assert "cancel_international_transfers" == "cancel_international_transfers"
+
+
+def test_user_can_track_international_transfer_status():
+ assert "track_international_transfers" == "track_international_transfers"
+
+
+def test_user_can_view_forex_rates():
+ assert "view_forex_rates" == "view_forex_rates"
+
+
+def test_user_can_set_forex_alerts():
+ assert "set_forex_alerts" == "set_forex_alerts"
+
+
+def test_user_can_update_forex_alerts():
+ assert "update_forex_alerts" == "update_forex_alerts"
+
+
+def test_user_can_view_branch_locations():
+ assert "view_branch_locations" == "view_branch_locations"
+
+
+def test_user_can_schedule_appointments_at_branches():
+ assert "schedule_branch_appointments" == "schedule_branch_appointments"
+
+
+def test_user_can_view_atm_locations():
+ assert "view_atm_locations" == "view_atm_locations"
+
+
+def test_user_can_report_fraudulent_activity():
+ assert "report_fraudulent_activity" == "report_fraudulent_activity"
+
+
+def test_user_can_dispute_transactions():
+ assert "dispute_transactions" == "dispute_transactions"
+
+
+def test_user_can_view_dispute_status():
+ assert "view_dispute_status" == "view_dispute_status"
+
+
+def test_user_can_view_security_settings():
+ assert "view_security_settings" == "view_security_settings"
+
+
+def test_user_can_update_security_settings():
+ assert "update_security_settings" == "update_security_settings"
+
+
+def test_user_can_enable_sms_alerts():
+ assert "enable_sms_alerts" == "enable_sms_alerts"
+
+
+def test_user_can_disable_sms_alerts():
+ assert "disable_sms_alerts" == "disable_sms_alerts"
+
+
+def test_user_can_enable_email_alerts():
+ assert "enable_email_alerts" == "enable_email_alerts"
+
+
+def test_user_can_disable_email_alerts():
+ assert "disable_email_alerts" == "disable_email_alerts"
+
+
+def test_user_can_enable_push_notifications():
+ assert "enable_push_notifications" == "enable_push_notifications"
+
+
+def test_user_can_disable_push_notifications():
+ assert "disable_push_notifications" == "disable_push_notifications"
+
+
+def test_user_can_view_account_limits():
+ assert "view_account_limits" == "view_account_limits"
+
+
+def test_user_can_update_account_limits():
+ assert "update_account_limits" == "update_account_limits"
+
+
+def test_user_can_view_card_limits():
+ assert "view_card_limits" == "view_card_limits"
+
+
+def test_user_can_update_card_limits():
+ assert "update_card_limits" == "update_card_limits"
diff --git a/python-tests/test_payments.py b/python-tests/test_payments.py
new file mode 100644
index 0000000..ce53699
--- /dev/null
+++ b/python-tests/test_payments.py
@@ -0,0 +1,549 @@
+import pytest
+
+
+def test_user_can_create_a_mortgage_application():
+ assert "mortgage" == "mortgage"
+
+
+def test_user_can_create_a_savings_account():
+ assert "savings" == "savings"
+
+
+def test_user_can_create_a_checking_account():
+ assert "checking" == "checking"
+
+
+def test_user_can_apply_for_a_credit_card():
+ assert "credit_card" == "credit_card"
+
+
+def test_user_can_transfer_funds_between_accounts():
+ assert "fund_transfer" == "fund_transfer"
+
+
+def test_user_can_deposit_money_into_savings():
+ assert "deposit" == "deposit"
+
+
+def test_user_can_withdraw_money_from_checking():
+ assert "withdrawal" == "withdrawal"
+
+
+def test_user_can_check_account_balance():
+ assert "balance_check" == "balance_check"
+
+
+def test_user_can_view_transaction_history():
+ assert "transaction_history" == "transaction_history"
+
+
+def test_user_can_setup_direct_deposit():
+ assert "direct_deposit" == "direct_deposit"
+
+
+def test_user_can_pay_bills_online():
+ assert "bill_pay" == "bill_pay"
+
+
+def test_user_can_update_personal_information():
+ assert "update_info" == "update_info"
+
+
+def test_user_can_add_a_new_payee():
+ assert "add_payee" == "add_payee"
+
+
+def test_user_can_remove_a_payee():
+ assert "remove_payee" == "remove_payee"
+
+
+def test_user_can_request_a_loan():
+ assert "loan_request" == "loan_request"
+
+
+def test_user_can_view_loan_status():
+ assert "loan_status" == "loan_status"
+
+
+def test_user_can_view_mortgage_details():
+ assert "mortgage_details" == "mortgage_details"
+
+
+def test_user_can_calculate_loan_eligibility():
+ assert "loan_eligibility" == "loan_eligibility"
+
+
+def test_user_can_schedule_appointments_with_bankers():
+ assert "schedule_appointment" == "schedule_appointment"
+
+
+def test_user_can_send_messages_to_customer_service():
+ assert "send_message" == "send_message"
+
+
+def test_user_can_view_investment_portfolio():
+ assert "view_investment" == "view_investment"
+
+
+def test_user_can_buy_stocks():
+ assert "buy_stocks" == "buy_stocks"
+
+
+def test_user_can_sell_stocks():
+ assert "sell_stocks" == "sell_stocks"
+
+
+def test_user_can_view_stock_market_trends():
+ assert "market_trends" == "market_trends"
+
+
+def test_user_can_apply_for_auto_loan():
+ assert "auto_loan" == "auto_loan"
+
+
+def test_user_can_apply_for_personal_loan():
+ assert "personal_loan" == "personal_loan"
+
+
+def test_user_can_setup_recurring_transfers():
+ assert "recurring_transfer" == "recurring_transfer"
+
+
+def test_user_can_edit_scheduled_transfers():
+ assert "edit_transfer" == "edit_transfer"
+
+
+def test_user_can_cancel_scheduled_transfers():
+ assert "cancel_transfer" == "cancel_transfer"
+
+
+def test_user_can_enable_two_factor_authentication():
+ assert "two_factor" == "two_factor"
+
+
+def test_user_can_disable_two_factor_authentication():
+ assert "disable_two_factor" == "disable_two_factor"
+
+
+def test_user_can_reset_password():
+ assert "reset_password" == "reset_password"
+
+
+def test_user_can_change_pin():
+ assert "change_pin" == "change_pin"
+
+
+def test_user_can_activate_new_card():
+ assert "activate_card" == "activate_card"
+
+
+def test_user_can_freeze_card():
+ assert "freeze_card" == "freeze_card"
+
+
+def test_user_can_unfreeze_card():
+ assert "unfreeze_card" == "unfreeze_card"
+
+
+def test_user_can_report_lost_card():
+ assert "report_lost_card" == "report_lost_card"
+
+
+def test_user_can_request_new_card():
+ assert "request_new_card" == "request_new_card"
+
+
+def test_user_can_apply_for_overdraft_protection():
+ assert "overdraft_protection" == "overdraft_protection"
+
+
+def test_user_can_disable_overdraft_protection():
+ assert "disable_overdraft" == "disable_overdraft"
+
+
+def test_user_can_set_transaction_alerts():
+ assert "set_alerts" == "set_alerts"
+
+
+def test_user_can_update_alert_preferences():
+ assert "update_alerts" == "update_alerts"
+
+
+def test_user_can_view_account_statements():
+ assert "view_statements" == "view_statements"
+
+
+def test_user_can_download_account_statements():
+ assert "download_statements" == "download_statements"
+
+
+def test_user_can_request_statement_by_mail():
+ assert "request_statement" == "request_statement"
+
+
+def test_user_can_view_tax_documents():
+ assert "view_tax_documents" == "view_tax_documents"
+
+
+def test_user_can_download_tax_documents():
+ assert "download_tax_documents" == "download_tax_documents"
+
+
+def test_user_can_view_credit_score():
+ assert "view_credit_score" == "view_credit_score"
+
+
+def test_user_can_update_notification_preferences():
+ assert "update_notifications" == "update_notifications"
+
+
+def test_user_can_set_up_savings_goals():
+ assert "savings_goals" == "savings_goals"
+
+
+def test_user_can_track_savings_goals():
+ assert "track_savings_goals" == "track_savings_goals"
+
+
+def test_user_can_modify_savings_goals():
+ assert "modify_savings_goals" == "modify_savings_goals"
+
+
+def test_user_can_delete_savings_goals():
+ assert "delete_savings_goals" == "delete_savings_goals"
+
+
+def test_user_can_open_a_fixed_deposit_account():
+ assert "fixed_deposit" == "fixed_deposit"
+
+
+def test_user_can_view_fixed_deposit_details():
+ assert "view_fixed_deposit" == "view_fixed_deposit"
+
+
+def test_user_can_close_fixed_deposit_account():
+ assert "close_fixed_deposit" == "close_fixed_deposit"
+
+
+def test_user_can_open_a_recurring_deposit_account():
+ assert "recurring_deposit" == "recurring_deposit"
+
+
+def test_user_can_view_recurring_deposit_details():
+ assert "view_recurring_deposit" == "view_recurring_deposit"
+
+
+def test_user_can_close_recurring_deposit_account():
+ assert "close_recurring_deposit" == "close_recurring_deposit"
+
+
+def test_user_can_apply_for_student_loan():
+ assert "student_loan" == "student_loan"
+
+
+def test_user_can_view_student_loan_status():
+ assert "view_student_loan" == "view_student_loan"
+
+
+def test_user_can_apply_for_home_equity_loan():
+ assert "home_equity_loan" == "home_equity_loan"
+
+
+def test_user_can_view_home_equity_loan_status():
+ assert "view_home_equity_loan" == "view_home_equity_loan"
+
+
+def test_user_can_schedule_bill_payments():
+ assert "schedule_bill_payments" == "schedule_bill_payments"
+
+
+def test_user_can_edit_scheduled_bill_payments():
+ assert "edit_bill_payments" == "edit_bill_payments"
+
+
+def test_user_can_cancel_scheduled_bill_payments():
+ assert "cancel_bill_payments" == "cancel_bill_payments"
+
+
+def test_user_can_view_payment_history():
+ assert "view_payment_history" == "view_payment_history"
+
+
+def test_user_can_view_upcoming_payments():
+ assert "view_upcoming_payments" == "view_upcoming_payments"
+
+
+def test_user_can_view_investment_summary():
+ assert "view_investment_summary" == "view_investment_summary"
+
+
+def test_user_can_view_investment_performance():
+ assert "view_investment_performance" == "view_investment_performance"
+
+
+def test_user_can_view_dividend_payments():
+ assert "view_dividend_payments" == "view_dividend_payments"
+
+
+def test_user_can_reinvest_dividends():
+ assert "reinvest_dividends" == "reinvest_dividends"
+
+
+def test_user_can_change_investment_strategy():
+ assert "change_investment_strategy" == "change_investment_strategy"
+
+
+def test_user_can_view_retirement_accounts():
+ assert "view_retirement_accounts" == "view_retirement_accounts"
+
+
+def test_user_can_contribute_to_retirement_accounts():
+ assert "contribute_retirement_accounts" == "contribute_retirement_accounts"
+
+
+def test_user_can_withdraw_from_retirement_accounts():
+ assert "withdraw_retirement_accounts" == "withdraw_retirement_accounts"
+
+
+def test_user_can_view_loan_payment_schedule():
+ assert "view_loan_payment_schedule" == "view_loan_payment_schedule"
+
+
+def test_user_can_make_loan_payments():
+ assert "make_loan_payments" == "make_loan_payments"
+
+
+def test_user_can_view_loan_payment_history():
+ assert "view_loan_payment_history" == "view_loan_payment_history"
+
+
+def test_user_can_change_auto_pay_settings():
+ assert "change_auto_pay" == "change_auto_pay"
+
+
+def test_user_can_setup_auto_pay_for_loans():
+ assert "setup_auto_pay" == "setup_auto_pay"
+
+
+def test_user_can_view_auto_pay_settings():
+ assert "view_auto_pay_settings" == "view_auto_pay_settings"
+
+
+def test_user_can_change_loan_due_date():
+ assert "change_loan_due_date" == "change_loan_due_date"
+
+
+def test_user_can_apply_for_loan_deferment():
+ assert "apply_loan_deferment" == "apply_loan_deferment"
+
+
+def test_user_can_view_deferment_status():
+ assert "view_deferment_status" == "view_deferment_status"
+
+
+def test_user_can_repay_loan_early():
+ assert "repay_loan_early" == "repay_loan_early"
+
+
+def test_user_can_request_loan_amortization_schedule():
+ assert "loan_amortization_schedule" == "loan_amortization_schedule"
+
+
+def test_user_can_view_account_summary():
+ assert "view_account_summary" == "view_account_summary"
+
+
+def test_user_can_view_interest_earned():
+ assert "view_interest_earned" == "view_interest_earned"
+
+
+def test_user_can_view_fees_charged():
+ assert "view_fees_charged" == "view_fees_charged"
+
+
+def test_user_can_view_available_credit():
+ assert "view_available_credit" == "view_available_credit"
+
+
+def test_user_can_request_credit_increase():
+ assert "request_credit_increase" == "request_credit_increase"
+
+
+def test_user_can_view_credit_card_transactions():
+ assert "view_credit_card_transactions" == "view_credit_card_transactions"
+
+
+def test_user_can_view_rewards_points():
+ assert "view_rewards_points" == "view_rewards_points"
+
+
+def test_user_can_redeem_rewards_points():
+ assert "redeem_rewards_points" == "redeem_rewards_points"
+
+
+def test_user_can_transfer_rewards_points():
+ assert "transfer_rewards_points" == "transfer_rewards_points"
+
+
+def test_user_can_view_spending_categories():
+ assert "view_spending_categories" == "view_spending_categories"
+
+
+def test_user_can_set_budget_limits():
+ assert "set_budget_limits" == "set_budget_limits"
+
+
+def test_user_can_view_budget_status():
+ assert "view_budget_status" == "view_budget_status"
+
+
+def test_user_can_edit_budget_limits():
+ assert "edit_budget_limits" == "edit_budget_limits"
+
+
+def test_user_can_view_net_worth():
+ assert "view_net_worth" == "view_net_worth"
+
+
+def test_user_can_view_income_expense_summary():
+ assert "view_income_expense_summary" == "view_income_expense_summary"
+
+
+def test_user_can_view_account_balance_details():
+ assert "view_account_balance_details" == "view_account_balance_details"
+
+
+def test_user_can_view_recent_activity():
+ assert "view_recent_activity" == "view_recent_activity"
+
+
+def test_user_can_view_scheduled_transactions():
+ assert "view_scheduled_transactions" == "view_scheduled_transactions"
+
+
+def test_user_can_cancel_scheduled_transactions():
+ assert "cancel_scheduled_transactions" == "cancel_scheduled_transactions"
+
+
+def test_user_can_view_recurring_transactions():
+ assert "view_recurring_transactions" == "view_recurring_transactions"
+
+
+def test_user_can_edit_recurring_transactions():
+ assert "edit_recurring_transactions" == "edit_recurring_transactions"
+
+
+def test_user_can_delete_recurring_transactions():
+ assert "delete_recurring_transactions" == "delete_recurring_transactions"
+
+
+def test_user_can_add_external_bank_accounts():
+ assert "add_external_accounts" == "add_external_accounts"
+
+
+def test_user_can_view_external_bank_accounts():
+ assert "view_external_accounts" == "view_external_accounts"
+
+
+def test_user_can_remove_external_bank_accounts():
+ assert "remove_external_accounts" == "remove_external_accounts"
+
+
+def test_user_can_view_international_transfers():
+ assert "view_international_transfers" == "view_international_transfers"
+
+
+def test_user_can_initiate_international_transfers():
+ assert "initiate_international_transfers" == "initiate_international_transfers"
+
+
+def test_user_can_cancel_international_transfers():
+ assert "cancel_international_transfers" == "cancel_international_transfers"
+
+
+def test_user_can_track_international_transfer_status():
+ assert "track_international_transfers" == "track_international_transfers"
+
+
+def test_user_can_view_forex_rates():
+ assert "view_forex_rates" == "view_forex_rates"
+
+
+def test_user_can_set_forex_alerts():
+ assert "set_forex_alerts" == "set_forex_alerts"
+
+
+def test_user_can_update_forex_alerts():
+ assert "update_forex_alerts" == "update_forex_alerts"
+
+
+def test_user_can_view_branch_locations():
+ assert "view_branch_locations" == "view_branch_locations"
+
+
+def test_user_can_schedule_appointments_at_branches():
+ assert "schedule_branch_appointments" == "schedule_branch_appointments"
+
+
+def test_user_can_view_atm_locations():
+ assert "view_atm_locations" == "view_atm_locations"
+
+
+def test_user_can_report_fraudulent_activity():
+ assert "report_fraudulent_activity" == "report_fraudulent_activity"
+
+
+def test_user_can_dispute_transactions():
+ assert "dispute_transactions" == "dispute_transactions"
+
+
+def test_user_can_view_dispute_status():
+ assert "view_dispute_status" == "view_dispute_status"
+
+
+def test_user_can_view_security_settings():
+ assert "view_security_settings" == "view_security_settings"
+
+
+def test_user_can_update_security_settings():
+ assert "update_security_settings" == "update_security_settings"
+
+
+def test_user_can_enable_sms_alerts():
+ assert "enable_sms_alerts" == "enable_sms_alerts"
+
+
+def test_user_can_disable_sms_alerts():
+ assert "disable_sms_alerts" == "disable_sms_alerts"
+
+
+def test_user_can_enable_email_alerts():
+ assert "enable_email_alerts" == "enable_email_alerts"
+
+
+def test_user_can_disable_email_alerts():
+ assert "disable_email_alerts" == "disable_email_alerts"
+
+
+def test_user_can_enable_push_notifications():
+ assert "enable_push_notifications" == "enable_push_notifications"
+
+
+def test_user_can_disable_push_notifications():
+ assert "disable_push_notifications" == "disable_push_notifications"
+
+
+def test_user_can_view_account_limits():
+ assert "view_account_limits" == "view_account_limits"
+
+
+def test_user_can_update_account_limits():
+ assert "update_account_limits" == "update_account_limits"
+
+
+def test_user_can_view_card_limits():
+ assert "view_card_limits" == "view_card_limits"
+
+
+def test_user_can_update_card_limits():
+ assert "update_card_limits" == "update_card_limits"