mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-30 21:21:09 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			18550 lines
		
	
	
		
			322 KiB
		
	
	
	
		
			CSS
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			18550 lines
		
	
	
		
			322 KiB
		
	
	
	
		
			CSS
		
	
	
	
		
			Vendored
		
	
	
	
| @charset "UTF-8";
 | |
| 
 | |
| /*!
 | |
|  * Bootstrap v4.3.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)
 | |
|  */
 | |
| 
 | |
| :root {
 | |
|   --blue: #007bff;
 | |
|   --indigo: #6610f2;
 | |
|   --purple: #6f42c1;
 | |
|   --pink: #e83e8c;
 | |
|   --red: #dc3545;
 | |
|   --orange: #fd7e14;
 | |
|   --yellow: #ffc107;
 | |
|   --green: #28a745;
 | |
|   --teal: #20c997;
 | |
|   --cyan: #17a2b8;
 | |
|   --white: #fff;
 | |
|   --gray: #6c757d;
 | |
|   --gray-dark: #343a40;
 | |
|   --primary: #5851D8;
 | |
|   --secondary: #55547A;
 | |
|   --success: #00C99C;
 | |
|   --info: #15B2EC;
 | |
|   --warning: #F3AF4E;
 | |
|   --danger: #FB7178;
 | |
|   --light: #817AE3;
 | |
|   --dark: #55547A;
 | |
|   --breakpoint-xs: 0;
 | |
|   --breakpoint-sm: 576px;
 | |
|   --breakpoint-md: 768px;
 | |
|   --breakpoint-lg: 992px;
 | |
|   --breakpoint-xl: 1200px;
 | |
|   --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
 | |
|   --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
 | |
| }
 | |
| 
 | |
| *,
 | |
| *::before,
 | |
| *::after {
 | |
|   box-sizing: border-box;
 | |
| }
 | |
| 
 | |
| html {
 | |
|   font-family: sans-serif;
 | |
|   line-height: 1.15;
 | |
|   -webkit-text-size-adjust: 100%;
 | |
|   -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
 | |
| }
 | |
| 
 | |
| article,
 | |
| aside,
 | |
| figcaption,
 | |
| figure,
 | |
| footer,
 | |
| header,
 | |
| hgroup,
 | |
| main,
 | |
| nav,
 | |
| section {
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| body {
 | |
|   margin: 0;
 | |
|   font-family: "Poppins", sans-serif;
 | |
|   font-size: 1rem;
 | |
|   font-weight: 400;
 | |
|   line-height: 1.5;
 | |
|   color: #212529;
 | |
|   text-align: left;
 | |
|   background-color: #fff;
 | |
| }
 | |
| 
 | |
| [tabindex="-1"]:focus {
 | |
|   outline: 0 !important;
 | |
| }
 | |
| 
 | |
| hr {
 | |
|   box-sizing: content-box;
 | |
|   height: 0;
 | |
|   overflow: visible;
 | |
| }
 | |
| 
 | |
| h1,
 | |
| h2,
 | |
| h3,
 | |
| h4,
 | |
| h5,
 | |
| h6 {
 | |
|   margin-top: 0;
 | |
|   margin-bottom: 1.2rem;
 | |
| }
 | |
| 
 | |
| p {
 | |
|   margin-top: 0;
 | |
|   margin-bottom: 1rem;
 | |
| }
 | |
| 
 | |
| abbr[title],
 | |
| abbr[data-original-title] {
 | |
|   text-decoration: underline;
 | |
|   -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;
 | |
| }
 | |
| 
 | |
| address {
 | |
|   margin-bottom: 1rem;
 | |
|   font-style: normal;
 | |
|   line-height: inherit;
 | |
| }
 | |
| 
 | |
| ol,
 | |
| ul,
 | |
| dl {
 | |
|   margin-top: 0;
 | |
|   margin-bottom: 1rem;
 | |
| }
 | |
| 
 | |
| ol ol,
 | |
| ul ul,
 | |
| ol ul,
 | |
| ul ol {
 | |
|   margin-bottom: 0;
 | |
| }
 | |
| 
 | |
| dt {
 | |
|   font-weight: 700;
 | |
| }
 | |
| 
 | |
| dd {
 | |
|   margin-bottom: 0.5rem;
 | |
|   margin-left: 0;
 | |
| }
 | |
| 
 | |
| blockquote {
 | |
|   margin: 0 0 1rem;
 | |
| }
 | |
| 
 | |
| b,
 | |
| strong {
 | |
|   font-weight: bolder;
 | |
| }
 | |
| 
 | |
| small {
 | |
|   font-size: 80%;
 | |
| }
 | |
| 
 | |
| sub,
 | |
| sup {
 | |
|   position: relative;
 | |
|   font-size: 75%;
 | |
|   line-height: 0;
 | |
|   vertical-align: baseline;
 | |
| }
 | |
| 
 | |
| sub {
 | |
|   bottom: -0.25em;
 | |
| }
 | |
| 
 | |
| sup {
 | |
|   top: -0.5em;
 | |
| }
 | |
| 
 | |
| a {
 | |
|   color: #5851D8;
 | |
|   text-decoration: none;
 | |
|   background-color: transparent;
 | |
| }
 | |
| 
 | |
| a:hover {
 | |
|   color: #3028b4;
 | |
|   text-decoration: underline;
 | |
| }
 | |
| 
 | |
| a:not([href]):not([tabindex]) {
 | |
|   color: inherit;
 | |
|   text-decoration: none;
 | |
| }
 | |
| 
 | |
| a:not([href]):not([tabindex]):hover,
 | |
| a:not([href]):not([tabindex]):focus {
 | |
|   color: inherit;
 | |
|   text-decoration: none;
 | |
| }
 | |
| 
 | |
| a:not([href]):not([tabindex]):focus {
 | |
|   outline: 0;
 | |
| }
 | |
| 
 | |
| pre,
 | |
| code,
 | |
| kbd,
 | |
| samp {
 | |
|   font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
 | |
|   font-size: 1em;
 | |
| }
 | |
| 
 | |
| pre {
 | |
|   margin-top: 0;
 | |
|   margin-bottom: 1rem;
 | |
|   overflow: auto;
 | |
| }
 | |
| 
 | |
| figure {
 | |
|   margin: 0 0 1rem;
 | |
| }
 | |
| 
 | |
| img {
 | |
|   vertical-align: middle;
 | |
|   border-style: none;
 | |
| }
 | |
| 
 | |
| svg {
 | |
|   overflow: hidden;
 | |
|   vertical-align: middle;
 | |
| }
 | |
| 
 | |
| table {
 | |
|   border-collapse: collapse;
 | |
| }
 | |
| 
 | |
| caption {
 | |
|   padding-top: 0.75rem;
 | |
|   padding-bottom: 0.75rem;
 | |
|   color: #6c757d;
 | |
|   text-align: left;
 | |
|   caption-side: bottom;
 | |
| }
 | |
| 
 | |
| th {
 | |
|   text-align: inherit;
 | |
| }
 | |
| 
 | |
| label {
 | |
|   display: inline-block;
 | |
|   margin-bottom: 0.5rem;
 | |
| }
 | |
| 
 | |
| button {
 | |
|   border-radius: 0;
 | |
| }
 | |
| 
 | |
| button:focus {
 | |
|   outline: 1px dotted;
 | |
|   outline: 5px auto -webkit-focus-ring-color;
 | |
| }
 | |
| 
 | |
| input,
 | |
| button,
 | |
| select,
 | |
| optgroup,
 | |
| textarea {
 | |
|   margin: 0;
 | |
|   font-family: inherit;
 | |
|   font-size: inherit;
 | |
|   line-height: inherit;
 | |
| }
 | |
| 
 | |
| button,
 | |
| input {
 | |
|   overflow: visible;
 | |
| }
 | |
| 
 | |
| button,
 | |
| select {
 | |
|   text-transform: none;
 | |
| }
 | |
| 
 | |
| select {
 | |
|   word-wrap: normal;
 | |
| }
 | |
| 
 | |
| button,
 | |
| [type=button],
 | |
| [type=reset],
 | |
| [type=submit] {
 | |
|   -webkit-appearance: button;
 | |
| }
 | |
| 
 | |
| button:not(:disabled),
 | |
| [type=button]:not(:disabled),
 | |
| [type=reset]:not(:disabled),
 | |
| [type=submit]:not(:disabled) {
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| button::-moz-focus-inner,
 | |
| [type=button]::-moz-focus-inner,
 | |
| [type=reset]::-moz-focus-inner,
 | |
| [type=submit]::-moz-focus-inner {
 | |
|   padding: 0;
 | |
|   border-style: none;
 | |
| }
 | |
| 
 | |
| input[type=radio],
 | |
| input[type=checkbox] {
 | |
|   box-sizing: border-box;
 | |
|   padding: 0;
 | |
| }
 | |
| 
 | |
| input[type=date],
 | |
| input[type=time],
 | |
| input[type=datetime-local],
 | |
| input[type=month] {
 | |
|   -webkit-appearance: listbox;
 | |
| }
 | |
| 
 | |
| textarea {
 | |
|   overflow: auto;
 | |
|   resize: vertical;
 | |
| }
 | |
| 
 | |
| fieldset {
 | |
|   min-width: 0;
 | |
|   padding: 0;
 | |
|   margin: 0;
 | |
|   border: 0;
 | |
| }
 | |
| 
 | |
| legend {
 | |
|   display: block;
 | |
|   width: 100%;
 | |
|   max-width: 100%;
 | |
|   padding: 0;
 | |
|   margin-bottom: 0.5rem;
 | |
|   font-size: 1.5rem;
 | |
|   line-height: inherit;
 | |
|   color: inherit;
 | |
|   white-space: normal;
 | |
| }
 | |
| 
 | |
| progress {
 | |
|   vertical-align: baseline;
 | |
| }
 | |
| 
 | |
| [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;
 | |
| }
 | |
| 
 | |
| output {
 | |
|   display: inline-block;
 | |
| }
 | |
| 
 | |
| summary {
 | |
|   display: list-item;
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| template {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| [hidden] {
 | |
|   display: none !important;
 | |
| }
 | |
| 
 | |
| h1,
 | |
| h2,
 | |
| h3,
 | |
| h4,
 | |
| h5,
 | |
| h6,
 | |
| .h1,
 | |
| .h2,
 | |
| .h3,
 | |
| .h4,
 | |
| .h5,
 | |
| .h6 {
 | |
|   margin-bottom: 1.2rem;
 | |
|   font-weight: 500;
 | |
|   line-height: 1.2;
 | |
| }
 | |
| 
 | |
| h1,
 | |
| .h1 {
 | |
|   font-size: 2.5rem;
 | |
| }
 | |
| 
 | |
| h2,
 | |
| .h2 {
 | |
|   font-size: 2rem;
 | |
| }
 | |
| 
 | |
| h3,
 | |
| .h3 {
 | |
|   font-size: 1.75rem;
 | |
| }
 | |
| 
 | |
| h4,
 | |
| .h4 {
 | |
|   font-size: 1.5rem;
 | |
| }
 | |
| 
 | |
| h5,
 | |
| .h5 {
 | |
|   font-size: 1.25rem;
 | |
| }
 | |
| 
 | |
| h6,
 | |
| .h6 {
 | |
|   font-size: 1rem;
 | |
| }
 | |
| 
 | |
| .lead {
 | |
|   font-size: 1.25rem;
 | |
|   font-weight: 300;
 | |
| }
 | |
| 
 | |
| .display-1 {
 | |
|   font-size: 6rem;
 | |
|   font-weight: 300;
 | |
|   line-height: 1.2;
 | |
| }
 | |
| 
 | |
| .display-2 {
 | |
|   font-size: 5.5rem;
 | |
|   font-weight: 300;
 | |
|   line-height: 1.2;
 | |
| }
 | |
| 
 | |
| .display-3 {
 | |
|   font-size: 4.5rem;
 | |
|   font-weight: 300;
 | |
|   line-height: 1.2;
 | |
| }
 | |
| 
 | |
| .display-4 {
 | |
|   font-size: 3.5rem;
 | |
|   font-weight: 300;
 | |
|   line-height: 1.2;
 | |
| }
 | |
| 
 | |
| hr {
 | |
|   margin-top: 1rem;
 | |
|   margin-bottom: 1rem;
 | |
|   border: 0;
 | |
|   border-top: 1px solid rgba(0, 0, 0, 0.1);
 | |
| }
 | |
| 
 | |
| small,
 | |
| .small {
 | |
|   font-size: 80%;
 | |
|   font-weight: 400;
 | |
| }
 | |
| 
 | |
| mark,
 | |
| .mark {
 | |
|   padding: 0.2em;
 | |
|   background-color: #fcf8e3;
 | |
| }
 | |
| 
 | |
| .list-unstyled {
 | |
|   padding-left: 0;
 | |
|   list-style: none;
 | |
| }
 | |
| 
 | |
| .list-inline {
 | |
|   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 {
 | |
|   margin-bottom: 1rem;
 | |
|   font-size: 1.25rem;
 | |
| }
 | |
| 
 | |
| .blockquote-footer {
 | |
|   display: block;
 | |
|   font-size: 80%;
 | |
|   color: #6c757d;
 | |
| }
 | |
| 
 | |
| .blockquote-footer::before {
 | |
|   content: "\2014\A0";
 | |
| }
 | |
| 
 | |
| .img-fluid {
 | |
|   max-width: 100%;
 | |
|   height: auto;
 | |
| }
 | |
| 
 | |
| .img-thumbnail {
 | |
|   padding: 0.25rem;
 | |
|   background-color: #fff;
 | |
|   border: 1px solid #dee2e6;
 | |
|   border-radius: 0.25rem;
 | |
|   max-width: 100%;
 | |
|   height: auto;
 | |
| }
 | |
| 
 | |
| .figure {
 | |
|   display: inline-block;
 | |
| }
 | |
| 
 | |
| .figure-img {
 | |
|   margin-bottom: 0.5rem;
 | |
|   line-height: 1;
 | |
| }
 | |
| 
 | |
| .figure-caption {
 | |
|   font-size: 90%;
 | |
|   color: #6c757d;
 | |
| }
 | |
| 
 | |
| code {
 | |
|   font-size: 87.5%;
 | |
|   color: #5851D8;
 | |
|   word-break: break-word;
 | |
| }
 | |
| 
 | |
| a > code {
 | |
|   color: inherit;
 | |
| }
 | |
| 
 | |
| kbd {
 | |
|   padding: 0.2rem 0.4rem;
 | |
|   font-size: 87.5%;
 | |
|   color: #fff;
 | |
|   background-color: #212529;
 | |
|   border-radius: 0.2rem;
 | |
| }
 | |
| 
 | |
| kbd kbd {
 | |
|   padding: 0;
 | |
|   font-size: 100%;
 | |
|   font-weight: 700;
 | |
| }
 | |
| 
 | |
| pre {
 | |
|   display: block;
 | |
|   font-size: 87.5%;
 | |
|   color: #212529;
 | |
| }
 | |
| 
 | |
| pre code {
 | |
|   font-size: inherit;
 | |
|   color: inherit;
 | |
|   word-break: normal;
 | |
| }
 | |
| 
 | |
| .pre-scrollable {
 | |
|   max-height: 340px;
 | |
|   overflow-y: scroll;
 | |
| }
 | |
| 
 | |
| .container {
 | |
|   width: 100%;
 | |
|   padding-right: 15px;
 | |
|   padding-left: 15px;
 | |
|   margin-right: auto;
 | |
|   margin-left: auto;
 | |
| }
 | |
| 
 | |
| @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;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .container-fluid {
 | |
|   width: 100%;
 | |
|   padding-right: 15px;
 | |
|   padding-left: 15px;
 | |
|   margin-right: auto;
 | |
|   margin-left: auto;
 | |
| }
 | |
| 
 | |
| .row {
 | |
|   display: flex;
 | |
|   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-xl,
 | |
| .col-xl-auto,
 | |
| .col-xl-12,
 | |
| .col-xl-11,
 | |
| .col-xl-10,
 | |
| .col-xl-9,
 | |
| .col-xl-8,
 | |
| .col-xl-7,
 | |
| .col-xl-6,
 | |
| .col-xl-5,
 | |
| .col-xl-4,
 | |
| .col-xl-3,
 | |
| .col-xl-2,
 | |
| .col-xl-1,
 | |
| .col-lg,
 | |
| .col-lg-auto,
 | |
| .col-lg-12,
 | |
| .col-lg-11,
 | |
| .col-lg-10,
 | |
| .col-lg-9,
 | |
| .col-lg-8,
 | |
| .col-lg-7,
 | |
| .col-lg-6,
 | |
| .col-lg-5,
 | |
| .col-lg-4,
 | |
| .col-lg-3,
 | |
| .col-lg-2,
 | |
| .col-lg-1,
 | |
| .col-md,
 | |
| .col-md-auto,
 | |
| .col-md-12,
 | |
| .col-md-11,
 | |
| .col-md-10,
 | |
| .col-md-9,
 | |
| .col-md-8,
 | |
| .col-md-7,
 | |
| .col-md-6,
 | |
| .col-md-5,
 | |
| .col-md-4,
 | |
| .col-md-3,
 | |
| .col-md-2,
 | |
| .col-md-1,
 | |
| .col-sm,
 | |
| .col-sm-auto,
 | |
| .col-sm-12,
 | |
| .col-sm-11,
 | |
| .col-sm-10,
 | |
| .col-sm-9,
 | |
| .col-sm-8,
 | |
| .col-sm-7,
 | |
| .col-sm-6,
 | |
| .col-sm-5,
 | |
| .col-sm-4,
 | |
| .col-sm-3,
 | |
| .col-sm-2,
 | |
| .col-sm-1,
 | |
| .col,
 | |
| .col-auto,
 | |
| .col-12,
 | |
| .col-11,
 | |
| .col-10,
 | |
| .col-9,
 | |
| .col-8,
 | |
| .col-7,
 | |
| .col-6,
 | |
| .col-5,
 | |
| .col-4,
 | |
| .col-3,
 | |
| .col-2,
 | |
| .col-1 {
 | |
|   position: relative;
 | |
|   width: 100%;
 | |
|   padding-right: 15px;
 | |
|   padding-left: 15px;
 | |
| }
 | |
| 
 | |
| .col {
 | |
|   flex-basis: 0;
 | |
|   flex-grow: 1;
 | |
|   max-width: 100%;
 | |
| }
 | |
| 
 | |
| .col-auto {
 | |
|   flex: 0 0 auto;
 | |
|   width: auto;
 | |
|   max-width: 100%;
 | |
| }
 | |
| 
 | |
| .col-1 {
 | |
|   flex: 0 0 8.3333333333%;
 | |
|   max-width: 8.3333333333%;
 | |
| }
 | |
| 
 | |
| .col-2 {
 | |
|   flex: 0 0 16.6666666667%;
 | |
|   max-width: 16.6666666667%;
 | |
| }
 | |
| 
 | |
| .col-3 {
 | |
|   flex: 0 0 25%;
 | |
|   max-width: 25%;
 | |
| }
 | |
| 
 | |
| .col-4 {
 | |
|   flex: 0 0 33.3333333333%;
 | |
|   max-width: 33.3333333333%;
 | |
| }
 | |
| 
 | |
| .col-5 {
 | |
|   flex: 0 0 41.6666666667%;
 | |
|   max-width: 41.6666666667%;
 | |
| }
 | |
| 
 | |
| .col-6 {
 | |
|   flex: 0 0 50%;
 | |
|   max-width: 50%;
 | |
| }
 | |
| 
 | |
| .col-7 {
 | |
|   flex: 0 0 58.3333333333%;
 | |
|   max-width: 58.3333333333%;
 | |
| }
 | |
| 
 | |
| .col-8 {
 | |
|   flex: 0 0 66.6666666667%;
 | |
|   max-width: 66.6666666667%;
 | |
| }
 | |
| 
 | |
| .col-9 {
 | |
|   flex: 0 0 75%;
 | |
|   max-width: 75%;
 | |
| }
 | |
| 
 | |
| .col-10 {
 | |
|   flex: 0 0 83.3333333333%;
 | |
|   max-width: 83.3333333333%;
 | |
| }
 | |
| 
 | |
| .col-11 {
 | |
|   flex: 0 0 91.6666666667%;
 | |
|   max-width: 91.6666666667%;
 | |
| }
 | |
| 
 | |
| .col-12 {
 | |
|   flex: 0 0 100%;
 | |
|   max-width: 100%;
 | |
| }
 | |
| 
 | |
| .order-first {
 | |
|   order: -1;
 | |
| }
 | |
| 
 | |
| .order-last {
 | |
|   order: 13;
 | |
| }
 | |
| 
 | |
| .order-0 {
 | |
|   order: 0;
 | |
| }
 | |
| 
 | |
| .order-1 {
 | |
|   order: 1;
 | |
| }
 | |
| 
 | |
| .order-2 {
 | |
|   order: 2;
 | |
| }
 | |
| 
 | |
| .order-3 {
 | |
|   order: 3;
 | |
| }
 | |
| 
 | |
| .order-4 {
 | |
|   order: 4;
 | |
| }
 | |
| 
 | |
| .order-5 {
 | |
|   order: 5;
 | |
| }
 | |
| 
 | |
| .order-6 {
 | |
|   order: 6;
 | |
| }
 | |
| 
 | |
| .order-7 {
 | |
|   order: 7;
 | |
| }
 | |
| 
 | |
| .order-8 {
 | |
|   order: 8;
 | |
| }
 | |
| 
 | |
| .order-9 {
 | |
|   order: 9;
 | |
| }
 | |
| 
 | |
| .order-10 {
 | |
|   order: 10;
 | |
| }
 | |
| 
 | |
| .order-11 {
 | |
|   order: 11;
 | |
| }
 | |
| 
 | |
| .order-12 {
 | |
|   order: 12;
 | |
| }
 | |
| 
 | |
| .offset-1 {
 | |
|   margin-left: 8.3333333333%;
 | |
| }
 | |
| 
 | |
| .offset-2 {
 | |
|   margin-left: 16.6666666667%;
 | |
| }
 | |
| 
 | |
| .offset-3 {
 | |
|   margin-left: 25%;
 | |
| }
 | |
| 
 | |
| .offset-4 {
 | |
|   margin-left: 33.3333333333%;
 | |
| }
 | |
| 
 | |
| .offset-5 {
 | |
|   margin-left: 41.6666666667%;
 | |
| }
 | |
| 
 | |
| .offset-6 {
 | |
|   margin-left: 50%;
 | |
| }
 | |
| 
 | |
| .offset-7 {
 | |
|   margin-left: 58.3333333333%;
 | |
| }
 | |
| 
 | |
| .offset-8 {
 | |
|   margin-left: 66.6666666667%;
 | |
| }
 | |
| 
 | |
| .offset-9 {
 | |
|   margin-left: 75%;
 | |
| }
 | |
| 
 | |
| .offset-10 {
 | |
|   margin-left: 83.3333333333%;
 | |
| }
 | |
| 
 | |
| .offset-11 {
 | |
|   margin-left: 91.6666666667%;
 | |
| }
 | |
| 
 | |
| @media (min-width: 576px) {
 | |
|   .col-sm {
 | |
|     flex-basis: 0;
 | |
|     flex-grow: 1;
 | |
|     max-width: 100%;
 | |
|   }
 | |
| 
 | |
|   .col-sm-auto {
 | |
|     flex: 0 0 auto;
 | |
|     width: auto;
 | |
|     max-width: 100%;
 | |
|   }
 | |
| 
 | |
|   .col-sm-1 {
 | |
|     flex: 0 0 8.3333333333%;
 | |
|     max-width: 8.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .col-sm-2 {
 | |
|     flex: 0 0 16.6666666667%;
 | |
|     max-width: 16.6666666667%;
 | |
|   }
 | |
| 
 | |
|   .col-sm-3 {
 | |
|     flex: 0 0 25%;
 | |
|     max-width: 25%;
 | |
|   }
 | |
| 
 | |
|   .col-sm-4 {
 | |
|     flex: 0 0 33.3333333333%;
 | |
|     max-width: 33.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .col-sm-5 {
 | |
|     flex: 0 0 41.6666666667%;
 | |
|     max-width: 41.6666666667%;
 | |
|   }
 | |
| 
 | |
|   .col-sm-6 {
 | |
|     flex: 0 0 50%;
 | |
|     max-width: 50%;
 | |
|   }
 | |
| 
 | |
|   .col-sm-7 {
 | |
|     flex: 0 0 58.3333333333%;
 | |
|     max-width: 58.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .col-sm-8 {
 | |
|     flex: 0 0 66.6666666667%;
 | |
|     max-width: 66.6666666667%;
 | |
|   }
 | |
| 
 | |
|   .col-sm-9 {
 | |
|     flex: 0 0 75%;
 | |
|     max-width: 75%;
 | |
|   }
 | |
| 
 | |
|   .col-sm-10 {
 | |
|     flex: 0 0 83.3333333333%;
 | |
|     max-width: 83.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .col-sm-11 {
 | |
|     flex: 0 0 91.6666666667%;
 | |
|     max-width: 91.6666666667%;
 | |
|   }
 | |
| 
 | |
|   .col-sm-12 {
 | |
|     flex: 0 0 100%;
 | |
|     max-width: 100%;
 | |
|   }
 | |
| 
 | |
|   .order-sm-first {
 | |
|     order: -1;
 | |
|   }
 | |
| 
 | |
|   .order-sm-last {
 | |
|     order: 13;
 | |
|   }
 | |
| 
 | |
|   .order-sm-0 {
 | |
|     order: 0;
 | |
|   }
 | |
| 
 | |
|   .order-sm-1 {
 | |
|     order: 1;
 | |
|   }
 | |
| 
 | |
|   .order-sm-2 {
 | |
|     order: 2;
 | |
|   }
 | |
| 
 | |
|   .order-sm-3 {
 | |
|     order: 3;
 | |
|   }
 | |
| 
 | |
|   .order-sm-4 {
 | |
|     order: 4;
 | |
|   }
 | |
| 
 | |
|   .order-sm-5 {
 | |
|     order: 5;
 | |
|   }
 | |
| 
 | |
|   .order-sm-6 {
 | |
|     order: 6;
 | |
|   }
 | |
| 
 | |
|   .order-sm-7 {
 | |
|     order: 7;
 | |
|   }
 | |
| 
 | |
|   .order-sm-8 {
 | |
|     order: 8;
 | |
|   }
 | |
| 
 | |
|   .order-sm-9 {
 | |
|     order: 9;
 | |
|   }
 | |
| 
 | |
|   .order-sm-10 {
 | |
|     order: 10;
 | |
|   }
 | |
| 
 | |
|   .order-sm-11 {
 | |
|     order: 11;
 | |
|   }
 | |
| 
 | |
|   .order-sm-12 {
 | |
|     order: 12;
 | |
|   }
 | |
| 
 | |
|   .offset-sm-0 {
 | |
|     margin-left: 0;
 | |
|   }
 | |
| 
 | |
|   .offset-sm-1 {
 | |
|     margin-left: 8.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .offset-sm-2 {
 | |
|     margin-left: 16.6666666667%;
 | |
|   }
 | |
| 
 | |
|   .offset-sm-3 {
 | |
|     margin-left: 25%;
 | |
|   }
 | |
| 
 | |
|   .offset-sm-4 {
 | |
|     margin-left: 33.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .offset-sm-5 {
 | |
|     margin-left: 41.6666666667%;
 | |
|   }
 | |
| 
 | |
|   .offset-sm-6 {
 | |
|     margin-left: 50%;
 | |
|   }
 | |
| 
 | |
|   .offset-sm-7 {
 | |
|     margin-left: 58.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .offset-sm-8 {
 | |
|     margin-left: 66.6666666667%;
 | |
|   }
 | |
| 
 | |
|   .offset-sm-9 {
 | |
|     margin-left: 75%;
 | |
|   }
 | |
| 
 | |
|   .offset-sm-10 {
 | |
|     margin-left: 83.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .offset-sm-11 {
 | |
|     margin-left: 91.6666666667%;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (min-width: 768px) {
 | |
|   .col-md {
 | |
|     flex-basis: 0;
 | |
|     flex-grow: 1;
 | |
|     max-width: 100%;
 | |
|   }
 | |
| 
 | |
|   .col-md-auto {
 | |
|     flex: 0 0 auto;
 | |
|     width: auto;
 | |
|     max-width: 100%;
 | |
|   }
 | |
| 
 | |
|   .col-md-1 {
 | |
|     flex: 0 0 8.3333333333%;
 | |
|     max-width: 8.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .col-md-2 {
 | |
|     flex: 0 0 16.6666666667%;
 | |
|     max-width: 16.6666666667%;
 | |
|   }
 | |
| 
 | |
|   .col-md-3 {
 | |
|     flex: 0 0 25%;
 | |
|     max-width: 25%;
 | |
|   }
 | |
| 
 | |
|   .col-md-4 {
 | |
|     flex: 0 0 33.3333333333%;
 | |
|     max-width: 33.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .col-md-5 {
 | |
|     flex: 0 0 41.6666666667%;
 | |
|     max-width: 41.6666666667%;
 | |
|   }
 | |
| 
 | |
|   .col-md-6 {
 | |
|     flex: 0 0 50%;
 | |
|     max-width: 50%;
 | |
|   }
 | |
| 
 | |
|   .col-md-7 {
 | |
|     flex: 0 0 58.3333333333%;
 | |
|     max-width: 58.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .col-md-8 {
 | |
|     flex: 0 0 66.6666666667%;
 | |
|     max-width: 66.6666666667%;
 | |
|   }
 | |
| 
 | |
|   .col-md-9 {
 | |
|     flex: 0 0 75%;
 | |
|     max-width: 75%;
 | |
|   }
 | |
| 
 | |
|   .col-md-10 {
 | |
|     flex: 0 0 83.3333333333%;
 | |
|     max-width: 83.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .col-md-11 {
 | |
|     flex: 0 0 91.6666666667%;
 | |
|     max-width: 91.6666666667%;
 | |
|   }
 | |
| 
 | |
|   .col-md-12 {
 | |
|     flex: 0 0 100%;
 | |
|     max-width: 100%;
 | |
|   }
 | |
| 
 | |
|   .order-md-first {
 | |
|     order: -1;
 | |
|   }
 | |
| 
 | |
|   .order-md-last {
 | |
|     order: 13;
 | |
|   }
 | |
| 
 | |
|   .order-md-0 {
 | |
|     order: 0;
 | |
|   }
 | |
| 
 | |
|   .order-md-1 {
 | |
|     order: 1;
 | |
|   }
 | |
| 
 | |
|   .order-md-2 {
 | |
|     order: 2;
 | |
|   }
 | |
| 
 | |
|   .order-md-3 {
 | |
|     order: 3;
 | |
|   }
 | |
| 
 | |
|   .order-md-4 {
 | |
|     order: 4;
 | |
|   }
 | |
| 
 | |
|   .order-md-5 {
 | |
|     order: 5;
 | |
|   }
 | |
| 
 | |
|   .order-md-6 {
 | |
|     order: 6;
 | |
|   }
 | |
| 
 | |
|   .order-md-7 {
 | |
|     order: 7;
 | |
|   }
 | |
| 
 | |
|   .order-md-8 {
 | |
|     order: 8;
 | |
|   }
 | |
| 
 | |
|   .order-md-9 {
 | |
|     order: 9;
 | |
|   }
 | |
| 
 | |
|   .order-md-10 {
 | |
|     order: 10;
 | |
|   }
 | |
| 
 | |
|   .order-md-11 {
 | |
|     order: 11;
 | |
|   }
 | |
| 
 | |
|   .order-md-12 {
 | |
|     order: 12;
 | |
|   }
 | |
| 
 | |
|   .offset-md-0 {
 | |
|     margin-left: 0;
 | |
|   }
 | |
| 
 | |
|   .offset-md-1 {
 | |
|     margin-left: 8.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .offset-md-2 {
 | |
|     margin-left: 16.6666666667%;
 | |
|   }
 | |
| 
 | |
|   .offset-md-3 {
 | |
|     margin-left: 25%;
 | |
|   }
 | |
| 
 | |
|   .offset-md-4 {
 | |
|     margin-left: 33.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .offset-md-5 {
 | |
|     margin-left: 41.6666666667%;
 | |
|   }
 | |
| 
 | |
|   .offset-md-6 {
 | |
|     margin-left: 50%;
 | |
|   }
 | |
| 
 | |
|   .offset-md-7 {
 | |
|     margin-left: 58.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .offset-md-8 {
 | |
|     margin-left: 66.6666666667%;
 | |
|   }
 | |
| 
 | |
|   .offset-md-9 {
 | |
|     margin-left: 75%;
 | |
|   }
 | |
| 
 | |
|   .offset-md-10 {
 | |
|     margin-left: 83.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .offset-md-11 {
 | |
|     margin-left: 91.6666666667%;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (min-width: 992px) {
 | |
|   .col-lg {
 | |
|     flex-basis: 0;
 | |
|     flex-grow: 1;
 | |
|     max-width: 100%;
 | |
|   }
 | |
| 
 | |
|   .col-lg-auto {
 | |
|     flex: 0 0 auto;
 | |
|     width: auto;
 | |
|     max-width: 100%;
 | |
|   }
 | |
| 
 | |
|   .col-lg-1 {
 | |
|     flex: 0 0 8.3333333333%;
 | |
|     max-width: 8.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .col-lg-2 {
 | |
|     flex: 0 0 16.6666666667%;
 | |
|     max-width: 16.6666666667%;
 | |
|   }
 | |
| 
 | |
|   .col-lg-3 {
 | |
|     flex: 0 0 25%;
 | |
|     max-width: 25%;
 | |
|   }
 | |
| 
 | |
|   .col-lg-4 {
 | |
|     flex: 0 0 33.3333333333%;
 | |
|     max-width: 33.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .col-lg-5 {
 | |
|     flex: 0 0 41.6666666667%;
 | |
|     max-width: 41.6666666667%;
 | |
|   }
 | |
| 
 | |
|   .col-lg-6 {
 | |
|     flex: 0 0 50%;
 | |
|     max-width: 50%;
 | |
|   }
 | |
| 
 | |
|   .col-lg-7 {
 | |
|     flex: 0 0 58.3333333333%;
 | |
|     max-width: 58.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .col-lg-8 {
 | |
|     flex: 0 0 66.6666666667%;
 | |
|     max-width: 66.6666666667%;
 | |
|   }
 | |
| 
 | |
|   .col-lg-9 {
 | |
|     flex: 0 0 75%;
 | |
|     max-width: 75%;
 | |
|   }
 | |
| 
 | |
|   .col-lg-10 {
 | |
|     flex: 0 0 83.3333333333%;
 | |
|     max-width: 83.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .col-lg-11 {
 | |
|     flex: 0 0 91.6666666667%;
 | |
|     max-width: 91.6666666667%;
 | |
|   }
 | |
| 
 | |
|   .col-lg-12 {
 | |
|     flex: 0 0 100%;
 | |
|     max-width: 100%;
 | |
|   }
 | |
| 
 | |
|   .order-lg-first {
 | |
|     order: -1;
 | |
|   }
 | |
| 
 | |
|   .order-lg-last {
 | |
|     order: 13;
 | |
|   }
 | |
| 
 | |
|   .order-lg-0 {
 | |
|     order: 0;
 | |
|   }
 | |
| 
 | |
|   .order-lg-1 {
 | |
|     order: 1;
 | |
|   }
 | |
| 
 | |
|   .order-lg-2 {
 | |
|     order: 2;
 | |
|   }
 | |
| 
 | |
|   .order-lg-3 {
 | |
|     order: 3;
 | |
|   }
 | |
| 
 | |
|   .order-lg-4 {
 | |
|     order: 4;
 | |
|   }
 | |
| 
 | |
|   .order-lg-5 {
 | |
|     order: 5;
 | |
|   }
 | |
| 
 | |
|   .order-lg-6 {
 | |
|     order: 6;
 | |
|   }
 | |
| 
 | |
|   .order-lg-7 {
 | |
|     order: 7;
 | |
|   }
 | |
| 
 | |
|   .order-lg-8 {
 | |
|     order: 8;
 | |
|   }
 | |
| 
 | |
|   .order-lg-9 {
 | |
|     order: 9;
 | |
|   }
 | |
| 
 | |
|   .order-lg-10 {
 | |
|     order: 10;
 | |
|   }
 | |
| 
 | |
|   .order-lg-11 {
 | |
|     order: 11;
 | |
|   }
 | |
| 
 | |
|   .order-lg-12 {
 | |
|     order: 12;
 | |
|   }
 | |
| 
 | |
|   .offset-lg-0 {
 | |
|     margin-left: 0;
 | |
|   }
 | |
| 
 | |
|   .offset-lg-1 {
 | |
|     margin-left: 8.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .offset-lg-2 {
 | |
|     margin-left: 16.6666666667%;
 | |
|   }
 | |
| 
 | |
|   .offset-lg-3 {
 | |
|     margin-left: 25%;
 | |
|   }
 | |
| 
 | |
|   .offset-lg-4 {
 | |
|     margin-left: 33.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .offset-lg-5 {
 | |
|     margin-left: 41.6666666667%;
 | |
|   }
 | |
| 
 | |
|   .offset-lg-6 {
 | |
|     margin-left: 50%;
 | |
|   }
 | |
| 
 | |
|   .offset-lg-7 {
 | |
|     margin-left: 58.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .offset-lg-8 {
 | |
|     margin-left: 66.6666666667%;
 | |
|   }
 | |
| 
 | |
|   .offset-lg-9 {
 | |
|     margin-left: 75%;
 | |
|   }
 | |
| 
 | |
|   .offset-lg-10 {
 | |
|     margin-left: 83.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .offset-lg-11 {
 | |
|     margin-left: 91.6666666667%;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (min-width: 1200px) {
 | |
|   .col-xl {
 | |
|     flex-basis: 0;
 | |
|     flex-grow: 1;
 | |
|     max-width: 100%;
 | |
|   }
 | |
| 
 | |
|   .col-xl-auto {
 | |
|     flex: 0 0 auto;
 | |
|     width: auto;
 | |
|     max-width: 100%;
 | |
|   }
 | |
| 
 | |
|   .col-xl-1 {
 | |
|     flex: 0 0 8.3333333333%;
 | |
|     max-width: 8.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .col-xl-2 {
 | |
|     flex: 0 0 16.6666666667%;
 | |
|     max-width: 16.6666666667%;
 | |
|   }
 | |
| 
 | |
|   .col-xl-3 {
 | |
|     flex: 0 0 25%;
 | |
|     max-width: 25%;
 | |
|   }
 | |
| 
 | |
|   .col-xl-4 {
 | |
|     flex: 0 0 33.3333333333%;
 | |
|     max-width: 33.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .col-xl-5 {
 | |
|     flex: 0 0 41.6666666667%;
 | |
|     max-width: 41.6666666667%;
 | |
|   }
 | |
| 
 | |
|   .col-xl-6 {
 | |
|     flex: 0 0 50%;
 | |
|     max-width: 50%;
 | |
|   }
 | |
| 
 | |
|   .col-xl-7 {
 | |
|     flex: 0 0 58.3333333333%;
 | |
|     max-width: 58.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .col-xl-8 {
 | |
|     flex: 0 0 66.6666666667%;
 | |
|     max-width: 66.6666666667%;
 | |
|   }
 | |
| 
 | |
|   .col-xl-9 {
 | |
|     flex: 0 0 75%;
 | |
|     max-width: 75%;
 | |
|   }
 | |
| 
 | |
|   .col-xl-10 {
 | |
|     flex: 0 0 83.3333333333%;
 | |
|     max-width: 83.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .col-xl-11 {
 | |
|     flex: 0 0 91.6666666667%;
 | |
|     max-width: 91.6666666667%;
 | |
|   }
 | |
| 
 | |
|   .col-xl-12 {
 | |
|     flex: 0 0 100%;
 | |
|     max-width: 100%;
 | |
|   }
 | |
| 
 | |
|   .order-xl-first {
 | |
|     order: -1;
 | |
|   }
 | |
| 
 | |
|   .order-xl-last {
 | |
|     order: 13;
 | |
|   }
 | |
| 
 | |
|   .order-xl-0 {
 | |
|     order: 0;
 | |
|   }
 | |
| 
 | |
|   .order-xl-1 {
 | |
|     order: 1;
 | |
|   }
 | |
| 
 | |
|   .order-xl-2 {
 | |
|     order: 2;
 | |
|   }
 | |
| 
 | |
|   .order-xl-3 {
 | |
|     order: 3;
 | |
|   }
 | |
| 
 | |
|   .order-xl-4 {
 | |
|     order: 4;
 | |
|   }
 | |
| 
 | |
|   .order-xl-5 {
 | |
|     order: 5;
 | |
|   }
 | |
| 
 | |
|   .order-xl-6 {
 | |
|     order: 6;
 | |
|   }
 | |
| 
 | |
|   .order-xl-7 {
 | |
|     order: 7;
 | |
|   }
 | |
| 
 | |
|   .order-xl-8 {
 | |
|     order: 8;
 | |
|   }
 | |
| 
 | |
|   .order-xl-9 {
 | |
|     order: 9;
 | |
|   }
 | |
| 
 | |
|   .order-xl-10 {
 | |
|     order: 10;
 | |
|   }
 | |
| 
 | |
|   .order-xl-11 {
 | |
|     order: 11;
 | |
|   }
 | |
| 
 | |
|   .order-xl-12 {
 | |
|     order: 12;
 | |
|   }
 | |
| 
 | |
|   .offset-xl-0 {
 | |
|     margin-left: 0;
 | |
|   }
 | |
| 
 | |
|   .offset-xl-1 {
 | |
|     margin-left: 8.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .offset-xl-2 {
 | |
|     margin-left: 16.6666666667%;
 | |
|   }
 | |
| 
 | |
|   .offset-xl-3 {
 | |
|     margin-left: 25%;
 | |
|   }
 | |
| 
 | |
|   .offset-xl-4 {
 | |
|     margin-left: 33.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .offset-xl-5 {
 | |
|     margin-left: 41.6666666667%;
 | |
|   }
 | |
| 
 | |
|   .offset-xl-6 {
 | |
|     margin-left: 50%;
 | |
|   }
 | |
| 
 | |
|   .offset-xl-7 {
 | |
|     margin-left: 58.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .offset-xl-8 {
 | |
|     margin-left: 66.6666666667%;
 | |
|   }
 | |
| 
 | |
|   .offset-xl-9 {
 | |
|     margin-left: 75%;
 | |
|   }
 | |
| 
 | |
|   .offset-xl-10 {
 | |
|     margin-left: 83.3333333333%;
 | |
|   }
 | |
| 
 | |
|   .offset-xl-11 {
 | |
|     margin-left: 91.6666666667%;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .table {
 | |
|   width: 100%;
 | |
|   margin-bottom: 1rem;
 | |
|   color: #212529;
 | |
| }
 | |
| 
 | |
| .table th,
 | |
| .table td {
 | |
|   padding: 0.75rem;
 | |
|   vertical-align: top;
 | |
|   border-top: 1px solid #dee2e6;
 | |
| }
 | |
| 
 | |
| .table thead th {
 | |
|   vertical-align: bottom;
 | |
|   border-bottom: 2px solid #dee2e6;
 | |
| }
 | |
| 
 | |
| .table tbody + tbody {
 | |
|   border-top: 2px solid #dee2e6;
 | |
| }
 | |
| 
 | |
| .table-sm th,
 | |
| .table-sm td {
 | |
|   padding: 0.3rem;
 | |
| }
 | |
| 
 | |
| .table-bordered {
 | |
|   border: 1px solid #dee2e6;
 | |
| }
 | |
| 
 | |
| .table-bordered th,
 | |
| .table-bordered td {
 | |
|   border: 1px solid #dee2e6;
 | |
| }
 | |
| 
 | |
| .table-bordered thead th,
 | |
| .table-bordered thead td {
 | |
|   border-bottom-width: 2px;
 | |
| }
 | |
| 
 | |
| .table-borderless th,
 | |
| .table-borderless td,
 | |
| .table-borderless thead th,
 | |
| .table-borderless tbody + tbody {
 | |
|   border: 0;
 | |
| }
 | |
| 
 | |
| .table-striped tbody tr:nth-of-type(odd) {
 | |
|   background-color: rgba(0, 0, 0, 0.05);
 | |
| }
 | |
| 
 | |
| .table-hover tbody tr:hover {
 | |
|   color: #212529;
 | |
|   background-color: rgba(0, 0, 0, 0.075);
 | |
| }
 | |
| 
 | |
| .table-primary,
 | |
| .table-primary > th,
 | |
| .table-primary > td {
 | |
|   background-color: #d0cef4;
 | |
| }
 | |
| 
 | |
| .table-primary th,
 | |
| .table-primary td,
 | |
| .table-primary thead th,
 | |
| .table-primary tbody + tbody {
 | |
|   border-color: #a8a5eb;
 | |
| }
 | |
| 
 | |
| .table-hover .table-primary:hover {
 | |
|   background-color: #bcb9ef;
 | |
| }
 | |
| 
 | |
| .table-hover .table-primary:hover > td,
 | |
| .table-hover .table-primary:hover > th {
 | |
|   background-color: #bcb9ef;
 | |
| }
 | |
| 
 | |
| .table-secondary,
 | |
| .table-secondary > th,
 | |
| .table-secondary > td {
 | |
|   background-color: #cfcfda;
 | |
| }
 | |
| 
 | |
| .table-secondary th,
 | |
| .table-secondary td,
 | |
| .table-secondary thead th,
 | |
| .table-secondary tbody + tbody {
 | |
|   border-color: #a7a6ba;
 | |
| }
 | |
| 
 | |
| .table-hover .table-secondary:hover {
 | |
|   background-color: #c1c1cf;
 | |
| }
 | |
| 
 | |
| .table-hover .table-secondary:hover > td,
 | |
| .table-hover .table-secondary:hover > th {
 | |
|   background-color: #c1c1cf;
 | |
| }
 | |
| 
 | |
| .table-success,
 | |
| .table-success > th,
 | |
| .table-success > td {
 | |
|   background-color: #b8f0e3;
 | |
| }
 | |
| 
 | |
| .table-success th,
 | |
| .table-success td,
 | |
| .table-success thead th,
 | |
| .table-success tbody + tbody {
 | |
|   border-color: #7ae3cc;
 | |
| }
 | |
| 
 | |
| .table-hover .table-success:hover {
 | |
|   background-color: #a3ecdb;
 | |
| }
 | |
| 
 | |
| .table-hover .table-success:hover > td,
 | |
| .table-hover .table-success:hover > th {
 | |
|   background-color: #a3ecdb;
 | |
| }
 | |
| 
 | |
| .table-info,
 | |
| .table-info > th,
 | |
| .table-info > td {
 | |
|   background-color: #bde9fa;
 | |
| }
 | |
| 
 | |
| .table-info th,
 | |
| .table-info td,
 | |
| .table-info thead th,
 | |
| .table-info tbody + tbody {
 | |
|   border-color: #85d7f5;
 | |
| }
 | |
| 
 | |
| .table-hover .table-info:hover {
 | |
|   background-color: #a5e1f8;
 | |
| }
 | |
| 
 | |
| .table-hover .table-info:hover > td,
 | |
| .table-hover .table-info:hover > th {
 | |
|   background-color: #a5e1f8;
 | |
| }
 | |
| 
 | |
| .table-warning,
 | |
| .table-warning > th,
 | |
| .table-warning > td {
 | |
|   background-color: #fce9cd;
 | |
| }
 | |
| 
 | |
| .table-warning th,
 | |
| .table-warning td,
 | |
| .table-warning thead th,
 | |
| .table-warning tbody + tbody {
 | |
|   border-color: #f9d5a3;
 | |
| }
 | |
| 
 | |
| .table-hover .table-warning:hover {
 | |
|   background-color: #fbdeb5;
 | |
| }
 | |
| 
 | |
| .table-hover .table-warning:hover > td,
 | |
| .table-hover .table-warning:hover > th {
 | |
|   background-color: #fbdeb5;
 | |
| }
 | |
| 
 | |
| .table-danger,
 | |
| .table-danger > th,
 | |
| .table-danger > td {
 | |
|   background-color: #fed7d9;
 | |
| }
 | |
| 
 | |
| .table-danger th,
 | |
| .table-danger td,
 | |
| .table-danger thead th,
 | |
| .table-danger tbody + tbody {
 | |
|   border-color: #fdb5b9;
 | |
| }
 | |
| 
 | |
| .table-hover .table-danger:hover {
 | |
|   background-color: #fdbec1;
 | |
| }
 | |
| 
 | |
| .table-hover .table-danger:hover > td,
 | |
| .table-hover .table-danger:hover > th {
 | |
|   background-color: #fdbec1;
 | |
| }
 | |
| 
 | |
| .table-light,
 | |
| .table-light > th,
 | |
| .table-light > td {
 | |
|   background-color: #dcdaf7;
 | |
| }
 | |
| 
 | |
| .table-light th,
 | |
| .table-light td,
 | |
| .table-light thead th,
 | |
| .table-light tbody + tbody {
 | |
|   border-color: #bdbaf0;
 | |
| }
 | |
| 
 | |
| .table-hover .table-light:hover {
 | |
|   background-color: #c8c5f2;
 | |
| }
 | |
| 
 | |
| .table-hover .table-light:hover > td,
 | |
| .table-hover .table-light:hover > th {
 | |
|   background-color: #c8c5f2;
 | |
| }
 | |
| 
 | |
| .table-dark,
 | |
| .table-dark > th,
 | |
| .table-dark > td {
 | |
|   background-color: #cfcfda;
 | |
| }
 | |
| 
 | |
| .table-dark th,
 | |
| .table-dark td,
 | |
| .table-dark thead th,
 | |
| .table-dark tbody + tbody {
 | |
|   border-color: #a7a6ba;
 | |
| }
 | |
| 
 | |
| .table-hover .table-dark:hover {
 | |
|   background-color: #c1c1cf;
 | |
| }
 | |
| 
 | |
| .table-hover .table-dark:hover > td,
 | |
| .table-hover .table-dark:hover > th {
 | |
|   background-color: #c1c1cf;
 | |
| }
 | |
| 
 | |
| .table-active,
 | |
| .table-active > th,
 | |
| .table-active > td {
 | |
|   background-color: rgba(0, 0, 0, 0.075);
 | |
| }
 | |
| 
 | |
| .table-hover .table-active:hover {
 | |
|   background-color: rgba(0, 0, 0, 0.075);
 | |
| }
 | |
| 
 | |
| .table-hover .table-active:hover > td,
 | |
| .table-hover .table-active:hover > th {
 | |
|   background-color: rgba(0, 0, 0, 0.075);
 | |
| }
 | |
| 
 | |
| .table .thead-dark th {
 | |
|   color: #fff;
 | |
|   background-color: #343a40;
 | |
|   border-color: #454d55;
 | |
| }
 | |
| 
 | |
| .table .thead-light th {
 | |
|   color: #495057;
 | |
|   background-color: #e9ecef;
 | |
|   border-color: #dee2e6;
 | |
| }
 | |
| 
 | |
| .table-dark {
 | |
|   color: #fff;
 | |
|   background-color: #343a40;
 | |
| }
 | |
| 
 | |
| .table-dark th,
 | |
| .table-dark td,
 | |
| .table-dark thead th {
 | |
|   border-color: #454d55;
 | |
| }
 | |
| 
 | |
| .table-dark.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: #fff;
 | |
|   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;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .table-responsive {
 | |
|   display: block;
 | |
|   width: 100%;
 | |
|   overflow-x: auto;
 | |
|   -webkit-overflow-scrolling: touch;
 | |
| }
 | |
| 
 | |
| .table-responsive > .table-bordered {
 | |
|   border: 0;
 | |
| }
 | |
| 
 | |
| .form-control {
 | |
|   display: block;
 | |
|   width: 100%;
 | |
|   height: calc(1.5em + 0.75rem + 2px);
 | |
|   padding: 0.375rem 0.75rem;
 | |
|   font-size: 1rem;
 | |
|   font-weight: 400;
 | |
|   line-height: 1.5;
 | |
|   color: #495057;
 | |
|   background-color: #fff;
 | |
|   background-clip: padding-box;
 | |
|   border: 1px solid #ced4da;
 | |
|   border-radius: 0.25rem;
 | |
|   transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
 | |
| }
 | |
| 
 | |
| @media (prefers-reduced-motion: reduce) {
 | |
|   .form-control {
 | |
|     transition: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .form-control::-ms-expand {
 | |
|   background-color: transparent;
 | |
|   border: 0;
 | |
| }
 | |
| 
 | |
| .form-control:focus {
 | |
|   color: #495057;
 | |
|   background-color: #fff;
 | |
|   border-color: #bcb9ef;
 | |
|   outline: 0;
 | |
|   box-shadow: 0 0 0 0.2rem rgba(88, 81, 216, 0.25);
 | |
| }
 | |
| 
 | |
| .form-control::-webkit-input-placeholder {
 | |
|   color: #6c757d;
 | |
|   opacity: 1;
 | |
| }
 | |
| 
 | |
| .form-control::-moz-placeholder {
 | |
|   color: #6c757d;
 | |
|   opacity: 1;
 | |
| }
 | |
| 
 | |
| .form-control:-ms-input-placeholder {
 | |
|   color: #6c757d;
 | |
|   opacity: 1;
 | |
| }
 | |
| 
 | |
| .form-control::-ms-input-placeholder {
 | |
|   color: #6c757d;
 | |
|   opacity: 1;
 | |
| }
 | |
| 
 | |
| .form-control::placeholder {
 | |
|   color: #6c757d;
 | |
|   opacity: 1;
 | |
| }
 | |
| 
 | |
| .form-control:disabled,
 | |
| .form-control[readonly] {
 | |
|   background-color: #e9ecef;
 | |
|   opacity: 1;
 | |
| }
 | |
| 
 | |
| select.form-control:focus::-ms-value {
 | |
|   color: #495057;
 | |
|   background-color: #fff;
 | |
| }
 | |
| 
 | |
| .form-control-file,
 | |
| .form-control-range {
 | |
|   display: block;
 | |
|   width: 100%;
 | |
| }
 | |
| 
 | |
| .col-form-label {
 | |
|   padding-top: calc(0.375rem + 1px);
 | |
|   padding-bottom: calc(0.375rem + 1px);
 | |
|   margin-bottom: 0;
 | |
|   font-size: inherit;
 | |
|   line-height: 1.5;
 | |
| }
 | |
| 
 | |
| .col-form-label-lg {
 | |
|   padding-top: calc(0.5rem + 1px);
 | |
|   padding-bottom: calc(0.5rem + 1px);
 | |
|   font-size: 1.25rem;
 | |
|   line-height: 1.5;
 | |
| }
 | |
| 
 | |
| .col-form-label-sm {
 | |
|   padding-top: calc(0.25rem + 1px);
 | |
|   padding-bottom: calc(0.25rem + 1px);
 | |
|   font-size: 0.875rem;
 | |
|   line-height: 1.5;
 | |
| }
 | |
| 
 | |
| .form-control-plaintext {
 | |
|   display: block;
 | |
|   width: 100%;
 | |
|   padding-top: 0.375rem;
 | |
|   padding-bottom: 0.375rem;
 | |
|   margin-bottom: 0;
 | |
|   line-height: 1.5;
 | |
|   color: #212529;
 | |
|   background-color: transparent;
 | |
|   border: solid transparent;
 | |
|   border-width: 1px 0;
 | |
| }
 | |
| 
 | |
| .form-control-plaintext.form-control-sm,
 | |
| .form-control-plaintext.form-control-lg {
 | |
|   padding-right: 0;
 | |
|   padding-left: 0;
 | |
| }
 | |
| 
 | |
| .form-control-sm {
 | |
|   height: calc(1.5em + 0.5rem + 2px);
 | |
|   padding: 0.25rem 0.5rem;
 | |
|   font-size: 0.875rem;
 | |
|   line-height: 1.5;
 | |
|   border-radius: 0.2rem;
 | |
| }
 | |
| 
 | |
| .form-control-lg {
 | |
|   height: calc(1.5em + 1rem + 2px);
 | |
|   padding: 0.5rem 1rem;
 | |
|   font-size: 1.25rem;
 | |
|   line-height: 1.5;
 | |
|   border-radius: 0.3rem;
 | |
| }
 | |
| 
 | |
| select.form-control[size],
 | |
| select.form-control[multiple] {
 | |
|   height: auto;
 | |
| }
 | |
| 
 | |
| textarea.form-control {
 | |
|   height: auto;
 | |
| }
 | |
| 
 | |
| .form-group {
 | |
|   margin-bottom: 1rem;
 | |
| }
 | |
| 
 | |
| .form-text {
 | |
|   display: block;
 | |
|   margin-top: 0.25rem;
 | |
| }
 | |
| 
 | |
| .form-row {
 | |
|   display: flex;
 | |
|   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.3rem;
 | |
|   margin-left: -1.25rem;
 | |
| }
 | |
| 
 | |
| .form-check-input:disabled ~ .form-check-label {
 | |
|   color: #6c757d;
 | |
| }
 | |
| 
 | |
| .form-check-label {
 | |
|   margin-bottom: 0;
 | |
| }
 | |
| 
 | |
| .form-check-inline {
 | |
|   display: inline-flex;
 | |
|   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;
 | |
| }
 | |
| 
 | |
| .valid-feedback {
 | |
|   display: none;
 | |
|   width: 100%;
 | |
|   margin-top: 0.25rem;
 | |
|   font-size: 80%;
 | |
|   color: #00C99C;
 | |
| }
 | |
| 
 | |
| .valid-tooltip {
 | |
|   position: absolute;
 | |
|   top: 100%;
 | |
|   z-index: 5;
 | |
|   display: none;
 | |
|   max-width: 100%;
 | |
|   padding: 0.25rem 0.5rem;
 | |
|   margin-top: 0.1rem;
 | |
|   font-size: 0.875rem;
 | |
|   line-height: 1.5;
 | |
|   color: #fff;
 | |
|   background-color: rgba(0, 201, 156, 0.9);
 | |
|   border-radius: 0.25rem;
 | |
| }
 | |
| 
 | |
| .was-validated .form-control:valid,
 | |
| .form-control.is-valid {
 | |
|   border-color: #00C99C;
 | |
|   padding-right: calc(1.5em + 0.75rem);
 | |
|   background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2300C99C' 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: center right calc(0.375em + 0.1875rem);
 | |
|   background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
 | |
| }
 | |
| 
 | |
| .was-validated .form-control:valid:focus,
 | |
| .form-control.is-valid:focus {
 | |
|   border-color: #00C99C;
 | |
|   box-shadow: 0 0 0 0.2rem rgba(0, 201, 156, 0.25);
 | |
| }
 | |
| 
 | |
| .was-validated .form-control:valid ~ .valid-feedback,
 | |
| .was-validated .form-control:valid ~ .valid-tooltip,
 | |
| .form-control.is-valid ~ .valid-feedback,
 | |
| .form-control.is-valid ~ .valid-tooltip {
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| .was-validated textarea.form-control:valid,
 | |
| textarea.form-control.is-valid {
 | |
|   padding-right: calc(1.5em + 0.75rem);
 | |
|   background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
 | |
| }
 | |
| 
 | |
| .was-validated .custom-select:valid,
 | |
| .custom-select.is-valid {
 | |
|   border-color: #00C99C;
 | |
|   padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
 | |
|   background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2300C99C' 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") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
 | |
| }
 | |
| 
 | |
| .was-validated .custom-select:valid:focus,
 | |
| .custom-select.is-valid:focus {
 | |
|   border-color: #00C99C;
 | |
|   box-shadow: 0 0 0 0.2rem rgba(0, 201, 156, 0.25);
 | |
| }
 | |
| 
 | |
| .was-validated .custom-select:valid ~ .valid-feedback,
 | |
| .was-validated .custom-select:valid ~ .valid-tooltip,
 | |
| .custom-select.is-valid ~ .valid-feedback,
 | |
| .custom-select.is-valid ~ .valid-tooltip {
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| .was-validated .form-control-file:valid ~ .valid-feedback,
 | |
| .was-validated .form-control-file:valid ~ .valid-tooltip,
 | |
| .form-control-file.is-valid ~ .valid-feedback,
 | |
| .form-control-file.is-valid ~ .valid-tooltip {
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| .was-validated .form-check-input:valid ~ .form-check-label,
 | |
| .form-check-input.is-valid ~ .form-check-label {
 | |
|   color: #00C99C;
 | |
| }
 | |
| 
 | |
| .was-validated .form-check-input:valid ~ .valid-feedback,
 | |
| .was-validated .form-check-input:valid ~ .valid-tooltip,
 | |
| .form-check-input.is-valid ~ .valid-feedback,
 | |
| .form-check-input.is-valid ~ .valid-tooltip {
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| .was-validated .custom-control-input:valid ~ .custom-control-label,
 | |
| .custom-control-input.is-valid ~ .custom-control-label {
 | |
|   color: #00C99C;
 | |
| }
 | |
| 
 | |
| .was-validated .custom-control-input:valid ~ .custom-control-label::before,
 | |
| .custom-control-input.is-valid ~ .custom-control-label::before {
 | |
|   border-color: #00C99C;
 | |
| }
 | |
| 
 | |
| .was-validated .custom-control-input:valid ~ .valid-feedback,
 | |
| .was-validated .custom-control-input:valid ~ .valid-tooltip,
 | |
| .custom-control-input.is-valid ~ .valid-feedback,
 | |
| .custom-control-input.is-valid ~ .valid-tooltip {
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,
 | |
| .custom-control-input.is-valid:checked ~ .custom-control-label::before {
 | |
|   border-color: #00fcc4;
 | |
|   background-color: #00fcc4;
 | |
| }
 | |
| 
 | |
| .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,
 | |
| .custom-control-input.is-valid:focus ~ .custom-control-label::before {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(0, 201, 156, 0.25);
 | |
| }
 | |
| 
 | |
| .was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,
 | |
| .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
 | |
|   border-color: #00C99C;
 | |
| }
 | |
| 
 | |
| .was-validated .custom-file-input:valid ~ .custom-file-label,
 | |
| .custom-file-input.is-valid ~ .custom-file-label {
 | |
|   border-color: #00C99C;
 | |
| }
 | |
| 
 | |
| .was-validated .custom-file-input:valid ~ .valid-feedback,
 | |
| .was-validated .custom-file-input:valid ~ .valid-tooltip,
 | |
| .custom-file-input.is-valid ~ .valid-feedback,
 | |
| .custom-file-input.is-valid ~ .valid-tooltip {
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| .was-validated .custom-file-input:valid:focus ~ .custom-file-label,
 | |
| .custom-file-input.is-valid:focus ~ .custom-file-label {
 | |
|   border-color: #00C99C;
 | |
|   box-shadow: 0 0 0 0.2rem rgba(0, 201, 156, 0.25);
 | |
| }
 | |
| 
 | |
| .invalid-feedback {
 | |
|   display: none;
 | |
|   width: 100%;
 | |
|   margin-top: 0.25rem;
 | |
|   font-size: 80%;
 | |
|   color: #FB7178;
 | |
| }
 | |
| 
 | |
| .invalid-tooltip {
 | |
|   position: absolute;
 | |
|   top: 100%;
 | |
|   z-index: 5;
 | |
|   display: none;
 | |
|   max-width: 100%;
 | |
|   padding: 0.25rem 0.5rem;
 | |
|   margin-top: 0.1rem;
 | |
|   font-size: 0.875rem;
 | |
|   line-height: 1.5;
 | |
|   color: #212529;
 | |
|   background-color: rgba(251, 113, 120, 0.9);
 | |
|   border-radius: 0.25rem;
 | |
| }
 | |
| 
 | |
| .was-validated .form-control:invalid,
 | |
| .form-control.is-invalid {
 | |
|   border-color: #FB7178;
 | |
|   padding-right: calc(1.5em + 0.75rem);
 | |
|   background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23FB7178' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23FB7178' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
 | |
|   background-repeat: no-repeat;
 | |
|   background-position: center right calc(0.375em + 0.1875rem);
 | |
|   background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
 | |
| }
 | |
| 
 | |
| .was-validated .form-control:invalid:focus,
 | |
| .form-control.is-invalid:focus {
 | |
|   border-color: #FB7178;
 | |
|   box-shadow: 0 0 0 0.2rem rgba(251, 113, 120, 0.25);
 | |
| }
 | |
| 
 | |
| .was-validated .form-control:invalid ~ .invalid-feedback,
 | |
| .was-validated .form-control:invalid ~ .invalid-tooltip,
 | |
| .form-control.is-invalid ~ .invalid-feedback,
 | |
| .form-control.is-invalid ~ .invalid-tooltip {
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| .was-validated textarea.form-control:invalid,
 | |
| textarea.form-control.is-invalid {
 | |
|   padding-right: calc(1.5em + 0.75rem);
 | |
|   background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
 | |
| }
 | |
| 
 | |
| .was-validated .custom-select:invalid,
 | |
| .custom-select.is-invalid {
 | |
|   border-color: #FB7178;
 | |
|   padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
 | |
|   background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23FB7178' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23FB7178' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
 | |
| }
 | |
| 
 | |
| .was-validated .custom-select:invalid:focus,
 | |
| .custom-select.is-invalid:focus {
 | |
|   border-color: #FB7178;
 | |
|   box-shadow: 0 0 0 0.2rem rgba(251, 113, 120, 0.25);
 | |
| }
 | |
| 
 | |
| .was-validated .custom-select:invalid ~ .invalid-feedback,
 | |
| .was-validated .custom-select:invalid ~ .invalid-tooltip,
 | |
| .custom-select.is-invalid ~ .invalid-feedback,
 | |
| .custom-select.is-invalid ~ .invalid-tooltip {
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| .was-validated .form-control-file:invalid ~ .invalid-feedback,
 | |
| .was-validated .form-control-file:invalid ~ .invalid-tooltip,
 | |
| .form-control-file.is-invalid ~ .invalid-feedback,
 | |
| .form-control-file.is-invalid ~ .invalid-tooltip {
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| .was-validated .form-check-input:invalid ~ .form-check-label,
 | |
| .form-check-input.is-invalid ~ .form-check-label {
 | |
|   color: #FB7178;
 | |
| }
 | |
| 
 | |
| .was-validated .form-check-input:invalid ~ .invalid-feedback,
 | |
| .was-validated .form-check-input:invalid ~ .invalid-tooltip,
 | |
| .form-check-input.is-invalid ~ .invalid-feedback,
 | |
| .form-check-input.is-invalid ~ .invalid-tooltip {
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| .was-validated .custom-control-input:invalid ~ .custom-control-label,
 | |
| .custom-control-input.is-invalid ~ .custom-control-label {
 | |
|   color: #FB7178;
 | |
| }
 | |
| 
 | |
| .was-validated .custom-control-input:invalid ~ .custom-control-label::before,
 | |
| .custom-control-input.is-invalid ~ .custom-control-label::before {
 | |
|   border-color: #FB7178;
 | |
| }
 | |
| 
 | |
| .was-validated .custom-control-input:invalid ~ .invalid-feedback,
 | |
| .was-validated .custom-control-input:invalid ~ .invalid-tooltip,
 | |
| .custom-control-input.is-invalid ~ .invalid-feedback,
 | |
| .custom-control-input.is-invalid ~ .invalid-tooltip {
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,
 | |
| .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
 | |
|   border-color: #fca3a7;
 | |
|   background-color: #fca3a7;
 | |
| }
 | |
| 
 | |
| .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,
 | |
| .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(251, 113, 120, 0.25);
 | |
| }
 | |
| 
 | |
| .was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,
 | |
| .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
 | |
|   border-color: #FB7178;
 | |
| }
 | |
| 
 | |
| .was-validated .custom-file-input:invalid ~ .custom-file-label,
 | |
| .custom-file-input.is-invalid ~ .custom-file-label {
 | |
|   border-color: #FB7178;
 | |
| }
 | |
| 
 | |
| .was-validated .custom-file-input:invalid ~ .invalid-feedback,
 | |
| .was-validated .custom-file-input:invalid ~ .invalid-tooltip,
 | |
| .custom-file-input.is-invalid ~ .invalid-feedback,
 | |
| .custom-file-input.is-invalid ~ .invalid-tooltip {
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| .was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
 | |
| .custom-file-input.is-invalid:focus ~ .custom-file-label {
 | |
|   border-color: #FB7178;
 | |
|   box-shadow: 0 0 0 0.2rem rgba(251, 113, 120, 0.25);
 | |
| }
 | |
| 
 | |
| .form-inline {
 | |
|   display: flex;
 | |
|   flex-flow: row wrap;
 | |
|   align-items: center;
 | |
| }
 | |
| 
 | |
| .form-inline .form-check {
 | |
|   width: 100%;
 | |
| }
 | |
| 
 | |
| @media (min-width: 576px) {
 | |
|   .form-inline label {
 | |
|     display: flex;
 | |
|     align-items: center;
 | |
|     justify-content: center;
 | |
|     margin-bottom: 0;
 | |
|   }
 | |
| 
 | |
|   .form-inline .form-group {
 | |
|     display: flex;
 | |
|     flex: 0 0 auto;
 | |
|     flex-flow: row wrap;
 | |
|     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 .input-group,
 | |
|   .form-inline .custom-select {
 | |
|     width: auto;
 | |
|   }
 | |
| 
 | |
|   .form-inline .form-check {
 | |
|     display: flex;
 | |
|     align-items: center;
 | |
|     justify-content: center;
 | |
|     width: auto;
 | |
|     padding-left: 0;
 | |
|   }
 | |
| 
 | |
|   .form-inline .form-check-input {
 | |
|     position: relative;
 | |
|     flex-shrink: 0;
 | |
|     margin-top: 0;
 | |
|     margin-right: 0.25rem;
 | |
|     margin-left: 0;
 | |
|   }
 | |
| 
 | |
|   .form-inline .custom-control {
 | |
|     align-items: center;
 | |
|     justify-content: center;
 | |
|   }
 | |
| 
 | |
|   .form-inline .custom-control-label {
 | |
|     margin-bottom: 0;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .btn {
 | |
|   display: inline-block;
 | |
|   font-weight: 400;
 | |
|   color: #212529;
 | |
|   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.375rem 0.75rem;
 | |
|   font-size: 1rem;
 | |
|   line-height: 1.5;
 | |
|   border-radius: 0.25rem;
 | |
|   transition: color 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;
 | |
| }
 | |
| 
 | |
| @media (prefers-reduced-motion: reduce) {
 | |
|   .btn {
 | |
|     transition: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .btn:hover {
 | |
|   color: #212529;
 | |
|   text-decoration: none;
 | |
| }
 | |
| 
 | |
| .btn:focus,
 | |
| .btn.focus {
 | |
|   outline: 0;
 | |
|   box-shadow: 0 0 0 0.2rem rgba(88, 81, 216, 0.25);
 | |
| }
 | |
| 
 | |
| .btn.disabled,
 | |
| .btn:disabled {
 | |
|   opacity: 0.65;
 | |
| }
 | |
| 
 | |
| a.btn.disabled,
 | |
| fieldset:disabled a.btn {
 | |
|   pointer-events: none;
 | |
| }
 | |
| 
 | |
| .btn-primary {
 | |
|   color: #fff;
 | |
|   background-color: #5851D8;
 | |
|   border-color: #5851D8;
 | |
| }
 | |
| 
 | |
| .btn-primary:hover {
 | |
|   color: #fff;
 | |
|   background-color: #3a32d1;
 | |
|   border-color: #352dc9;
 | |
| }
 | |
| 
 | |
| .btn-primary:focus,
 | |
| .btn-primary.focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(113, 107, 222, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-primary.disabled,
 | |
| .btn-primary:disabled {
 | |
|   color: #fff;
 | |
|   background-color: #5851D8;
 | |
|   border-color: #5851D8;
 | |
| }
 | |
| 
 | |
| .btn-primary:not(:disabled):not(.disabled):active,
 | |
| .btn-primary:not(:disabled):not(.disabled).active,
 | |
| .show > .btn-primary.dropdown-toggle {
 | |
|   color: #fff;
 | |
|   background-color: #352dc9;
 | |
|   border-color: #322bbf;
 | |
| }
 | |
| 
 | |
| .btn-primary:not(:disabled):not(.disabled):active:focus,
 | |
| .btn-primary:not(:disabled):not(.disabled).active:focus,
 | |
| .show > .btn-primary.dropdown-toggle:focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(113, 107, 222, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-secondary {
 | |
|   color: #fff;
 | |
|   background-color: #55547A;
 | |
|   border-color: #55547A;
 | |
| }
 | |
| 
 | |
| .btn-secondary:hover {
 | |
|   color: #fff;
 | |
|   background-color: #454463;
 | |
|   border-color: #403f5c;
 | |
| }
 | |
| 
 | |
| .btn-secondary:focus,
 | |
| .btn-secondary.focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(111, 110, 142, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-secondary.disabled,
 | |
| .btn-secondary:disabled {
 | |
|   color: #fff;
 | |
|   background-color: #55547A;
 | |
|   border-color: #55547A;
 | |
| }
 | |
| 
 | |
| .btn-secondary:not(:disabled):not(.disabled):active,
 | |
| .btn-secondary:not(:disabled):not(.disabled).active,
 | |
| .show > .btn-secondary.dropdown-toggle {
 | |
|   color: #fff;
 | |
|   background-color: #403f5c;
 | |
|   border-color: #3b3a54;
 | |
| }
 | |
| 
 | |
| .btn-secondary:not(:disabled):not(.disabled):active:focus,
 | |
| .btn-secondary:not(:disabled):not(.disabled).active:focus,
 | |
| .show > .btn-secondary.dropdown-toggle:focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(111, 110, 142, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-success {
 | |
|   color: #fff;
 | |
|   background-color: #00C99C;
 | |
|   border-color: #00C99C;
 | |
| }
 | |
| 
 | |
| .btn-success:hover {
 | |
|   color: #fff;
 | |
|   background-color: #00a37e;
 | |
|   border-color: #009674;
 | |
| }
 | |
| 
 | |
| .btn-success:focus,
 | |
| .btn-success.focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(38, 209, 171, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-success.disabled,
 | |
| .btn-success:disabled {
 | |
|   color: #fff;
 | |
|   background-color: #00C99C;
 | |
|   border-color: #00C99C;
 | |
| }
 | |
| 
 | |
| .btn-success:not(:disabled):not(.disabled):active,
 | |
| .btn-success:not(:disabled):not(.disabled).active,
 | |
| .show > .btn-success.dropdown-toggle {
 | |
|   color: #fff;
 | |
|   background-color: #009674;
 | |
|   border-color: #00896b;
 | |
| }
 | |
| 
 | |
| .btn-success:not(:disabled):not(.disabled):active:focus,
 | |
| .btn-success:not(:disabled):not(.disabled).active:focus,
 | |
| .show > .btn-success.dropdown-toggle:focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(38, 209, 171, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-info {
 | |
|   color: #fff;
 | |
|   background-color: #15B2EC;
 | |
|   border-color: #15B2EC;
 | |
| }
 | |
| 
 | |
| .btn-info:hover {
 | |
|   color: #fff;
 | |
|   background-color: #1098ca;
 | |
|   border-color: #0f8fbf;
 | |
| }
 | |
| 
 | |
| .btn-info:focus,
 | |
| .btn-info.focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(56, 190, 239, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-info.disabled,
 | |
| .btn-info:disabled {
 | |
|   color: #fff;
 | |
|   background-color: #15B2EC;
 | |
|   border-color: #15B2EC;
 | |
| }
 | |
| 
 | |
| .btn-info:not(:disabled):not(.disabled):active,
 | |
| .btn-info:not(:disabled):not(.disabled).active,
 | |
| .show > .btn-info.dropdown-toggle {
 | |
|   color: #fff;
 | |
|   background-color: #0f8fbf;
 | |
|   border-color: #0f86b3;
 | |
| }
 | |
| 
 | |
| .btn-info:not(:disabled):not(.disabled):active:focus,
 | |
| .btn-info:not(:disabled):not(.disabled).active:focus,
 | |
| .show > .btn-info.dropdown-toggle:focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(56, 190, 239, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-warning {
 | |
|   color: #212529;
 | |
|   background-color: #F3AF4E;
 | |
|   border-color: #F3AF4E;
 | |
| }
 | |
| 
 | |
| .btn-warning:hover {
 | |
|   color: #212529;
 | |
|   background-color: #f19f2a;
 | |
|   border-color: #f0991e;
 | |
| }
 | |
| 
 | |
| .btn-warning:focus,
 | |
| .btn-warning.focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(212, 154, 72, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-warning.disabled,
 | |
| .btn-warning:disabled {
 | |
|   color: #212529;
 | |
|   background-color: #F3AF4E;
 | |
|   border-color: #F3AF4E;
 | |
| }
 | |
| 
 | |
| .btn-warning:not(:disabled):not(.disabled):active,
 | |
| .btn-warning:not(:disabled):not(.disabled).active,
 | |
| .show > .btn-warning.dropdown-toggle {
 | |
|   color: #212529;
 | |
|   background-color: #f0991e;
 | |
|   border-color: #ef9412;
 | |
| }
 | |
| 
 | |
| .btn-warning:not(:disabled):not(.disabled):active:focus,
 | |
| .btn-warning:not(:disabled):not(.disabled).active:focus,
 | |
| .show > .btn-warning.dropdown-toggle:focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(212, 154, 72, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-danger {
 | |
|   color: #212529;
 | |
|   background-color: #FB7178;
 | |
|   border-color: #FB7178;
 | |
| }
 | |
| 
 | |
| .btn-danger:hover {
 | |
|   color: #fff;
 | |
|   background-color: #fa4c55;
 | |
|   border-color: #fa3f49;
 | |
| }
 | |
| 
 | |
| .btn-danger:focus,
 | |
| .btn-danger.focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(218, 102, 108, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-danger.disabled,
 | |
| .btn-danger:disabled {
 | |
|   color: #212529;
 | |
|   background-color: #FB7178;
 | |
|   border-color: #FB7178;
 | |
| }
 | |
| 
 | |
| .btn-danger:not(:disabled):not(.disabled):active,
 | |
| .btn-danger:not(:disabled):not(.disabled).active,
 | |
| .show > .btn-danger.dropdown-toggle {
 | |
|   color: #fff;
 | |
|   background-color: #fa3f49;
 | |
|   border-color: #f9333d;
 | |
| }
 | |
| 
 | |
| .btn-danger:not(:disabled):not(.disabled):active:focus,
 | |
| .btn-danger:not(:disabled):not(.disabled).active:focus,
 | |
| .show > .btn-danger.dropdown-toggle:focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(218, 102, 108, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-light {
 | |
|   color: #fff;
 | |
|   background-color: #817AE3;
 | |
|   border-color: #817AE3;
 | |
| }
 | |
| 
 | |
| .btn-light:hover {
 | |
|   color: #fff;
 | |
|   background-color: #635adc;
 | |
|   border-color: #5950da;
 | |
| }
 | |
| 
 | |
| .btn-light:focus,
 | |
| .btn-light.focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(148, 142, 231, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-light.disabled,
 | |
| .btn-light:disabled {
 | |
|   color: #fff;
 | |
|   background-color: #817AE3;
 | |
|   border-color: #817AE3;
 | |
| }
 | |
| 
 | |
| .btn-light:not(:disabled):not(.disabled):active,
 | |
| .btn-light:not(:disabled):not(.disabled).active,
 | |
| .show > .btn-light.dropdown-toggle {
 | |
|   color: #fff;
 | |
|   background-color: #5950da;
 | |
|   border-color: #4f45d8;
 | |
| }
 | |
| 
 | |
| .btn-light:not(:disabled):not(.disabled):active:focus,
 | |
| .btn-light:not(:disabled):not(.disabled).active:focus,
 | |
| .show > .btn-light.dropdown-toggle:focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(148, 142, 231, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-dark {
 | |
|   color: #fff;
 | |
|   background-color: #55547A;
 | |
|   border-color: #55547A;
 | |
| }
 | |
| 
 | |
| .btn-dark:hover {
 | |
|   color: #fff;
 | |
|   background-color: #454463;
 | |
|   border-color: #403f5c;
 | |
| }
 | |
| 
 | |
| .btn-dark:focus,
 | |
| .btn-dark.focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(111, 110, 142, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-dark.disabled,
 | |
| .btn-dark:disabled {
 | |
|   color: #fff;
 | |
|   background-color: #55547A;
 | |
|   border-color: #55547A;
 | |
| }
 | |
| 
 | |
| .btn-dark:not(:disabled):not(.disabled):active,
 | |
| .btn-dark:not(:disabled):not(.disabled).active,
 | |
| .show > .btn-dark.dropdown-toggle {
 | |
|   color: #fff;
 | |
|   background-color: #403f5c;
 | |
|   border-color: #3b3a54;
 | |
| }
 | |
| 
 | |
| .btn-dark:not(:disabled):not(.disabled):active:focus,
 | |
| .btn-dark:not(:disabled):not(.disabled).active:focus,
 | |
| .show > .btn-dark.dropdown-toggle:focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(111, 110, 142, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-outline-primary {
 | |
|   color: #5851D8;
 | |
|   border-color: #5851D8;
 | |
| }
 | |
| 
 | |
| .btn-outline-primary:hover {
 | |
|   color: #fff;
 | |
|   background-color: #5851D8;
 | |
|   border-color: #5851D8;
 | |
| }
 | |
| 
 | |
| .btn-outline-primary:focus,
 | |
| .btn-outline-primary.focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(88, 81, 216, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-outline-primary.disabled,
 | |
| .btn-outline-primary:disabled {
 | |
|   color: #5851D8;
 | |
|   background-color: transparent;
 | |
| }
 | |
| 
 | |
| .btn-outline-primary:not(:disabled):not(.disabled):active,
 | |
| .btn-outline-primary:not(:disabled):not(.disabled).active,
 | |
| .show > .btn-outline-primary.dropdown-toggle {
 | |
|   color: #fff;
 | |
|   background-color: #5851D8;
 | |
|   border-color: #5851D8;
 | |
| }
 | |
| 
 | |
| .btn-outline-primary:not(:disabled):not(.disabled):active:focus,
 | |
| .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
 | |
| .show > .btn-outline-primary.dropdown-toggle:focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(88, 81, 216, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-outline-secondary {
 | |
|   color: #55547A;
 | |
|   border-color: #55547A;
 | |
| }
 | |
| 
 | |
| .btn-outline-secondary:hover {
 | |
|   color: #fff;
 | |
|   background-color: #55547A;
 | |
|   border-color: #55547A;
 | |
| }
 | |
| 
 | |
| .btn-outline-secondary:focus,
 | |
| .btn-outline-secondary.focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(85, 84, 122, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-outline-secondary.disabled,
 | |
| .btn-outline-secondary:disabled {
 | |
|   color: #55547A;
 | |
|   background-color: transparent;
 | |
| }
 | |
| 
 | |
| .btn-outline-secondary:not(:disabled):not(.disabled):active,
 | |
| .btn-outline-secondary:not(:disabled):not(.disabled).active,
 | |
| .show > .btn-outline-secondary.dropdown-toggle {
 | |
|   color: #fff;
 | |
|   background-color: #55547A;
 | |
|   border-color: #55547A;
 | |
| }
 | |
| 
 | |
| .btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
 | |
| .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
 | |
| .show > .btn-outline-secondary.dropdown-toggle:focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(85, 84, 122, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-outline-success {
 | |
|   color: #00C99C;
 | |
|   border-color: #00C99C;
 | |
| }
 | |
| 
 | |
| .btn-outline-success:hover {
 | |
|   color: #fff;
 | |
|   background-color: #00C99C;
 | |
|   border-color: #00C99C;
 | |
| }
 | |
| 
 | |
| .btn-outline-success:focus,
 | |
| .btn-outline-success.focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(0, 201, 156, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-outline-success.disabled,
 | |
| .btn-outline-success:disabled {
 | |
|   color: #00C99C;
 | |
|   background-color: transparent;
 | |
| }
 | |
| 
 | |
| .btn-outline-success:not(:disabled):not(.disabled):active,
 | |
| .btn-outline-success:not(:disabled):not(.disabled).active,
 | |
| .show > .btn-outline-success.dropdown-toggle {
 | |
|   color: #fff;
 | |
|   background-color: #00C99C;
 | |
|   border-color: #00C99C;
 | |
| }
 | |
| 
 | |
| .btn-outline-success:not(:disabled):not(.disabled):active:focus,
 | |
| .btn-outline-success:not(:disabled):not(.disabled).active:focus,
 | |
| .show > .btn-outline-success.dropdown-toggle:focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(0, 201, 156, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-outline-info {
 | |
|   color: #15B2EC;
 | |
|   border-color: #15B2EC;
 | |
| }
 | |
| 
 | |
| .btn-outline-info:hover {
 | |
|   color: #fff;
 | |
|   background-color: #15B2EC;
 | |
|   border-color: #15B2EC;
 | |
| }
 | |
| 
 | |
| .btn-outline-info:focus,
 | |
| .btn-outline-info.focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(21, 178, 236, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-outline-info.disabled,
 | |
| .btn-outline-info:disabled {
 | |
|   color: #15B2EC;
 | |
|   background-color: transparent;
 | |
| }
 | |
| 
 | |
| .btn-outline-info:not(:disabled):not(.disabled):active,
 | |
| .btn-outline-info:not(:disabled):not(.disabled).active,
 | |
| .show > .btn-outline-info.dropdown-toggle {
 | |
|   color: #fff;
 | |
|   background-color: #15B2EC;
 | |
|   border-color: #15B2EC;
 | |
| }
 | |
| 
 | |
| .btn-outline-info:not(:disabled):not(.disabled):active:focus,
 | |
| .btn-outline-info:not(:disabled):not(.disabled).active:focus,
 | |
| .show > .btn-outline-info.dropdown-toggle:focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(21, 178, 236, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-outline-warning {
 | |
|   color: #F3AF4E;
 | |
|   border-color: #F3AF4E;
 | |
| }
 | |
| 
 | |
| .btn-outline-warning:hover {
 | |
|   color: #212529;
 | |
|   background-color: #F3AF4E;
 | |
|   border-color: #F3AF4E;
 | |
| }
 | |
| 
 | |
| .btn-outline-warning:focus,
 | |
| .btn-outline-warning.focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(243, 175, 78, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-outline-warning.disabled,
 | |
| .btn-outline-warning:disabled {
 | |
|   color: #F3AF4E;
 | |
|   background-color: transparent;
 | |
| }
 | |
| 
 | |
| .btn-outline-warning:not(:disabled):not(.disabled):active,
 | |
| .btn-outline-warning:not(:disabled):not(.disabled).active,
 | |
| .show > .btn-outline-warning.dropdown-toggle {
 | |
|   color: #212529;
 | |
|   background-color: #F3AF4E;
 | |
|   border-color: #F3AF4E;
 | |
| }
 | |
| 
 | |
| .btn-outline-warning:not(:disabled):not(.disabled):active:focus,
 | |
| .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
 | |
| .show > .btn-outline-warning.dropdown-toggle:focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(243, 175, 78, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-outline-danger {
 | |
|   color: #FB7178;
 | |
|   border-color: #FB7178;
 | |
| }
 | |
| 
 | |
| .btn-outline-danger:hover {
 | |
|   color: #212529;
 | |
|   background-color: #FB7178;
 | |
|   border-color: #FB7178;
 | |
| }
 | |
| 
 | |
| .btn-outline-danger:focus,
 | |
| .btn-outline-danger.focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(251, 113, 120, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-outline-danger.disabled,
 | |
| .btn-outline-danger:disabled {
 | |
|   color: #FB7178;
 | |
|   background-color: transparent;
 | |
| }
 | |
| 
 | |
| .btn-outline-danger:not(:disabled):not(.disabled):active,
 | |
| .btn-outline-danger:not(:disabled):not(.disabled).active,
 | |
| .show > .btn-outline-danger.dropdown-toggle {
 | |
|   color: #212529;
 | |
|   background-color: #FB7178;
 | |
|   border-color: #FB7178;
 | |
| }
 | |
| 
 | |
| .btn-outline-danger:not(:disabled):not(.disabled):active:focus,
 | |
| .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
 | |
| .show > .btn-outline-danger.dropdown-toggle:focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(251, 113, 120, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-outline-light {
 | |
|   color: #817AE3;
 | |
|   border-color: #817AE3;
 | |
| }
 | |
| 
 | |
| .btn-outline-light:hover {
 | |
|   color: #fff;
 | |
|   background-color: #817AE3;
 | |
|   border-color: #817AE3;
 | |
| }
 | |
| 
 | |
| .btn-outline-light:focus,
 | |
| .btn-outline-light.focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(129, 122, 227, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-outline-light.disabled,
 | |
| .btn-outline-light:disabled {
 | |
|   color: #817AE3;
 | |
|   background-color: transparent;
 | |
| }
 | |
| 
 | |
| .btn-outline-light:not(:disabled):not(.disabled):active,
 | |
| .btn-outline-light:not(:disabled):not(.disabled).active,
 | |
| .show > .btn-outline-light.dropdown-toggle {
 | |
|   color: #fff;
 | |
|   background-color: #817AE3;
 | |
|   border-color: #817AE3;
 | |
| }
 | |
| 
 | |
| .btn-outline-light:not(:disabled):not(.disabled):active:focus,
 | |
| .btn-outline-light:not(:disabled):not(.disabled).active:focus,
 | |
| .show > .btn-outline-light.dropdown-toggle:focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(129, 122, 227, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-outline-dark {
 | |
|   color: #55547A;
 | |
|   border-color: #55547A;
 | |
| }
 | |
| 
 | |
| .btn-outline-dark:hover {
 | |
|   color: #fff;
 | |
|   background-color: #55547A;
 | |
|   border-color: #55547A;
 | |
| }
 | |
| 
 | |
| .btn-outline-dark:focus,
 | |
| .btn-outline-dark.focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(85, 84, 122, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-outline-dark.disabled,
 | |
| .btn-outline-dark:disabled {
 | |
|   color: #55547A;
 | |
|   background-color: transparent;
 | |
| }
 | |
| 
 | |
| .btn-outline-dark:not(:disabled):not(.disabled):active,
 | |
| .btn-outline-dark:not(:disabled):not(.disabled).active,
 | |
| .show > .btn-outline-dark.dropdown-toggle {
 | |
|   color: #fff;
 | |
|   background-color: #55547A;
 | |
|   border-color: #55547A;
 | |
| }
 | |
| 
 | |
| .btn-outline-dark:not(:disabled):not(.disabled):active:focus,
 | |
| .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
 | |
| .show > .btn-outline-dark.dropdown-toggle:focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(85, 84, 122, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-link {
 | |
|   font-weight: 400;
 | |
|   color: #5851D8;
 | |
|   text-decoration: none;
 | |
| }
 | |
| 
 | |
| .btn-link:hover {
 | |
|   color: #3028b4;
 | |
|   text-decoration: underline;
 | |
| }
 | |
| 
 | |
| .btn-link:focus,
 | |
| .btn-link.focus {
 | |
|   text-decoration: underline;
 | |
|   box-shadow: none;
 | |
| }
 | |
| 
 | |
| .btn-link:disabled,
 | |
| .btn-link.disabled {
 | |
|   color: #6c757d;
 | |
|   pointer-events: none;
 | |
| }
 | |
| 
 | |
| .btn-lg,
 | |
| .btn-group-lg > .btn {
 | |
|   padding: 0.5rem 1rem;
 | |
|   font-size: 1.25rem;
 | |
|   line-height: 1.5;
 | |
|   border-radius: 0.3rem;
 | |
| }
 | |
| 
 | |
| .btn-sm,
 | |
| .btn-group-sm > .btn {
 | |
|   padding: 0.25rem 0.5rem;
 | |
|   font-size: 0.875rem;
 | |
|   line-height: 1.5;
 | |
|   border-radius: 0.2rem;
 | |
| }
 | |
| 
 | |
| .btn-block {
 | |
|   display: block;
 | |
|   width: 100%;
 | |
| }
 | |
| 
 | |
| .btn-block + .btn-block {
 | |
|   margin-top: 0.5rem;
 | |
| }
 | |
| 
 | |
| input[type=submit].btn-block,
 | |
| input[type=reset].btn-block,
 | |
| input[type=button].btn-block {
 | |
|   width: 100%;
 | |
| }
 | |
| 
 | |
| .fade {
 | |
|   transition: opacity 0.15s linear;
 | |
| }
 | |
| 
 | |
| @media (prefers-reduced-motion: reduce) {
 | |
|   .fade {
 | |
|     transition: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .fade:not(.show) {
 | |
|   opacity: 0;
 | |
| }
 | |
| 
 | |
| .collapse:not(.show) {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| .collapsing {
 | |
|   position: relative;
 | |
|   height: 0;
 | |
|   overflow: hidden;
 | |
|   transition: height 0.35s ease;
 | |
| }
 | |
| 
 | |
| @media (prefers-reduced-motion: reduce) {
 | |
|   .collapsing {
 | |
|     transition: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .dropup,
 | |
| .dropright,
 | |
| .dropdown,
 | |
| .dropleft {
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| .dropdown-toggle {
 | |
|   white-space: nowrap;
 | |
| }
 | |
| 
 | |
| .dropdown-toggle::after {
 | |
|   display: inline-block;
 | |
|   margin-left: 0.255em;
 | |
|   vertical-align: 0.255em;
 | |
|   content: "";
 | |
|   border-top: 0.3em solid;
 | |
|   border-right: 0.3em solid transparent;
 | |
|   border-bottom: 0;
 | |
|   border-left: 0.3em solid transparent;
 | |
| }
 | |
| 
 | |
| .dropdown-toggle:empty::after {
 | |
|   margin-left: 0;
 | |
| }
 | |
| 
 | |
| .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: #212529;
 | |
|   text-align: left;
 | |
|   list-style: none;
 | |
|   background-color: #040405;
 | |
|   background-clip: padding-box;
 | |
|   border: 1px solid #040405;
 | |
|   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;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .dropup .dropdown-menu {
 | |
|   top: auto;
 | |
|   bottom: 100%;
 | |
|   margin-top: 0;
 | |
|   margin-bottom: 0.125rem;
 | |
| }
 | |
| 
 | |
| .dropup .dropdown-toggle::after {
 | |
|   display: inline-block;
 | |
|   margin-left: 0.255em;
 | |
|   vertical-align: 0.255em;
 | |
|   content: "";
 | |
|   border-top: 0;
 | |
|   border-right: 0.3em solid transparent;
 | |
|   border-bottom: 0.3em solid;
 | |
|   border-left: 0.3em solid transparent;
 | |
| }
 | |
| 
 | |
| .dropup .dropdown-toggle:empty::after {
 | |
|   margin-left: 0;
 | |
| }
 | |
| 
 | |
| .dropright .dropdown-menu {
 | |
|   top: 0;
 | |
|   right: auto;
 | |
|   left: 100%;
 | |
|   margin-top: 0;
 | |
|   margin-left: 0.125rem;
 | |
| }
 | |
| 
 | |
| .dropright .dropdown-toggle::after {
 | |
|   display: inline-block;
 | |
|   margin-left: 0.255em;
 | |
|   vertical-align: 0.255em;
 | |
|   content: "";
 | |
|   border-top: 0.3em solid transparent;
 | |
|   border-right: 0;
 | |
|   border-bottom: 0.3em solid transparent;
 | |
|   border-left: 0.3em solid;
 | |
| }
 | |
| 
 | |
| .dropright .dropdown-toggle:empty::after {
 | |
|   margin-left: 0;
 | |
| }
 | |
| 
 | |
| .dropright .dropdown-toggle::after {
 | |
|   vertical-align: 0;
 | |
| }
 | |
| 
 | |
| .dropleft .dropdown-menu {
 | |
|   top: 0;
 | |
|   right: 100%;
 | |
|   left: auto;
 | |
|   margin-top: 0;
 | |
|   margin-right: 0.125rem;
 | |
| }
 | |
| 
 | |
| .dropleft .dropdown-toggle::after {
 | |
|   display: inline-block;
 | |
|   margin-left: 0.255em;
 | |
|   vertical-align: 0.255em;
 | |
|   content: "";
 | |
| }
 | |
| 
 | |
| .dropleft .dropdown-toggle::after {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| .dropleft .dropdown-toggle::before {
 | |
|   display: inline-block;
 | |
|   margin-right: 0.255em;
 | |
|   vertical-align: 0.255em;
 | |
|   content: "";
 | |
|   border-top: 0.3em solid transparent;
 | |
|   border-right: 0.3em solid;
 | |
|   border-bottom: 0.3em solid transparent;
 | |
| }
 | |
| 
 | |
| .dropleft .dropdown-toggle:empty::after {
 | |
|   margin-left: 0;
 | |
| }
 | |
| 
 | |
| .dropleft .dropdown-toggle::before {
 | |
|   vertical-align: 0;
 | |
| }
 | |
| 
 | |
| .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 #595959;
 | |
| }
 | |
| 
 | |
| .dropdown-item {
 | |
|   display: block;
 | |
|   width: 100%;
 | |
|   padding: 0.25rem 1.5rem;
 | |
|   clear: both;
 | |
|   font-weight: 400;
 | |
|   color: #fff;
 | |
|   text-align: inherit;
 | |
|   white-space: nowrap;
 | |
|   background-color: transparent;
 | |
|   border: 0;
 | |
| }
 | |
| 
 | |
| .dropdown-item:hover,
 | |
| .dropdown-item:focus {
 | |
|   color: #16181b;
 | |
|   text-decoration: none;
 | |
|   background-color: #f8f9fa;
 | |
| }
 | |
| 
 | |
| .dropdown-item.active,
 | |
| .dropdown-item:active {
 | |
|   color: #fff;
 | |
|   text-decoration: none;
 | |
|   background-color: #5851D8;
 | |
| }
 | |
| 
 | |
| .dropdown-item.disabled,
 | |
| .dropdown-item:disabled {
 | |
|   color: #6c757d;
 | |
|   pointer-events: none;
 | |
|   background-color: transparent;
 | |
| }
 | |
| 
 | |
| .dropdown-menu.show {
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| .dropdown-header {
 | |
|   display: block;
 | |
|   padding: 0.5rem 1.5rem;
 | |
|   margin-bottom: 0;
 | |
|   font-size: 0.875rem;
 | |
|   color: #5851D8;
 | |
|   white-space: nowrap;
 | |
| }
 | |
| 
 | |
| .dropdown-item-text {
 | |
|   display: block;
 | |
|   padding: 0.25rem 1.5rem;
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .btn-group,
 | |
| .btn-group-vertical {
 | |
|   position: relative;
 | |
|   display: inline-flex;
 | |
|   vertical-align: middle;
 | |
| }
 | |
| 
 | |
| .btn-group > .btn,
 | |
| .btn-group-vertical > .btn {
 | |
|   position: relative;
 | |
|   flex: 1 1 auto;
 | |
| }
 | |
| 
 | |
| .btn-group > .btn:hover,
 | |
| .btn-group-vertical > .btn:hover {
 | |
|   z-index: 1;
 | |
| }
 | |
| 
 | |
| .btn-group > .btn:focus,
 | |
| .btn-group > .btn:active,
 | |
| .btn-group > .btn.active,
 | |
| .btn-group-vertical > .btn:focus,
 | |
| .btn-group-vertical > .btn:active,
 | |
| .btn-group-vertical > .btn.active {
 | |
|   z-index: 1;
 | |
| }
 | |
| 
 | |
| .btn-toolbar {
 | |
|   display: flex;
 | |
|   flex-wrap: wrap;
 | |
|   justify-content: flex-start;
 | |
| }
 | |
| 
 | |
| .btn-toolbar .input-group {
 | |
|   width: auto;
 | |
| }
 | |
| 
 | |
| .btn-group > .btn:not(:first-child),
 | |
| .btn-group > .btn-group:not(:first-child) {
 | |
|   margin-left: -1px;
 | |
| }
 | |
| 
 | |
| .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
 | |
| .btn-group > .btn-group:not(:last-child) > .btn {
 | |
|   border-top-right-radius: 0;
 | |
|   border-bottom-right-radius: 0;
 | |
| }
 | |
| 
 | |
| .btn-group > .btn:not(:first-child),
 | |
| .btn-group > .btn-group:not(:first-child) > .btn {
 | |
|   border-top-left-radius: 0;
 | |
|   border-bottom-left-radius: 0;
 | |
| }
 | |
| 
 | |
| .dropdown-toggle-split {
 | |
|   padding-right: 0.5625rem;
 | |
|   padding-left: 0.5625rem;
 | |
| }
 | |
| 
 | |
| .dropdown-toggle-split::after,
 | |
| .dropup .dropdown-toggle-split::after,
 | |
| .dropright .dropdown-toggle-split::after {
 | |
|   margin-left: 0;
 | |
| }
 | |
| 
 | |
| .dropleft .dropdown-toggle-split::before {
 | |
|   margin-right: 0;
 | |
| }
 | |
| 
 | |
| .btn-sm + .dropdown-toggle-split,
 | |
| .btn-group-sm > .btn + .dropdown-toggle-split {
 | |
|   padding-right: 0.375rem;
 | |
|   padding-left: 0.375rem;
 | |
| }
 | |
| 
 | |
| .btn-lg + .dropdown-toggle-split,
 | |
| .btn-group-lg > .btn + .dropdown-toggle-split {
 | |
|   padding-right: 0.75rem;
 | |
|   padding-left: 0.75rem;
 | |
| }
 | |
| 
 | |
| .btn-group-vertical {
 | |
|   flex-direction: column;
 | |
|   align-items: flex-start;
 | |
|   justify-content: center;
 | |
| }
 | |
| 
 | |
| .btn-group-vertical > .btn,
 | |
| .btn-group-vertical > .btn-group {
 | |
|   width: 100%;
 | |
| }
 | |
| 
 | |
| .btn-group-vertical > .btn:not(:first-child),
 | |
| .btn-group-vertical > .btn-group:not(:first-child) {
 | |
|   margin-top: -1px;
 | |
| }
 | |
| 
 | |
| .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
 | |
| .btn-group-vertical > .btn-group:not(:last-child) > .btn {
 | |
|   border-bottom-right-radius: 0;
 | |
|   border-bottom-left-radius: 0;
 | |
| }
 | |
| 
 | |
| .btn-group-vertical > .btn:not(:first-child),
 | |
| .btn-group-vertical > .btn-group:not(:first-child) > .btn {
 | |
|   border-top-left-radius: 0;
 | |
|   border-top-right-radius: 0;
 | |
| }
 | |
| 
 | |
| .btn-group-toggle > .btn,
 | |
| .btn-group-toggle > .btn-group > .btn {
 | |
|   margin-bottom: 0;
 | |
| }
 | |
| 
 | |
| .btn-group-toggle > .btn input[type=radio],
 | |
| .btn-group-toggle > .btn input[type=checkbox],
 | |
| .btn-group-toggle > .btn-group > .btn input[type=radio],
 | |
| .btn-group-toggle > .btn-group > .btn input[type=checkbox] {
 | |
|   position: absolute;
 | |
|   clip: rect(0, 0, 0, 0);
 | |
|   pointer-events: none;
 | |
| }
 | |
| 
 | |
| .input-group {
 | |
|   position: relative;
 | |
|   display: flex;
 | |
|   flex-wrap: wrap;
 | |
|   align-items: stretch;
 | |
|   width: 100%;
 | |
| }
 | |
| 
 | |
| .input-group > .form-control,
 | |
| .input-group > .form-control-plaintext,
 | |
| .input-group > .custom-select,
 | |
| .input-group > .custom-file {
 | |
|   position: relative;
 | |
|   flex: 1 1 auto;
 | |
|   width: 1%;
 | |
|   margin-bottom: 0;
 | |
| }
 | |
| 
 | |
| .input-group > .form-control + .form-control,
 | |
| .input-group > .form-control + .custom-select,
 | |
| .input-group > .form-control + .custom-file,
 | |
| .input-group > .form-control-plaintext + .form-control,
 | |
| .input-group > .form-control-plaintext + .custom-select,
 | |
| .input-group > .form-control-plaintext + .custom-file,
 | |
| .input-group > .custom-select + .form-control,
 | |
| .input-group > .custom-select + .custom-select,
 | |
| .input-group > .custom-select + .custom-file,
 | |
| .input-group > .custom-file + .form-control,
 | |
| .input-group > .custom-file + .custom-select,
 | |
| .input-group > .custom-file + .custom-file {
 | |
|   margin-left: -1px;
 | |
| }
 | |
| 
 | |
| .input-group > .form-control:focus,
 | |
| .input-group > .custom-select:focus,
 | |
| .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
 | |
|   z-index: 3;
 | |
| }
 | |
| 
 | |
| .input-group > .custom-file .custom-file-input:focus {
 | |
|   z-index: 4;
 | |
| }
 | |
| 
 | |
| .input-group > .form-control:not(:last-child),
 | |
| .input-group > .custom-select:not(:last-child) {
 | |
|   border-top-right-radius: 0;
 | |
|   border-bottom-right-radius: 0;
 | |
| }
 | |
| 
 | |
| .input-group > .form-control:not(:first-child),
 | |
| .input-group > .custom-select:not(:first-child) {
 | |
|   border-top-left-radius: 0;
 | |
|   border-bottom-left-radius: 0;
 | |
| }
 | |
| 
 | |
| .input-group > .custom-file {
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
| }
 | |
| 
 | |
| .input-group > .custom-file:not(:last-child) .custom-file-label,
 | |
| .input-group > .custom-file:not(:last-child) .custom-file-label::after {
 | |
|   border-top-right-radius: 0;
 | |
|   border-bottom-right-radius: 0;
 | |
| }
 | |
| 
 | |
| .input-group > .custom-file:not(:first-child) .custom-file-label {
 | |
|   border-top-left-radius: 0;
 | |
|   border-bottom-left-radius: 0;
 | |
| }
 | |
| 
 | |
| .input-group-prepend,
 | |
| .input-group-append {
 | |
|   display: flex;
 | |
| }
 | |
| 
 | |
| .input-group-prepend .btn,
 | |
| .input-group-append .btn {
 | |
|   position: relative;
 | |
|   z-index: 2;
 | |
| }
 | |
| 
 | |
| .input-group-prepend .btn:focus,
 | |
| .input-group-append .btn:focus {
 | |
|   z-index: 3;
 | |
| }
 | |
| 
 | |
| .input-group-prepend .btn + .btn,
 | |
| .input-group-prepend .btn + .input-group-text,
 | |
| .input-group-prepend .input-group-text + .input-group-text,
 | |
| .input-group-prepend .input-group-text + .btn,
 | |
| .input-group-append .btn + .btn,
 | |
| .input-group-append .btn + .input-group-text,
 | |
| .input-group-append .input-group-text + .input-group-text,
 | |
| .input-group-append .input-group-text + .btn {
 | |
|   margin-left: -1px;
 | |
| }
 | |
| 
 | |
| .input-group-prepend {
 | |
|   margin-right: -1px;
 | |
| }
 | |
| 
 | |
| .input-group-append {
 | |
|   margin-left: -1px;
 | |
| }
 | |
| 
 | |
| .input-group-text {
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
|   padding: 0.375rem 0.75rem;
 | |
|   margin-bottom: 0;
 | |
|   font-size: 1rem;
 | |
|   font-weight: 400;
 | |
|   line-height: 1.5;
 | |
|   color: #495057;
 | |
|   text-align: center;
 | |
|   white-space: nowrap;
 | |
|   background-color: #e9ecef;
 | |
|   border: 1px solid #ced4da;
 | |
|   border-radius: 0.25rem;
 | |
| }
 | |
| 
 | |
| .input-group-text input[type=radio],
 | |
| .input-group-text input[type=checkbox] {
 | |
|   margin-top: 0;
 | |
| }
 | |
| 
 | |
| .input-group-lg > .form-control:not(textarea),
 | |
| .input-group-lg > .custom-select {
 | |
|   height: calc(1.5em + 1rem + 2px);
 | |
| }
 | |
| 
 | |
| .input-group-lg > .form-control,
 | |
| .input-group-lg > .custom-select,
 | |
| .input-group-lg > .input-group-prepend > .input-group-text,
 | |
| .input-group-lg > .input-group-append > .input-group-text,
 | |
| .input-group-lg > .input-group-prepend > .btn,
 | |
| .input-group-lg > .input-group-append > .btn {
 | |
|   padding: 0.5rem 1rem;
 | |
|   font-size: 1.25rem;
 | |
|   line-height: 1.5;
 | |
|   border-radius: 0.3rem;
 | |
| }
 | |
| 
 | |
| .input-group-sm > .form-control:not(textarea),
 | |
| .input-group-sm > .custom-select {
 | |
|   height: calc(1.5em + 0.5rem + 2px);
 | |
| }
 | |
| 
 | |
| .input-group-sm > .form-control,
 | |
| .input-group-sm > .custom-select,
 | |
| .input-group-sm > .input-group-prepend > .input-group-text,
 | |
| .input-group-sm > .input-group-append > .input-group-text,
 | |
| .input-group-sm > .input-group-prepend > .btn,
 | |
| .input-group-sm > .input-group-append > .btn {
 | |
|   padding: 0.25rem 0.5rem;
 | |
|   font-size: 0.875rem;
 | |
|   line-height: 1.5;
 | |
|   border-radius: 0.2rem;
 | |
| }
 | |
| 
 | |
| .input-group-lg > .custom-select,
 | |
| .input-group-sm > .custom-select {
 | |
|   padding-right: 1.75rem;
 | |
| }
 | |
| 
 | |
| .input-group > .input-group-prepend > .btn,
 | |
| .input-group > .input-group-prepend > .input-group-text,
 | |
| .input-group > .input-group-append:not(:last-child) > .btn,
 | |
| .input-group > .input-group-append:not(:last-child) > .input-group-text,
 | |
| .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) {
 | |
|   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:not(:first-child) > .btn,
 | |
| .input-group > .input-group-prepend:not(:first-child) > .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) {
 | |
|   border-top-left-radius: 0;
 | |
|   border-bottom-left-radius: 0;
 | |
| }
 | |
| 
 | |
| .custom-control {
 | |
|   position: relative;
 | |
|   display: block;
 | |
|   min-height: 1.5rem;
 | |
|   padding-left: 1.5rem;
 | |
| }
 | |
| 
 | |
| .custom-control-inline {
 | |
|   display: inline-flex;
 | |
|   margin-right: 1rem;
 | |
| }
 | |
| 
 | |
| .custom-control-input {
 | |
|   position: absolute;
 | |
|   z-index: -1;
 | |
|   opacity: 0;
 | |
| }
 | |
| 
 | |
| .custom-control-input:checked ~ .custom-control-label::before {
 | |
|   color: #fff;
 | |
|   border-color: #5851D8;
 | |
|   background-color: #5851D8;
 | |
| }
 | |
| 
 | |
| .custom-control-input:focus ~ .custom-control-label::before {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(88, 81, 216, 0.25);
 | |
| }
 | |
| 
 | |
| .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
 | |
|   border-color: #bcb9ef;
 | |
| }
 | |
| 
 | |
| .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
 | |
|   color: #fff;
 | |
|   background-color: #e4e3f9;
 | |
|   border-color: #e4e3f9;
 | |
| }
 | |
| 
 | |
| .custom-control-input:disabled ~ .custom-control-label {
 | |
|   color: #6c757d;
 | |
| }
 | |
| 
 | |
| .custom-control-input:disabled ~ .custom-control-label::before {
 | |
|   background-color: #e9ecef;
 | |
| }
 | |
| 
 | |
| .custom-control-label {
 | |
|   position: relative;
 | |
|   margin-bottom: 0;
 | |
|   vertical-align: top;
 | |
| }
 | |
| 
 | |
| .custom-control-label::before {
 | |
|   position: absolute;
 | |
|   top: 0.25rem;
 | |
|   left: -1.5rem;
 | |
|   display: block;
 | |
|   width: 1rem;
 | |
|   height: 1rem;
 | |
|   pointer-events: none;
 | |
|   content: "";
 | |
|   background-color: #fff;
 | |
|   border: #adb5bd solid 1px;
 | |
| }
 | |
| 
 | |
| .custom-control-label::after {
 | |
|   position: absolute;
 | |
|   top: 0.25rem;
 | |
|   left: -1.5rem;
 | |
|   display: block;
 | |
|   width: 1rem;
 | |
|   height: 1rem;
 | |
|   content: "";
 | |
|   background: no-repeat 50%/50% 50%;
 | |
| }
 | |
| 
 | |
| .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,%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: #5851D8;
 | |
|   background-color: #5851D8;
 | |
| }
 | |
| 
 | |
| .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
 | |
|   background-image: url("data:image/svg+xml,%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-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
 | |
|   background-color: rgba(88, 81, 216, 0.5);
 | |
| }
 | |
| 
 | |
| .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
 | |
|   background-color: rgba(88, 81, 216, 0.5);
 | |
| }
 | |
| 
 | |
| .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,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
 | |
| }
 | |
| 
 | |
| .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
 | |
|   background-color: rgba(88, 81, 216, 0.5);
 | |
| }
 | |
| 
 | |
| .custom-switch {
 | |
|   padding-left: 2.25rem;
 | |
| }
 | |
| 
 | |
| .custom-switch .custom-control-label::before {
 | |
|   left: -2.25rem;
 | |
|   width: 1.75rem;
 | |
|   pointer-events: all;
 | |
|   border-radius: 0.5rem;
 | |
| }
 | |
| 
 | |
| .custom-switch .custom-control-label::after {
 | |
|   top: calc(0.25rem + 2px);
 | |
|   left: calc(-2.25rem + 2px);
 | |
|   width: calc(1rem - 4px);
 | |
|   height: calc(1rem - 4px);
 | |
|   background-color: #adb5bd;
 | |
|   border-radius: 0.5rem;
 | |
|   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;
 | |
| }
 | |
| 
 | |
| @media (prefers-reduced-motion: reduce) {
 | |
|   .custom-switch .custom-control-label::after {
 | |
|     transition: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
 | |
|   background-color: #fff;
 | |
|   transform: translateX(0.75rem);
 | |
| }
 | |
| 
 | |
| .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
 | |
|   background-color: rgba(88, 81, 216, 0.5);
 | |
| }
 | |
| 
 | |
| .custom-select {
 | |
|   display: inline-block;
 | |
|   width: 100%;
 | |
|   height: calc(1.5em + 0.75rem + 2px);
 | |
|   padding: 0.375rem 1.75rem 0.375rem 0.75rem;
 | |
|   font-size: 1rem;
 | |
|   font-weight: 400;
 | |
|   line-height: 1.5;
 | |
|   color: #495057;
 | |
|   vertical-align: middle;
 | |
|   background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
 | |
|   background-color: #fff;
 | |
|   border: 1px solid #ced4da;
 | |
|   border-radius: 0.25rem;
 | |
|   -webkit-appearance: none;
 | |
|      -moz-appearance: none;
 | |
|           appearance: none;
 | |
| }
 | |
| 
 | |
| .custom-select:focus {
 | |
|   border-color: #bcb9ef;
 | |
|   outline: 0;
 | |
|   box-shadow: 0 0 0 0.2rem rgba(88, 81, 216, 0.25);
 | |
| }
 | |
| 
 | |
| .custom-select:focus::-ms-value {
 | |
|   color: #495057;
 | |
|   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: #6c757d;
 | |
|   background-color: #e9ecef;
 | |
| }
 | |
| 
 | |
| .custom-select::-ms-expand {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| .custom-select-sm {
 | |
|   height: calc(1.5em + 0.5rem + 2px);
 | |
|   padding-top: 0.25rem;
 | |
|   padding-bottom: 0.25rem;
 | |
|   padding-left: 0.5rem;
 | |
|   font-size: 0.875rem;
 | |
| }
 | |
| 
 | |
| .custom-select-lg {
 | |
|   height: calc(1.5em + 1rem + 2px);
 | |
|   padding-top: 0.5rem;
 | |
|   padding-bottom: 0.5rem;
 | |
|   padding-left: 1rem;
 | |
|   font-size: 1.25rem;
 | |
| }
 | |
| 
 | |
| .custom-file {
 | |
|   position: relative;
 | |
|   display: inline-block;
 | |
|   width: 100%;
 | |
|   height: calc(1.5em + 0.75rem + 2px);
 | |
|   margin-bottom: 0;
 | |
| }
 | |
| 
 | |
| .custom-file-input {
 | |
|   position: relative;
 | |
|   z-index: 2;
 | |
|   width: 100%;
 | |
|   height: calc(1.5em + 0.75rem + 2px);
 | |
|   margin: 0;
 | |
|   opacity: 0;
 | |
| }
 | |
| 
 | |
| .custom-file-input:focus ~ .custom-file-label {
 | |
|   border-color: #bcb9ef;
 | |
|   box-shadow: 0 0 0 0.2rem rgba(88, 81, 216, 0.25);
 | |
| }
 | |
| 
 | |
| .custom-file-input:disabled ~ .custom-file-label {
 | |
|   background-color: #e9ecef;
 | |
| }
 | |
| 
 | |
| .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 {
 | |
|   position: absolute;
 | |
|   top: 0;
 | |
|   right: 0;
 | |
|   left: 0;
 | |
|   z-index: 1;
 | |
|   height: calc(1.5em + 0.75rem + 2px);
 | |
|   padding: 0.375rem 0.75rem;
 | |
|   font-weight: 400;
 | |
|   line-height: 1.5;
 | |
|   color: #495057;
 | |
|   background-color: #fff;
 | |
|   border: 1px solid #ced4da;
 | |
|   border-radius: 0.25rem;
 | |
| }
 | |
| 
 | |
| .custom-file-label::after {
 | |
|   position: absolute;
 | |
|   top: 0;
 | |
|   right: 0;
 | |
|   bottom: 0;
 | |
|   z-index: 3;
 | |
|   display: block;
 | |
|   height: calc(1.5em + 0.75rem);
 | |
|   padding: 0.375rem 0.75rem;
 | |
|   line-height: 1.5;
 | |
|   color: #495057;
 | |
|   content: "Browse";
 | |
|   background-color: #e9ecef;
 | |
|   border-left: inherit;
 | |
|   border-radius: 0 0.25rem 0.25rem 0;
 | |
| }
 | |
| 
 | |
| .custom-range {
 | |
|   width: 100%;
 | |
|   height: calc(1rem + 0.4rem);
 | |
|   padding: 0;
 | |
|   background-color: transparent;
 | |
|   -webkit-appearance: none;
 | |
|      -moz-appearance: none;
 | |
|           appearance: none;
 | |
| }
 | |
| 
 | |
| .custom-range:focus {
 | |
|   outline: none;
 | |
| }
 | |
| 
 | |
| .custom-range:focus::-webkit-slider-thumb {
 | |
|   box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(88, 81, 216, 0.25);
 | |
| }
 | |
| 
 | |
| .custom-range:focus::-moz-range-thumb {
 | |
|   box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(88, 81, 216, 0.25);
 | |
| }
 | |
| 
 | |
| .custom-range:focus::-ms-thumb {
 | |
|   box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(88, 81, 216, 0.25);
 | |
| }
 | |
| 
 | |
| .custom-range::-moz-focus-outer {
 | |
|   border: 0;
 | |
| }
 | |
| 
 | |
| .custom-range::-webkit-slider-thumb {
 | |
|   width: 1rem;
 | |
|   height: 1rem;
 | |
|   margin-top: -0.25rem;
 | |
|   background-color: #5851D8;
 | |
|   border: 0;
 | |
|   border-radius: 1rem;
 | |
|   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 {
 | |
|     transition: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .custom-range::-webkit-slider-thumb:active {
 | |
|   background-color: #e4e3f9;
 | |
| }
 | |
| 
 | |
| .custom-range::-webkit-slider-runnable-track {
 | |
|   width: 100%;
 | |
|   height: 0.5rem;
 | |
|   color: transparent;
 | |
|   cursor: pointer;
 | |
|   background-color: #dee2e6;
 | |
|   border-color: transparent;
 | |
|   border-radius: 1rem;
 | |
| }
 | |
| 
 | |
| .custom-range::-moz-range-thumb {
 | |
|   width: 1rem;
 | |
|   height: 1rem;
 | |
|   background-color: #5851D8;
 | |
|   border: 0;
 | |
|   border-radius: 1rem;
 | |
|   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 {
 | |
|     transition: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .custom-range::-moz-range-thumb:active {
 | |
|   background-color: #e4e3f9;
 | |
| }
 | |
| 
 | |
| .custom-range::-moz-range-track {
 | |
|   width: 100%;
 | |
|   height: 0.5rem;
 | |
|   color: transparent;
 | |
|   cursor: pointer;
 | |
|   background-color: #dee2e6;
 | |
|   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: #5851D8;
 | |
|   border: 0;
 | |
|   border-radius: 1rem;
 | |
|   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 {
 | |
|     transition: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .custom-range::-ms-thumb:active {
 | |
|   background-color: #e4e3f9;
 | |
| }
 | |
| 
 | |
| .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: #dee2e6;
 | |
|   border-radius: 1rem;
 | |
| }
 | |
| 
 | |
| .custom-range::-ms-fill-upper {
 | |
|   margin-right: 15px;
 | |
|   background-color: #dee2e6;
 | |
|   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 {
 | |
|   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 {
 | |
|     transition: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .nav {
 | |
|   display: flex;
 | |
|   flex-wrap: wrap;
 | |
|   padding-left: 0;
 | |
|   margin-bottom: 0;
 | |
|   list-style: none;
 | |
| }
 | |
| 
 | |
| .nav-link {
 | |
|   display: block;
 | |
|   padding: 0.5rem 1rem;
 | |
| }
 | |
| 
 | |
| .nav-link:hover,
 | |
| .nav-link:focus {
 | |
|   text-decoration: none;
 | |
| }
 | |
| 
 | |
| .nav-link.disabled {
 | |
|   color: #6c757d;
 | |
|   pointer-events: none;
 | |
|   cursor: default;
 | |
| }
 | |
| 
 | |
| .nav-tabs {
 | |
|   border-bottom: 1px solid #dee2e6;
 | |
| }
 | |
| 
 | |
| .nav-tabs .nav-item {
 | |
|   margin-bottom: -1px;
 | |
| }
 | |
| 
 | |
| .nav-tabs .nav-link {
 | |
|   border: 1px solid transparent;
 | |
|   border-top-left-radius: 0.25rem;
 | |
|   border-top-right-radius: 0.25rem;
 | |
| }
 | |
| 
 | |
| .nav-tabs .nav-link:hover,
 | |
| .nav-tabs .nav-link:focus {
 | |
|   border-color: #e9ecef #e9ecef #dee2e6;
 | |
| }
 | |
| 
 | |
| .nav-tabs .nav-link.disabled {
 | |
|   color: #6c757d;
 | |
|   background-color: transparent;
 | |
|   border-color: transparent;
 | |
| }
 | |
| 
 | |
| .nav-tabs .nav-link.active,
 | |
| .nav-tabs .nav-item.show .nav-link {
 | |
|   color: #495057;
 | |
|   background-color: #fff;
 | |
|   border-color: #dee2e6 #dee2e6 #fff;
 | |
| }
 | |
| 
 | |
| .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: #5851D8;
 | |
| }
 | |
| 
 | |
| .nav-fill .nav-item {
 | |
|   flex: 1 1 auto;
 | |
|   text-align: center;
 | |
| }
 | |
| 
 | |
| .nav-justified .nav-item {
 | |
|   flex-basis: 0;
 | |
|   flex-grow: 1;
 | |
|   text-align: center;
 | |
| }
 | |
| 
 | |
| .tab-content > .tab-pane {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| .tab-content > .active {
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| .navbar {
 | |
|   position: relative;
 | |
|   display: flex;
 | |
|   flex-wrap: wrap;
 | |
|   align-items: center;
 | |
|   justify-content: space-between;
 | |
|   padding: 0.5rem 1rem;
 | |
| }
 | |
| 
 | |
| .navbar > .container,
 | |
| .navbar > .container-fluid {
 | |
|   display: flex;
 | |
|   flex-wrap: wrap;
 | |
|   align-items: center;
 | |
|   justify-content: space-between;
 | |
| }
 | |
| 
 | |
| .navbar-brand {
 | |
|   display: inline-block;
 | |
|   padding-top: 0.3125rem;
 | |
|   padding-bottom: 0.3125rem;
 | |
|   margin-right: 1rem;
 | |
|   font-size: 1.25rem;
 | |
|   line-height: inherit;
 | |
|   white-space: nowrap;
 | |
| }
 | |
| 
 | |
| .navbar-brand:hover,
 | |
| .navbar-brand:focus {
 | |
|   text-decoration: none;
 | |
| }
 | |
| 
 | |
| .navbar-nav {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
|   padding-left: 0;
 | |
|   margin-bottom: 0;
 | |
|   list-style: none;
 | |
| }
 | |
| 
 | |
| .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 {
 | |
|   flex-basis: 100%;
 | |
|   flex-grow: 1;
 | |
|   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:hover,
 | |
| .navbar-toggler:focus {
 | |
|   text-decoration: none;
 | |
| }
 | |
| 
 | |
| .navbar-toggler-icon {
 | |
|   display: inline-block;
 | |
|   width: 1.5em;
 | |
|   height: 1.5em;
 | |
|   vertical-align: middle;
 | |
|   content: "";
 | |
|   background: no-repeat center center;
 | |
|   background-size: 100% 100%;
 | |
| }
 | |
| 
 | |
| @media (max-width: 575.98px) {
 | |
|   .navbar-expand-sm > .container,
 | |
|   .navbar-expand-sm > .container-fluid {
 | |
|     padding-right: 0;
 | |
|     padding-left: 0;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (min-width: 576px) {
 | |
|   .navbar-expand-sm {
 | |
|     flex-flow: row nowrap;
 | |
|     justify-content: flex-start;
 | |
|   }
 | |
| 
 | |
|   .navbar-expand-sm .navbar-nav {
 | |
|     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 {
 | |
|     flex-wrap: nowrap;
 | |
|   }
 | |
| 
 | |
|   .navbar-expand-sm .navbar-collapse {
 | |
|     display: flex !important;
 | |
|     flex-basis: auto;
 | |
|   }
 | |
| 
 | |
|   .navbar-expand-sm .navbar-toggler {
 | |
|     display: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (max-width: 767.98px) {
 | |
|   .navbar-expand-md > .container,
 | |
|   .navbar-expand-md > .container-fluid {
 | |
|     padding-right: 0;
 | |
|     padding-left: 0;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (min-width: 768px) {
 | |
|   .navbar-expand-md {
 | |
|     flex-flow: row nowrap;
 | |
|     justify-content: flex-start;
 | |
|   }
 | |
| 
 | |
|   .navbar-expand-md .navbar-nav {
 | |
|     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 {
 | |
|     flex-wrap: nowrap;
 | |
|   }
 | |
| 
 | |
|   .navbar-expand-md .navbar-collapse {
 | |
|     display: flex !important;
 | |
|     flex-basis: auto;
 | |
|   }
 | |
| 
 | |
|   .navbar-expand-md .navbar-toggler {
 | |
|     display: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (max-width: 991.98px) {
 | |
|   .navbar-expand-lg > .container,
 | |
|   .navbar-expand-lg > .container-fluid {
 | |
|     padding-right: 0;
 | |
|     padding-left: 0;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (min-width: 992px) {
 | |
|   .navbar-expand-lg {
 | |
|     flex-flow: row nowrap;
 | |
|     justify-content: flex-start;
 | |
|   }
 | |
| 
 | |
|   .navbar-expand-lg .navbar-nav {
 | |
|     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 {
 | |
|     flex-wrap: nowrap;
 | |
|   }
 | |
| 
 | |
|   .navbar-expand-lg .navbar-collapse {
 | |
|     display: flex !important;
 | |
|     flex-basis: auto;
 | |
|   }
 | |
| 
 | |
|   .navbar-expand-lg .navbar-toggler {
 | |
|     display: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (max-width: 1199.98px) {
 | |
|   .navbar-expand-xl > .container,
 | |
|   .navbar-expand-xl > .container-fluid {
 | |
|     padding-right: 0;
 | |
|     padding-left: 0;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (min-width: 1200px) {
 | |
|   .navbar-expand-xl {
 | |
|     flex-flow: row nowrap;
 | |
|     justify-content: flex-start;
 | |
|   }
 | |
| 
 | |
|   .navbar-expand-xl .navbar-nav {
 | |
|     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 {
 | |
|     flex-wrap: nowrap;
 | |
|   }
 | |
| 
 | |
|   .navbar-expand-xl .navbar-collapse {
 | |
|     display: flex !important;
 | |
|     flex-basis: auto;
 | |
|   }
 | |
| 
 | |
|   .navbar-expand-xl .navbar-toggler {
 | |
|     display: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .navbar-expand {
 | |
|   flex-flow: row nowrap;
 | |
|   justify-content: flex-start;
 | |
| }
 | |
| 
 | |
| .navbar-expand > .container,
 | |
| .navbar-expand > .container-fluid {
 | |
|   padding-right: 0;
 | |
|   padding-left: 0;
 | |
| }
 | |
| 
 | |
| .navbar-expand .navbar-nav {
 | |
|   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 {
 | |
|   flex-wrap: nowrap;
 | |
| }
 | |
| 
 | |
| .navbar-expand .navbar-collapse {
 | |
|   display: flex !important;
 | |
|   flex-basis: auto;
 | |
| }
 | |
| 
 | |
| .navbar-expand .navbar-toggler {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| .navbar-dark .navbar-brand {
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .navbar-dark .navbar-brand:hover,
 | |
| .navbar-dark .navbar-brand:focus {
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .navbar-dark .navbar-nav .nav-link {
 | |
|   color: rgba(255, 255, 255, 0.5);
 | |
| }
 | |
| 
 | |
| .navbar-dark .navbar-nav .nav-link:hover,
 | |
| .navbar-dark .navbar-nav .nav-link:focus {
 | |
|   color: rgba(255, 255, 255, 0.75);
 | |
| }
 | |
| 
 | |
| .navbar-dark .navbar-nav .nav-link.disabled {
 | |
|   color: rgba(255, 255, 255, 0.25);
 | |
| }
 | |
| 
 | |
| .navbar-dark .navbar-nav .show > .nav-link,
 | |
| .navbar-dark .navbar-nav .active > .nav-link,
 | |
| .navbar-dark .navbar-nav .nav-link.show,
 | |
| .navbar-dark .navbar-nav .nav-link.active {
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .navbar-dark .navbar-toggler {
 | |
|   color: rgba(255, 255, 255, 0.5);
 | |
|   border-color: rgba(255, 255, 255, 0.1);
 | |
| }
 | |
| 
 | |
| .navbar-dark .navbar-toggler-icon {
 | |
|   background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
 | |
| }
 | |
| 
 | |
| .navbar-dark .navbar-text {
 | |
|   color: rgba(255, 255, 255, 0.5);
 | |
| }
 | |
| 
 | |
| .navbar-dark .navbar-text a {
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .navbar-dark .navbar-text a:hover,
 | |
| .navbar-dark .navbar-text a:focus {
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .card {
 | |
|   position: relative;
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
|   min-width: 0;
 | |
|   word-wrap: break-word;
 | |
|   background-color: #fff;
 | |
|   background-clip: border-box;
 | |
|   border: 1px solid rgba(0, 0, 0, 0.125);
 | |
|   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 {
 | |
|   flex: 1 1 auto;
 | |
|   padding: 1.25rem;
 | |
| }
 | |
| 
 | |
| .card-title {
 | |
|   margin-bottom: 0.75rem;
 | |
| }
 | |
| 
 | |
| .card-subtitle {
 | |
|   margin-top: -0.375rem;
 | |
|   margin-bottom: 0;
 | |
| }
 | |
| 
 | |
| .card-text:last-child {
 | |
|   margin-bottom: 0;
 | |
| }
 | |
| 
 | |
| .card-link:hover {
 | |
|   text-decoration: none;
 | |
| }
 | |
| 
 | |
| .card-link + .card-link {
 | |
|   margin-left: 1.25rem;
 | |
| }
 | |
| 
 | |
| .card-header {
 | |
|   padding: 0.75rem 1.25rem;
 | |
|   margin-bottom: 0;
 | |
|   background-color: #fff;
 | |
|   border-bottom: 1px solid rgba(0, 0, 0, 0.125);
 | |
| }
 | |
| 
 | |
| .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: 0.75rem 1.25rem;
 | |
|   background-color: #fff;
 | |
|   border-top: 1px solid rgba(0, 0, 0, 0.125);
 | |
| }
 | |
| 
 | |
| .card-footer:last-child {
 | |
|   border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
 | |
| }
 | |
| 
 | |
| .card-header-tabs {
 | |
|   margin-right: -0.625rem;
 | |
|   margin-bottom: -0.75rem;
 | |
|   margin-left: -0.625rem;
 | |
|   border-bottom: 0;
 | |
| }
 | |
| 
 | |
| .card-header-pills {
 | |
|   margin-right: -0.625rem;
 | |
|   margin-left: -0.625rem;
 | |
| }
 | |
| 
 | |
| .card-img-overlay {
 | |
|   position: absolute;
 | |
|   top: 0;
 | |
|   right: 0;
 | |
|   bottom: 0;
 | |
|   left: 0;
 | |
|   padding: 1.25rem;
 | |
| }
 | |
| 
 | |
| .card-img {
 | |
|   width: 100%;
 | |
|   border-radius: calc(0.25rem - 1px);
 | |
| }
 | |
| 
 | |
| .card-img-top {
 | |
|   width: 100%;
 | |
|   border-top-left-radius: calc(0.25rem - 1px);
 | |
|   border-top-right-radius: calc(0.25rem - 1px);
 | |
| }
 | |
| 
 | |
| .card-img-bottom {
 | |
|   width: 100%;
 | |
|   border-bottom-right-radius: calc(0.25rem - 1px);
 | |
|   border-bottom-left-radius: calc(0.25rem - 1px);
 | |
| }
 | |
| 
 | |
| .card-deck {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
| }
 | |
| 
 | |
| .card-deck .card {
 | |
|   margin-bottom: 15px;
 | |
| }
 | |
| 
 | |
| @media (min-width: 576px) {
 | |
|   .card-deck {
 | |
|     flex-flow: row wrap;
 | |
|     margin-right: -15px;
 | |
|     margin-left: -15px;
 | |
|   }
 | |
| 
 | |
|   .card-deck .card {
 | |
|     display: flex;
 | |
|     flex: 1 0 0%;
 | |
|     flex-direction: column;
 | |
|     margin-right: 15px;
 | |
|     margin-bottom: 0;
 | |
|     margin-left: 15px;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .card-group {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
| }
 | |
| 
 | |
| .card-group > .card {
 | |
|   margin-bottom: 15px;
 | |
| }
 | |
| 
 | |
| @media (min-width: 576px) {
 | |
|   .card-group {
 | |
|     flex-flow: row wrap;
 | |
|   }
 | |
| 
 | |
|   .card-group > .card {
 | |
|     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-img-top,
 | |
|   .card-group > .card:not(:last-child) .card-header {
 | |
|     border-top-right-radius: 0;
 | |
|   }
 | |
| 
 | |
|   .card-group > .card:not(:last-child) .card-img-bottom,
 | |
|   .card-group > .card:not(:last-child) .card-footer {
 | |
|     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-img-top,
 | |
|   .card-group > .card:not(:first-child) .card-header {
 | |
|     border-top-left-radius: 0;
 | |
|   }
 | |
| 
 | |
|   .card-group > .card:not(:first-child) .card-img-bottom,
 | |
|   .card-group > .card:not(:first-child) .card-footer {
 | |
|     border-bottom-left-radius: 0;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .card-columns .card {
 | |
|   margin-bottom: 0.75rem;
 | |
| }
 | |
| 
 | |
| @media (min-width: 576px) {
 | |
|   .card-columns {
 | |
|     -moz-column-count: 3;
 | |
|          column-count: 3;
 | |
|     -moz-column-gap: 1.25rem;
 | |
|          column-gap: 1.25rem;
 | |
|     orphans: 1;
 | |
|     widows: 1;
 | |
|   }
 | |
| 
 | |
|   .card-columns .card {
 | |
|     display: inline-block;
 | |
|     width: 100%;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .accordion > .card {
 | |
|   overflow: hidden;
 | |
| }
 | |
| 
 | |
| .accordion > .card:not(:first-of-type) .card-header:first-child {
 | |
|   border-radius: 0;
 | |
| }
 | |
| 
 | |
| .accordion > .card:not(:first-of-type):not(:last-of-type) {
 | |
|   border-bottom: 0;
 | |
|   border-radius: 0;
 | |
| }
 | |
| 
 | |
| .accordion > .card:first-of-type {
 | |
|   border-bottom: 0;
 | |
|   border-bottom-right-radius: 0;
 | |
|   border-bottom-left-radius: 0;
 | |
| }
 | |
| 
 | |
| .accordion > .card:last-of-type {
 | |
|   border-top-left-radius: 0;
 | |
|   border-top-right-radius: 0;
 | |
| }
 | |
| 
 | |
| .accordion > .card .card-header {
 | |
|   margin-bottom: -1px;
 | |
| }
 | |
| 
 | |
| .breadcrumb {
 | |
|   display: flex;
 | |
|   flex-wrap: wrap;
 | |
|   padding: 0.75rem 1rem;
 | |
|   margin-bottom: 1rem;
 | |
|   list-style: none;
 | |
|   background-color: #e9ecef;
 | |
|   border-radius: 0.25rem;
 | |
| }
 | |
| 
 | |
| .breadcrumb-item + .breadcrumb-item {
 | |
|   padding-left: 0.5rem;
 | |
| }
 | |
| 
 | |
| .breadcrumb-item + .breadcrumb-item::before {
 | |
|   display: inline-block;
 | |
|   padding-right: 0.5rem;
 | |
|   color: #6c757d;
 | |
|   content: "/";
 | |
| }
 | |
| 
 | |
| .breadcrumb-item + .breadcrumb-item:hover::before {
 | |
|   text-decoration: underline;
 | |
| }
 | |
| 
 | |
| .breadcrumb-item + .breadcrumb-item:hover::before {
 | |
|   text-decoration: none;
 | |
| }
 | |
| 
 | |
| .breadcrumb-item.active {
 | |
|   color: #6c757d;
 | |
| }
 | |
| 
 | |
| .pagination {
 | |
|   display: flex;
 | |
|   padding-left: 0;
 | |
|   list-style: none;
 | |
|   border-radius: 0.25rem;
 | |
| }
 | |
| 
 | |
| .page-link {
 | |
|   position: relative;
 | |
|   display: block;
 | |
|   padding: 0.5rem 0.75rem;
 | |
|   margin-left: -1px;
 | |
|   line-height: 1.25;
 | |
|   color: #5851D8;
 | |
|   background-color: #fff;
 | |
|   border: 1px solid #dee2e6;
 | |
| }
 | |
| 
 | |
| .page-link:hover {
 | |
|   z-index: 2;
 | |
|   color: #3028b4;
 | |
|   text-decoration: none;
 | |
|   background-color: #e9ecef;
 | |
|   border-color: #dee2e6;
 | |
| }
 | |
| 
 | |
| .page-link:focus {
 | |
|   z-index: 2;
 | |
|   outline: 0;
 | |
|   box-shadow: 0 0 0 0.2rem rgba(88, 81, 216, 0.25);
 | |
| }
 | |
| 
 | |
| .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: 1;
 | |
|   color: #fff;
 | |
|   background-color: #5851D8;
 | |
|   border-color: #5851D8;
 | |
| }
 | |
| 
 | |
| .page-item.disabled .page-link {
 | |
|   color: #6c757d;
 | |
|   pointer-events: none;
 | |
|   cursor: auto;
 | |
|   background-color: #fff;
 | |
|   border-color: #dee2e6;
 | |
| }
 | |
| 
 | |
| .pagination-lg .page-link {
 | |
|   padding: 0.75rem 1.5rem;
 | |
|   font-size: 1.25rem;
 | |
|   line-height: 1.5;
 | |
| }
 | |
| 
 | |
| .pagination-lg .page-item:first-child .page-link {
 | |
|   border-top-left-radius: 0.3rem;
 | |
|   border-bottom-left-radius: 0.3rem;
 | |
| }
 | |
| 
 | |
| .pagination-lg .page-item:last-child .page-link {
 | |
|   border-top-right-radius: 0.3rem;
 | |
|   border-bottom-right-radius: 0.3rem;
 | |
| }
 | |
| 
 | |
| .pagination-sm .page-link {
 | |
|   padding: 0.25rem 0.5rem;
 | |
|   font-size: 0.875rem;
 | |
|   line-height: 1.5;
 | |
| }
 | |
| 
 | |
| .pagination-sm .page-item:first-child .page-link {
 | |
|   border-top-left-radius: 0.2rem;
 | |
|   border-bottom-left-radius: 0.2rem;
 | |
| }
 | |
| 
 | |
| .pagination-sm .page-item:last-child .page-link {
 | |
|   border-top-right-radius: 0.2rem;
 | |
|   border-bottom-right-radius: 0.2rem;
 | |
| }
 | |
| 
 | |
| .badge {
 | |
|   display: inline-block;
 | |
|   padding: 0.25em 0.4em;
 | |
|   font-size: 75%;
 | |
|   font-weight: 700;
 | |
|   line-height: 1;
 | |
|   text-align: center;
 | |
|   white-space: nowrap;
 | |
|   vertical-align: baseline;
 | |
|   border-radius: 0.25rem;
 | |
|   transition: color 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;
 | |
| }
 | |
| 
 | |
| @media (prefers-reduced-motion: reduce) {
 | |
|   .badge {
 | |
|     transition: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| a.badge:hover,
 | |
| a.badge:focus {
 | |
|   text-decoration: none;
 | |
| }
 | |
| 
 | |
| .badge:empty {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| .btn .badge {
 | |
|   position: relative;
 | |
|   top: -1px;
 | |
| }
 | |
| 
 | |
| .badge-pill {
 | |
|   padding-right: 0.6em;
 | |
|   padding-left: 0.6em;
 | |
|   border-radius: 10rem;
 | |
| }
 | |
| 
 | |
| .badge-primary {
 | |
|   color: #fff;
 | |
|   background-color: #5851D8;
 | |
| }
 | |
| 
 | |
| a.badge-primary:hover,
 | |
| a.badge-primary:focus {
 | |
|   color: #fff;
 | |
|   background-color: #352dc9;
 | |
| }
 | |
| 
 | |
| a.badge-primary:focus,
 | |
| a.badge-primary.focus {
 | |
|   outline: 0;
 | |
|   box-shadow: 0 0 0 0.2rem rgba(88, 81, 216, 0.5);
 | |
| }
 | |
| 
 | |
| .badge-secondary {
 | |
|   color: #fff;
 | |
|   background-color: #55547A;
 | |
| }
 | |
| 
 | |
| a.badge-secondary:hover,
 | |
| a.badge-secondary:focus {
 | |
|   color: #fff;
 | |
|   background-color: #403f5c;
 | |
| }
 | |
| 
 | |
| a.badge-secondary:focus,
 | |
| a.badge-secondary.focus {
 | |
|   outline: 0;
 | |
|   box-shadow: 0 0 0 0.2rem rgba(85, 84, 122, 0.5);
 | |
| }
 | |
| 
 | |
| .badge-success {
 | |
|   color: #fff;
 | |
|   background-color: #00C99C;
 | |
| }
 | |
| 
 | |
| a.badge-success:hover,
 | |
| a.badge-success:focus {
 | |
|   color: #fff;
 | |
|   background-color: #009674;
 | |
| }
 | |
| 
 | |
| a.badge-success:focus,
 | |
| a.badge-success.focus {
 | |
|   outline: 0;
 | |
|   box-shadow: 0 0 0 0.2rem rgba(0, 201, 156, 0.5);
 | |
| }
 | |
| 
 | |
| .badge-info {
 | |
|   color: #fff;
 | |
|   background-color: #15B2EC;
 | |
| }
 | |
| 
 | |
| a.badge-info:hover,
 | |
| a.badge-info:focus {
 | |
|   color: #fff;
 | |
|   background-color: #0f8fbf;
 | |
| }
 | |
| 
 | |
| a.badge-info:focus,
 | |
| a.badge-info.focus {
 | |
|   outline: 0;
 | |
|   box-shadow: 0 0 0 0.2rem rgba(21, 178, 236, 0.5);
 | |
| }
 | |
| 
 | |
| .badge-warning {
 | |
|   color: #212529;
 | |
|   background-color: #F3AF4E;
 | |
| }
 | |
| 
 | |
| a.badge-warning:hover,
 | |
| a.badge-warning:focus {
 | |
|   color: #212529;
 | |
|   background-color: #f0991e;
 | |
| }
 | |
| 
 | |
| a.badge-warning:focus,
 | |
| a.badge-warning.focus {
 | |
|   outline: 0;
 | |
|   box-shadow: 0 0 0 0.2rem rgba(243, 175, 78, 0.5);
 | |
| }
 | |
| 
 | |
| .badge-danger {
 | |
|   color: #212529;
 | |
|   background-color: #FB7178;
 | |
| }
 | |
| 
 | |
| a.badge-danger:hover,
 | |
| a.badge-danger:focus {
 | |
|   color: #212529;
 | |
|   background-color: #fa3f49;
 | |
| }
 | |
| 
 | |
| a.badge-danger:focus,
 | |
| a.badge-danger.focus {
 | |
|   outline: 0;
 | |
|   box-shadow: 0 0 0 0.2rem rgba(251, 113, 120, 0.5);
 | |
| }
 | |
| 
 | |
| .badge-light {
 | |
|   color: #fff;
 | |
|   background-color: #817AE3;
 | |
| }
 | |
| 
 | |
| a.badge-light:hover,
 | |
| a.badge-light:focus {
 | |
|   color: #fff;
 | |
|   background-color: #5950da;
 | |
| }
 | |
| 
 | |
| a.badge-light:focus,
 | |
| a.badge-light.focus {
 | |
|   outline: 0;
 | |
|   box-shadow: 0 0 0 0.2rem rgba(129, 122, 227, 0.5);
 | |
| }
 | |
| 
 | |
| .badge-dark {
 | |
|   color: #fff;
 | |
|   background-color: #55547A;
 | |
| }
 | |
| 
 | |
| a.badge-dark:hover,
 | |
| a.badge-dark:focus {
 | |
|   color: #fff;
 | |
|   background-color: #403f5c;
 | |
| }
 | |
| 
 | |
| a.badge-dark:focus,
 | |
| a.badge-dark.focus {
 | |
|   outline: 0;
 | |
|   box-shadow: 0 0 0 0.2rem rgba(85, 84, 122, 0.5);
 | |
| }
 | |
| 
 | |
| .jumbotron {
 | |
|   padding: 2rem 1rem;
 | |
|   margin-bottom: 2rem;
 | |
|   background-color: #e9ecef;
 | |
|   border-radius: 0.3rem;
 | |
| }
 | |
| 
 | |
| @media (min-width: 576px) {
 | |
|   .jumbotron {
 | |
|     padding: 4rem 2rem;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .jumbotron-fluid {
 | |
|   padding-right: 0;
 | |
|   padding-left: 0;
 | |
|   border-radius: 0;
 | |
| }
 | |
| 
 | |
| .alert {
 | |
|   position: relative;
 | |
|   padding: 0.75rem 1.25rem;
 | |
|   margin-bottom: 1rem;
 | |
|   border: 1px solid transparent;
 | |
|   border-radius: 0.25rem;
 | |
| }
 | |
| 
 | |
| .alert-heading {
 | |
|   color: inherit;
 | |
| }
 | |
| 
 | |
| .alert-link {
 | |
|   font-weight: 700;
 | |
| }
 | |
| 
 | |
| .alert-dismissible {
 | |
|   padding-right: 4rem;
 | |
| }
 | |
| 
 | |
| .alert-dismissible .close {
 | |
|   position: absolute;
 | |
|   top: 0;
 | |
|   right: 0;
 | |
|   padding: 0.75rem 1.25rem;
 | |
|   color: inherit;
 | |
| }
 | |
| 
 | |
| .alert-primary {
 | |
|   color: #2e2a70;
 | |
|   background-color: #dedcf7;
 | |
|   border-color: #d0cef4;
 | |
| }
 | |
| 
 | |
| .alert-primary hr {
 | |
|   border-top-color: #bcb9ef;
 | |
| }
 | |
| 
 | |
| .alert-primary .alert-link {
 | |
|   color: #1f1c4b;
 | |
| }
 | |
| 
 | |
| .alert-secondary {
 | |
|   color: #2c2c3f;
 | |
|   background-color: #dddde4;
 | |
|   border-color: #cfcfda;
 | |
| }
 | |
| 
 | |
| .alert-secondary hr {
 | |
|   border-top-color: #c1c1cf;
 | |
| }
 | |
| 
 | |
| .alert-secondary .alert-link {
 | |
|   color: #171721;
 | |
| }
 | |
| 
 | |
| .alert-success {
 | |
|   color: #006951;
 | |
|   background-color: #ccf4eb;
 | |
|   border-color: #b8f0e3;
 | |
| }
 | |
| 
 | |
| .alert-success hr {
 | |
|   border-top-color: #a3ecdb;
 | |
| }
 | |
| 
 | |
| .alert-success .alert-link {
 | |
|   color: #00362a;
 | |
| }
 | |
| 
 | |
| .alert-info {
 | |
|   color: #0b5d7b;
 | |
|   background-color: #d0f0fb;
 | |
|   border-color: #bde9fa;
 | |
| }
 | |
| 
 | |
| .alert-info hr {
 | |
|   border-top-color: #a5e1f8;
 | |
| }
 | |
| 
 | |
| .alert-info .alert-link {
 | |
|   color: #073a4c;
 | |
| }
 | |
| 
 | |
| .alert-warning {
 | |
|   color: #7e5b29;
 | |
|   background-color: #fdefdc;
 | |
|   border-color: #fce9cd;
 | |
| }
 | |
| 
 | |
| .alert-warning hr {
 | |
|   border-top-color: #fbdeb5;
 | |
| }
 | |
| 
 | |
| .alert-warning .alert-link {
 | |
|   color: #583f1c;
 | |
| }
 | |
| 
 | |
| .alert-danger {
 | |
|   color: #833b3e;
 | |
|   background-color: #fee3e4;
 | |
|   border-color: #fed7d9;
 | |
| }
 | |
| 
 | |
| .alert-danger hr {
 | |
|   border-top-color: #fdbec1;
 | |
| }
 | |
| 
 | |
| .alert-danger .alert-link {
 | |
|   color: #602b2d;
 | |
| }
 | |
| 
 | |
| .alert-light {
 | |
|   color: #433f76;
 | |
|   background-color: #e6e4f9;
 | |
|   border-color: #dcdaf7;
 | |
| }
 | |
| 
 | |
| .alert-light hr {
 | |
|   border-top-color: #c8c5f2;
 | |
| }
 | |
| 
 | |
| .alert-light .alert-link {
 | |
|   color: #302d55;
 | |
| }
 | |
| 
 | |
| .alert-dark {
 | |
|   color: #2c2c3f;
 | |
|   background-color: #dddde4;
 | |
|   border-color: #cfcfda;
 | |
| }
 | |
| 
 | |
| .alert-dark hr {
 | |
|   border-top-color: #c1c1cf;
 | |
| }
 | |
| 
 | |
| .alert-dark .alert-link {
 | |
|   color: #171721;
 | |
| }
 | |
| 
 | |
| @-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;
 | |
|   overflow: hidden;
 | |
|   font-size: 0.75rem;
 | |
|   background-color: #e9ecef;
 | |
|   border-radius: 0.25rem;
 | |
| }
 | |
| 
 | |
| .progress-bar {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
|   justify-content: center;
 | |
|   color: #fff;
 | |
|   text-align: center;
 | |
|   white-space: nowrap;
 | |
|   background-color: #5851D8;
 | |
|   transition: width 0.6s ease;
 | |
| }
 | |
| 
 | |
| @media (prefers-reduced-motion: reduce) {
 | |
|   .progress-bar {
 | |
|     transition: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .progress-bar-striped {
 | |
|   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-animated {
 | |
|     -webkit-animation: none;
 | |
|             animation: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .media {
 | |
|   display: flex;
 | |
|   align-items: flex-start;
 | |
| }
 | |
| 
 | |
| .media-body {
 | |
|   flex: 1;
 | |
| }
 | |
| 
 | |
| .list-group {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
|   padding-left: 0;
 | |
|   margin-bottom: 0;
 | |
| }
 | |
| 
 | |
| .list-group-item-action {
 | |
|   width: 100%;
 | |
|   color: #495057;
 | |
|   text-align: inherit;
 | |
| }
 | |
| 
 | |
| .list-group-item-action:hover,
 | |
| .list-group-item-action:focus {
 | |
|   z-index: 1;
 | |
|   color: #495057;
 | |
|   text-decoration: none;
 | |
|   background-color: #f8f9fa;
 | |
| }
 | |
| 
 | |
| .list-group-item-action:active {
 | |
|   color: #212529;
 | |
|   background-color: #e9ecef;
 | |
| }
 | |
| 
 | |
| .list-group-item {
 | |
|   position: relative;
 | |
|   display: block;
 | |
|   padding: 0.75rem 1.25rem;
 | |
|   margin-bottom: -1px;
 | |
|   background-color: #fff;
 | |
|   border: 1px solid rgba(0, 0, 0, 0.125);
 | |
| }
 | |
| 
 | |
| .list-group-item:first-child {
 | |
|   border-top-left-radius: 0.25rem;
 | |
|   border-top-right-radius: 0.25rem;
 | |
| }
 | |
| 
 | |
| .list-group-item:last-child {
 | |
|   margin-bottom: 0;
 | |
|   border-bottom-right-radius: 0.25rem;
 | |
|   border-bottom-left-radius: 0.25rem;
 | |
| }
 | |
| 
 | |
| .list-group-item.disabled,
 | |
| .list-group-item:disabled {
 | |
|   color: #6c757d;
 | |
|   pointer-events: none;
 | |
|   background-color: #fff;
 | |
| }
 | |
| 
 | |
| .list-group-item.active {
 | |
|   z-index: 2;
 | |
|   color: #fff;
 | |
|   background-color: #5851D8;
 | |
|   border-color: #5851D8;
 | |
| }
 | |
| 
 | |
| .list-group-horizontal {
 | |
|   flex-direction: row;
 | |
| }
 | |
| 
 | |
| .list-group-horizontal .list-group-item {
 | |
|   margin-right: -1px;
 | |
|   margin-bottom: 0;
 | |
| }
 | |
| 
 | |
| .list-group-horizontal .list-group-item:first-child {
 | |
|   border-top-left-radius: 0.25rem;
 | |
|   border-bottom-left-radius: 0.25rem;
 | |
|   border-top-right-radius: 0;
 | |
| }
 | |
| 
 | |
| .list-group-horizontal .list-group-item:last-child {
 | |
|   margin-right: 0;
 | |
|   border-top-right-radius: 0.25rem;
 | |
|   border-bottom-right-radius: 0.25rem;
 | |
|   border-bottom-left-radius: 0;
 | |
| }
 | |
| 
 | |
| @media (min-width: 576px) {
 | |
|   .list-group-horizontal-sm {
 | |
|     flex-direction: row;
 | |
|   }
 | |
| 
 | |
|   .list-group-horizontal-sm .list-group-item {
 | |
|     margin-right: -1px;
 | |
|     margin-bottom: 0;
 | |
|   }
 | |
| 
 | |
|   .list-group-horizontal-sm .list-group-item:first-child {
 | |
|     border-top-left-radius: 0.25rem;
 | |
|     border-bottom-left-radius: 0.25rem;
 | |
|     border-top-right-radius: 0;
 | |
|   }
 | |
| 
 | |
|   .list-group-horizontal-sm .list-group-item:last-child {
 | |
|     margin-right: 0;
 | |
|     border-top-right-radius: 0.25rem;
 | |
|     border-bottom-right-radius: 0.25rem;
 | |
|     border-bottom-left-radius: 0;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (min-width: 768px) {
 | |
|   .list-group-horizontal-md {
 | |
|     flex-direction: row;
 | |
|   }
 | |
| 
 | |
|   .list-group-horizontal-md .list-group-item {
 | |
|     margin-right: -1px;
 | |
|     margin-bottom: 0;
 | |
|   }
 | |
| 
 | |
|   .list-group-horizontal-md .list-group-item:first-child {
 | |
|     border-top-left-radius: 0.25rem;
 | |
|     border-bottom-left-radius: 0.25rem;
 | |
|     border-top-right-radius: 0;
 | |
|   }
 | |
| 
 | |
|   .list-group-horizontal-md .list-group-item:last-child {
 | |
|     margin-right: 0;
 | |
|     border-top-right-radius: 0.25rem;
 | |
|     border-bottom-right-radius: 0.25rem;
 | |
|     border-bottom-left-radius: 0;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (min-width: 992px) {
 | |
|   .list-group-horizontal-lg {
 | |
|     flex-direction: row;
 | |
|   }
 | |
| 
 | |
|   .list-group-horizontal-lg .list-group-item {
 | |
|     margin-right: -1px;
 | |
|     margin-bottom: 0;
 | |
|   }
 | |
| 
 | |
|   .list-group-horizontal-lg .list-group-item:first-child {
 | |
|     border-top-left-radius: 0.25rem;
 | |
|     border-bottom-left-radius: 0.25rem;
 | |
|     border-top-right-radius: 0;
 | |
|   }
 | |
| 
 | |
|   .list-group-horizontal-lg .list-group-item:last-child {
 | |
|     margin-right: 0;
 | |
|     border-top-right-radius: 0.25rem;
 | |
|     border-bottom-right-radius: 0.25rem;
 | |
|     border-bottom-left-radius: 0;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (min-width: 1200px) {
 | |
|   .list-group-horizontal-xl {
 | |
|     flex-direction: row;
 | |
|   }
 | |
| 
 | |
|   .list-group-horizontal-xl .list-group-item {
 | |
|     margin-right: -1px;
 | |
|     margin-bottom: 0;
 | |
|   }
 | |
| 
 | |
|   .list-group-horizontal-xl .list-group-item:first-child {
 | |
|     border-top-left-radius: 0.25rem;
 | |
|     border-bottom-left-radius: 0.25rem;
 | |
|     border-top-right-radius: 0;
 | |
|   }
 | |
| 
 | |
|   .list-group-horizontal-xl .list-group-item:last-child {
 | |
|     margin-right: 0;
 | |
|     border-top-right-radius: 0.25rem;
 | |
|     border-bottom-right-radius: 0.25rem;
 | |
|     border-bottom-left-radius: 0;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .list-group-flush .list-group-item {
 | |
|   border-right: 0;
 | |
|   border-left: 0;
 | |
|   border-radius: 0;
 | |
| }
 | |
| 
 | |
| .list-group-flush .list-group-item:last-child {
 | |
|   margin-bottom: -1px;
 | |
| }
 | |
| 
 | |
| .list-group-flush:first-child .list-group-item:first-child {
 | |
|   border-top: 0;
 | |
| }
 | |
| 
 | |
| .list-group-flush:last-child .list-group-item:last-child {
 | |
|   margin-bottom: 0;
 | |
|   border-bottom: 0;
 | |
| }
 | |
| 
 | |
| .list-group-item-primary {
 | |
|   color: #2e2a70;
 | |
|   background-color: #d0cef4;
 | |
| }
 | |
| 
 | |
| .list-group-item-primary.list-group-item-action:hover,
 | |
| .list-group-item-primary.list-group-item-action:focus {
 | |
|   color: #2e2a70;
 | |
|   background-color: #bcb9ef;
 | |
| }
 | |
| 
 | |
| .list-group-item-primary.list-group-item-action.active {
 | |
|   color: #fff;
 | |
|   background-color: #2e2a70;
 | |
|   border-color: #2e2a70;
 | |
| }
 | |
| 
 | |
| .list-group-item-secondary {
 | |
|   color: #2c2c3f;
 | |
|   background-color: #cfcfda;
 | |
| }
 | |
| 
 | |
| .list-group-item-secondary.list-group-item-action:hover,
 | |
| .list-group-item-secondary.list-group-item-action:focus {
 | |
|   color: #2c2c3f;
 | |
|   background-color: #c1c1cf;
 | |
| }
 | |
| 
 | |
| .list-group-item-secondary.list-group-item-action.active {
 | |
|   color: #fff;
 | |
|   background-color: #2c2c3f;
 | |
|   border-color: #2c2c3f;
 | |
| }
 | |
| 
 | |
| .list-group-item-success {
 | |
|   color: #006951;
 | |
|   background-color: #b8f0e3;
 | |
| }
 | |
| 
 | |
| .list-group-item-success.list-group-item-action:hover,
 | |
| .list-group-item-success.list-group-item-action:focus {
 | |
|   color: #006951;
 | |
|   background-color: #a3ecdb;
 | |
| }
 | |
| 
 | |
| .list-group-item-success.list-group-item-action.active {
 | |
|   color: #fff;
 | |
|   background-color: #006951;
 | |
|   border-color: #006951;
 | |
| }
 | |
| 
 | |
| .list-group-item-info {
 | |
|   color: #0b5d7b;
 | |
|   background-color: #bde9fa;
 | |
| }
 | |
| 
 | |
| .list-group-item-info.list-group-item-action:hover,
 | |
| .list-group-item-info.list-group-item-action:focus {
 | |
|   color: #0b5d7b;
 | |
|   background-color: #a5e1f8;
 | |
| }
 | |
| 
 | |
| .list-group-item-info.list-group-item-action.active {
 | |
|   color: #fff;
 | |
|   background-color: #0b5d7b;
 | |
|   border-color: #0b5d7b;
 | |
| }
 | |
| 
 | |
| .list-group-item-warning {
 | |
|   color: #7e5b29;
 | |
|   background-color: #fce9cd;
 | |
| }
 | |
| 
 | |
| .list-group-item-warning.list-group-item-action:hover,
 | |
| .list-group-item-warning.list-group-item-action:focus {
 | |
|   color: #7e5b29;
 | |
|   background-color: #fbdeb5;
 | |
| }
 | |
| 
 | |
| .list-group-item-warning.list-group-item-action.active {
 | |
|   color: #fff;
 | |
|   background-color: #7e5b29;
 | |
|   border-color: #7e5b29;
 | |
| }
 | |
| 
 | |
| .list-group-item-danger {
 | |
|   color: #833b3e;
 | |
|   background-color: #fed7d9;
 | |
| }
 | |
| 
 | |
| .list-group-item-danger.list-group-item-action:hover,
 | |
| .list-group-item-danger.list-group-item-action:focus {
 | |
|   color: #833b3e;
 | |
|   background-color: #fdbec1;
 | |
| }
 | |
| 
 | |
| .list-group-item-danger.list-group-item-action.active {
 | |
|   color: #fff;
 | |
|   background-color: #833b3e;
 | |
|   border-color: #833b3e;
 | |
| }
 | |
| 
 | |
| .list-group-item-light {
 | |
|   color: #433f76;
 | |
|   background-color: #dcdaf7;
 | |
| }
 | |
| 
 | |
| .list-group-item-light.list-group-item-action:hover,
 | |
| .list-group-item-light.list-group-item-action:focus {
 | |
|   color: #433f76;
 | |
|   background-color: #c8c5f2;
 | |
| }
 | |
| 
 | |
| .list-group-item-light.list-group-item-action.active {
 | |
|   color: #fff;
 | |
|   background-color: #433f76;
 | |
|   border-color: #433f76;
 | |
| }
 | |
| 
 | |
| .list-group-item-dark {
 | |
|   color: #2c2c3f;
 | |
|   background-color: #cfcfda;
 | |
| }
 | |
| 
 | |
| .list-group-item-dark.list-group-item-action:hover,
 | |
| .list-group-item-dark.list-group-item-action:focus {
 | |
|   color: #2c2c3f;
 | |
|   background-color: #c1c1cf;
 | |
| }
 | |
| 
 | |
| .list-group-item-dark.list-group-item-action.active {
 | |
|   color: #fff;
 | |
|   background-color: #2c2c3f;
 | |
|   border-color: #2c2c3f;
 | |
| }
 | |
| 
 | |
| .close {
 | |
|   float: right;
 | |
|   font-size: 1.5rem;
 | |
|   font-weight: 700;
 | |
|   line-height: 1;
 | |
|   color: #000;
 | |
|   text-shadow: 0 1px 0 #fff;
 | |
|   opacity: 0.5;
 | |
| }
 | |
| 
 | |
| .close:hover {
 | |
|   color: #000;
 | |
|   text-decoration: none;
 | |
| }
 | |
| 
 | |
| .close:not(:disabled):not(.disabled):hover,
 | |
| .close:not(:disabled):not(.disabled):focus {
 | |
|   opacity: 0.75;
 | |
| }
 | |
| 
 | |
| button.close {
 | |
|   padding: 0;
 | |
|   background-color: transparent;
 | |
|   border: 0;
 | |
|   -webkit-appearance: none;
 | |
|      -moz-appearance: none;
 | |
|           appearance: none;
 | |
| }
 | |
| 
 | |
| a.close.disabled {
 | |
|   pointer-events: none;
 | |
| }
 | |
| 
 | |
| .toast {
 | |
|   max-width: 350px;
 | |
|   overflow: hidden;
 | |
|   font-size: 0.875rem;
 | |
|   background-color: rgba(255, 255, 255, 0.85);
 | |
|   background-clip: padding-box;
 | |
|   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;
 | |
| }
 | |
| 
 | |
| .toast-header {
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
|   padding: 0.25rem 0.75rem;
 | |
|   color: #6c757d;
 | |
|   background-color: rgba(255, 255, 255, 0.85);
 | |
|   background-clip: padding-box;
 | |
|   border-bottom: 1px solid rgba(0, 0, 0, 0.05);
 | |
| }
 | |
| 
 | |
| .toast-body {
 | |
|   padding: 0.75rem;
 | |
| }
 | |
| 
 | |
| .modal-open {
 | |
|   overflow: hidden;
 | |
| }
 | |
| 
 | |
| .modal-open .modal {
 | |
|   overflow-x: hidden;
 | |
|   overflow-y: auto;
 | |
| }
 | |
| 
 | |
| .modal {
 | |
|   position: fixed;
 | |
|   top: 0;
 | |
|   left: 0;
 | |
|   z-index: 1050;
 | |
|   display: none;
 | |
|   width: 100%;
 | |
|   height: 100%;
 | |
|   overflow: hidden;
 | |
|   outline: 0;
 | |
| }
 | |
| 
 | |
| .modal-dialog {
 | |
|   position: relative;
 | |
|   width: auto;
 | |
|   margin: 0.5rem;
 | |
|   pointer-events: none;
 | |
| }
 | |
| 
 | |
| .modal.fade .modal-dialog {
 | |
|   transition: transform 0.3s ease-out;
 | |
|   transform: translate(0, -50px);
 | |
| }
 | |
| 
 | |
| @media (prefers-reduced-motion: reduce) {
 | |
|   .modal.fade .modal-dialog {
 | |
|     transition: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .modal.show .modal-dialog {
 | |
|   transform: none;
 | |
| }
 | |
| 
 | |
| .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-header,
 | |
| .modal-dialog-scrollable .modal-footer {
 | |
|   flex-shrink: 0;
 | |
| }
 | |
| 
 | |
| .modal-dialog-scrollable .modal-body {
 | |
|   overflow-y: auto;
 | |
| }
 | |
| 
 | |
| .modal-dialog-centered {
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
|   min-height: calc(100% - 1rem);
 | |
| }
 | |
| 
 | |
| .modal-dialog-centered::before {
 | |
|   display: block;
 | |
|   height: calc(100vh - 1rem);
 | |
|   content: "";
 | |
| }
 | |
| 
 | |
| .modal-dialog-centered.modal-dialog-scrollable {
 | |
|   flex-direction: column;
 | |
|   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;
 | |
| }
 | |
| 
 | |
| .modal-content {
 | |
|   position: relative;
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
|   width: 100%;
 | |
|   pointer-events: auto;
 | |
|   background-color: #fff;
 | |
|   background-clip: padding-box;
 | |
|   border: 1px solid rgba(0, 0, 0, 0.2);
 | |
|   border-radius: 0.3rem;
 | |
|   outline: 0;
 | |
| }
 | |
| 
 | |
| .modal-backdrop {
 | |
|   position: fixed;
 | |
|   top: 0;
 | |
|   left: 0;
 | |
|   z-index: 1040;
 | |
|   width: 100vw;
 | |
|   height: 100vh;
 | |
|   background-color: #000;
 | |
| }
 | |
| 
 | |
| .modal-backdrop.fade {
 | |
|   opacity: 0;
 | |
| }
 | |
| 
 | |
| .modal-backdrop.show {
 | |
|   opacity: 0.5;
 | |
| }
 | |
| 
 | |
| .modal-header {
 | |
|   display: flex;
 | |
|   align-items: flex-start;
 | |
|   justify-content: space-between;
 | |
|   padding: 1rem 1rem;
 | |
|   border-bottom: 1px solid #dee2e6;
 | |
|   border-top-left-radius: 0.3rem;
 | |
|   border-top-right-radius: 0.3rem;
 | |
| }
 | |
| 
 | |
| .modal-header .close {
 | |
|   padding: 1rem 1rem;
 | |
|   margin: -1rem -1rem -1rem auto;
 | |
| }
 | |
| 
 | |
| .modal-title {
 | |
|   margin-bottom: 0;
 | |
|   line-height: 1.5;
 | |
| }
 | |
| 
 | |
| .modal-body {
 | |
|   position: relative;
 | |
|   flex: 1 1 auto;
 | |
|   padding: 1rem;
 | |
| }
 | |
| 
 | |
| .modal-footer {
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
|   justify-content: flex-end;
 | |
|   padding: 1rem;
 | |
|   border-top: 1px solid #dee2e6;
 | |
|   border-bottom-right-radius: 0.3rem;
 | |
|   border-bottom-left-radius: 0.3rem;
 | |
| }
 | |
| 
 | |
| .modal-footer > :not(:first-child) {
 | |
|   margin-left: 0.25rem;
 | |
| }
 | |
| 
 | |
| .modal-footer > :not(:last-child) {
 | |
|   margin-right: 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 {
 | |
|   position: absolute;
 | |
|   z-index: 1070;
 | |
|   display: block;
 | |
|   margin: 0;
 | |
|   font-family: "Poppins", sans-serif;
 | |
|   font-style: normal;
 | |
|   font-weight: 400;
 | |
|   line-height: 1.5;
 | |
|   text-align: left;
 | |
|   text-align: start;
 | |
|   text-decoration: none;
 | |
|   text-shadow: none;
 | |
|   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;
 | |
|   opacity: 0;
 | |
| }
 | |
| 
 | |
| .tooltip.show {
 | |
|   opacity: 0.9;
 | |
| }
 | |
| 
 | |
| .tooltip .arrow {
 | |
|   position: absolute;
 | |
|   display: block;
 | |
|   width: 0.8rem;
 | |
|   height: 0.4rem;
 | |
| }
 | |
| 
 | |
| .tooltip .arrow::before {
 | |
|   position: absolute;
 | |
|   content: "";
 | |
|   border-color: transparent;
 | |
|   border-style: solid;
 | |
| }
 | |
| 
 | |
| .bs-tooltip-top,
 | |
| .bs-tooltip-auto[x-placement^=top] {
 | |
|   padding: 0.4rem 0;
 | |
| }
 | |
| 
 | |
| .bs-tooltip-top .arrow,
 | |
| .bs-tooltip-auto[x-placement^=top] .arrow {
 | |
|   bottom: 0;
 | |
| }
 | |
| 
 | |
| .bs-tooltip-top .arrow::before,
 | |
| .bs-tooltip-auto[x-placement^=top] .arrow::before {
 | |
|   top: 0;
 | |
|   border-width: 0.4rem 0.4rem 0;
 | |
|   border-top-color: #000;
 | |
| }
 | |
| 
 | |
| .bs-tooltip-right,
 | |
| .bs-tooltip-auto[x-placement^=right] {
 | |
|   padding: 0 0.4rem;
 | |
| }
 | |
| 
 | |
| .bs-tooltip-right .arrow,
 | |
| .bs-tooltip-auto[x-placement^=right] .arrow {
 | |
|   left: 0;
 | |
|   width: 0.4rem;
 | |
|   height: 0.8rem;
 | |
| }
 | |
| 
 | |
| .bs-tooltip-right .arrow::before,
 | |
| .bs-tooltip-auto[x-placement^=right] .arrow::before {
 | |
|   right: 0;
 | |
|   border-width: 0.4rem 0.4rem 0.4rem 0;
 | |
|   border-right-color: #000;
 | |
| }
 | |
| 
 | |
| .bs-tooltip-bottom,
 | |
| .bs-tooltip-auto[x-placement^=bottom] {
 | |
|   padding: 0.4rem 0;
 | |
| }
 | |
| 
 | |
| .bs-tooltip-bottom .arrow,
 | |
| .bs-tooltip-auto[x-placement^=bottom] .arrow {
 | |
|   top: 0;
 | |
| }
 | |
| 
 | |
| .bs-tooltip-bottom .arrow::before,
 | |
| .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
 | |
|   bottom: 0;
 | |
|   border-width: 0 0.4rem 0.4rem;
 | |
|   border-bottom-color: #000;
 | |
| }
 | |
| 
 | |
| .bs-tooltip-left,
 | |
| .bs-tooltip-auto[x-placement^=left] {
 | |
|   padding: 0 0.4rem;
 | |
| }
 | |
| 
 | |
| .bs-tooltip-left .arrow,
 | |
| .bs-tooltip-auto[x-placement^=left] .arrow {
 | |
|   right: 0;
 | |
|   width: 0.4rem;
 | |
|   height: 0.8rem;
 | |
| }
 | |
| 
 | |
| .bs-tooltip-left .arrow::before,
 | |
| .bs-tooltip-auto[x-placement^=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 {
 | |
|   position: absolute;
 | |
|   top: 0;
 | |
|   left: 0;
 | |
|   z-index: 1060;
 | |
|   display: block;
 | |
|   max-width: 276px;
 | |
|   font-family: "Poppins", sans-serif;
 | |
|   font-style: normal;
 | |
|   font-weight: 400;
 | |
|   line-height: 1.5;
 | |
|   text-align: left;
 | |
|   text-align: start;
 | |
|   text-decoration: none;
 | |
|   text-shadow: none;
 | |
|   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;
 | |
|   background-color: #fff;
 | |
|   background-clip: padding-box;
 | |
|   border: 1px solid rgba(0, 0, 0, 0.2);
 | |
|   border-radius: 0.3rem;
 | |
| }
 | |
| 
 | |
| .popover .arrow {
 | |
|   position: absolute;
 | |
|   display: block;
 | |
|   width: 1rem;
 | |
|   height: 0.5rem;
 | |
|   margin: 0 0.3rem;
 | |
| }
 | |
| 
 | |
| .popover .arrow::before,
 | |
| .popover .arrow::after {
 | |
|   position: absolute;
 | |
|   display: block;
 | |
|   content: "";
 | |
|   border-color: transparent;
 | |
|   border-style: solid;
 | |
| }
 | |
| 
 | |
| .bs-popover-top,
 | |
| .bs-popover-auto[x-placement^=top] {
 | |
|   margin-bottom: 0.5rem;
 | |
| }
 | |
| 
 | |
| .bs-popover-top > .arrow,
 | |
| .bs-popover-auto[x-placement^=top] > .arrow {
 | |
|   bottom: calc((0.5rem + 1px) * -1);
 | |
| }
 | |
| 
 | |
| .bs-popover-top > .arrow::before,
 | |
| .bs-popover-auto[x-placement^=top] > .arrow::before {
 | |
|   bottom: 0;
 | |
|   border-width: 0.5rem 0.5rem 0;
 | |
|   border-top-color: rgba(0, 0, 0, 0.25);
 | |
| }
 | |
| 
 | |
| .bs-popover-top > .arrow::after,
 | |
| .bs-popover-auto[x-placement^=top] > .arrow::after {
 | |
|   bottom: 1px;
 | |
|   border-width: 0.5rem 0.5rem 0;
 | |
|   border-top-color: #fff;
 | |
| }
 | |
| 
 | |
| .bs-popover-right,
 | |
| .bs-popover-auto[x-placement^=right] {
 | |
|   margin-left: 0.5rem;
 | |
| }
 | |
| 
 | |
| .bs-popover-right > .arrow,
 | |
| .bs-popover-auto[x-placement^=right] > .arrow {
 | |
|   left: calc((0.5rem + 1px) * -1);
 | |
|   width: 0.5rem;
 | |
|   height: 1rem;
 | |
|   margin: 0.3rem 0;
 | |
| }
 | |
| 
 | |
| .bs-popover-right > .arrow::before,
 | |
| .bs-popover-auto[x-placement^=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-right > .arrow::after,
 | |
| .bs-popover-auto[x-placement^=right] > .arrow::after {
 | |
|   left: 1px;
 | |
|   border-width: 0.5rem 0.5rem 0.5rem 0;
 | |
|   border-right-color: #fff;
 | |
| }
 | |
| 
 | |
| .bs-popover-bottom,
 | |
| .bs-popover-auto[x-placement^=bottom] {
 | |
|   margin-top: 0.5rem;
 | |
| }
 | |
| 
 | |
| .bs-popover-bottom > .arrow,
 | |
| .bs-popover-auto[x-placement^=bottom] > .arrow {
 | |
|   top: calc((0.5rem + 1px) * -1);
 | |
| }
 | |
| 
 | |
| .bs-popover-bottom > .arrow::before,
 | |
| .bs-popover-auto[x-placement^=bottom] > .arrow::before {
 | |
|   top: 0;
 | |
|   border-width: 0 0.5rem 0.5rem 0.5rem;
 | |
|   border-bottom-color: rgba(0, 0, 0, 0.25);
 | |
| }
 | |
| 
 | |
| .bs-popover-bottom > .arrow::after,
 | |
| .bs-popover-auto[x-placement^=bottom] > .arrow::after {
 | |
|   top: 1px;
 | |
|   border-width: 0 0.5rem 0.5rem 0.5rem;
 | |
|   border-bottom-color: #fff;
 | |
| }
 | |
| 
 | |
| .bs-popover-bottom .popover-header::before,
 | |
| .bs-popover-auto[x-placement^=bottom] .popover-header::before {
 | |
|   position: absolute;
 | |
|   top: 0;
 | |
|   left: 50%;
 | |
|   display: block;
 | |
|   width: 1rem;
 | |
|   margin-left: -0.5rem;
 | |
|   content: "";
 | |
|   border-bottom: 1px solid #f7f7f7;
 | |
| }
 | |
| 
 | |
| .bs-popover-left,
 | |
| .bs-popover-auto[x-placement^=left] {
 | |
|   margin-right: 0.5rem;
 | |
| }
 | |
| 
 | |
| .bs-popover-left > .arrow,
 | |
| .bs-popover-auto[x-placement^=left] > .arrow {
 | |
|   right: calc((0.5rem + 1px) * -1);
 | |
|   width: 0.5rem;
 | |
|   height: 1rem;
 | |
|   margin: 0.3rem 0;
 | |
| }
 | |
| 
 | |
| .bs-popover-left > .arrow::before,
 | |
| .bs-popover-auto[x-placement^=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-left > .arrow::after,
 | |
| .bs-popover-auto[x-placement^=left] > .arrow::after {
 | |
|   right: 1px;
 | |
|   border-width: 0.5rem 0 0.5rem 0.5rem;
 | |
|   border-left-color: #fff;
 | |
| }
 | |
| 
 | |
| .popover-header {
 | |
|   padding: 0.5rem 0.75rem;
 | |
|   margin-bottom: 0;
 | |
|   font-size: 1rem;
 | |
|   background-color: #f7f7f7;
 | |
|   border-bottom: 1px solid #ebebeb;
 | |
|   border-top-left-radius: calc(0.3rem - 1px);
 | |
|   border-top-right-radius: calc(0.3rem - 1px);
 | |
| }
 | |
| 
 | |
| .popover-header:empty {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| .popover-body {
 | |
|   padding: 0.5rem 0.75rem;
 | |
|   color: #212529;
 | |
| }
 | |
| 
 | |
| .carousel {
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| .carousel.pointer-event {
 | |
|   touch-action: pan-y;
 | |
| }
 | |
| 
 | |
| .carousel-inner {
 | |
|   position: relative;
 | |
|   width: 100%;
 | |
|   overflow: hidden;
 | |
| }
 | |
| 
 | |
| .carousel-inner::after {
 | |
|   display: block;
 | |
|   clear: both;
 | |
|   content: "";
 | |
| }
 | |
| 
 | |
| .carousel-item {
 | |
|   position: relative;
 | |
|   display: none;
 | |
|   float: left;
 | |
|   width: 100%;
 | |
|   margin-right: -100%;
 | |
|   -webkit-backface-visibility: hidden;
 | |
|           backface-visibility: hidden;
 | |
|   transition: transform 0.6s ease-in-out;
 | |
| }
 | |
| 
 | |
| @media (prefers-reduced-motion: reduce) {
 | |
|   .carousel-item {
 | |
|     transition: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .carousel-item.active,
 | |
| .carousel-item-next,
 | |
| .carousel-item-prev {
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| .carousel-item-next:not(.carousel-item-left),
 | |
| .active.carousel-item-right {
 | |
|   transform: translateX(100%);
 | |
| }
 | |
| 
 | |
| .carousel-item-prev:not(.carousel-item-right),
 | |
| .active.carousel-item-left {
 | |
|   transform: translateX(-100%);
 | |
| }
 | |
| 
 | |
| .carousel-fade .carousel-item {
 | |
|   opacity: 0;
 | |
|   transition-property: opacity;
 | |
|   transform: none;
 | |
| }
 | |
| 
 | |
| .carousel-fade .carousel-item.active,
 | |
| .carousel-fade .carousel-item-next.carousel-item-left,
 | |
| .carousel-fade .carousel-item-prev.carousel-item-right {
 | |
|   z-index: 1;
 | |
|   opacity: 1;
 | |
| }
 | |
| 
 | |
| .carousel-fade .active.carousel-item-left,
 | |
| .carousel-fade .active.carousel-item-right {
 | |
|   z-index: 0;
 | |
|   opacity: 0;
 | |
|   transition: 0s 0.6s opacity;
 | |
| }
 | |
| 
 | |
| @media (prefers-reduced-motion: reduce) {
 | |
|   .carousel-fade .active.carousel-item-left,
 | |
|   .carousel-fade .active.carousel-item-right {
 | |
|     transition: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .carousel-control-prev,
 | |
| .carousel-control-next {
 | |
|   position: absolute;
 | |
|   top: 0;
 | |
|   bottom: 0;
 | |
|   z-index: 1;
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
|   justify-content: center;
 | |
|   width: 15%;
 | |
|   color: #fff;
 | |
|   text-align: center;
 | |
|   opacity: 0.5;
 | |
|   transition: opacity 0.15s ease;
 | |
| }
 | |
| 
 | |
| @media (prefers-reduced-motion: reduce) {
 | |
|   .carousel-control-prev,
 | |
|   .carousel-control-next {
 | |
|     transition: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .carousel-control-prev:hover,
 | |
| .carousel-control-prev:focus,
 | |
| .carousel-control-next:hover,
 | |
| .carousel-control-next:focus {
 | |
|   color: #fff;
 | |
|   text-decoration: none;
 | |
|   outline: 0;
 | |
|   opacity: 0.9;
 | |
| }
 | |
| 
 | |
| .carousel-control-prev {
 | |
|   left: 0;
 | |
| }
 | |
| 
 | |
| .carousel-control-next {
 | |
|   right: 0;
 | |
| }
 | |
| 
 | |
| .carousel-control-prev-icon,
 | |
| .carousel-control-next-icon {
 | |
|   display: inline-block;
 | |
|   width: 20px;
 | |
|   height: 20px;
 | |
|   background: no-repeat 50%/100% 100%;
 | |
| }
 | |
| 
 | |
| .carousel-control-prev-icon {
 | |
|   background-image: url("data:image/svg+xml,%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,%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: flex;
 | |
|   justify-content: center;
 | |
|   padding-left: 0;
 | |
|   margin-right: 15%;
 | |
|   margin-left: 15%;
 | |
|   list-style: none;
 | |
| }
 | |
| 
 | |
| .carousel-indicators li {
 | |
|   box-sizing: content-box;
 | |
|   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;
 | |
|   transition: opacity 0.6s ease;
 | |
| }
 | |
| 
 | |
| @media (prefers-reduced-motion: reduce) {
 | |
|   .carousel-indicators li {
 | |
|     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 {
 | |
|     transform: rotate(360deg);
 | |
|   }
 | |
| }
 | |
| 
 | |
| @keyframes spinner-border {
 | |
|   to {
 | |
|     transform: rotate(360deg);
 | |
|   }
 | |
| }
 | |
| 
 | |
| .spinner-border {
 | |
|   display: inline-block;
 | |
|   width: 2rem;
 | |
|   height: 2rem;
 | |
|   vertical-align: text-bottom;
 | |
|   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% {
 | |
|     transform: scale(0);
 | |
|   }
 | |
| 
 | |
|   50% {
 | |
|     opacity: 1;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @keyframes spinner-grow {
 | |
|   0% {
 | |
|     transform: scale(0);
 | |
|   }
 | |
| 
 | |
|   50% {
 | |
|     opacity: 1;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .spinner-grow {
 | |
|   display: inline-block;
 | |
|   width: 2rem;
 | |
|   height: 2rem;
 | |
|   vertical-align: text-bottom;
 | |
|   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: #5851D8 !important;
 | |
| }
 | |
| 
 | |
| a.bg-primary:hover,
 | |
| a.bg-primary:focus,
 | |
| button.bg-primary:hover,
 | |
| button.bg-primary:focus {
 | |
|   background-color: #352dc9 !important;
 | |
| }
 | |
| 
 | |
| .bg-secondary {
 | |
|   background-color: #55547A !important;
 | |
| }
 | |
| 
 | |
| a.bg-secondary:hover,
 | |
| a.bg-secondary:focus,
 | |
| button.bg-secondary:hover,
 | |
| button.bg-secondary:focus {
 | |
|   background-color: #403f5c !important;
 | |
| }
 | |
| 
 | |
| .bg-success {
 | |
|   background-color: #00C99C !important;
 | |
| }
 | |
| 
 | |
| a.bg-success:hover,
 | |
| a.bg-success:focus,
 | |
| button.bg-success:hover,
 | |
| button.bg-success:focus {
 | |
|   background-color: #009674 !important;
 | |
| }
 | |
| 
 | |
| .bg-info {
 | |
|   background-color: #15B2EC !important;
 | |
| }
 | |
| 
 | |
| a.bg-info:hover,
 | |
| a.bg-info:focus,
 | |
| button.bg-info:hover,
 | |
| button.bg-info:focus {
 | |
|   background-color: #0f8fbf !important;
 | |
| }
 | |
| 
 | |
| .bg-warning {
 | |
|   background-color: #F3AF4E !important;
 | |
| }
 | |
| 
 | |
| a.bg-warning:hover,
 | |
| a.bg-warning:focus,
 | |
| button.bg-warning:hover,
 | |
| button.bg-warning:focus {
 | |
|   background-color: #f0991e !important;
 | |
| }
 | |
| 
 | |
| .bg-danger {
 | |
|   background-color: #FB7178 !important;
 | |
| }
 | |
| 
 | |
| a.bg-danger:hover,
 | |
| a.bg-danger:focus,
 | |
| button.bg-danger:hover,
 | |
| button.bg-danger:focus {
 | |
|   background-color: #fa3f49 !important;
 | |
| }
 | |
| 
 | |
| .bg-light {
 | |
|   background-color: #817AE3 !important;
 | |
| }
 | |
| 
 | |
| a.bg-light:hover,
 | |
| a.bg-light:focus,
 | |
| button.bg-light:hover,
 | |
| button.bg-light:focus {
 | |
|   background-color: #5950da !important;
 | |
| }
 | |
| 
 | |
| .bg-dark {
 | |
|   background-color: #55547A !important;
 | |
| }
 | |
| 
 | |
| a.bg-dark:hover,
 | |
| a.bg-dark:focus,
 | |
| button.bg-dark:hover,
 | |
| button.bg-dark:focus {
 | |
|   background-color: #403f5c !important;
 | |
| }
 | |
| 
 | |
| .bg-white {
 | |
|   background-color: #fff !important;
 | |
| }
 | |
| 
 | |
| .bg-transparent {
 | |
|   background-color: transparent !important;
 | |
| }
 | |
| 
 | |
| .border {
 | |
|   border: 1px solid #dee2e6 !important;
 | |
| }
 | |
| 
 | |
| .border-top {
 | |
|   border-top: 1px solid #dee2e6 !important;
 | |
| }
 | |
| 
 | |
| .border-right {
 | |
|   border-right: 1px solid #dee2e6 !important;
 | |
| }
 | |
| 
 | |
| .border-bottom {
 | |
|   border-bottom: 1px solid #dee2e6 !important;
 | |
| }
 | |
| 
 | |
| .border-left {
 | |
|   border-left: 1px solid #dee2e6 !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: #5851D8 !important;
 | |
| }
 | |
| 
 | |
| .border-secondary {
 | |
|   border-color: #55547A !important;
 | |
| }
 | |
| 
 | |
| .border-success {
 | |
|   border-color: #00C99C !important;
 | |
| }
 | |
| 
 | |
| .border-info {
 | |
|   border-color: #15B2EC !important;
 | |
| }
 | |
| 
 | |
| .border-warning {
 | |
|   border-color: #F3AF4E !important;
 | |
| }
 | |
| 
 | |
| .border-danger {
 | |
|   border-color: #FB7178 !important;
 | |
| }
 | |
| 
 | |
| .border-light {
 | |
|   border-color: #817AE3 !important;
 | |
| }
 | |
| 
 | |
| .border-dark {
 | |
|   border-color: #55547A !important;
 | |
| }
 | |
| 
 | |
| .border-white {
 | |
|   border-color: #fff !important;
 | |
| }
 | |
| 
 | |
| .rounded-sm {
 | |
|   border-radius: 0.2rem !important;
 | |
| }
 | |
| 
 | |
| .rounded {
 | |
|   border-radius: 0.25rem !important;
 | |
| }
 | |
| 
 | |
| .rounded-top {
 | |
|   border-top-left-radius: 0.25rem !important;
 | |
|   border-top-right-radius: 0.25rem !important;
 | |
| }
 | |
| 
 | |
| .rounded-right {
 | |
|   border-top-right-radius: 0.25rem !important;
 | |
|   border-bottom-right-radius: 0.25rem !important;
 | |
| }
 | |
| 
 | |
| .rounded-bottom {
 | |
|   border-bottom-right-radius: 0.25rem !important;
 | |
|   border-bottom-left-radius: 0.25rem !important;
 | |
| }
 | |
| 
 | |
| .rounded-left {
 | |
|   border-top-left-radius: 0.25rem !important;
 | |
|   border-bottom-left-radius: 0.25rem !important;
 | |
| }
 | |
| 
 | |
| .rounded-lg {
 | |
|   border-radius: 0.3rem !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;
 | |
|   content: "";
 | |
| }
 | |
| 
 | |
| .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: flex !important;
 | |
| }
 | |
| 
 | |
| .d-inline-flex {
 | |
|   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: flex !important;
 | |
|   }
 | |
| 
 | |
|   .d-sm-inline-flex {
 | |
|     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: flex !important;
 | |
|   }
 | |
| 
 | |
|   .d-md-inline-flex {
 | |
|     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: flex !important;
 | |
|   }
 | |
| 
 | |
|   .d-lg-inline-flex {
 | |
|     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: flex !important;
 | |
|   }
 | |
| 
 | |
|   .d-xl-inline-flex {
 | |
|     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: flex !important;
 | |
|   }
 | |
| 
 | |
|   .d-print-inline-flex {
 | |
|     display: inline-flex !important;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .embed-responsive {
 | |
|   position: relative;
 | |
|   display: block;
 | |
|   width: 100%;
 | |
|   padding: 0;
 | |
|   overflow: hidden;
 | |
| }
 | |
| 
 | |
| .embed-responsive::before {
 | |
|   display: block;
 | |
|   content: "";
 | |
| }
 | |
| 
 | |
| .embed-responsive .embed-responsive-item,
 | |
| .embed-responsive iframe,
 | |
| .embed-responsive embed,
 | |
| .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.8571428571%;
 | |
| }
 | |
| 
 | |
| .embed-responsive-16by9::before {
 | |
|   padding-top: 56.25%;
 | |
| }
 | |
| 
 | |
| .embed-responsive-4by3::before {
 | |
|   padding-top: 75%;
 | |
| }
 | |
| 
 | |
| .embed-responsive-1by1::before {
 | |
|   padding-top: 100%;
 | |
| }
 | |
| 
 | |
| .flex-row {
 | |
|   flex-direction: row !important;
 | |
| }
 | |
| 
 | |
| .flex-column {
 | |
|   flex-direction: column !important;
 | |
| }
 | |
| 
 | |
| .flex-row-reverse {
 | |
|   flex-direction: row-reverse !important;
 | |
| }
 | |
| 
 | |
| .flex-column-reverse {
 | |
|   flex-direction: column-reverse !important;
 | |
| }
 | |
| 
 | |
| .flex-wrap {
 | |
|   flex-wrap: wrap !important;
 | |
| }
 | |
| 
 | |
| .flex-nowrap {
 | |
|   flex-wrap: nowrap !important;
 | |
| }
 | |
| 
 | |
| .flex-wrap-reverse {
 | |
|   flex-wrap: wrap-reverse !important;
 | |
| }
 | |
| 
 | |
| .flex-fill {
 | |
|   flex: 1 1 auto !important;
 | |
| }
 | |
| 
 | |
| .flex-grow-0 {
 | |
|   flex-grow: 0 !important;
 | |
| }
 | |
| 
 | |
| .flex-grow-1 {
 | |
|   flex-grow: 1 !important;
 | |
| }
 | |
| 
 | |
| .flex-shrink-0 {
 | |
|   flex-shrink: 0 !important;
 | |
| }
 | |
| 
 | |
| .flex-shrink-1 {
 | |
|   flex-shrink: 1 !important;
 | |
| }
 | |
| 
 | |
| .justify-content-start {
 | |
|   justify-content: flex-start !important;
 | |
| }
 | |
| 
 | |
| .justify-content-end {
 | |
|   justify-content: flex-end !important;
 | |
| }
 | |
| 
 | |
| .justify-content-center {
 | |
|   justify-content: center !important;
 | |
| }
 | |
| 
 | |
| .justify-content-between {
 | |
|   justify-content: space-between !important;
 | |
| }
 | |
| 
 | |
| .justify-content-around {
 | |
|   justify-content: space-around !important;
 | |
| }
 | |
| 
 | |
| .align-items-start {
 | |
|   align-items: flex-start !important;
 | |
| }
 | |
| 
 | |
| .align-items-end {
 | |
|   align-items: flex-end !important;
 | |
| }
 | |
| 
 | |
| .align-items-center {
 | |
|   align-items: center !important;
 | |
| }
 | |
| 
 | |
| .align-items-baseline {
 | |
|   align-items: baseline !important;
 | |
| }
 | |
| 
 | |
| .align-items-stretch {
 | |
|   align-items: stretch !important;
 | |
| }
 | |
| 
 | |
| .align-content-start {
 | |
|   align-content: flex-start !important;
 | |
| }
 | |
| 
 | |
| .align-content-end {
 | |
|   align-content: flex-end !important;
 | |
| }
 | |
| 
 | |
| .align-content-center {
 | |
|   align-content: center !important;
 | |
| }
 | |
| 
 | |
| .align-content-between {
 | |
|   align-content: space-between !important;
 | |
| }
 | |
| 
 | |
| .align-content-around {
 | |
|   align-content: space-around !important;
 | |
| }
 | |
| 
 | |
| .align-content-stretch {
 | |
|   align-content: stretch !important;
 | |
| }
 | |
| 
 | |
| .align-self-auto {
 | |
|   align-self: auto !important;
 | |
| }
 | |
| 
 | |
| .align-self-start {
 | |
|   align-self: flex-start !important;
 | |
| }
 | |
| 
 | |
| .align-self-end {
 | |
|   align-self: flex-end !important;
 | |
| }
 | |
| 
 | |
| .align-self-center {
 | |
|   align-self: center !important;
 | |
| }
 | |
| 
 | |
| .align-self-baseline {
 | |
|   align-self: baseline !important;
 | |
| }
 | |
| 
 | |
| .align-self-stretch {
 | |
|   align-self: stretch !important;
 | |
| }
 | |
| 
 | |
| @media (min-width: 576px) {
 | |
|   .flex-sm-row {
 | |
|     flex-direction: row !important;
 | |
|   }
 | |
| 
 | |
|   .flex-sm-column {
 | |
|     flex-direction: column !important;
 | |
|   }
 | |
| 
 | |
|   .flex-sm-row-reverse {
 | |
|     flex-direction: row-reverse !important;
 | |
|   }
 | |
| 
 | |
|   .flex-sm-column-reverse {
 | |
|     flex-direction: column-reverse !important;
 | |
|   }
 | |
| 
 | |
|   .flex-sm-wrap {
 | |
|     flex-wrap: wrap !important;
 | |
|   }
 | |
| 
 | |
|   .flex-sm-nowrap {
 | |
|     flex-wrap: nowrap !important;
 | |
|   }
 | |
| 
 | |
|   .flex-sm-wrap-reverse {
 | |
|     flex-wrap: wrap-reverse !important;
 | |
|   }
 | |
| 
 | |
|   .flex-sm-fill {
 | |
|     flex: 1 1 auto !important;
 | |
|   }
 | |
| 
 | |
|   .flex-sm-grow-0 {
 | |
|     flex-grow: 0 !important;
 | |
|   }
 | |
| 
 | |
|   .flex-sm-grow-1 {
 | |
|     flex-grow: 1 !important;
 | |
|   }
 | |
| 
 | |
|   .flex-sm-shrink-0 {
 | |
|     flex-shrink: 0 !important;
 | |
|   }
 | |
| 
 | |
|   .flex-sm-shrink-1 {
 | |
|     flex-shrink: 1 !important;
 | |
|   }
 | |
| 
 | |
|   .justify-content-sm-start {
 | |
|     justify-content: flex-start !important;
 | |
|   }
 | |
| 
 | |
|   .justify-content-sm-end {
 | |
|     justify-content: flex-end !important;
 | |
|   }
 | |
| 
 | |
|   .justify-content-sm-center {
 | |
|     justify-content: center !important;
 | |
|   }
 | |
| 
 | |
|   .justify-content-sm-between {
 | |
|     justify-content: space-between !important;
 | |
|   }
 | |
| 
 | |
|   .justify-content-sm-around {
 | |
|     justify-content: space-around !important;
 | |
|   }
 | |
| 
 | |
|   .align-items-sm-start {
 | |
|     align-items: flex-start !important;
 | |
|   }
 | |
| 
 | |
|   .align-items-sm-end {
 | |
|     align-items: flex-end !important;
 | |
|   }
 | |
| 
 | |
|   .align-items-sm-center {
 | |
|     align-items: center !important;
 | |
|   }
 | |
| 
 | |
|   .align-items-sm-baseline {
 | |
|     align-items: baseline !important;
 | |
|   }
 | |
| 
 | |
|   .align-items-sm-stretch {
 | |
|     align-items: stretch !important;
 | |
|   }
 | |
| 
 | |
|   .align-content-sm-start {
 | |
|     align-content: flex-start !important;
 | |
|   }
 | |
| 
 | |
|   .align-content-sm-end {
 | |
|     align-content: flex-end !important;
 | |
|   }
 | |
| 
 | |
|   .align-content-sm-center {
 | |
|     align-content: center !important;
 | |
|   }
 | |
| 
 | |
|   .align-content-sm-between {
 | |
|     align-content: space-between !important;
 | |
|   }
 | |
| 
 | |
|   .align-content-sm-around {
 | |
|     align-content: space-around !important;
 | |
|   }
 | |
| 
 | |
|   .align-content-sm-stretch {
 | |
|     align-content: stretch !important;
 | |
|   }
 | |
| 
 | |
|   .align-self-sm-auto {
 | |
|     align-self: auto !important;
 | |
|   }
 | |
| 
 | |
|   .align-self-sm-start {
 | |
|     align-self: flex-start !important;
 | |
|   }
 | |
| 
 | |
|   .align-self-sm-end {
 | |
|     align-self: flex-end !important;
 | |
|   }
 | |
| 
 | |
|   .align-self-sm-center {
 | |
|     align-self: center !important;
 | |
|   }
 | |
| 
 | |
|   .align-self-sm-baseline {
 | |
|     align-self: baseline !important;
 | |
|   }
 | |
| 
 | |
|   .align-self-sm-stretch {
 | |
|     align-self: stretch !important;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (min-width: 768px) {
 | |
|   .flex-md-row {
 | |
|     flex-direction: row !important;
 | |
|   }
 | |
| 
 | |
|   .flex-md-column {
 | |
|     flex-direction: column !important;
 | |
|   }
 | |
| 
 | |
|   .flex-md-row-reverse {
 | |
|     flex-direction: row-reverse !important;
 | |
|   }
 | |
| 
 | |
|   .flex-md-column-reverse {
 | |
|     flex-direction: column-reverse !important;
 | |
|   }
 | |
| 
 | |
|   .flex-md-wrap {
 | |
|     flex-wrap: wrap !important;
 | |
|   }
 | |
| 
 | |
|   .flex-md-nowrap {
 | |
|     flex-wrap: nowrap !important;
 | |
|   }
 | |
| 
 | |
|   .flex-md-wrap-reverse {
 | |
|     flex-wrap: wrap-reverse !important;
 | |
|   }
 | |
| 
 | |
|   .flex-md-fill {
 | |
|     flex: 1 1 auto !important;
 | |
|   }
 | |
| 
 | |
|   .flex-md-grow-0 {
 | |
|     flex-grow: 0 !important;
 | |
|   }
 | |
| 
 | |
|   .flex-md-grow-1 {
 | |
|     flex-grow: 1 !important;
 | |
|   }
 | |
| 
 | |
|   .flex-md-shrink-0 {
 | |
|     flex-shrink: 0 !important;
 | |
|   }
 | |
| 
 | |
|   .flex-md-shrink-1 {
 | |
|     flex-shrink: 1 !important;
 | |
|   }
 | |
| 
 | |
|   .justify-content-md-start {
 | |
|     justify-content: flex-start !important;
 | |
|   }
 | |
| 
 | |
|   .justify-content-md-end {
 | |
|     justify-content: flex-end !important;
 | |
|   }
 | |
| 
 | |
|   .justify-content-md-center {
 | |
|     justify-content: center !important;
 | |
|   }
 | |
| 
 | |
|   .justify-content-md-between {
 | |
|     justify-content: space-between !important;
 | |
|   }
 | |
| 
 | |
|   .justify-content-md-around {
 | |
|     justify-content: space-around !important;
 | |
|   }
 | |
| 
 | |
|   .align-items-md-start {
 | |
|     align-items: flex-start !important;
 | |
|   }
 | |
| 
 | |
|   .align-items-md-end {
 | |
|     align-items: flex-end !important;
 | |
|   }
 | |
| 
 | |
|   .align-items-md-center {
 | |
|     align-items: center !important;
 | |
|   }
 | |
| 
 | |
|   .align-items-md-baseline {
 | |
|     align-items: baseline !important;
 | |
|   }
 | |
| 
 | |
|   .align-items-md-stretch {
 | |
|     align-items: stretch !important;
 | |
|   }
 | |
| 
 | |
|   .align-content-md-start {
 | |
|     align-content: flex-start !important;
 | |
|   }
 | |
| 
 | |
|   .align-content-md-end {
 | |
|     align-content: flex-end !important;
 | |
|   }
 | |
| 
 | |
|   .align-content-md-center {
 | |
|     align-content: center !important;
 | |
|   }
 | |
| 
 | |
|   .align-content-md-between {
 | |
|     align-content: space-between !important;
 | |
|   }
 | |
| 
 | |
|   .align-content-md-around {
 | |
|     align-content: space-around !important;
 | |
|   }
 | |
| 
 | |
|   .align-content-md-stretch {
 | |
|     align-content: stretch !important;
 | |
|   }
 | |
| 
 | |
|   .align-self-md-auto {
 | |
|     align-self: auto !important;
 | |
|   }
 | |
| 
 | |
|   .align-self-md-start {
 | |
|     align-self: flex-start !important;
 | |
|   }
 | |
| 
 | |
|   .align-self-md-end {
 | |
|     align-self: flex-end !important;
 | |
|   }
 | |
| 
 | |
|   .align-self-md-center {
 | |
|     align-self: center !important;
 | |
|   }
 | |
| 
 | |
|   .align-self-md-baseline {
 | |
|     align-self: baseline !important;
 | |
|   }
 | |
| 
 | |
|   .align-self-md-stretch {
 | |
|     align-self: stretch !important;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (min-width: 992px) {
 | |
|   .flex-lg-row {
 | |
|     flex-direction: row !important;
 | |
|   }
 | |
| 
 | |
|   .flex-lg-column {
 | |
|     flex-direction: column !important;
 | |
|   }
 | |
| 
 | |
|   .flex-lg-row-reverse {
 | |
|     flex-direction: row-reverse !important;
 | |
|   }
 | |
| 
 | |
|   .flex-lg-column-reverse {
 | |
|     flex-direction: column-reverse !important;
 | |
|   }
 | |
| 
 | |
|   .flex-lg-wrap {
 | |
|     flex-wrap: wrap !important;
 | |
|   }
 | |
| 
 | |
|   .flex-lg-nowrap {
 | |
|     flex-wrap: nowrap !important;
 | |
|   }
 | |
| 
 | |
|   .flex-lg-wrap-reverse {
 | |
|     flex-wrap: wrap-reverse !important;
 | |
|   }
 | |
| 
 | |
|   .flex-lg-fill {
 | |
|     flex: 1 1 auto !important;
 | |
|   }
 | |
| 
 | |
|   .flex-lg-grow-0 {
 | |
|     flex-grow: 0 !important;
 | |
|   }
 | |
| 
 | |
|   .flex-lg-grow-1 {
 | |
|     flex-grow: 1 !important;
 | |
|   }
 | |
| 
 | |
|   .flex-lg-shrink-0 {
 | |
|     flex-shrink: 0 !important;
 | |
|   }
 | |
| 
 | |
|   .flex-lg-shrink-1 {
 | |
|     flex-shrink: 1 !important;
 | |
|   }
 | |
| 
 | |
|   .justify-content-lg-start {
 | |
|     justify-content: flex-start !important;
 | |
|   }
 | |
| 
 | |
|   .justify-content-lg-end {
 | |
|     justify-content: flex-end !important;
 | |
|   }
 | |
| 
 | |
|   .justify-content-lg-center {
 | |
|     justify-content: center !important;
 | |
|   }
 | |
| 
 | |
|   .justify-content-lg-between {
 | |
|     justify-content: space-between !important;
 | |
|   }
 | |
| 
 | |
|   .justify-content-lg-around {
 | |
|     justify-content: space-around !important;
 | |
|   }
 | |
| 
 | |
|   .align-items-lg-start {
 | |
|     align-items: flex-start !important;
 | |
|   }
 | |
| 
 | |
|   .align-items-lg-end {
 | |
|     align-items: flex-end !important;
 | |
|   }
 | |
| 
 | |
|   .align-items-lg-center {
 | |
|     align-items: center !important;
 | |
|   }
 | |
| 
 | |
|   .align-items-lg-baseline {
 | |
|     align-items: baseline !important;
 | |
|   }
 | |
| 
 | |
|   .align-items-lg-stretch {
 | |
|     align-items: stretch !important;
 | |
|   }
 | |
| 
 | |
|   .align-content-lg-start {
 | |
|     align-content: flex-start !important;
 | |
|   }
 | |
| 
 | |
|   .align-content-lg-end {
 | |
|     align-content: flex-end !important;
 | |
|   }
 | |
| 
 | |
|   .align-content-lg-center {
 | |
|     align-content: center !important;
 | |
|   }
 | |
| 
 | |
|   .align-content-lg-between {
 | |
|     align-content: space-between !important;
 | |
|   }
 | |
| 
 | |
|   .align-content-lg-around {
 | |
|     align-content: space-around !important;
 | |
|   }
 | |
| 
 | |
|   .align-content-lg-stretch {
 | |
|     align-content: stretch !important;
 | |
|   }
 | |
| 
 | |
|   .align-self-lg-auto {
 | |
|     align-self: auto !important;
 | |
|   }
 | |
| 
 | |
|   .align-self-lg-start {
 | |
|     align-self: flex-start !important;
 | |
|   }
 | |
| 
 | |
|   .align-self-lg-end {
 | |
|     align-self: flex-end !important;
 | |
|   }
 | |
| 
 | |
|   .align-self-lg-center {
 | |
|     align-self: center !important;
 | |
|   }
 | |
| 
 | |
|   .align-self-lg-baseline {
 | |
|     align-self: baseline !important;
 | |
|   }
 | |
| 
 | |
|   .align-self-lg-stretch {
 | |
|     align-self: stretch !important;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (min-width: 1200px) {
 | |
|   .flex-xl-row {
 | |
|     flex-direction: row !important;
 | |
|   }
 | |
| 
 | |
|   .flex-xl-column {
 | |
|     flex-direction: column !important;
 | |
|   }
 | |
| 
 | |
|   .flex-xl-row-reverse {
 | |
|     flex-direction: row-reverse !important;
 | |
|   }
 | |
| 
 | |
|   .flex-xl-column-reverse {
 | |
|     flex-direction: column-reverse !important;
 | |
|   }
 | |
| 
 | |
|   .flex-xl-wrap {
 | |
|     flex-wrap: wrap !important;
 | |
|   }
 | |
| 
 | |
|   .flex-xl-nowrap {
 | |
|     flex-wrap: nowrap !important;
 | |
|   }
 | |
| 
 | |
|   .flex-xl-wrap-reverse {
 | |
|     flex-wrap: wrap-reverse !important;
 | |
|   }
 | |
| 
 | |
|   .flex-xl-fill {
 | |
|     flex: 1 1 auto !important;
 | |
|   }
 | |
| 
 | |
|   .flex-xl-grow-0 {
 | |
|     flex-grow: 0 !important;
 | |
|   }
 | |
| 
 | |
|   .flex-xl-grow-1 {
 | |
|     flex-grow: 1 !important;
 | |
|   }
 | |
| 
 | |
|   .flex-xl-shrink-0 {
 | |
|     flex-shrink: 0 !important;
 | |
|   }
 | |
| 
 | |
|   .flex-xl-shrink-1 {
 | |
|     flex-shrink: 1 !important;
 | |
|   }
 | |
| 
 | |
|   .justify-content-xl-start {
 | |
|     justify-content: flex-start !important;
 | |
|   }
 | |
| 
 | |
|   .justify-content-xl-end {
 | |
|     justify-content: flex-end !important;
 | |
|   }
 | |
| 
 | |
|   .justify-content-xl-center {
 | |
|     justify-content: center !important;
 | |
|   }
 | |
| 
 | |
|   .justify-content-xl-between {
 | |
|     justify-content: space-between !important;
 | |
|   }
 | |
| 
 | |
|   .justify-content-xl-around {
 | |
|     justify-content: space-around !important;
 | |
|   }
 | |
| 
 | |
|   .align-items-xl-start {
 | |
|     align-items: flex-start !important;
 | |
|   }
 | |
| 
 | |
|   .align-items-xl-end {
 | |
|     align-items: flex-end !important;
 | |
|   }
 | |
| 
 | |
|   .align-items-xl-center {
 | |
|     align-items: center !important;
 | |
|   }
 | |
| 
 | |
|   .align-items-xl-baseline {
 | |
|     align-items: baseline !important;
 | |
|   }
 | |
| 
 | |
|   .align-items-xl-stretch {
 | |
|     align-items: stretch !important;
 | |
|   }
 | |
| 
 | |
|   .align-content-xl-start {
 | |
|     align-content: flex-start !important;
 | |
|   }
 | |
| 
 | |
|   .align-content-xl-end {
 | |
|     align-content: flex-end !important;
 | |
|   }
 | |
| 
 | |
|   .align-content-xl-center {
 | |
|     align-content: center !important;
 | |
|   }
 | |
| 
 | |
|   .align-content-xl-between {
 | |
|     align-content: space-between !important;
 | |
|   }
 | |
| 
 | |
|   .align-content-xl-around {
 | |
|     align-content: space-around !important;
 | |
|   }
 | |
| 
 | |
|   .align-content-xl-stretch {
 | |
|     align-content: stretch !important;
 | |
|   }
 | |
| 
 | |
|   .align-self-xl-auto {
 | |
|     align-self: auto !important;
 | |
|   }
 | |
| 
 | |
|   .align-self-xl-start {
 | |
|     align-self: flex-start !important;
 | |
|   }
 | |
| 
 | |
|   .align-self-xl-end {
 | |
|     align-self: flex-end !important;
 | |
|   }
 | |
| 
 | |
|   .align-self-xl-center {
 | |
|     align-self: center !important;
 | |
|   }
 | |
| 
 | |
|   .align-self-xl-baseline {
 | |
|     align-self: baseline !important;
 | |
|   }
 | |
| 
 | |
|   .align-self-xl-stretch {
 | |
|     align-self: stretch !important;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .float-left {
 | |
|   float: left !important;
 | |
| }
 | |
| 
 | |
| .float-right {
 | |
|   float: right !important;
 | |
| }
 | |
| 
 | |
| .float-none {
 | |
|   float: none !important;
 | |
| }
 | |
| 
 | |
| @media (min-width: 576px) {
 | |
|   .float-sm-left {
 | |
|     float: left !important;
 | |
|   }
 | |
| 
 | |
|   .float-sm-right {
 | |
|     float: right !important;
 | |
|   }
 | |
| 
 | |
|   .float-sm-none {
 | |
|     float: none !important;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (min-width: 768px) {
 | |
|   .float-md-left {
 | |
|     float: left !important;
 | |
|   }
 | |
| 
 | |
|   .float-md-right {
 | |
|     float: right !important;
 | |
|   }
 | |
| 
 | |
|   .float-md-none {
 | |
|     float: none !important;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (min-width: 992px) {
 | |
|   .float-lg-left {
 | |
|     float: left !important;
 | |
|   }
 | |
| 
 | |
|   .float-lg-right {
 | |
|     float: right !important;
 | |
|   }
 | |
| 
 | |
|   .float-lg-none {
 | |
|     float: none !important;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (min-width: 1200px) {
 | |
|   .float-xl-left {
 | |
|     float: left !important;
 | |
|   }
 | |
| 
 | |
|   .float-xl-right {
 | |
|     float: right !important;
 | |
|   }
 | |
| 
 | |
|   .float-xl-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-top {
 | |
|   position: fixed;
 | |
|   top: 0;
 | |
|   right: 0;
 | |
|   left: 0;
 | |
|   z-index: 1030;
 | |
| }
 | |
| 
 | |
| .fixed-bottom {
 | |
|   position: fixed;
 | |
|   right: 0;
 | |
|   bottom: 0;
 | |
|   left: 0;
 | |
|   z-index: 1030;
 | |
| }
 | |
| 
 | |
| @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;
 | |
|   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;
 | |
|   content: "";
 | |
|   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: 0.25rem !important;
 | |
| }
 | |
| 
 | |
| .mt-1,
 | |
| .my-1 {
 | |
|   margin-top: 0.25rem !important;
 | |
| }
 | |
| 
 | |
| .mr-1,
 | |
| .mx-1 {
 | |
|   margin-right: 0.25rem !important;
 | |
| }
 | |
| 
 | |
| .mb-1,
 | |
| .my-1 {
 | |
|   margin-bottom: 0.25rem !important;
 | |
| }
 | |
| 
 | |
| .ml-1,
 | |
| .mx-1 {
 | |
|   margin-left: 0.25rem !important;
 | |
| }
 | |
| 
 | |
| .m-2 {
 | |
|   margin: 0.5rem !important;
 | |
| }
 | |
| 
 | |
| .mt-2,
 | |
| .my-2 {
 | |
|   margin-top: 0.5rem !important;
 | |
| }
 | |
| 
 | |
| .mr-2,
 | |
| .mx-2 {
 | |
|   margin-right: 0.5rem !important;
 | |
| }
 | |
| 
 | |
| .mb-2,
 | |
| .my-2 {
 | |
|   margin-bottom: 0.5rem !important;
 | |
| }
 | |
| 
 | |
| .ml-2,
 | |
| .mx-2 {
 | |
|   margin-left: 0.5rem !important;
 | |
| }
 | |
| 
 | |
| .m-3 {
 | |
|   margin: 1rem !important;
 | |
| }
 | |
| 
 | |
| .mt-3,
 | |
| .my-3 {
 | |
|   margin-top: 1rem !important;
 | |
| }
 | |
| 
 | |
| .mr-3,
 | |
| .mx-3 {
 | |
|   margin-right: 1rem !important;
 | |
| }
 | |
| 
 | |
| .mb-3,
 | |
| .my-3 {
 | |
|   margin-bottom: 1rem !important;
 | |
| }
 | |
| 
 | |
| .ml-3,
 | |
| .mx-3 {
 | |
|   margin-left: 1rem !important;
 | |
| }
 | |
| 
 | |
| .m-4 {
 | |
|   margin: 1.5rem !important;
 | |
| }
 | |
| 
 | |
| .mt-4,
 | |
| .my-4 {
 | |
|   margin-top: 1.5rem !important;
 | |
| }
 | |
| 
 | |
| .mr-4,
 | |
| .mx-4 {
 | |
|   margin-right: 1.5rem !important;
 | |
| }
 | |
| 
 | |
| .mb-4,
 | |
| .my-4 {
 | |
|   margin-bottom: 1.5rem !important;
 | |
| }
 | |
| 
 | |
| .ml-4,
 | |
| .mx-4 {
 | |
|   margin-left: 1.5rem !important;
 | |
| }
 | |
| 
 | |
| .m-5 {
 | |
|   margin: 3rem !important;
 | |
| }
 | |
| 
 | |
| .mt-5,
 | |
| .my-5 {
 | |
|   margin-top: 3rem !important;
 | |
| }
 | |
| 
 | |
| .mr-5,
 | |
| .mx-5 {
 | |
|   margin-right: 3rem !important;
 | |
| }
 | |
| 
 | |
| .mb-5,
 | |
| .my-5 {
 | |
|   margin-bottom: 3rem !important;
 | |
| }
 | |
| 
 | |
| .ml-5,
 | |
| .mx-5 {
 | |
|   margin-left: 3rem !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: 0.25rem !important;
 | |
| }
 | |
| 
 | |
| .pt-1,
 | |
| .py-1 {
 | |
|   padding-top: 0.25rem !important;
 | |
| }
 | |
| 
 | |
| .pr-1,
 | |
| .px-1 {
 | |
|   padding-right: 0.25rem !important;
 | |
| }
 | |
| 
 | |
| .pb-1,
 | |
| .py-1 {
 | |
|   padding-bottom: 0.25rem !important;
 | |
| }
 | |
| 
 | |
| .pl-1,
 | |
| .px-1 {
 | |
|   padding-left: 0.25rem !important;
 | |
| }
 | |
| 
 | |
| .p-2 {
 | |
|   padding: 0.5rem !important;
 | |
| }
 | |
| 
 | |
| .pt-2,
 | |
| .py-2 {
 | |
|   padding-top: 0.5rem !important;
 | |
| }
 | |
| 
 | |
| .pr-2,
 | |
| .px-2 {
 | |
|   padding-right: 0.5rem !important;
 | |
| }
 | |
| 
 | |
| .pb-2,
 | |
| .py-2 {
 | |
|   padding-bottom: 0.5rem !important;
 | |
| }
 | |
| 
 | |
| .pl-2,
 | |
| .px-2 {
 | |
|   padding-left: 0.5rem !important;
 | |
| }
 | |
| 
 | |
| .p-3 {
 | |
|   padding: 1rem !important;
 | |
| }
 | |
| 
 | |
| .pt-3,
 | |
| .py-3 {
 | |
|   padding-top: 1rem !important;
 | |
| }
 | |
| 
 | |
| .pr-3,
 | |
| .px-3 {
 | |
|   padding-right: 1rem !important;
 | |
| }
 | |
| 
 | |
| .pb-3,
 | |
| .py-3 {
 | |
|   padding-bottom: 1rem !important;
 | |
| }
 | |
| 
 | |
| .pl-3,
 | |
| .px-3 {
 | |
|   padding-left: 1rem !important;
 | |
| }
 | |
| 
 | |
| .p-4 {
 | |
|   padding: 1.5rem !important;
 | |
| }
 | |
| 
 | |
| .pt-4,
 | |
| .py-4 {
 | |
|   padding-top: 1.5rem !important;
 | |
| }
 | |
| 
 | |
| .pr-4,
 | |
| .px-4 {
 | |
|   padding-right: 1.5rem !important;
 | |
| }
 | |
| 
 | |
| .pb-4,
 | |
| .py-4 {
 | |
|   padding-bottom: 1.5rem !important;
 | |
| }
 | |
| 
 | |
| .pl-4,
 | |
| .px-4 {
 | |
|   padding-left: 1.5rem !important;
 | |
| }
 | |
| 
 | |
| .p-5 {
 | |
|   padding: 3rem !important;
 | |
| }
 | |
| 
 | |
| .pt-5,
 | |
| .py-5 {
 | |
|   padding-top: 3rem !important;
 | |
| }
 | |
| 
 | |
| .pr-5,
 | |
| .px-5 {
 | |
|   padding-right: 3rem !important;
 | |
| }
 | |
| 
 | |
| .pb-5,
 | |
| .py-5 {
 | |
|   padding-bottom: 3rem !important;
 | |
| }
 | |
| 
 | |
| .pl-5,
 | |
| .px-5 {
 | |
|   padding-left: 3rem !important;
 | |
| }
 | |
| 
 | |
| .m-n1 {
 | |
|   margin: -0.25rem !important;
 | |
| }
 | |
| 
 | |
| .mt-n1,
 | |
| .my-n1 {
 | |
|   margin-top: -0.25rem !important;
 | |
| }
 | |
| 
 | |
| .mr-n1,
 | |
| .mx-n1 {
 | |
|   margin-right: -0.25rem !important;
 | |
| }
 | |
| 
 | |
| .mb-n1,
 | |
| .my-n1 {
 | |
|   margin-bottom: -0.25rem !important;
 | |
| }
 | |
| 
 | |
| .ml-n1,
 | |
| .mx-n1 {
 | |
|   margin-left: -0.25rem !important;
 | |
| }
 | |
| 
 | |
| .m-n2 {
 | |
|   margin: -0.5rem !important;
 | |
| }
 | |
| 
 | |
| .mt-n2,
 | |
| .my-n2 {
 | |
|   margin-top: -0.5rem !important;
 | |
| }
 | |
| 
 | |
| .mr-n2,
 | |
| .mx-n2 {
 | |
|   margin-right: -0.5rem !important;
 | |
| }
 | |
| 
 | |
| .mb-n2,
 | |
| .my-n2 {
 | |
|   margin-bottom: -0.5rem !important;
 | |
| }
 | |
| 
 | |
| .ml-n2,
 | |
| .mx-n2 {
 | |
|   margin-left: -0.5rem !important;
 | |
| }
 | |
| 
 | |
| .m-n3 {
 | |
|   margin: -1rem !important;
 | |
| }
 | |
| 
 | |
| .mt-n3,
 | |
| .my-n3 {
 | |
|   margin-top: -1rem !important;
 | |
| }
 | |
| 
 | |
| .mr-n3,
 | |
| .mx-n3 {
 | |
|   margin-right: -1rem !important;
 | |
| }
 | |
| 
 | |
| .mb-n3,
 | |
| .my-n3 {
 | |
|   margin-bottom: -1rem !important;
 | |
| }
 | |
| 
 | |
| .ml-n3,
 | |
| .mx-n3 {
 | |
|   margin-left: -1rem !important;
 | |
| }
 | |
| 
 | |
| .m-n4 {
 | |
|   margin: -1.5rem !important;
 | |
| }
 | |
| 
 | |
| .mt-n4,
 | |
| .my-n4 {
 | |
|   margin-top: -1.5rem !important;
 | |
| }
 | |
| 
 | |
| .mr-n4,
 | |
| .mx-n4 {
 | |
|   margin-right: -1.5rem !important;
 | |
| }
 | |
| 
 | |
| .mb-n4,
 | |
| .my-n4 {
 | |
|   margin-bottom: -1.5rem !important;
 | |
| }
 | |
| 
 | |
| .ml-n4,
 | |
| .mx-n4 {
 | |
|   margin-left: -1.5rem !important;
 | |
| }
 | |
| 
 | |
| .m-n5 {
 | |
|   margin: -3rem !important;
 | |
| }
 | |
| 
 | |
| .mt-n5,
 | |
| .my-n5 {
 | |
|   margin-top: -3rem !important;
 | |
| }
 | |
| 
 | |
| .mr-n5,
 | |
| .mx-n5 {
 | |
|   margin-right: -3rem !important;
 | |
| }
 | |
| 
 | |
| .mb-n5,
 | |
| .my-n5 {
 | |
|   margin-bottom: -3rem !important;
 | |
| }
 | |
| 
 | |
| .ml-n5,
 | |
| .mx-n5 {
 | |
|   margin-left: -3rem !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;
 | |
| }
 | |
| 
 | |
| @media (min-width: 576px) {
 | |
|   .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: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-sm-1,
 | |
|   .my-sm-1 {
 | |
|     margin-top: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-sm-1,
 | |
|   .mx-sm-1 {
 | |
|     margin-right: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-sm-1,
 | |
|   .my-sm-1 {
 | |
|     margin-bottom: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-sm-1,
 | |
|   .mx-sm-1 {
 | |
|     margin-left: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-sm-2 {
 | |
|     margin: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-sm-2,
 | |
|   .my-sm-2 {
 | |
|     margin-top: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-sm-2,
 | |
|   .mx-sm-2 {
 | |
|     margin-right: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-sm-2,
 | |
|   .my-sm-2 {
 | |
|     margin-bottom: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-sm-2,
 | |
|   .mx-sm-2 {
 | |
|     margin-left: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-sm-3 {
 | |
|     margin: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-sm-3,
 | |
|   .my-sm-3 {
 | |
|     margin-top: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-sm-3,
 | |
|   .mx-sm-3 {
 | |
|     margin-right: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-sm-3,
 | |
|   .my-sm-3 {
 | |
|     margin-bottom: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-sm-3,
 | |
|   .mx-sm-3 {
 | |
|     margin-left: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-sm-4 {
 | |
|     margin: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-sm-4,
 | |
|   .my-sm-4 {
 | |
|     margin-top: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-sm-4,
 | |
|   .mx-sm-4 {
 | |
|     margin-right: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-sm-4,
 | |
|   .my-sm-4 {
 | |
|     margin-bottom: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-sm-4,
 | |
|   .mx-sm-4 {
 | |
|     margin-left: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-sm-5 {
 | |
|     margin: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-sm-5,
 | |
|   .my-sm-5 {
 | |
|     margin-top: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-sm-5,
 | |
|   .mx-sm-5 {
 | |
|     margin-right: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-sm-5,
 | |
|   .my-sm-5 {
 | |
|     margin-bottom: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-sm-5,
 | |
|   .mx-sm-5 {
 | |
|     margin-left: 3rem !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: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .pt-sm-1,
 | |
|   .py-sm-1 {
 | |
|     padding-top: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .pr-sm-1,
 | |
|   .px-sm-1 {
 | |
|     padding-right: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .pb-sm-1,
 | |
|   .py-sm-1 {
 | |
|     padding-bottom: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .pl-sm-1,
 | |
|   .px-sm-1 {
 | |
|     padding-left: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .p-sm-2 {
 | |
|     padding: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pt-sm-2,
 | |
|   .py-sm-2 {
 | |
|     padding-top: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pr-sm-2,
 | |
|   .px-sm-2 {
 | |
|     padding-right: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pb-sm-2,
 | |
|   .py-sm-2 {
 | |
|     padding-bottom: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pl-sm-2,
 | |
|   .px-sm-2 {
 | |
|     padding-left: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .p-sm-3 {
 | |
|     padding: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .pt-sm-3,
 | |
|   .py-sm-3 {
 | |
|     padding-top: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .pr-sm-3,
 | |
|   .px-sm-3 {
 | |
|     padding-right: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .pb-sm-3,
 | |
|   .py-sm-3 {
 | |
|     padding-bottom: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .pl-sm-3,
 | |
|   .px-sm-3 {
 | |
|     padding-left: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .p-sm-4 {
 | |
|     padding: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pt-sm-4,
 | |
|   .py-sm-4 {
 | |
|     padding-top: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pr-sm-4,
 | |
|   .px-sm-4 {
 | |
|     padding-right: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pb-sm-4,
 | |
|   .py-sm-4 {
 | |
|     padding-bottom: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pl-sm-4,
 | |
|   .px-sm-4 {
 | |
|     padding-left: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .p-sm-5 {
 | |
|     padding: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .pt-sm-5,
 | |
|   .py-sm-5 {
 | |
|     padding-top: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .pr-sm-5,
 | |
|   .px-sm-5 {
 | |
|     padding-right: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .pb-sm-5,
 | |
|   .py-sm-5 {
 | |
|     padding-bottom: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .pl-sm-5,
 | |
|   .px-sm-5 {
 | |
|     padding-left: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-sm-n1 {
 | |
|     margin: -0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-sm-n1,
 | |
|   .my-sm-n1 {
 | |
|     margin-top: -0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-sm-n1,
 | |
|   .mx-sm-n1 {
 | |
|     margin-right: -0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-sm-n1,
 | |
|   .my-sm-n1 {
 | |
|     margin-bottom: -0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-sm-n1,
 | |
|   .mx-sm-n1 {
 | |
|     margin-left: -0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-sm-n2 {
 | |
|     margin: -0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-sm-n2,
 | |
|   .my-sm-n2 {
 | |
|     margin-top: -0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-sm-n2,
 | |
|   .mx-sm-n2 {
 | |
|     margin-right: -0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-sm-n2,
 | |
|   .my-sm-n2 {
 | |
|     margin-bottom: -0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-sm-n2,
 | |
|   .mx-sm-n2 {
 | |
|     margin-left: -0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-sm-n3 {
 | |
|     margin: -1rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-sm-n3,
 | |
|   .my-sm-n3 {
 | |
|     margin-top: -1rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-sm-n3,
 | |
|   .mx-sm-n3 {
 | |
|     margin-right: -1rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-sm-n3,
 | |
|   .my-sm-n3 {
 | |
|     margin-bottom: -1rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-sm-n3,
 | |
|   .mx-sm-n3 {
 | |
|     margin-left: -1rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-sm-n4 {
 | |
|     margin: -1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-sm-n4,
 | |
|   .my-sm-n4 {
 | |
|     margin-top: -1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-sm-n4,
 | |
|   .mx-sm-n4 {
 | |
|     margin-right: -1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-sm-n4,
 | |
|   .my-sm-n4 {
 | |
|     margin-bottom: -1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-sm-n4,
 | |
|   .mx-sm-n4 {
 | |
|     margin-left: -1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-sm-n5 {
 | |
|     margin: -3rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-sm-n5,
 | |
|   .my-sm-n5 {
 | |
|     margin-top: -3rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-sm-n5,
 | |
|   .mx-sm-n5 {
 | |
|     margin-right: -3rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-sm-n5,
 | |
|   .my-sm-n5 {
 | |
|     margin-bottom: -3rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-sm-n5,
 | |
|   .mx-sm-n5 {
 | |
|     margin-left: -3rem !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;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (min-width: 768px) {
 | |
|   .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: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-md-1,
 | |
|   .my-md-1 {
 | |
|     margin-top: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-md-1,
 | |
|   .mx-md-1 {
 | |
|     margin-right: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-md-1,
 | |
|   .my-md-1 {
 | |
|     margin-bottom: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-md-1,
 | |
|   .mx-md-1 {
 | |
|     margin-left: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-md-2 {
 | |
|     margin: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-md-2,
 | |
|   .my-md-2 {
 | |
|     margin-top: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-md-2,
 | |
|   .mx-md-2 {
 | |
|     margin-right: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-md-2,
 | |
|   .my-md-2 {
 | |
|     margin-bottom: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-md-2,
 | |
|   .mx-md-2 {
 | |
|     margin-left: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-md-3 {
 | |
|     margin: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-md-3,
 | |
|   .my-md-3 {
 | |
|     margin-top: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-md-3,
 | |
|   .mx-md-3 {
 | |
|     margin-right: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-md-3,
 | |
|   .my-md-3 {
 | |
|     margin-bottom: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-md-3,
 | |
|   .mx-md-3 {
 | |
|     margin-left: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-md-4 {
 | |
|     margin: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-md-4,
 | |
|   .my-md-4 {
 | |
|     margin-top: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-md-4,
 | |
|   .mx-md-4 {
 | |
|     margin-right: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-md-4,
 | |
|   .my-md-4 {
 | |
|     margin-bottom: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-md-4,
 | |
|   .mx-md-4 {
 | |
|     margin-left: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-md-5 {
 | |
|     margin: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-md-5,
 | |
|   .my-md-5 {
 | |
|     margin-top: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-md-5,
 | |
|   .mx-md-5 {
 | |
|     margin-right: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-md-5,
 | |
|   .my-md-5 {
 | |
|     margin-bottom: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-md-5,
 | |
|   .mx-md-5 {
 | |
|     margin-left: 3rem !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: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .pt-md-1,
 | |
|   .py-md-1 {
 | |
|     padding-top: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .pr-md-1,
 | |
|   .px-md-1 {
 | |
|     padding-right: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .pb-md-1,
 | |
|   .py-md-1 {
 | |
|     padding-bottom: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .pl-md-1,
 | |
|   .px-md-1 {
 | |
|     padding-left: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .p-md-2 {
 | |
|     padding: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pt-md-2,
 | |
|   .py-md-2 {
 | |
|     padding-top: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pr-md-2,
 | |
|   .px-md-2 {
 | |
|     padding-right: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pb-md-2,
 | |
|   .py-md-2 {
 | |
|     padding-bottom: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pl-md-2,
 | |
|   .px-md-2 {
 | |
|     padding-left: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .p-md-3 {
 | |
|     padding: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .pt-md-3,
 | |
|   .py-md-3 {
 | |
|     padding-top: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .pr-md-3,
 | |
|   .px-md-3 {
 | |
|     padding-right: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .pb-md-3,
 | |
|   .py-md-3 {
 | |
|     padding-bottom: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .pl-md-3,
 | |
|   .px-md-3 {
 | |
|     padding-left: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .p-md-4 {
 | |
|     padding: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pt-md-4,
 | |
|   .py-md-4 {
 | |
|     padding-top: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pr-md-4,
 | |
|   .px-md-4 {
 | |
|     padding-right: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pb-md-4,
 | |
|   .py-md-4 {
 | |
|     padding-bottom: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pl-md-4,
 | |
|   .px-md-4 {
 | |
|     padding-left: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .p-md-5 {
 | |
|     padding: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .pt-md-5,
 | |
|   .py-md-5 {
 | |
|     padding-top: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .pr-md-5,
 | |
|   .px-md-5 {
 | |
|     padding-right: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .pb-md-5,
 | |
|   .py-md-5 {
 | |
|     padding-bottom: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .pl-md-5,
 | |
|   .px-md-5 {
 | |
|     padding-left: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-md-n1 {
 | |
|     margin: -0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-md-n1,
 | |
|   .my-md-n1 {
 | |
|     margin-top: -0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-md-n1,
 | |
|   .mx-md-n1 {
 | |
|     margin-right: -0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-md-n1,
 | |
|   .my-md-n1 {
 | |
|     margin-bottom: -0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-md-n1,
 | |
|   .mx-md-n1 {
 | |
|     margin-left: -0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-md-n2 {
 | |
|     margin: -0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-md-n2,
 | |
|   .my-md-n2 {
 | |
|     margin-top: -0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-md-n2,
 | |
|   .mx-md-n2 {
 | |
|     margin-right: -0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-md-n2,
 | |
|   .my-md-n2 {
 | |
|     margin-bottom: -0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-md-n2,
 | |
|   .mx-md-n2 {
 | |
|     margin-left: -0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-md-n3 {
 | |
|     margin: -1rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-md-n3,
 | |
|   .my-md-n3 {
 | |
|     margin-top: -1rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-md-n3,
 | |
|   .mx-md-n3 {
 | |
|     margin-right: -1rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-md-n3,
 | |
|   .my-md-n3 {
 | |
|     margin-bottom: -1rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-md-n3,
 | |
|   .mx-md-n3 {
 | |
|     margin-left: -1rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-md-n4 {
 | |
|     margin: -1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-md-n4,
 | |
|   .my-md-n4 {
 | |
|     margin-top: -1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-md-n4,
 | |
|   .mx-md-n4 {
 | |
|     margin-right: -1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-md-n4,
 | |
|   .my-md-n4 {
 | |
|     margin-bottom: -1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-md-n4,
 | |
|   .mx-md-n4 {
 | |
|     margin-left: -1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-md-n5 {
 | |
|     margin: -3rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-md-n5,
 | |
|   .my-md-n5 {
 | |
|     margin-top: -3rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-md-n5,
 | |
|   .mx-md-n5 {
 | |
|     margin-right: -3rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-md-n5,
 | |
|   .my-md-n5 {
 | |
|     margin-bottom: -3rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-md-n5,
 | |
|   .mx-md-n5 {
 | |
|     margin-left: -3rem !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;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (min-width: 992px) {
 | |
|   .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: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-lg-1,
 | |
|   .my-lg-1 {
 | |
|     margin-top: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-lg-1,
 | |
|   .mx-lg-1 {
 | |
|     margin-right: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-lg-1,
 | |
|   .my-lg-1 {
 | |
|     margin-bottom: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-lg-1,
 | |
|   .mx-lg-1 {
 | |
|     margin-left: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-lg-2 {
 | |
|     margin: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-lg-2,
 | |
|   .my-lg-2 {
 | |
|     margin-top: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-lg-2,
 | |
|   .mx-lg-2 {
 | |
|     margin-right: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-lg-2,
 | |
|   .my-lg-2 {
 | |
|     margin-bottom: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-lg-2,
 | |
|   .mx-lg-2 {
 | |
|     margin-left: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-lg-3 {
 | |
|     margin: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-lg-3,
 | |
|   .my-lg-3 {
 | |
|     margin-top: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-lg-3,
 | |
|   .mx-lg-3 {
 | |
|     margin-right: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-lg-3,
 | |
|   .my-lg-3 {
 | |
|     margin-bottom: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-lg-3,
 | |
|   .mx-lg-3 {
 | |
|     margin-left: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-lg-4 {
 | |
|     margin: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-lg-4,
 | |
|   .my-lg-4 {
 | |
|     margin-top: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-lg-4,
 | |
|   .mx-lg-4 {
 | |
|     margin-right: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-lg-4,
 | |
|   .my-lg-4 {
 | |
|     margin-bottom: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-lg-4,
 | |
|   .mx-lg-4 {
 | |
|     margin-left: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-lg-5 {
 | |
|     margin: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-lg-5,
 | |
|   .my-lg-5 {
 | |
|     margin-top: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-lg-5,
 | |
|   .mx-lg-5 {
 | |
|     margin-right: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-lg-5,
 | |
|   .my-lg-5 {
 | |
|     margin-bottom: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-lg-5,
 | |
|   .mx-lg-5 {
 | |
|     margin-left: 3rem !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: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .pt-lg-1,
 | |
|   .py-lg-1 {
 | |
|     padding-top: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .pr-lg-1,
 | |
|   .px-lg-1 {
 | |
|     padding-right: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .pb-lg-1,
 | |
|   .py-lg-1 {
 | |
|     padding-bottom: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .pl-lg-1,
 | |
|   .px-lg-1 {
 | |
|     padding-left: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .p-lg-2 {
 | |
|     padding: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pt-lg-2,
 | |
|   .py-lg-2 {
 | |
|     padding-top: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pr-lg-2,
 | |
|   .px-lg-2 {
 | |
|     padding-right: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pb-lg-2,
 | |
|   .py-lg-2 {
 | |
|     padding-bottom: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pl-lg-2,
 | |
|   .px-lg-2 {
 | |
|     padding-left: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .p-lg-3 {
 | |
|     padding: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .pt-lg-3,
 | |
|   .py-lg-3 {
 | |
|     padding-top: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .pr-lg-3,
 | |
|   .px-lg-3 {
 | |
|     padding-right: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .pb-lg-3,
 | |
|   .py-lg-3 {
 | |
|     padding-bottom: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .pl-lg-3,
 | |
|   .px-lg-3 {
 | |
|     padding-left: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .p-lg-4 {
 | |
|     padding: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pt-lg-4,
 | |
|   .py-lg-4 {
 | |
|     padding-top: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pr-lg-4,
 | |
|   .px-lg-4 {
 | |
|     padding-right: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pb-lg-4,
 | |
|   .py-lg-4 {
 | |
|     padding-bottom: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pl-lg-4,
 | |
|   .px-lg-4 {
 | |
|     padding-left: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .p-lg-5 {
 | |
|     padding: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .pt-lg-5,
 | |
|   .py-lg-5 {
 | |
|     padding-top: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .pr-lg-5,
 | |
|   .px-lg-5 {
 | |
|     padding-right: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .pb-lg-5,
 | |
|   .py-lg-5 {
 | |
|     padding-bottom: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .pl-lg-5,
 | |
|   .px-lg-5 {
 | |
|     padding-left: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-lg-n1 {
 | |
|     margin: -0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-lg-n1,
 | |
|   .my-lg-n1 {
 | |
|     margin-top: -0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-lg-n1,
 | |
|   .mx-lg-n1 {
 | |
|     margin-right: -0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-lg-n1,
 | |
|   .my-lg-n1 {
 | |
|     margin-bottom: -0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-lg-n1,
 | |
|   .mx-lg-n1 {
 | |
|     margin-left: -0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-lg-n2 {
 | |
|     margin: -0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-lg-n2,
 | |
|   .my-lg-n2 {
 | |
|     margin-top: -0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-lg-n2,
 | |
|   .mx-lg-n2 {
 | |
|     margin-right: -0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-lg-n2,
 | |
|   .my-lg-n2 {
 | |
|     margin-bottom: -0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-lg-n2,
 | |
|   .mx-lg-n2 {
 | |
|     margin-left: -0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-lg-n3 {
 | |
|     margin: -1rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-lg-n3,
 | |
|   .my-lg-n3 {
 | |
|     margin-top: -1rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-lg-n3,
 | |
|   .mx-lg-n3 {
 | |
|     margin-right: -1rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-lg-n3,
 | |
|   .my-lg-n3 {
 | |
|     margin-bottom: -1rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-lg-n3,
 | |
|   .mx-lg-n3 {
 | |
|     margin-left: -1rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-lg-n4 {
 | |
|     margin: -1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-lg-n4,
 | |
|   .my-lg-n4 {
 | |
|     margin-top: -1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-lg-n4,
 | |
|   .mx-lg-n4 {
 | |
|     margin-right: -1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-lg-n4,
 | |
|   .my-lg-n4 {
 | |
|     margin-bottom: -1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-lg-n4,
 | |
|   .mx-lg-n4 {
 | |
|     margin-left: -1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-lg-n5 {
 | |
|     margin: -3rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-lg-n5,
 | |
|   .my-lg-n5 {
 | |
|     margin-top: -3rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-lg-n5,
 | |
|   .mx-lg-n5 {
 | |
|     margin-right: -3rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-lg-n5,
 | |
|   .my-lg-n5 {
 | |
|     margin-bottom: -3rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-lg-n5,
 | |
|   .mx-lg-n5 {
 | |
|     margin-left: -3rem !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;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (min-width: 1200px) {
 | |
|   .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: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-xl-1,
 | |
|   .my-xl-1 {
 | |
|     margin-top: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-xl-1,
 | |
|   .mx-xl-1 {
 | |
|     margin-right: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-xl-1,
 | |
|   .my-xl-1 {
 | |
|     margin-bottom: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-xl-1,
 | |
|   .mx-xl-1 {
 | |
|     margin-left: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-xl-2 {
 | |
|     margin: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-xl-2,
 | |
|   .my-xl-2 {
 | |
|     margin-top: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-xl-2,
 | |
|   .mx-xl-2 {
 | |
|     margin-right: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-xl-2,
 | |
|   .my-xl-2 {
 | |
|     margin-bottom: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-xl-2,
 | |
|   .mx-xl-2 {
 | |
|     margin-left: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-xl-3 {
 | |
|     margin: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-xl-3,
 | |
|   .my-xl-3 {
 | |
|     margin-top: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-xl-3,
 | |
|   .mx-xl-3 {
 | |
|     margin-right: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-xl-3,
 | |
|   .my-xl-3 {
 | |
|     margin-bottom: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-xl-3,
 | |
|   .mx-xl-3 {
 | |
|     margin-left: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-xl-4 {
 | |
|     margin: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-xl-4,
 | |
|   .my-xl-4 {
 | |
|     margin-top: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-xl-4,
 | |
|   .mx-xl-4 {
 | |
|     margin-right: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-xl-4,
 | |
|   .my-xl-4 {
 | |
|     margin-bottom: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-xl-4,
 | |
|   .mx-xl-4 {
 | |
|     margin-left: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-xl-5 {
 | |
|     margin: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-xl-5,
 | |
|   .my-xl-5 {
 | |
|     margin-top: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-xl-5,
 | |
|   .mx-xl-5 {
 | |
|     margin-right: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-xl-5,
 | |
|   .my-xl-5 {
 | |
|     margin-bottom: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-xl-5,
 | |
|   .mx-xl-5 {
 | |
|     margin-left: 3rem !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: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .pt-xl-1,
 | |
|   .py-xl-1 {
 | |
|     padding-top: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .pr-xl-1,
 | |
|   .px-xl-1 {
 | |
|     padding-right: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .pb-xl-1,
 | |
|   .py-xl-1 {
 | |
|     padding-bottom: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .pl-xl-1,
 | |
|   .px-xl-1 {
 | |
|     padding-left: 0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .p-xl-2 {
 | |
|     padding: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pt-xl-2,
 | |
|   .py-xl-2 {
 | |
|     padding-top: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pr-xl-2,
 | |
|   .px-xl-2 {
 | |
|     padding-right: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pb-xl-2,
 | |
|   .py-xl-2 {
 | |
|     padding-bottom: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pl-xl-2,
 | |
|   .px-xl-2 {
 | |
|     padding-left: 0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .p-xl-3 {
 | |
|     padding: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .pt-xl-3,
 | |
|   .py-xl-3 {
 | |
|     padding-top: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .pr-xl-3,
 | |
|   .px-xl-3 {
 | |
|     padding-right: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .pb-xl-3,
 | |
|   .py-xl-3 {
 | |
|     padding-bottom: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .pl-xl-3,
 | |
|   .px-xl-3 {
 | |
|     padding-left: 1rem !important;
 | |
|   }
 | |
| 
 | |
|   .p-xl-4 {
 | |
|     padding: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pt-xl-4,
 | |
|   .py-xl-4 {
 | |
|     padding-top: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pr-xl-4,
 | |
|   .px-xl-4 {
 | |
|     padding-right: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pb-xl-4,
 | |
|   .py-xl-4 {
 | |
|     padding-bottom: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .pl-xl-4,
 | |
|   .px-xl-4 {
 | |
|     padding-left: 1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .p-xl-5 {
 | |
|     padding: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .pt-xl-5,
 | |
|   .py-xl-5 {
 | |
|     padding-top: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .pr-xl-5,
 | |
|   .px-xl-5 {
 | |
|     padding-right: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .pb-xl-5,
 | |
|   .py-xl-5 {
 | |
|     padding-bottom: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .pl-xl-5,
 | |
|   .px-xl-5 {
 | |
|     padding-left: 3rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-xl-n1 {
 | |
|     margin: -0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-xl-n1,
 | |
|   .my-xl-n1 {
 | |
|     margin-top: -0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-xl-n1,
 | |
|   .mx-xl-n1 {
 | |
|     margin-right: -0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-xl-n1,
 | |
|   .my-xl-n1 {
 | |
|     margin-bottom: -0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-xl-n1,
 | |
|   .mx-xl-n1 {
 | |
|     margin-left: -0.25rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-xl-n2 {
 | |
|     margin: -0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-xl-n2,
 | |
|   .my-xl-n2 {
 | |
|     margin-top: -0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-xl-n2,
 | |
|   .mx-xl-n2 {
 | |
|     margin-right: -0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-xl-n2,
 | |
|   .my-xl-n2 {
 | |
|     margin-bottom: -0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-xl-n2,
 | |
|   .mx-xl-n2 {
 | |
|     margin-left: -0.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-xl-n3 {
 | |
|     margin: -1rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-xl-n3,
 | |
|   .my-xl-n3 {
 | |
|     margin-top: -1rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-xl-n3,
 | |
|   .mx-xl-n3 {
 | |
|     margin-right: -1rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-xl-n3,
 | |
|   .my-xl-n3 {
 | |
|     margin-bottom: -1rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-xl-n3,
 | |
|   .mx-xl-n3 {
 | |
|     margin-left: -1rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-xl-n4 {
 | |
|     margin: -1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-xl-n4,
 | |
|   .my-xl-n4 {
 | |
|     margin-top: -1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-xl-n4,
 | |
|   .mx-xl-n4 {
 | |
|     margin-right: -1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-xl-n4,
 | |
|   .my-xl-n4 {
 | |
|     margin-bottom: -1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-xl-n4,
 | |
|   .mx-xl-n4 {
 | |
|     margin-left: -1.5rem !important;
 | |
|   }
 | |
| 
 | |
|   .m-xl-n5 {
 | |
|     margin: -3rem !important;
 | |
|   }
 | |
| 
 | |
|   .mt-xl-n5,
 | |
|   .my-xl-n5 {
 | |
|     margin-top: -3rem !important;
 | |
|   }
 | |
| 
 | |
|   .mr-xl-n5,
 | |
|   .mx-xl-n5 {
 | |
|     margin-right: -3rem !important;
 | |
|   }
 | |
| 
 | |
|   .mb-xl-n5,
 | |
|   .my-xl-n5 {
 | |
|     margin-bottom: -3rem !important;
 | |
|   }
 | |
| 
 | |
|   .ml-xl-n5,
 | |
|   .mx-xl-n5 {
 | |
|     margin-left: -3rem !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-monospace {
 | |
|   font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
 | |
| }
 | |
| 
 | |
| .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) {
 | |
|   .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) {
 | |
|   .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) {
 | |
|   .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) {
 | |
|   .text-xl-left {
 | |
|     text-align: left !important;
 | |
|   }
 | |
| 
 | |
|   .text-xl-right {
 | |
|     text-align: right !important;
 | |
|   }
 | |
| 
 | |
|   .text-xl-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: #5851D8 !important;
 | |
| }
 | |
| 
 | |
| a.text-primary:hover,
 | |
| a.text-primary:focus {
 | |
|   color: #3028b4 !important;
 | |
| }
 | |
| 
 | |
| .text-secondary {
 | |
|   color: #55547A !important;
 | |
| }
 | |
| 
 | |
| a.text-secondary:hover,
 | |
| a.text-secondary:focus {
 | |
|   color: #35354d !important;
 | |
| }
 | |
| 
 | |
| .text-success {
 | |
|   color: #00C99C !important;
 | |
| }
 | |
| 
 | |
| a.text-success:hover,
 | |
| a.text-success:focus {
 | |
|   color: #007d61 !important;
 | |
| }
 | |
| 
 | |
| .text-info {
 | |
|   color: #15B2EC !important;
 | |
| }
 | |
| 
 | |
| a.text-info:hover,
 | |
| a.text-info:focus {
 | |
|   color: #0e7ea7 !important;
 | |
| }
 | |
| 
 | |
| .text-warning {
 | |
|   color: #F3AF4E !important;
 | |
| }
 | |
| 
 | |
| a.text-warning:hover,
 | |
| a.text-warning:focus {
 | |
|   color: #e58d10 !important;
 | |
| }
 | |
| 
 | |
| .text-danger {
 | |
|   color: #FB7178 !important;
 | |
| }
 | |
| 
 | |
| a.text-danger:hover,
 | |
| a.text-danger:focus {
 | |
|   color: #f92731 !important;
 | |
| }
 | |
| 
 | |
| .text-light {
 | |
|   color: #817AE3 !important;
 | |
| }
 | |
| 
 | |
| a.text-light:hover,
 | |
| a.text-light:focus {
 | |
|   color: #453bd6 !important;
 | |
| }
 | |
| 
 | |
| .text-dark {
 | |
|   color: #55547A !important;
 | |
| }
 | |
| 
 | |
| a.text-dark:hover,
 | |
| a.text-dark:focus {
 | |
|   color: #35354d !important;
 | |
| }
 | |
| 
 | |
| .text-body {
 | |
|   color: #212529 !important;
 | |
| }
 | |
| 
 | |
| .text-muted {
 | |
|   color: #6c757d !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;
 | |
|   text-shadow: none;
 | |
|   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 {
 | |
|   *,
 | |
|   *::before,
 | |
|   *::after {
 | |
|     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;
 | |
|   }
 | |
| 
 | |
|   pre,
 | |
|   blockquote {
 | |
|     border: 1px solid #adb5bd;
 | |
|     page-break-inside: avoid;
 | |
|   }
 | |
| 
 | |
|   thead {
 | |
|     display: table-header-group;
 | |
|   }
 | |
| 
 | |
|   tr,
 | |
|   img {
 | |
|     page-break-inside: avoid;
 | |
|   }
 | |
| 
 | |
|   p,
 | |
|   h2,
 | |
|   h3 {
 | |
|     orphans: 3;
 | |
|     widows: 3;
 | |
|   }
 | |
| 
 | |
|   h2,
 | |
|   h3 {
 | |
|     page-break-after: avoid;
 | |
|   }
 | |
| 
 | |
| @page {
 | |
|     size: a3;
 | |
| }
 | |
| 
 | |
|   body {
 | |
|     min-width: 992px !important;
 | |
|   }
 | |
| 
 | |
|   .container {
 | |
|     min-width: 992px !important;
 | |
|   }
 | |
| 
 | |
|   .navbar {
 | |
|     display: none;
 | |
|   }
 | |
| 
 | |
|   .badge {
 | |
|     border: 1px solid #000;
 | |
|   }
 | |
| 
 | |
|   .table {
 | |
|     border-collapse: collapse !important;
 | |
|   }
 | |
| 
 | |
|   .table td,
 | |
|   .table th {
 | |
|     background-color: #fff !important;
 | |
|   }
 | |
| 
 | |
|   .table-bordered th,
 | |
|   .table-bordered td {
 | |
|     border: 1px solid #dee2e6 !important;
 | |
|   }
 | |
| 
 | |
|   .table-dark {
 | |
|     color: inherit;
 | |
|   }
 | |
| 
 | |
|   .table-dark th,
 | |
|   .table-dark td,
 | |
|   .table-dark thead th,
 | |
|   .table-dark tbody + tbody {
 | |
|     border-color: #dee2e6;
 | |
|   }
 | |
| 
 | |
|   .table .thead-dark th {
 | |
|     color: inherit;
 | |
|     border-color: #dee2e6;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .toast-title {
 | |
|   font-weight: bold;
 | |
| }
 | |
| 
 | |
| .toast-message {
 | |
|   -ms-word-wrap: break-word;
 | |
|   word-wrap: break-word;
 | |
| }
 | |
| 
 | |
| .toast-message a,
 | |
| .toast-message label {
 | |
|   color: #ffffff;
 | |
| }
 | |
| 
 | |
| .toast-message a:hover {
 | |
|   color: #cccccc;
 | |
|   text-decoration: none;
 | |
| }
 | |
| 
 | |
| .toast-close-button {
 | |
|   position: relative;
 | |
|   right: -0.3em;
 | |
|   top: -0.3em;
 | |
|   float: right;
 | |
|   font-size: 20px;
 | |
|   font-weight: bold;
 | |
|   color: #ffffff;
 | |
|   -webkit-text-shadow: 0 1px 0 #ffffff;
 | |
|   text-shadow: 0 1px 0 #ffffff;
 | |
|   opacity: 0.8;
 | |
|   -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
 | |
|   filter: alpha(opacity=80);
 | |
| }
 | |
| 
 | |
| .toast-close-button:hover,
 | |
| .toast-close-button:focus {
 | |
|   color: #000000;
 | |
|   text-decoration: none;
 | |
|   cursor: pointer;
 | |
|   opacity: 0.4;
 | |
|   -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
 | |
|   filter: alpha(opacity=40);
 | |
| }
 | |
| 
 | |
| /*Additional properties for button version
 | |
|  iOS requires the button element instead of an anchor tag.
 | |
|  If you want the anchor version, it requires `href="#"`.*/
 | |
| 
 | |
| button.toast-close-button {
 | |
|   padding: 0;
 | |
|   cursor: pointer;
 | |
|   background: transparent;
 | |
|   border: 0;
 | |
|   -webkit-appearance: none;
 | |
| }
 | |
| 
 | |
| .toast-top-center {
 | |
|   top: 0;
 | |
|   right: 0;
 | |
|   width: 100%;
 | |
| }
 | |
| 
 | |
| .toast-bottom-center {
 | |
|   bottom: 0;
 | |
|   right: 0;
 | |
|   width: 100%;
 | |
| }
 | |
| 
 | |
| .toast-top-full-width {
 | |
|   top: 0;
 | |
|   right: 0;
 | |
|   width: 100%;
 | |
| }
 | |
| 
 | |
| .toast-bottom-full-width {
 | |
|   bottom: 0;
 | |
|   right: 0;
 | |
|   width: 100%;
 | |
| }
 | |
| 
 | |
| .toast-top-left {
 | |
|   top: 12px;
 | |
|   left: 12px;
 | |
| }
 | |
| 
 | |
| .toast-top-right {
 | |
|   top: 12px;
 | |
|   right: 12px;
 | |
| }
 | |
| 
 | |
| .toast-bottom-right {
 | |
|   right: 12px;
 | |
|   bottom: 12px;
 | |
| }
 | |
| 
 | |
| .toast-bottom-left {
 | |
|   bottom: 12px;
 | |
|   left: 12px;
 | |
| }
 | |
| 
 | |
| #toast-container {
 | |
|   position: fixed;
 | |
|   z-index: 999999;
 | |
|   /*overrides*/
 | |
| }
 | |
| 
 | |
| #toast-container * {
 | |
|   box-sizing: border-box;
 | |
| }
 | |
| 
 | |
| #toast-container > div {
 | |
|   position: relative;
 | |
|   overflow: hidden;
 | |
|   margin: 0 0 6px;
 | |
|   padding: 15px 15px 15px 50px;
 | |
|   width: 300px;
 | |
|   border-radius: 3px 3px 3px 3px;
 | |
|   background-position: 15px center;
 | |
|   background-repeat: no-repeat;
 | |
|   box-shadow: 0 0 12px #999999;
 | |
|   color: #ffffff;
 | |
|   opacity: 0.8;
 | |
|   -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
 | |
|   filter: alpha(opacity=80);
 | |
| }
 | |
| 
 | |
| #toast-container > div:hover {
 | |
|   box-shadow: 0 0 12px #000000;
 | |
|   opacity: 1;
 | |
|   -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
 | |
|   filter: alpha(opacity=100);
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| #toast-container > .toast-info {
 | |
|   background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important;
 | |
| }
 | |
| 
 | |
| #toast-container > .toast-error {
 | |
|   background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important;
 | |
| }
 | |
| 
 | |
| #toast-container > .toast-success {
 | |
|   background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important;
 | |
| }
 | |
| 
 | |
| #toast-container > .toast-warning {
 | |
|   background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important;
 | |
| }
 | |
| 
 | |
| #toast-container.toast-top-center > div,
 | |
| #toast-container.toast-bottom-center > div {
 | |
|   width: 300px;
 | |
|   margin-left: auto;
 | |
|   margin-right: auto;
 | |
| }
 | |
| 
 | |
| #toast-container.toast-top-full-width > div,
 | |
| #toast-container.toast-bottom-full-width > div {
 | |
|   width: 96%;
 | |
|   margin-left: auto;
 | |
|   margin-right: auto;
 | |
| }
 | |
| 
 | |
| .toast {
 | |
|   background-color: #030303;
 | |
| }
 | |
| 
 | |
| .toast-success {
 | |
|   background-color: #51a351;
 | |
| }
 | |
| 
 | |
| .toast-error {
 | |
|   background-color: #bd362f;
 | |
| }
 | |
| 
 | |
| .toast-info {
 | |
|   background-color: #2f96b4;
 | |
| }
 | |
| 
 | |
| .toast-warning {
 | |
|   background-color: #f89406;
 | |
| }
 | |
| 
 | |
| .toast-progress {
 | |
|   position: absolute;
 | |
|   left: 0;
 | |
|   bottom: 0;
 | |
|   height: 4px;
 | |
|   background-color: #000000;
 | |
|   opacity: 0.4;
 | |
|   -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
 | |
|   filter: alpha(opacity=40);
 | |
| }
 | |
| 
 | |
| /*Responsive Design*/
 | |
| 
 | |
| @media all and (max-width: 240px) {
 | |
|   #toast-container > div {
 | |
|     padding: 8px 8px 8px 50px;
 | |
|     width: 11em;
 | |
|   }
 | |
| 
 | |
|   #toast-container .toast-close-button {
 | |
|     right: -0.2em;
 | |
|     top: -0.2em;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media all and (min-width: 241px) and (max-width: 480px) {
 | |
|   #toast-container > div {
 | |
|     padding: 8px 8px 8px 50px;
 | |
|     width: 18em;
 | |
|   }
 | |
| 
 | |
|   #toast-container .toast-close-button {
 | |
|     right: -0.2em;
 | |
|     top: -0.2em;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media all and (min-width: 481px) and (max-width: 768px) {
 | |
|   #toast-container > div {
 | |
|     padding: 15px 15px 15px 50px;
 | |
|     width: 25em;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .skin-crater .main-content {
 | |
|   background: #F9FBFF;
 | |
| }
 | |
| 
 | |
| .skin-crater .no-data-info .title {
 | |
|   font-weight: 500;
 | |
|   font-size: 17.5px;
 | |
| }
 | |
| 
 | |
| .skin-crater .no-data-info .description {
 | |
|   font-size: 15px;
 | |
|   color: #595959;
 | |
| }
 | |
| 
 | |
| .skin-crater .site-header {
 | |
|   background: linear-gradient(to right, #5851D8, #817AE3) !important;
 | |
|   border-bottom: 1px solid rgba(230, 230, 230, 0.7);
 | |
| }
 | |
| 
 | |
| .skin-crater .site-header .brand-main {
 | |
|   color: #fff;
 | |
|   font-size: 20px;
 | |
|   font-family: poppins, sans-serif;
 | |
|   font-style: normal;
 | |
|   font-weight: 900;
 | |
|   letter-spacing: 1px;
 | |
| }
 | |
| 
 | |
| .skin-crater .site-header .nav-toggle {
 | |
|   background-color: #fff;
 | |
|   color: #040405;
 | |
| }
 | |
| 
 | |
| .skin-crater .site-header .hamburger span {
 | |
|   background: #040405;
 | |
| }
 | |
| 
 | |
| .skin-crater .site-header .hamburger-inner,
 | |
| .skin-crater .site-header .hamburger-inner::before,
 | |
| .skin-crater .site-header .hamburger-inner::after {
 | |
|   background-color: #040405;
 | |
| }
 | |
| 
 | |
| .skin-crater .site-header .hamburger span::before,
 | |
| .skin-crater .site-header .hamburger span::after {
 | |
|   background-color: #040405;
 | |
| }
 | |
| 
 | |
| .skin-crater .site-header .action-list li a {
 | |
|   background-color: #fff;
 | |
|   color: #040405;
 | |
| }
 | |
| 
 | |
| .skin-crater .site-header .action-list li a:hover {
 | |
|   background-color: #f2f2f2;
 | |
|   color: #040405;
 | |
| }
 | |
| 
 | |
| .skin-crater .site-header .dropdown-menu {
 | |
|   background-color: #fff;
 | |
| }
 | |
| 
 | |
| .skin-crater .site-header .notification-dropdown .dropdown-header {
 | |
|   border-bottom: 1px solid #EBF1FA;
 | |
|   color: #5851D8;
 | |
| }
 | |
| 
 | |
| .skin-crater .site-header .dropdown-divider {
 | |
|   background-color: #A5ACC1;
 | |
| }
 | |
| 
 | |
| .skin-crater .header-nav .dropdown-group.dropdown-group.active > .dropdown-activator > a {
 | |
|   color: #5851D8;
 | |
| }
 | |
| 
 | |
| .skin-crater .header-nav .dropdown-group.has-child.toggle-arrow.active > .dropdown-activator::after {
 | |
|   border-color: #5851D8 transparent transparent;
 | |
| }
 | |
| 
 | |
| .skin-crater .sidebar-left {
 | |
|   background-color: #fff;
 | |
|   border-right: 1px solid #EBF1FA;
 | |
| }
 | |
| 
 | |
| .skin-crater .side-nav {
 | |
|   margin: 20px 0 0 0;
 | |
| }
 | |
| 
 | |
| .skin-crater .side-nav .side-nav-division {
 | |
|   margin-bottom: 20px;
 | |
| }
 | |
| 
 | |
| .skin-crater .side-nav .collapse-group .collapse-group-item a {
 | |
|   color: #000;
 | |
|   font-family: poppins, sans-serif;
 | |
|   font-size: 14px;
 | |
| }
 | |
| 
 | |
| .skin-crater .side-nav .collapse-group .collapse-group-item a:hover {
 | |
|   background-color: #d7e3f5;
 | |
| }
 | |
| 
 | |
| .skin-crater .side-nav .collapse-group .collapse-group-item.active > .collapse-item-title > a {
 | |
|   color: #5851D8;
 | |
| }
 | |
| 
 | |
| .skin-crater .side-nav .collapse-group .collapse-group-item .collapse-item-title i {
 | |
|   color: #A5ACC1;
 | |
| }
 | |
| 
 | |
| .skin-crater .side-nav .collapse-group .collapse-group-item.active i {
 | |
|   color: #5851D8;
 | |
| }
 | |
| 
 | |
| .skin-crater .side-nav .collapse-group .collapse-group-item .collapse-group-items {
 | |
|   background-color: #EBF1FA;
 | |
| }
 | |
| 
 | |
| .skin-crater .side-nav .collapse-group .collapse-group-item .collapse-group-items .collapse-group-items {
 | |
|   background-color: #d7e3f5;
 | |
| }
 | |
| 
 | |
| .skin-crater .side-nav .collapse-group .collapse-group-item .collapse-group-items .collapse-group-items .collapse-group-items {
 | |
|   background-color: #cadaf2;
 | |
| }
 | |
| 
 | |
| .skin-crater .side-nav .collapse-group .collapse-group-item .collapse-group-items a.active {
 | |
|   color: #5851D8;
 | |
| }
 | |
| 
 | |
| .skin-crater .header-bottom {
 | |
|   background-color: #fff;
 | |
|   border-bottom: 1px solid #B9C1D1;
 | |
| }
 | |
| 
 | |
| .skin-crater .header-nav li a {
 | |
|   color: #040405;
 | |
| }
 | |
| 
 | |
| .skin-crater .header-nav li a:hover {
 | |
|   background-color: #d7e3f5;
 | |
|   color: #040405;
 | |
| }
 | |
| 
 | |
| .skin-crater .header-nav li.active > a {
 | |
|   color: #5851D8;
 | |
|   background-color: transparent;
 | |
| }
 | |
| 
 | |
| .skin-crater .header-nav li.active > a:hover {
 | |
|   color: #5851D8;
 | |
|   background-color: transparent;
 | |
| }
 | |
| 
 | |
| .skin-crater .header-nav li .dropdown-item.active {
 | |
|   color: #5851D8;
 | |
|   background-color: transparent;
 | |
| }
 | |
| 
 | |
| .skin-crater .header-nav li .dropdown-item.active:hover,
 | |
| .skin-crater .header-nav li .dropdown-item.active:focus,
 | |
| .skin-crater .header-nav li .dropdown-item.active:active {
 | |
|   color: #5851D8;
 | |
|   background-color: #d7e3f5;
 | |
| }
 | |
| 
 | |
| .skin-crater .tabs-component.tabs-default .tabs-component-tab a {
 | |
|   color: #040405;
 | |
| }
 | |
| 
 | |
| .skin-crater .tabs-component.tabs-default .tabs-component-tab a:hover {
 | |
|   color: #040405;
 | |
| }
 | |
| 
 | |
| .skin-crater .tabs-component.tabs-default .tabs-component-tab.is-active {
 | |
|   border: 1px solid #5851D8;
 | |
|   background: #5851D8;
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .skin-crater .tabs-component.tabs-default .tabs-component-tab.is-active a {
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .skin-crater .tabs-component.tabs-default .tabs-component-tab:hover {
 | |
|   border: 1px solid #5851D8;
 | |
| }
 | |
| 
 | |
| .skin-crater .tabs-component.tabs-default .tabs-component-panels {
 | |
|   border-top: 1px solid #5851D8 !important;
 | |
| }
 | |
| 
 | |
| .skin-crater .tabs-component.tabs-vertical .tabs-component-tabs {
 | |
|   border-right: 1px solid #5851D8 !important;
 | |
| }
 | |
| 
 | |
| .skin-crater .tabs-component.tabs-vertical .tabs-component-tabs .tabs-component-tab a,
 | |
| .skin-crater .tabs-component.tabs-vertical .tabs-component-tabs .tabs-component-tab a:hover {
 | |
|   color: #040405;
 | |
| }
 | |
| 
 | |
| .skin-crater .tabs-component.tabs-vertical .tabs-component-tabs .tabs-component-tab.is-active {
 | |
|   background: #5851D8;
 | |
| }
 | |
| 
 | |
| .skin-crater .tabs-component.tabs-vertical .tabs-component-tabs .tabs-component-tab.is-active a {
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .skin-crater .tabs-component.tabs-vertical .tabs-component-tabs .tabs-component-tab:hover {
 | |
|   border: 1px solid #5851D8;
 | |
| }
 | |
| 
 | |
| .skin-crater .tabs-component.tabs-simple .tabs-component-tabs .tabs-component-tab a {
 | |
|   color: #A5ACC1;
 | |
|   font-weight: 500;
 | |
| }
 | |
| 
 | |
| .skin-crater .tabs-component.tabs-simple .tabs-component-tabs .tabs-component-tab a:hover {
 | |
|   color: #A5ACC1;
 | |
|   border-bottom: 3px solid #A5ACC1;
 | |
| }
 | |
| 
 | |
| .skin-crater .tabs-component.tabs-simple .tabs-component-tabs .tabs-component-tab.is-active {
 | |
|   border-bottom: 3px solid #5851D8;
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .skin-crater .tabs-component.tabs-simple .tabs-component-tabs .tabs-component-tab.is-active a {
 | |
|   color: #040405;
 | |
| }
 | |
| 
 | |
| .skin-crater .tabs-component.tabs-simple .tabs-component-panels {
 | |
|   border-top: 1px solid #EBF1FA !important;
 | |
| }
 | |
| 
 | |
| .skin-crater .tabs-component.tabs-simple-vertical .tabs-component-tabs {
 | |
|   border-right: 1px solid #ddd;
 | |
| }
 | |
| 
 | |
| .skin-crater .tabs-component.tabs-simple-vertical .tabs-component-tabs .tabs-component-tab a {
 | |
|   color: #A5ACC1;
 | |
|   font-weight: 500;
 | |
| }
 | |
| 
 | |
| .skin-crater .tabs-component.tabs-simple-vertical .tabs-component-tabs .tabs-component-tab a:hover {
 | |
|   border-right: 3px solid #d0cef4;
 | |
| }
 | |
| 
 | |
| .skin-crater .tabs-component.tabs-simple-vertical .tabs-component-tabs .tabs-component-tab.is-active {
 | |
|   border-right: 3px solid #5851D8;
 | |
|   color: #5851D8;
 | |
| }
 | |
| 
 | |
| .skin-crater code,
 | |
| .skin-crater .code {
 | |
|   background-color: #EBF1FA;
 | |
|   color: #5851D8;
 | |
| }
 | |
| 
 | |
| .skin-crater mark,
 | |
| .skin-crater .mark {
 | |
|   background-color: #5851D8;
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .skin-crater .todo-container {
 | |
|   background-color: #5851D8 !important;
 | |
|   color: #fff !important;
 | |
| }
 | |
| 
 | |
| .skin-crater .todo-container h5 {
 | |
|   color: #fff !important;
 | |
| }
 | |
| 
 | |
| .skin-crater .vue-dropzone .dz-preview .dz-details {
 | |
|   background-color: #5851D8 !important;
 | |
|   color: #fff !important;
 | |
| }
 | |
| 
 | |
| .skin-crater .vue-dropzone .dz-preview .dz-upload {
 | |
|   background: #fff !important;
 | |
| }
 | |
| 
 | |
| .skin-crater .vue-dropzone .dz-preview .dz-error-mark svg #Page-1 g {
 | |
|   fill: #fff !important;
 | |
| }
 | |
| 
 | |
| .skin-crater .vue-dropzone .dz-preview .dz-success-mark svg g path {
 | |
|   fill: white !important;
 | |
| }
 | |
| 
 | |
| .skin-crater .vue-dropzone .dz-preview .dz-remove {
 | |
|   color: #fff !important;
 | |
|   border: 2px #fff solid !important;
 | |
| }
 | |
| 
 | |
| .skin-crater .dropdown-group.active > .dropdown-activator > a {
 | |
|   color: #5851D8;
 | |
| }
 | |
| 
 | |
| .skin-crater .dropdown-group .dropdown-activator a {
 | |
|   color: #040405;
 | |
| }
 | |
| 
 | |
| .skin-crater .dropdown-group .dropdown-activator a:hover {
 | |
|   background-color: #EBF1FA;
 | |
| }
 | |
| 
 | |
| .skin-crater .dropdown-group.has-child.toggle-arrow.active > .dropdown-activator::after {
 | |
|   border-color: #5851D8 transparent transparent;
 | |
| }
 | |
| 
 | |
| .skin-crater .dropdown-group .dropdown-container {
 | |
|   color: #040405;
 | |
|   background-color: #fff;
 | |
| }
 | |
| 
 | |
| .skin-crater .dropdown-group .dropdown-container .dropdown-group-item .dropdown-item {
 | |
|   color: #040405;
 | |
|   background-color: transparent;
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .skin-crater .dropdown-group .dropdown-container .dropdown-group-item .dropdown-item.active {
 | |
|   color: #5851D8;
 | |
| }
 | |
| 
 | |
| .skin-crater .dropdown-group .dropdown-container .dropdown-group-item .dropdown-item:hover {
 | |
|   background-color: #EBF1FA;
 | |
| }
 | |
| 
 | |
| .skin-crater .dropdown-group .dropdown-container .dropdown-activator::before {
 | |
|   border-color: #040405 transparent transparent;
 | |
| }
 | |
| 
 | |
| .skin-crater .dropdown-group .dropdown-container .dropdown-group.active .dropdown-activator a {
 | |
|   color: #5851D8;
 | |
| }
 | |
| 
 | |
| .skin-crater .dropdown-group .dropdown-container .dropdown-group.active .dropdown-activator::before {
 | |
|   border-color: #5851D8 transparent transparent;
 | |
| }
 | |
| 
 | |
| .skin-crater .dropdown-group .dropdown-item-divider {
 | |
|   border-top: 1px solid #A5ACC1;
 | |
| }
 | |
| 
 | |
| .skin-crater .btn-theme {
 | |
|   background: #5851D8;
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .skin-crater .btn-theme:hover {
 | |
|   color: #fff;
 | |
|   background: #6862dc;
 | |
| }
 | |
| 
 | |
| .skin-crater .btn-theme-outline {
 | |
|   color: #5851D8;
 | |
|   border-color: #5851D8;
 | |
| }
 | |
| 
 | |
| .skin-crater .btn-theme-outline:hover {
 | |
|   color: #fff;
 | |
|   background-color: #5851D8;
 | |
|   border-color: #5851D8;
 | |
| }
 | |
| 
 | |
| .skin-crater .btn-theme-outline:focus,
 | |
| .skin-crater .btn-theme-outline.focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(88, 81, 216, 0.5);
 | |
| }
 | |
| 
 | |
| .skin-crater .btn-theme-outline.disabled,
 | |
| .skin-crater .btn-theme-outline:disabled {
 | |
|   color: #5851D8;
 | |
|   background-color: transparent;
 | |
| }
 | |
| 
 | |
| .skin-crater .btn-theme-outline:not(:disabled):not(.disabled):active,
 | |
| .skin-crater .btn-theme-outline:not(:disabled):not(.disabled).active,
 | |
| .show > .skin-crater .btn-theme-outline.dropdown-toggle {
 | |
|   color: #fff;
 | |
|   background-color: #5851D8;
 | |
|   border-color: #5851D8;
 | |
| }
 | |
| 
 | |
| .skin-crater .btn-theme-outline:not(:disabled):not(.disabled):active:focus,
 | |
| .skin-crater .btn-theme-outline:not(:disabled):not(.disabled).active:focus,
 | |
| .show > .skin-crater .btn-theme-outline.dropdown-toggle:focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(88, 81, 216, 0.5);
 | |
| }
 | |
| 
 | |
| .skin-crater .form-control:focus {
 | |
|   border: 1px solid #5851D8;
 | |
| }
 | |
| 
 | |
| .skin-crater .multiselect {
 | |
|   color: #040405;
 | |
| }
 | |
| 
 | |
| .skin-crater .multiselect .multiselect__option--highlight {
 | |
|   background: #F9FBFF;
 | |
|   color: #040405;
 | |
| }
 | |
| 
 | |
| .skin-crater .multiselect .multiselect__option--highlight.multiselect__option--selected {
 | |
|   background: #EBF1FA;
 | |
|   color: #040405;
 | |
| }
 | |
| 
 | |
| .skin-crater .multiselect .multiselect__option--highlight.multiselect__option--selected::after {
 | |
|   background: #B9C1D1;
 | |
|   color: #040405;
 | |
| }
 | |
| 
 | |
| .skin-crater .multiselect .multiselect__option--highlight::after {
 | |
|   background: #B9C1D1;
 | |
|   color: #040405;
 | |
| }
 | |
| 
 | |
| .skin-crater .multiselect .multiselect__tags-wrap .multiselect__tag {
 | |
|   background: #5851D8;
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .skin-crater .multiselect .multiselect__tags-wrap .multiselect__tag .multiselect__tag-icon:hover {
 | |
|   background: #5851D8;
 | |
| }
 | |
| 
 | |
| .skin-crater .multiselect .multiselect__tags-wrap .multiselect__tag .multiselect__tag-icon::after {
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .skin-crater .vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day:hover,
 | |
| .skin-crater .vdp-datepicker__calendar .cell:not(.blank):not(.disabled).month:hover,
 | |
| .skin-crater .vdp-datepicker__calendar .cell:not(.blank):not(.disabled).year:hover {
 | |
|   border: 1px solid #5851D8 !important;
 | |
| }
 | |
| 
 | |
| .skin-crater .vdp-datepicker__calendar .cell.selected {
 | |
|   background: #5851D8 !important;
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .skin-crater .vdp-datepicker__calendar .cell.highlighted {
 | |
|   background: #bcb9ef !important;
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .skin-crater .VueCarousel-dot .VueCarousel-dot-button {
 | |
|   background: #A5ACC1 !important;
 | |
| }
 | |
| 
 | |
| .skin-crater .VueCarousel-dot.VueCarousel-dot--active .VueCarousel-dot-button {
 | |
|   background: #5851D8 !important;
 | |
| }
 | |
| 
 | |
| .skin-crater .mailbox .mailbox-content .table tr td .content-subject {
 | |
|   color: #040405;
 | |
| }
 | |
| 
 | |
| .skin-crater .mailbox .mailbox-content .mailbox-content-footer .page-link {
 | |
|   color: #040405;
 | |
| }
 | |
| 
 | |
| .skin-crater .mailbox .mailbox-content .mailbox-content-footer .active .page-link {
 | |
|   background-color: #5851D8;
 | |
|   border-color: #5851D8;
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .skin-crater .mailbox .mailbox-content .btn-favorite .active {
 | |
|   color: #5851D8;
 | |
| }
 | |
| 
 | |
| .skin-crater .mailbox-modal .mail-body .message-heading.email a {
 | |
|   color: #040405;
 | |
| }
 | |
| 
 | |
| .skin-crater .mailbox .mailbox-sidebar .sidebar-menu li.active {
 | |
|   border-left: 5px solid #5851D8;
 | |
| }
 | |
| 
 | |
| .skin-crater .mailbox .mailbox-sidebar .sidebar-menu li a {
 | |
|   color: #040405;
 | |
| }
 | |
| 
 | |
| .skin-crater .mailbox .mailbox-sidebar .left-sidebar-btn {
 | |
|   color: #040405;
 | |
| }
 | |
| 
 | |
| @media (max-width: 480px) {
 | |
|   .skin-crater .header-nav .dropdown-menu {
 | |
|     border: 0 !important;
 | |
|     background-color: #EBF1FA !important;
 | |
|   }
 | |
| }
 | |
| 
 | |
| html,
 | |
| body,
 | |
| .site-wrapper {
 | |
|   height: 100%;
 | |
|   font-size: 14px;
 | |
| }
 | |
| 
 | |
| body {
 | |
|   background-color: #EBF1FA;
 | |
|   font-family: "Poppins", sans-serif;
 | |
|   color: #262630;
 | |
|   overflow-x: hidden;
 | |
| }
 | |
| 
 | |
| body i {
 | |
|   font-family: "Font Awesome 5 Free" !important;
 | |
| }
 | |
| 
 | |
| h1,
 | |
| h2,
 | |
| h3,
 | |
| h4,
 | |
| h5,
 | |
| h6 {
 | |
|   color: #040405;
 | |
|   font-weight: bold;
 | |
| }
 | |
| 
 | |
| a {
 | |
|   color: #263B5E;
 | |
| }
 | |
| 
 | |
| a:hover,
 | |
| a:focus {
 | |
|   color: #355282;
 | |
|   text-decoration: none;
 | |
|   outline: none;
 | |
| }
 | |
| 
 | |
| mark,
 | |
| .mark {
 | |
|   background-color: #efefef;
 | |
|   border-radius: 5px;
 | |
|   color: #040405;
 | |
|   padding: 0.2em 0.4em;
 | |
|   margin: 0 1px;
 | |
| }
 | |
| 
 | |
| code,
 | |
| .code {
 | |
|   background-color: #040405;
 | |
|   color: #5851D8;
 | |
| }
 | |
| 
 | |
| :active,
 | |
| :focus,
 | |
| :hover {
 | |
|   outline: 0;
 | |
| }
 | |
| 
 | |
| [v-cloak] {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| .text-default {
 | |
|   color: #040405 !important;
 | |
| }
 | |
| 
 | |
| @-webkit-keyframes spinner {
 | |
|   to {
 | |
|     transform: rotate(360deg);
 | |
|   }
 | |
| }
 | |
| 
 | |
| @keyframes spinner {
 | |
|   to {
 | |
|     transform: rotate(360deg);
 | |
|   }
 | |
| }
 | |
| 
 | |
| .fa-spinner {
 | |
|   -webkit-animation: spinner 1.5s linear infinite;
 | |
|           animation: spinner 1.5s linear infinite;
 | |
| }
 | |
| 
 | |
| .filter-section {
 | |
|   background: #EBF1FA;
 | |
|   position: relative;
 | |
|   z-index: 2;
 | |
|   padding: 30px;
 | |
|   border-radius: 5px;
 | |
| }
 | |
| 
 | |
| .clear-filter {
 | |
|   position: absolute;
 | |
|   top: 10px;
 | |
|   right: 15px;
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
|   color: #040405;
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .list-add-button {
 | |
|   display: flex;
 | |
|   width: 100%;
 | |
|   padding: 13px 10px;
 | |
|   background: #EBF1FA;
 | |
|   justify-content: center;
 | |
|   border: none;
 | |
|   outline: none;
 | |
|   align-items: center;
 | |
| }
 | |
| 
 | |
| .list-add-button .icon {
 | |
|   color: #817AE3;
 | |
| }
 | |
| 
 | |
| .list-add-button label {
 | |
|   font-family: Poppins;
 | |
|   font-size: 14px;
 | |
|   margin: 0 0 0 10px !important;
 | |
|   line-height: 14px;
 | |
|   color: #817AE3;
 | |
| }
 | |
| 
 | |
| .btn-container {
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
|   align-items: center;
 | |
| }
 | |
| 
 | |
| .site-header {
 | |
|   background-color: #5851D8;
 | |
|   height: 60px;
 | |
|   left: 0;
 | |
|   padding: 12px 30px;
 | |
|   position: fixed;
 | |
|   top: 0;
 | |
|   width: 100%;
 | |
|   z-index: 1000;
 | |
| }
 | |
| 
 | |
| .sidebar-left {
 | |
|   background: #55547A;
 | |
|   height: 100%;
 | |
|   left: 0;
 | |
|   padding: 60px 0 10px;
 | |
|   position: fixed;
 | |
|   top: 0;
 | |
|   width: 240px;
 | |
|   z-index: 30;
 | |
| }
 | |
| 
 | |
| .sidebar-body {
 | |
|   height: 100%;
 | |
|   overflow-y: auto;
 | |
| }
 | |
| 
 | |
| .sidebar-body::-webkit-scrollbar {
 | |
|   -webkit-appearance: none;
 | |
| }
 | |
| 
 | |
| .sidebar-body::-webkit-scrollbar:vertical {
 | |
|   width: 8px;
 | |
| }
 | |
| 
 | |
| .sidebar-body::-webkit-scrollbar:horizontal {
 | |
|   height: 8px;
 | |
| }
 | |
| 
 | |
| .sidebar-body::-webkit-scrollbar-thumb {
 | |
|   border-radius: 8px;
 | |
|   border: 2px solid rgba(255, 255, 255, 0);
 | |
|   background-color: rgba(255, 255, 255, 0.3);
 | |
| }
 | |
| 
 | |
| .sidebar-body::-webkit-scrollbar-track {
 | |
|   background-color: rgba(0, 0, 0, 0);
 | |
|   border-radius: 8px;
 | |
| }
 | |
| 
 | |
| .mobile-menu-overlay {
 | |
|   position: fixed;
 | |
|   left: 0;
 | |
|   top: 0;
 | |
|   width: 100%;
 | |
|   height: 100%;
 | |
|   z-index: 29;
 | |
|   background: rgba(48, 75, 88, 0.5);
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| .layout-default .main-content,
 | |
| .layout-icon-sidebar .main-content {
 | |
|   padding: 90px 30px 10px 270px;
 | |
|   min-height: calc(100% - 39px);
 | |
| }
 | |
| 
 | |
| .site-footer {
 | |
|   background-color: #fff;
 | |
|   color: #818a91;
 | |
|   font-size: 13px;
 | |
|   font-weight: normal;
 | |
|   padding: 10px 30px 10px 255px;
 | |
| }
 | |
| 
 | |
| .site-footer a {
 | |
|   color: #263B5E;
 | |
| }
 | |
| 
 | |
| .page-header {
 | |
|   margin-bottom: 30px;
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| .page-header p {
 | |
|   font-size: 13px;
 | |
| }
 | |
| 
 | |
| .page-header select {
 | |
|   border: none;
 | |
| }
 | |
| 
 | |
| .page-header .breadcrumb {
 | |
|   background: none;
 | |
|   padding: 0;
 | |
| }
 | |
| 
 | |
| .page-header .page-actions {
 | |
|   position: absolute;
 | |
|   right: 0;
 | |
|   top: 50%;
 | |
|   transform: translateY(-50%);
 | |
|   margin: auto;
 | |
| }
 | |
| 
 | |
| .template-container {
 | |
|   height: 100%;
 | |
| }
 | |
| 
 | |
| @media (max-width: 767px) {
 | |
|   .site-header {
 | |
|     padding: 12px 15px;
 | |
|   }
 | |
| 
 | |
|   .sidebar-left {
 | |
|     left: -240px;
 | |
|     transition: left 0.3s ease;
 | |
|   }
 | |
| 
 | |
|   .sidebar-open .sidebar-left {
 | |
|     left: 0;
 | |
|   }
 | |
| 
 | |
|   .sidebar-open .mobile-menu-overlay {
 | |
|     display: block;
 | |
|   }
 | |
| 
 | |
|   .layout-default .main-content,
 | |
|   .layout-icon-sidebar .main-content {
 | |
|     padding-left: 15px;
 | |
|     padding-right: 15px;
 | |
|   }
 | |
| 
 | |
|   .site-footer {
 | |
|     padding-left: 15px;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .sidebar-left .menu-group {
 | |
|   margin-bottom: 40px;
 | |
| }
 | |
| 
 | |
| .sidebar-left .menu-group:first-child {
 | |
|   margin-top: 29px;
 | |
| }
 | |
| 
 | |
| .sidebar-left .menu-item {
 | |
|   cursor: pointer;
 | |
|   padding: 10px 0px 11px 0px;
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| .sidebar-left .menu-item .menu-text {
 | |
|   font-family: Poppins;
 | |
|   font-style: normal;
 | |
|   font-weight: 500;
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
|   color: #040405;
 | |
| }
 | |
| 
 | |
| .sidebar-left .menu-item .menu-icon {
 | |
|   margin-left: 25px;
 | |
|   color: #A5ACC1;
 | |
|   width: 30px;
 | |
|   margin-left: 25px;
 | |
|   display: inline-block;
 | |
|   font-size: inherit;
 | |
|   height: 1em;
 | |
|   overflow: visible;
 | |
|   vertical-align: -0.125em;
 | |
| }
 | |
| 
 | |
| .sidebar-left .active {
 | |
|   background-color: #F9FBFF;
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| .sidebar-left .active::after {
 | |
|   position: absolute;
 | |
|   height: 100%;
 | |
|   content: "";
 | |
|   left: 0;
 | |
|   top: 0;
 | |
|   width: 3px;
 | |
|   background-color: #5851D8;
 | |
| }
 | |
| 
 | |
| .sidebar-left .active .menu-text {
 | |
|   color: #5851D8 !important;
 | |
| }
 | |
| 
 | |
| .sidebar-left .active .menu-icon {
 | |
|   color: #5851D8 !important;
 | |
| }
 | |
| 
 | |
| .brand-main img {
 | |
|   height: 25px;
 | |
| }
 | |
| 
 | |
| .nav-toggle {
 | |
|   background-color: #040405;
 | |
|   border-radius: 2px;
 | |
|   color: #fff;
 | |
|   display: none;
 | |
|   font-size: 14px;
 | |
|   line-height: 9px;
 | |
|   padding: 6px;
 | |
| }
 | |
| 
 | |
| .nav-toggle:active,
 | |
| .nav-toggle:focus,
 | |
| .nav-toggle:visited {
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .action-list {
 | |
|   float: right;
 | |
|   list-style: none;
 | |
|   margin: 0;
 | |
| }
 | |
| 
 | |
| .action-list li {
 | |
|   display: block;
 | |
|   float: left;
 | |
|   position: relative;
 | |
|   height: 36px;
 | |
|   margin: 0;
 | |
|   padding: 0 4px;
 | |
| }
 | |
| 
 | |
| .action-list li.action-item a {
 | |
|   padding: 11px;
 | |
| }
 | |
| 
 | |
| .action-list li .icon {
 | |
|   color: #9EA9C4;
 | |
| }
 | |
| 
 | |
| .action-list li a {
 | |
|   background-color: #040405;
 | |
|   border-radius: 2px;
 | |
|   color: #fff;
 | |
|   display: inline-block;
 | |
|   font-size: 14px !important;
 | |
|   line-height: 14px !important;
 | |
|   padding: 11px !important;
 | |
| }
 | |
| 
 | |
| .action-list li a:hover {
 | |
|   background-color: #0f0f13;
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .action-list .avatar {
 | |
|   padding: 0 !important;
 | |
|   background-color: transparent;
 | |
| }
 | |
| 
 | |
| .action-list .avatar img {
 | |
|   width: 36px;
 | |
|   border-radius: 2px;
 | |
| }
 | |
| 
 | |
| .action-list .dropdown-group {
 | |
|   background-color: #040405;
 | |
| }
 | |
| 
 | |
| .action-list .dropdown-group i {
 | |
|   text-align: center;
 | |
|   width: auto;
 | |
| }
 | |
| 
 | |
| .action-list .dropdown-group.has-child > .dropdown-activator::after {
 | |
|   content: none;
 | |
| }
 | |
| 
 | |
| .action-list .dropdown-group .dropdown-group-item i {
 | |
|   width: 25px;
 | |
| }
 | |
| 
 | |
| .action-list .notification-dropdown {
 | |
|   padding: 5px !important;
 | |
| }
 | |
| 
 | |
| .action-list .notification-dropdown .dropdown-header {
 | |
|   border-bottom: 1px solid #A5ACC1;
 | |
|   color: #5851D8;
 | |
|   padding: 3px 10px 8px;
 | |
|   margin-bottom: 0;
 | |
| }
 | |
| 
 | |
| @media (max-width: 767px) {
 | |
|   .nav-toggle {
 | |
|     display: inline-block;
 | |
|     margin-left: 10px;
 | |
|   }
 | |
| 
 | |
|   .brand-main {
 | |
|     float: left;
 | |
|   }
 | |
| 
 | |
|   .brand-main img {
 | |
|     height: 36px;
 | |
|     margin-bottom: 3px;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .side-nav {
 | |
|   list-style: none;
 | |
|   margin: 0;
 | |
|   padding: 0;
 | |
| }
 | |
| 
 | |
| .side-nav .collapse-group .collapse-group-item .collapse-item-title {
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| .side-nav .collapse-group .collapse-group-item .collapse-item-title > a > .icon-fa.arrow {
 | |
|   float: right;
 | |
|   line-height: 1.42857;
 | |
| }
 | |
| 
 | |
| .side-nav .collapse-group .collapse-group-item .collapse-item-title > a > .icon-fa.arrow:before {
 | |
|   content: "\F104";
 | |
| }
 | |
| 
 | |
| .side-nav .collapse-group .collapse-group-item a {
 | |
|   color: #fff;
 | |
|   display: block;
 | |
|   font-size: 14px;
 | |
|   padding: 12px 12px 12px 30px;
 | |
|   position: relative;
 | |
|   text-decoration: none;
 | |
| }
 | |
| 
 | |
| .side-nav .collapse-group .collapse-group-item a:hover {
 | |
|   background-color: #1b1b21;
 | |
| }
 | |
| 
 | |
| .side-nav .collapse-group .collapse-group-item .icon {
 | |
|   width: 30px;
 | |
|   color: #9EA9C4;
 | |
| }
 | |
| 
 | |
| .side-nav .collapse-group .collapse-group-item.active > .collapse-item-title > a .icon {
 | |
|   color: #5851D8;
 | |
| }
 | |
| 
 | |
| .side-nav .collapse-group .collapse-group-item.active > .collapse-item-title > a .icon > .icon-fa.arrow:before {
 | |
|   content: "\F107";
 | |
| }
 | |
| 
 | |
| .side-nav .collapse-group .collapse-group-item .collapse-group-items {
 | |
|   background-color: #0b0b0e;
 | |
|   padding: 0;
 | |
| }
 | |
| 
 | |
| .side-nav .collapse-group .collapse-group-item .collapse-group-items .collapse-group-items {
 | |
|   background-color: #16161c;
 | |
| }
 | |
| 
 | |
| .side-nav .collapse-group .collapse-group-item .collapse-group-items .collapse-group-items .collapse-group-items {
 | |
|   background-color: #1d1d24;
 | |
| }
 | |
| 
 | |
| .side-nav .collapse-group .collapse-group-item .collapse-group-items a.active {
 | |
|   color: #5851D8;
 | |
| }
 | |
| 
 | |
| .base-date-input {
 | |
|   width: 100%;
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| .base-date-input .date-field {
 | |
|   width: 100%;
 | |
|   height: 40px;
 | |
|   background: #FFFFFF;
 | |
|   border: 1px solid #EBF1FA;
 | |
|   box-sizing: border-box;
 | |
|   border-radius: 5px;
 | |
|   display: inline-block;
 | |
|   padding: 0px 6px 0px 40px;
 | |
|   font-size: 1rem;
 | |
|   line-height: 1.4;
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .base-date-input .date-field:focus {
 | |
|   border: 1px solid #817AE3;
 | |
| }
 | |
| 
 | |
| .base-date-input .date-field.invalid {
 | |
|   border: 1px solid #FB7178 !important;
 | |
| }
 | |
| 
 | |
| .vdp-datepicker__calendar-button {
 | |
|   position: absolute;
 | |
|   width: 13px;
 | |
|   height: 18px;
 | |
|   color: #B9C1D1;
 | |
|   font-style: normal;
 | |
|   font-weight: 900;
 | |
|   font-size: 14px;
 | |
|   line-height: 16px;
 | |
|   top: 50%;
 | |
|   left: 20px;
 | |
|   transform: translate(-50%, -50%);
 | |
| }
 | |
| 
 | |
| .vdp-datepicker__calendar-button .icon-fa {
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .base-input {
 | |
|   width: 100%;
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| .base-input .left-icon {
 | |
|   position: absolute;
 | |
|   width: 13px;
 | |
|   height: 18px;
 | |
|   min-width: 40px;
 | |
|   color: #B9C1D1;
 | |
|   font-style: normal;
 | |
|   font-weight: 900;
 | |
|   font-size: 14px;
 | |
|   line-height: 16px;
 | |
|   top: 50%;
 | |
|   left: 20px;
 | |
|   z-index: 1;
 | |
|   transform: translate(-50%, -50%);
 | |
| }
 | |
| 
 | |
| .base-input .right-icon {
 | |
|   position: absolute;
 | |
|   width: 13px;
 | |
|   height: 18px;
 | |
|   min-width: 18px;
 | |
|   color: #B9C1D1;
 | |
|   font-style: normal;
 | |
|   font-weight: 900;
 | |
|   font-size: 14px;
 | |
|   line-height: 16px;
 | |
|   top: 50%;
 | |
|   right: 0px;
 | |
|   z-index: 1;
 | |
|   transform: translate(-50%, -50%);
 | |
| }
 | |
| 
 | |
| .base-input .small-input {
 | |
|   max-width: 100px;
 | |
| }
 | |
| 
 | |
| .base-input .input-field {
 | |
|   width: 100%;
 | |
|   height: 40px;
 | |
|   padding: 8px 13px;
 | |
|   text-align: left;
 | |
|   background: #FFFFFF;
 | |
|   border: 1px solid #EBF1FA;
 | |
|   box-sizing: border-box;
 | |
|   border-radius: 5px;
 | |
|   font-style: normal;
 | |
|   font-weight: 400;
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
| }
 | |
| 
 | |
| .base-input .input-field.v-money {
 | |
|   font-family: Arial, Helvetica, sans-serif !important;
 | |
| }
 | |
| 
 | |
| .base-input .input-field::-webkit-input-placeholder {
 | |
|   font-family: Poppins;
 | |
|   font-style: normal;
 | |
|   font-weight: 500;
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .base-input .input-field::-moz-placeholder {
 | |
|   font-family: Poppins;
 | |
|   font-style: normal;
 | |
|   font-weight: 500;
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .base-input .input-field:-ms-input-placeholder {
 | |
|   font-family: Poppins;
 | |
|   font-style: normal;
 | |
|   font-weight: 500;
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .base-input .input-field::-ms-input-placeholder {
 | |
|   font-family: Poppins;
 | |
|   font-style: normal;
 | |
|   font-weight: 500;
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .base-input .input-field::placeholder {
 | |
|   font-family: Poppins;
 | |
|   font-style: normal;
 | |
|   font-weight: 500;
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .base-input .input-field:focus {
 | |
|   border: 1px solid #817AE3;
 | |
| }
 | |
| 
 | |
| .base-input .input-field.invalid {
 | |
|   border: 1px solid #FB7178 !important;
 | |
| }
 | |
| 
 | |
| .base-input .input-field.disabled {
 | |
|   background: #EBF1FA !important;
 | |
|   color: #A5ACC1 !important;
 | |
| }
 | |
| 
 | |
| .base-input .input-field-left-icon {
 | |
|   padding-left: 35px;
 | |
| }
 | |
| 
 | |
| .base-input .input-field-right-icon {
 | |
|   padding-right: 35px;
 | |
| }
 | |
| 
 | |
| .base-button {
 | |
|   height: 40px;
 | |
|   padding: 6px 20px;
 | |
|   font-size: 14px;
 | |
|   font-weight: 500;
 | |
|   text-align: center;
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
|   white-space: nowrap;
 | |
|   line-height: 14px;
 | |
| }
 | |
| 
 | |
| .base-button.btn-lg,
 | |
| .btn-group-lg > .base-button.btn {
 | |
|   height: 45px;
 | |
|   font-size: 15px;
 | |
|   font-weight: 500;
 | |
|   text-align: center;
 | |
| }
 | |
| 
 | |
| .base-button.btn-sm,
 | |
| .btn-group-sm > .base-button.btn {
 | |
|   height: 34px;
 | |
|   padding: 5px 15px;
 | |
|   font-size: 12px;
 | |
|   font-weight: 500;
 | |
|   text-align: center;
 | |
| }
 | |
| 
 | |
| .base-button.btn-danger {
 | |
|   color: #ffffff !important;
 | |
| }
 | |
| 
 | |
| .base-button.btn-outline-danger:hover {
 | |
|   color: #ffffff !important;
 | |
| }
 | |
| 
 | |
| .base-button .icon-button {
 | |
|   text-align: center;
 | |
| }
 | |
| 
 | |
| .base-button .icon-left {
 | |
|   margin-right: 10px !important;
 | |
| }
 | |
| 
 | |
| .base-button .icon-right {
 | |
|   margin-left: 10px !important;
 | |
| }
 | |
| 
 | |
| .base-button.btn-cursor-not-allowed {
 | |
|   cursor: not-allowed !important;
 | |
| }
 | |
| 
 | |
| .base-button .icon {
 | |
|   margin-right: 5px;
 | |
| }
 | |
| 
 | |
| .search-select {
 | |
|   position: relative;
 | |
|   width: 100%;
 | |
| }
 | |
| 
 | |
| .search-select .activator {
 | |
|   position: relative;
 | |
|   width: 100%;
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .search-select .selector-menu {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
|   position: absolute;
 | |
|   z-index: 100;
 | |
|   width: 100%;
 | |
|   top: 0;
 | |
|   background: #FFFFFF;
 | |
|   box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
 | |
|   border-radius: 5px;
 | |
| }
 | |
| 
 | |
| .search-select .selector-menu-above {
 | |
|   top: unset !important;
 | |
|   bottom: 100% !important;
 | |
| }
 | |
| 
 | |
| .base-text-area {
 | |
|   width: 100%;
 | |
| }
 | |
| 
 | |
| .base-text-area.text-area-field {
 | |
|   width: 100%;
 | |
|   padding: 8px 13px;
 | |
|   text-align: left;
 | |
|   background: #FFFFFF;
 | |
|   border: 1px solid #EBF1FA;
 | |
|   box-sizing: border-box;
 | |
|   border-radius: 5px;
 | |
|   font-style: normal;
 | |
|   font-weight: 500;
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
| }
 | |
| 
 | |
| .base-text-area.text-area-field::-webkit-input-placeholder {
 | |
|   font-family: Poppins;
 | |
|   font-style: normal;
 | |
|   font-weight: 500;
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .base-text-area.text-area-field::-moz-placeholder {
 | |
|   font-family: Poppins;
 | |
|   font-style: normal;
 | |
|   font-weight: 500;
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .base-text-area.text-area-field:-ms-input-placeholder {
 | |
|   font-family: Poppins;
 | |
|   font-style: normal;
 | |
|   font-weight: 500;
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .base-text-area.text-area-field::-ms-input-placeholder {
 | |
|   font-family: Poppins;
 | |
|   font-style: normal;
 | |
|   font-weight: 500;
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .base-text-area.text-area-field::placeholder {
 | |
|   font-family: Poppins;
 | |
|   font-style: normal;
 | |
|   font-weight: 500;
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .base-text-area.text-area-field:focus {
 | |
|   border: 1px solid #817AE3;
 | |
| }
 | |
| 
 | |
| .base-text-area.text-area-field.invalid {
 | |
|   border: 1px solid #FB7178 !important;
 | |
| }
 | |
| 
 | |
| .base-text-area.text-area-field.disabled {
 | |
|   background: #EBF1FA !important;
 | |
|   color: #A5ACC1 !important;
 | |
| }
 | |
| 
 | |
| .base-text-area.text-area-field-icon {
 | |
|   padding-left: 35px;
 | |
| }
 | |
| 
 | |
| .base-switch input[type=checkbox] {
 | |
|   height: 0;
 | |
|   width: 0;
 | |
|   visibility: hidden;
 | |
| }
 | |
| 
 | |
| .base-switch label {
 | |
|   cursor: pointer;
 | |
|   text-indent: -9999px;
 | |
|   width: 35px;
 | |
|   height: 16px;
 | |
|   background: #fff;
 | |
|   border: 1px solid #B9C1D1;
 | |
|   display: block;
 | |
|   border-radius: 16px;
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| .base-switch label:after {
 | |
|   content: "";
 | |
|   position: absolute;
 | |
|   top: -3px;
 | |
|   left: 0px;
 | |
|   width: 20px;
 | |
|   height: 20px;
 | |
|   background: #A5ACC1;
 | |
|   border-radius: 15px;
 | |
|   transition: 0.3s;
 | |
| }
 | |
| 
 | |
| .base-switch input:checked + label {
 | |
|   background: rgba(88, 81, 216, 0.2);
 | |
| }
 | |
| 
 | |
| .base-switch input:checked + label:after {
 | |
|   left: calc(100% - 0px);
 | |
|   transform: translateX(-100%);
 | |
|   background: #5851D8;
 | |
| }
 | |
| 
 | |
| .base-switch label:active:after {
 | |
|   width: 20px;
 | |
| }
 | |
| 
 | |
| @-webkit-keyframes ball-scale-ripple-multiple {
 | |
|   0% {
 | |
|     transform: scale(0.1);
 | |
|     opacity: 1;
 | |
|   }
 | |
| 
 | |
|   70% {
 | |
|     transform: scale(1);
 | |
|     opacity: 0.7;
 | |
|   }
 | |
| 
 | |
|   100% {
 | |
|     opacity: 0;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @keyframes ball-scale-ripple-multiple {
 | |
|   0% {
 | |
|     transform: scale(0.1);
 | |
|     opacity: 1;
 | |
|   }
 | |
| 
 | |
|   70% {
 | |
|     transform: scale(1);
 | |
|     opacity: 0.7;
 | |
|   }
 | |
| 
 | |
|   100% {
 | |
|     opacity: 0;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .loader {
 | |
|   width: 100%;
 | |
|   position: relative;
 | |
|   min-height: 500px;
 | |
| }
 | |
| 
 | |
| .ball-scale-ripple-multiple {
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
|   align-items: center;
 | |
|   position: absolute;
 | |
|   transform: translateY(-25px);
 | |
|   top: 60%;
 | |
|   left: 40%;
 | |
|   transform: translateY(-25px);
 | |
| }
 | |
| 
 | |
| .ball-scale-ripple-multiple > div:nth-child(0) {
 | |
|   -webkit-animation-delay: -0.8s;
 | |
|           animation-delay: -0.8s;
 | |
| }
 | |
| 
 | |
| .ball-scale-ripple-multiple > div:nth-child(1) {
 | |
|   -webkit-animation-delay: -0.6s;
 | |
|           animation-delay: -0.6s;
 | |
| }
 | |
| 
 | |
| .ball-scale-ripple-multiple > div:nth-child(2) {
 | |
|   -webkit-animation-delay: -0.4s;
 | |
|           animation-delay: -0.4s;
 | |
| }
 | |
| 
 | |
| .ball-scale-ripple-multiple > div:nth-child(3) {
 | |
|   -webkit-animation-delay: -0.2s;
 | |
|           animation-delay: -0.2s;
 | |
| }
 | |
| 
 | |
| .ball-scale-ripple-multiple > div {
 | |
|   -webkit-animation-fill-mode: both;
 | |
|           animation-fill-mode: both;
 | |
|   position: absolute;
 | |
|   top: -2px;
 | |
|   left: -26px;
 | |
|   width: 50px;
 | |
|   height: 50px;
 | |
|   border-radius: 100%;
 | |
|   border: 2px solid #817AE3;
 | |
|   -webkit-animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
 | |
|           animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
 | |
| }
 | |
| 
 | |
| .btn {
 | |
|   font-family: "Poppins", sans-serif;
 | |
| }
 | |
| 
 | |
| .btn.btn-pressable:active {
 | |
|   transform: translate(0px, 3px);
 | |
|   -webkit-transform: translate(0px, 3px);
 | |
| }
 | |
| 
 | |
| .btn:focus,
 | |
| .btn.focus,
 | |
| .btn:active:focus,
 | |
| .btn:active.focus,
 | |
| .btn.active:focus,
 | |
| .btn.active.focus {
 | |
|   outline: none;
 | |
| }
 | |
| 
 | |
| .btn-default {
 | |
|   border: 1px solid #B9C1D1;
 | |
|   background-color: #fff;
 | |
| }
 | |
| 
 | |
| .btn-default:hover,
 | |
| .btn-default:active,
 | |
| .btn-default:focus {
 | |
|   background-color: #EBF1FA;
 | |
| }
 | |
| 
 | |
| .btn-outline-default {
 | |
|   border: 1px solid #B9C1D1;
 | |
|   background-color: #fff;
 | |
| }
 | |
| 
 | |
| .btn-outline-default:hover,
 | |
| .btn-outline-default:active,
 | |
| .btn-outline-default:focus {
 | |
|   background-color: #EBF1FA;
 | |
| }
 | |
| 
 | |
| .btn-theme {
 | |
|   color: #fff;
 | |
|   background-color: #5851D8;
 | |
|   border-color: #5851D8;
 | |
| }
 | |
| 
 | |
| .btn-theme:hover {
 | |
|   color: #fff;
 | |
|   background-color: #3a32d1;
 | |
|   border-color: #352dc9;
 | |
| }
 | |
| 
 | |
| .btn-theme:focus,
 | |
| .btn-theme.focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(113, 107, 222, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-theme.disabled,
 | |
| .btn-theme:disabled {
 | |
|   color: #fff;
 | |
|   background-color: #5851D8;
 | |
|   border-color: #5851D8;
 | |
| }
 | |
| 
 | |
| .btn-theme:not(:disabled):not(.disabled):active,
 | |
| .btn-theme:not(:disabled):not(.disabled).active,
 | |
| .show > .btn-theme.dropdown-toggle {
 | |
|   color: #fff;
 | |
|   background-color: #352dc9;
 | |
|   border-color: #322bbf;
 | |
| }
 | |
| 
 | |
| .btn-theme:not(:disabled):not(.disabled):active:focus,
 | |
| .btn-theme:not(:disabled):not(.disabled).active:focus,
 | |
| .show > .btn-theme.dropdown-toggle:focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(113, 107, 222, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-outline-theme {
 | |
|   color: #5851D8;
 | |
|   border-color: #5851D8;
 | |
| }
 | |
| 
 | |
| .btn-outline-theme:hover {
 | |
|   color: #fff;
 | |
|   background-color: #5851D8;
 | |
|   border-color: #5851D8;
 | |
| }
 | |
| 
 | |
| .btn-outline-theme:focus,
 | |
| .btn-outline-theme.focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(88, 81, 216, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-outline-theme.disabled,
 | |
| .btn-outline-theme:disabled {
 | |
|   color: #5851D8;
 | |
|   background-color: transparent;
 | |
| }
 | |
| 
 | |
| .btn-outline-theme:not(:disabled):not(.disabled):active,
 | |
| .btn-outline-theme:not(:disabled):not(.disabled).active,
 | |
| .show > .btn-outline-theme.dropdown-toggle {
 | |
|   color: #fff;
 | |
|   background-color: #5851D8;
 | |
|   border-color: #5851D8;
 | |
| }
 | |
| 
 | |
| .btn-outline-theme:not(:disabled):not(.disabled):active:focus,
 | |
| .btn-outline-theme:not(:disabled):not(.disabled).active:focus,
 | |
| .show > .btn-outline-theme.dropdown-toggle:focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(88, 81, 216, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-theme-light {
 | |
|   color: #fff;
 | |
|   background-color: #817AE3;
 | |
|   border-color: #817AE3;
 | |
| }
 | |
| 
 | |
| .btn-theme-light:hover {
 | |
|   color: #fff;
 | |
|   background-color: #635adc;
 | |
|   border-color: #5950da;
 | |
| }
 | |
| 
 | |
| .btn-theme-light:focus,
 | |
| .btn-theme-light.focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(148, 142, 231, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-theme-light.disabled,
 | |
| .btn-theme-light:disabled {
 | |
|   color: #fff;
 | |
|   background-color: #817AE3;
 | |
|   border-color: #817AE3;
 | |
| }
 | |
| 
 | |
| .btn-theme-light:not(:disabled):not(.disabled):active,
 | |
| .btn-theme-light:not(:disabled):not(.disabled).active,
 | |
| .show > .btn-theme-light.dropdown-toggle {
 | |
|   color: #fff;
 | |
|   background-color: #5950da;
 | |
|   border-color: #4f45d8;
 | |
| }
 | |
| 
 | |
| .btn-theme-light:not(:disabled):not(.disabled):active:focus,
 | |
| .btn-theme-light:not(:disabled):not(.disabled).active:focus,
 | |
| .show > .btn-theme-light.dropdown-toggle:focus {
 | |
|   box-shadow: 0 0 0 0.2rem rgba(148, 142, 231, 0.5);
 | |
| }
 | |
| 
 | |
| .btn-rounded {
 | |
|   border-radius: 20px;
 | |
| }
 | |
| 
 | |
| .btn i {
 | |
|   width: 1.2em;
 | |
|   text-align: left;
 | |
| }
 | |
| 
 | |
| .btn-icon {
 | |
|   padding: 0.6rem;
 | |
|   line-height: 1em;
 | |
| }
 | |
| 
 | |
| .btn-icon i {
 | |
|   text-align: center;
 | |
| }
 | |
| 
 | |
| .btn-xs {
 | |
|   font-size: 12px;
 | |
|   padding: 3px 10px;
 | |
| }
 | |
| 
 | |
| .btn-full {
 | |
|   width: 100%;
 | |
| }
 | |
| 
 | |
| .ladda-button {
 | |
|   overflow: visible !important;
 | |
| }
 | |
| 
 | |
| .btn-success,
 | |
| .btn-warning,
 | |
| .btn-info {
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .btn-success:hover,
 | |
| .btn-warning:hover,
 | |
| .btn-info:hover {
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .btn-group .btn-group .dropdown-group .btn {
 | |
|   border-top-left-radius: 0;
 | |
|   border-bottom-left-radius: 0;
 | |
| }
 | |
| 
 | |
| .btn-group .btn-group .dropdown-group .btn-group:not(:last-child) > .btn {
 | |
|   border-top-right-radius: 0;
 | |
|   border-bottom-right-radius: 0;
 | |
| }
 | |
| 
 | |
| .btn-group-vertical > .btn-group:not(:last-child) .dropdown-group .btn {
 | |
|   border-bottom-right-radius: 0;
 | |
|   border-bottom-left-radius: 0;
 | |
| }
 | |
| 
 | |
| .btn-group-vertical > .btn-group .dropdown-group .btn {
 | |
|   border-top-right-radius: 0;
 | |
|   border-top-left-radius: 0;
 | |
| }
 | |
| 
 | |
| .btn-crater {
 | |
|   width: 148px;
 | |
|   height: 45px;
 | |
|   border-radius: 5px;
 | |
|   font-family: poppins;
 | |
|   font-weight: 600;
 | |
|   font-size: 15px;
 | |
| }
 | |
| 
 | |
| .btn-crater .btn-label {
 | |
|   margin: 0 0 0 0;
 | |
| }
 | |
| 
 | |
| .btn-crater:focus {
 | |
|   outline: 10px auto #817AE3;
 | |
| }
 | |
| 
 | |
| .btn-crater:disabled {
 | |
|   opacity: 0.5;
 | |
| }
 | |
| 
 | |
| .btn-crater-default {
 | |
|   color: #FFFFFF;
 | |
|   background: #5851D8;
 | |
|   border: 1px solid #5851D8;
 | |
| }
 | |
| 
 | |
| .btn-crater-default .icon-fa-spinner {
 | |
|   color: #ffffff;
 | |
| }
 | |
| 
 | |
| .btn-crater-default:hover {
 | |
|   background: #635BF2;
 | |
| }
 | |
| 
 | |
| .btn-crater-hollow {
 | |
|   border: 1px solid #5851D8;
 | |
|   color: #5851D8;
 | |
|   background: #ffffff;
 | |
| }
 | |
| 
 | |
| .btn-crater-hollow .icon-fa-spinner {
 | |
|   color: #5851D8;
 | |
| }
 | |
| 
 | |
| .btn-crater-hollow:hover {
 | |
|   opacity: 0.9;
 | |
|   color: #5851D8;
 | |
| }
 | |
| 
 | |
| .form-control:focus {
 | |
|   border-color: #ffde00;
 | |
|   outline: 0;
 | |
|   box-shadow: 0 0 0 0.2rem #ffde0029;
 | |
| }
 | |
| 
 | |
| .card {
 | |
|   margin-bottom: 1.5rem;
 | |
|   border: none;
 | |
|   box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
 | |
| }
 | |
| 
 | |
| .card .card-header {
 | |
|   position: relative;
 | |
|   border-bottom: 1px solid #EBF1FA;
 | |
| }
 | |
| 
 | |
| .card .card-header::after {
 | |
|   display: block;
 | |
|   clear: both;
 | |
|   content: "";
 | |
| }
 | |
| 
 | |
| .card .card-header i {
 | |
|   width: 1.3em;
 | |
| }
 | |
| 
 | |
| .card .card-header h6 {
 | |
|   font-size: 1rem;
 | |
|   font-weight: normal;
 | |
|   margin: 0;
 | |
| }
 | |
| 
 | |
| .card .card-header h3 {
 | |
|   font-weight: normal;
 | |
|   margin: 0;
 | |
|   font-size: 1.25rem;
 | |
| }
 | |
| 
 | |
| .card .card-header h5 {
 | |
|   margin: 0;
 | |
|   font-weight: normal;
 | |
| }
 | |
| 
 | |
| .card .card-header.bg-dark {
 | |
|   background-color: #55547A;
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .card .card-header .caption {
 | |
|   display: inline-block;
 | |
|   padding: 8px 0;
 | |
| }
 | |
| 
 | |
| .card .card-header .actions {
 | |
|   float: right;
 | |
|   margin: auto;
 | |
| }
 | |
| 
 | |
| .card .card-body {
 | |
|   padding: 30px;
 | |
| }
 | |
| 
 | |
| .card .section-semi-title {
 | |
|   font-size: 1.1rem;
 | |
|   text-transform: uppercase;
 | |
|   font-weight: 400;
 | |
| }
 | |
| 
 | |
| .card .card-footer {
 | |
|   background-color: #fff;
 | |
| }
 | |
| 
 | |
| .card.with-tabs .card-header {
 | |
|   padding: 0;
 | |
| }
 | |
| 
 | |
| .card.with-tabs .card-header .caption {
 | |
|   padding: 20px;
 | |
| }
 | |
| 
 | |
| .card.with-tabs .card-header .actions {
 | |
|   padding-right: 20px;
 | |
| }
 | |
| 
 | |
| .card.with-tabs .card-header .nav-tabs {
 | |
|   border-bottom: none;
 | |
| }
 | |
| 
 | |
| .card.with-tabs .card-header .nav-link {
 | |
|   padding: 1em 1.5em;
 | |
| }
 | |
| 
 | |
| .card .bg-primary h3,
 | |
| .card .bg-primary h5,
 | |
| .card .bg-primary h6,
 | |
| .card .bg-info h3,
 | |
| .card .bg-info h5,
 | |
| .card .bg-info h6,
 | |
| .card .bg-primary h3,
 | |
| .card .bg-primary h5,
 | |
| .card .bg-primary h6,
 | |
| .card .bg-dark h3,
 | |
| .card .bg-dark h5,
 | |
| .card .bg-dark h6,
 | |
| .card .bg-success h3,
 | |
| .card .bg-success h5,
 | |
| .card .bg-success h6,
 | |
| .card .bg-danger h3,
 | |
| .card .bg-danger h5,
 | |
| .card .bg-danger h6,
 | |
| .card .bg-warning h3,
 | |
| .card .bg-warning h5,
 | |
| .card .bg-warning h6 {
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| @media (max-width: 992px) {
 | |
|   .card .card-body {
 | |
|     padding: 15px;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .tabs .tab-content {
 | |
|   margin-top: 1.2rem;
 | |
| }
 | |
| 
 | |
| .tabs-default .nav-link.active {
 | |
|   background-color: #55547A;
 | |
|   color: #5851D8;
 | |
| }
 | |
| 
 | |
| .tabs-default .nav-link.active:hover,
 | |
| .tabs-default .nav-link.active:active,
 | |
| .tabs-default .nav-link.active:focus {
 | |
|   background-color: #55547A;
 | |
|   color: #5851D8;
 | |
| }
 | |
| 
 | |
| .tabs-default .nav-link:hover {
 | |
|   border: 1px solid #55547A;
 | |
| }
 | |
| 
 | |
| .tabs-default .nav-tabs {
 | |
|   border-bottom: 1px solid #55547A;
 | |
| }
 | |
| 
 | |
| .tabs-primary .nav-link.active {
 | |
|   background-color: #5851D8;
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .tabs-primary .nav-link.active:hover,
 | |
| .tabs-primary .nav-link.active:active,
 | |
| .tabs-primary .nav-link.active:focus {
 | |
|   background-color: #5851D8;
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .tabs-primary .nav-link:hover {
 | |
|   border: 1px solid #5851D8;
 | |
| }
 | |
| 
 | |
| .tabs-primary .nav-tabs {
 | |
|   border-bottom: 1px solid #5851D8;
 | |
| }
 | |
| 
 | |
| .tabs-simple .nav-link {
 | |
|   border: 0;
 | |
|   background-color: transparent;
 | |
|   border-radius: 0;
 | |
|   color: #263B5E;
 | |
| }
 | |
| 
 | |
| .tabs-simple .nav-link:hover,
 | |
| .tabs-simple .nav-link:active,
 | |
| .tabs-simple .nav-link:focus {
 | |
|   border-bottom: 3px solid #5851D8;
 | |
|   border-color: #d0cef4;
 | |
| }
 | |
| 
 | |
| .tabs-simple .nav-link.active {
 | |
|   background-color: transparent;
 | |
|   border-bottom: 3px solid #5851D8;
 | |
|   color: #040405;
 | |
| }
 | |
| 
 | |
| .tabs-simple .nav-link.active:hover,
 | |
| .tabs-simple .nav-link.active:active,
 | |
| .tabs-simple .nav-link.active:focus {
 | |
|   border-bottom: 3px solid #5851D8;
 | |
|   border-color: #5851D8;
 | |
|   color: #040405;
 | |
| }
 | |
| 
 | |
| .tabs-vertical::after {
 | |
|   display: block;
 | |
|   clear: both;
 | |
|   content: "";
 | |
| }
 | |
| 
 | |
| .tabs-vertical .nav-tabs {
 | |
|   float: left;
 | |
|   border-right: 1px solid #55547A;
 | |
|   border-bottom: none;
 | |
|   overflow: hidden;
 | |
|   margin-right: 1.2rem;
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| .tabs-vertical .nav-tabs li {
 | |
|   float: none;
 | |
|   margin-right: -1px;
 | |
|   margin-bottom: 0;
 | |
| }
 | |
| 
 | |
| .tabs-vertical .nav-tabs li a {
 | |
|   margin-right: 0;
 | |
|   border-radius: 4px 0 0 4px;
 | |
|   margin-bottom: 0.2rem;
 | |
|   background-color: #fff;
 | |
|   border-color: transparent;
 | |
|   border-right-color: #55547A;
 | |
| }
 | |
| 
 | |
| .tabs-vertical .nav-tabs li a:hover,
 | |
| .tabs-vertical .nav-tabs li a:active,
 | |
| .tabs-vertical .nav-tabs li a:focus {
 | |
|   background-color: #fff;
 | |
|   border-color: #55547A;
 | |
| }
 | |
| 
 | |
| .tabs-vertical .nav-tabs li a.active {
 | |
|   background-color: #55547A;
 | |
|   color: #5851D8;
 | |
| }
 | |
| 
 | |
| .tabs-vertical .nav-tabs li a.active:hover,
 | |
| .tabs-vertical .nav-tabs li a.active:active,
 | |
| .tabs-vertical .nav-tabs li a.active:focus {
 | |
|   background-color: #55547A;
 | |
|   color: #5851D8;
 | |
| }
 | |
| 
 | |
| .tabs-vertical.tabs-primary .nav-tabs {
 | |
|   border-right: 1px solid #5851D8;
 | |
| }
 | |
| 
 | |
| .tabs-vertical.tabs-primary .nav-tabs li a {
 | |
|   border-right-color: #5851D8;
 | |
| }
 | |
| 
 | |
| .tabs-vertical.tabs-primary .nav-tabs li a:hover,
 | |
| .tabs-vertical.tabs-primary .nav-tabs li a:active,
 | |
| .tabs-vertical.tabs-primary .nav-tabs li a:focus {
 | |
|   background-color: #fff;
 | |
|   border-color: #5851D8;
 | |
| }
 | |
| 
 | |
| .tabs-vertical.tabs-primary .nav-tabs li a.active {
 | |
|   background-color: #5851D8;
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .tabs-vertical.tabs-primary .nav-tabs li a.active:hover,
 | |
| .tabs-vertical.tabs-primary .nav-tabs li a.active:active,
 | |
| .tabs-vertical.tabs-primary .nav-tabs li a.active:focus {
 | |
|   background-color: #5851D8;
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .tabs-vertical.tabs-simple .nav-tabs {
 | |
|   border-right: 1px solid #ddd;
 | |
| }
 | |
| 
 | |
| .tabs-vertical.tabs-simple .nav-tabs li {
 | |
|   margin: 0;
 | |
| }
 | |
| 
 | |
| .tabs-vertical.tabs-simple .nav-tabs li a {
 | |
|   background: transparent;
 | |
|   border-right: 3px solid transparent;
 | |
|   border-radius: 0;
 | |
| }
 | |
| 
 | |
| .tabs-vertical.tabs-simple .nav-tabs li a.active {
 | |
|   border-bottom: 0;
 | |
|   color: #040405;
 | |
|   border-right: 3px solid #5851D8;
 | |
|   background: transparent;
 | |
| }
 | |
| 
 | |
| .tabs-vertical.tabs-simple .nav-tabs li a:hover,
 | |
| .tabs-vertical.tabs-simple .nav-tabs li a:active,
 | |
| .tabs-vertical.tabs-simple .nav-tabs li a:focus {
 | |
|   background-color: transparent;
 | |
|   border-right: 3px solid #5851D8;
 | |
|   border-bottom: 0;
 | |
| }
 | |
| 
 | |
| .panel {
 | |
|   background-color: #fff;
 | |
|   border: 1px solid transparent;
 | |
|   border-radius: 4px;
 | |
|   box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
 | |
| }
 | |
| 
 | |
| .panel .panel-heading a {
 | |
|   text-decoration: none;
 | |
| }
 | |
| 
 | |
| .panel .panel-title {
 | |
|   display: block;
 | |
|   padding: 1rem 1.25rem;
 | |
| }
 | |
| 
 | |
| .panel .panel-content {
 | |
|   padding: 0 1.25rem;
 | |
| }
 | |
| 
 | |
| .panel-group .panel + .panel {
 | |
|   margin-top: 10px;
 | |
| }
 | |
| 
 | |
| .tabs {
 | |
|   width: 100%;
 | |
|   padding-left: 0px;
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
|   list-style: none;
 | |
|   border-bottom: 2px solid #EBF1FA;
 | |
| }
 | |
| 
 | |
| .tab {
 | |
|   display: block;
 | |
|   padding: 10px 30px;
 | |
|   color: #A5ACC1;
 | |
|   font-style: normal;
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
|   position: relative;
 | |
|   white-space: nowrap;
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .tab .tab-link {
 | |
|   color: #A5ACC1;
 | |
| }
 | |
| 
 | |
| .tab::after {
 | |
|   width: 100%;
 | |
|   background: #A5ACC1;
 | |
|   position: absolute;
 | |
|   content: "";
 | |
|   bottom: -2px;
 | |
|   left: 0;
 | |
|   height: 3px;
 | |
|   opacity: 0;
 | |
|   transition: 0.3s;
 | |
| }
 | |
| 
 | |
| .tab:hover::after {
 | |
|   display: block;
 | |
|   content: "";
 | |
|   opacity: 1;
 | |
| }
 | |
| 
 | |
| .tab .a-active {
 | |
|   font-weight: 500;
 | |
|   color: #263B5E !important;
 | |
| }
 | |
| 
 | |
| .tab .a-active::after {
 | |
|   height: 3px;
 | |
|   display: block;
 | |
|   width: 100%;
 | |
|   background: #5851D8;
 | |
|   position: absolute;
 | |
|   content: "";
 | |
|   bottom: -2px;
 | |
|   left: 0;
 | |
| }
 | |
| 
 | |
| .tab .router-link-exact-active.active::after {
 | |
|   height: 3px;
 | |
|   display: block;
 | |
|   width: 100%;
 | |
|   background: #5851D8;
 | |
|   position: absolute;
 | |
|   content: "";
 | |
|   bottom: -2px;
 | |
|   left: 0;
 | |
| }
 | |
| 
 | |
| .tab .router-link-exact-active.active {
 | |
|   font-weight: 500;
 | |
|   color: #263B5E !important;
 | |
| }
 | |
| 
 | |
| .table th,
 | |
| .table td {
 | |
|   color: #040405;
 | |
|   font-weight: 300;
 | |
|   border-top: none;
 | |
|   font-size: 15px;
 | |
|   vertical-align: middle;
 | |
| }
 | |
| 
 | |
| .table td {
 | |
|   border-right: 0;
 | |
|   border-left: 0;
 | |
| }
 | |
| 
 | |
| .table th {
 | |
|   text-transform: uppercase;
 | |
|   white-space: nowrap;
 | |
|   font-size: 14px;
 | |
|   font-weight: 500;
 | |
|   position: relative;
 | |
|   color: #263B5E;
 | |
|   letter-spacing: 0.3px;
 | |
| }
 | |
| 
 | |
| .table .table__actions {
 | |
|   display: flex;
 | |
| }
 | |
| 
 | |
| .table .table__actions .btn {
 | |
|   padding: 2px 0.5rem;
 | |
| }
 | |
| 
 | |
| .table .table__actions a:not(:last-child) {
 | |
|   border-right: 1px solid #d9d9d9;
 | |
|   margin-right: 8px;
 | |
|   padding-right: 8px;
 | |
| }
 | |
| 
 | |
| .table thead th {
 | |
|   border: 0;
 | |
|   position: relative;
 | |
|   top: 25px;
 | |
| }
 | |
| 
 | |
| .table .table-component__table__body {
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| .table .table-component__table__body tr:first-child td {
 | |
|   border-top: 0;
 | |
| }
 | |
| 
 | |
| .table .table-component__table__body tr {
 | |
|   border-radius: 10px;
 | |
|   transition: all ease-in-out 0.2s;
 | |
| }
 | |
| 
 | |
| .table .table-component__table__body tr:hover {
 | |
|   box-shadow: 0px 5px 15px 2px rgba(0, 0, 0, 0.03);
 | |
| }
 | |
| 
 | |
| .table .table-component__table__body td {
 | |
|   font-size: 15px;
 | |
|   padding: 25px 15px;
 | |
|   height: 80px;
 | |
|   background: #ffffff;
 | |
| }
 | |
| 
 | |
| .table .table-component__table__body td:first-child {
 | |
|   border-top-left-radius: 10px;
 | |
|   border-bottom-left-radius: 10px;
 | |
| }
 | |
| 
 | |
| .table .table-component__table__body td:last-child {
 | |
|   border-top-right-radius: 10px;
 | |
|   border-bottom-right-radius: 10px;
 | |
| }
 | |
| 
 | |
| .table td.primary {
 | |
|   font-weight: 400;
 | |
|   font-size: 16px;
 | |
| }
 | |
| 
 | |
| .table .action-dropdown .dropdown-container {
 | |
|   margin: 10px 5px 0 0;
 | |
|   box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px;
 | |
|   border: none;
 | |
| }
 | |
| 
 | |
| .table .action-dropdown .dropdown-item {
 | |
|   justify-content: space-between;
 | |
|   color: #040405;
 | |
|   padding: 10px 20px;
 | |
| }
 | |
| 
 | |
| .card-body .table {
 | |
|   margin-top: -10px;
 | |
| }
 | |
| 
 | |
| .card-body .table th {
 | |
|   border-top: none;
 | |
| }
 | |
| 
 | |
| .table-component {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
|   position: relative;
 | |
|   margin-top: -25px;
 | |
|   min-height: 300px;
 | |
| }
 | |
| 
 | |
| .table-component__filter {
 | |
|   align-self: flex-end;
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| .table-component__filter__field {
 | |
|   padding: 0.15em 1.25em 0.15em 0.75em;
 | |
|   border: solid 1px #e0e0e0;
 | |
|   font-size: 15px;
 | |
|   border-radius: 3px;
 | |
| }
 | |
| 
 | |
| .table-component__filter__clear {
 | |
|   position: absolute;
 | |
|   top: 0;
 | |
|   right: 0;
 | |
|   bottom: 0;
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
|   justify-content: center;
 | |
|   width: 2em;
 | |
|   color: #007593;
 | |
|   font-weight: bold;
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .table-component__filter__field:focus {
 | |
|   outline: 0;
 | |
|   border-color: #5851D8;
 | |
| }
 | |
| 
 | |
| .table-component__table-wrapper {
 | |
|   width: 100%;
 | |
| }
 | |
| 
 | |
| .table-component__table {
 | |
|   min-width: 100%;
 | |
|   border-collapse: separate;
 | |
|   table-layout: auto;
 | |
|   margin-bottom: 0;
 | |
|   border-spacing: 0 15px;
 | |
| }
 | |
| 
 | |
| .table-component__table__caption {
 | |
|   position: absolute;
 | |
|   top: auto;
 | |
|   left: -10000px;
 | |
|   overflow: hidden;
 | |
|   width: 1px;
 | |
|   height: 1px;
 | |
| }
 | |
| 
 | |
| .table-component__table th,
 | |
| .table-component__table td {
 | |
|   padding: 0.75em 1.25em;
 | |
|   vertical-align: top;
 | |
|   text-align: left;
 | |
| }
 | |
| 
 | |
| .table-component__message {
 | |
|   color: #999;
 | |
|   text-align: center;
 | |
|   padding-top: 10px;
 | |
| }
 | |
| 
 | |
| .table-component__th--sort,
 | |
| .table-component__th--sort-asc,
 | |
| .table-component__th--sort-desc {
 | |
|   cursor: pointer;
 | |
|   -webkit-user-select: none;
 | |
|      -moz-user-select: none;
 | |
|       -ms-user-select: none;
 | |
|           user-select: none;
 | |
| }
 | |
| 
 | |
| .table-component__th--sort-asc:after,
 | |
| .table-component__th--sort-desc:after {
 | |
|   position: absolute;
 | |
|   left: 0.25em;
 | |
|   display: inline-block;
 | |
|   color: #bbb;
 | |
| }
 | |
| 
 | |
| .table-component__th--sort-asc:after {
 | |
|   content: "\2191";
 | |
| }
 | |
| 
 | |
| .table-component__th--sort-desc:after {
 | |
|   content: "\2193";
 | |
| }
 | |
| 
 | |
| .table-component .pagination {
 | |
|   justify-content: flex-end !important;
 | |
|   margin-top: 10px;
 | |
| }
 | |
| 
 | |
| .table-component .pagination .page-item {
 | |
|   overflow: hidden;
 | |
| }
 | |
| 
 | |
| .table-component .pagination .page-item.active .page-link {
 | |
|   color: #fff !important;
 | |
| }
 | |
| 
 | |
| .table-component .pagination a i {
 | |
|   display: block;
 | |
|   padding: 0.5rem 0.75rem;
 | |
|   margin-left: -1px;
 | |
|   line-height: 1.25;
 | |
|   background-color: #fff;
 | |
|   border: 1px solid #dee2e6;
 | |
|   font-style: normal;
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .table-component .pagination a.disabled i {
 | |
|   color: #d9d9d9;
 | |
|   pointer-events: none;
 | |
|   cursor: auto;
 | |
| }
 | |
| 
 | |
| table.full-width {
 | |
|   width: 100%;
 | |
| }
 | |
| 
 | |
| .table-actions {
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
|   justify-content: space-between;
 | |
|   list-style: none;
 | |
|   border-bottom: 2px solid #EBF1FA;
 | |
|   height: 40px;
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| .table-actions .table-actions-button {
 | |
|   display: block;
 | |
|   font-weight: 500;
 | |
|   cursor: pointer;
 | |
|   color: #817AE3;
 | |
|   -webkit-user-select: none;
 | |
|      -moz-user-select: none;
 | |
|       -ms-user-select: none;
 | |
|           user-select: none;
 | |
| }
 | |
| 
 | |
| .table-actions .table-actions-button::after {
 | |
|   vertical-align: 0.1em;
 | |
| }
 | |
| 
 | |
| .table-actions .dropdown-group.active .dropdown-container {
 | |
|   z-index: 10;
 | |
| }
 | |
| 
 | |
| .table-actions .table-stats {
 | |
|   margin: 0;
 | |
| }
 | |
| 
 | |
| .selectall {
 | |
|   position: absolute;
 | |
|   cursor: pointer;
 | |
|   top: 47px;
 | |
|   left: 35px;
 | |
|   z-index: 10;
 | |
| }
 | |
| 
 | |
| .table-component td > span:first-child {
 | |
|   background: #EBF1FA;
 | |
|   color: #55547A;
 | |
|   display: none;
 | |
|   font-size: 10px;
 | |
|   font-weight: bold;
 | |
|   padding: 5px;
 | |
|   left: 0;
 | |
|   position: absolute;
 | |
|   text-transform: uppercase;
 | |
|   top: 0;
 | |
| }
 | |
| 
 | |
| .select-all-label {
 | |
|   display: none !important;
 | |
| }
 | |
| 
 | |
| @media (max-width: 768px) {
 | |
|   .select-all-label {
 | |
|     display: inline !important;
 | |
|     color: #55547A;
 | |
|     cursor: pointer;
 | |
|   }
 | |
| 
 | |
|   .selectall {
 | |
|     top: 20px;
 | |
|   }
 | |
| 
 | |
|   .table-component .dropdown-group {
 | |
|     position: absolute;
 | |
|     visibility: visible;
 | |
|     top: 15px;
 | |
|     right: 10px;
 | |
|   }
 | |
| 
 | |
|   .table-component thead {
 | |
|     left: -9999px;
 | |
|     position: absolute;
 | |
|     visibility: hidden;
 | |
|   }
 | |
| 
 | |
|   .table-component tr {
 | |
|     display: flex;
 | |
|     flex-direction: row;
 | |
|     flex-wrap: wrap;
 | |
|     margin-top: 50px;
 | |
|     position: relative;
 | |
|   }
 | |
| 
 | |
|   .table-component td {
 | |
|     margin: 0 -1px -1px 0;
 | |
|     padding-top: 40px !important;
 | |
|     position: relative;
 | |
|     width: 50%;
 | |
|     left: 0;
 | |
|     border: 1px solid #EBF1FA !important;
 | |
|   }
 | |
| 
 | |
|   .table-component td:not(:first-child) {
 | |
|     text-align: center !important;
 | |
|   }
 | |
| 
 | |
|   .table-component td:first-child {
 | |
|     display: flex;
 | |
|     justify-content: space-between;
 | |
|     flex: 1 100%;
 | |
|     height: 50px;
 | |
|     padding-top: 25px !important;
 | |
|     align-items: center;
 | |
|     border-bottom-left-radius: 0px !important;
 | |
|     border-top-left-radius: 5px !important;
 | |
|     border-top-right-radius: 5px !important;
 | |
|   }
 | |
| 
 | |
|   .table-component td:last-child {
 | |
|     position: unset;
 | |
|     visibility: hidden;
 | |
|     height: 0px !important;
 | |
|     padding: 0px !important;
 | |
|   }
 | |
| 
 | |
|   .table-component td:nth-last-child(3) {
 | |
|     border-bottom-left-radius: 5px !important;
 | |
|   }
 | |
| 
 | |
|   .table-component td:nth-last-child(2) {
 | |
|     border-bottom-right-radius: 5px !important;
 | |
|   }
 | |
| 
 | |
|   .table-component td > span:first-child {
 | |
|     display: block;
 | |
|   }
 | |
| 
 | |
|   .table-component .dropdown-container {
 | |
|     right: 0;
 | |
|     left: 120px;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .hamburger {
 | |
|   display: inline-block;
 | |
|   cursor: pointer;
 | |
|   transition-property: opacity, -webkit-filter;
 | |
|   transition-property: opacity, filter;
 | |
|   transition-property: opacity, filter, -webkit-filter;
 | |
|   transition-duration: 0.15s;
 | |
|   transition-timing-function: linear;
 | |
|   font: inherit;
 | |
|   color: inherit;
 | |
|   text-transform: none;
 | |
|   background-color: transparent;
 | |
|   border: 0;
 | |
|   margin: 0;
 | |
|   overflow: visible;
 | |
| }
 | |
| 
 | |
| .hamburger-box {
 | |
|   width: 24px;
 | |
|   height: 24px;
 | |
|   display: inline-block;
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| .hamburger-inner {
 | |
|   display: block;
 | |
|   top: 50%;
 | |
|   left: 4.5px;
 | |
|   right: 4.5px;
 | |
|   margin-top: -2px;
 | |
| }
 | |
| 
 | |
| .hamburger-inner,
 | |
| .hamburger-inner::before,
 | |
| .hamburger-inner::after {
 | |
|   height: 2px;
 | |
|   background-color: #fff;
 | |
|   border-radius: 2px;
 | |
|   position: absolute;
 | |
|   transition-property: transform;
 | |
|   transition-duration: 0.15s;
 | |
|   transition-timing-function: ease;
 | |
| }
 | |
| 
 | |
| .hamburger-inner::before,
 | |
| .hamburger-inner::after {
 | |
|   content: "";
 | |
|   display: block;
 | |
|   width: 100%;
 | |
| }
 | |
| 
 | |
| .hamburger-inner::before {
 | |
|   top: -5px;
 | |
| }
 | |
| 
 | |
| .hamburger-inner::after {
 | |
|   bottom: -5px;
 | |
| }
 | |
| 
 | |
| .hamburger--arrowturn.is-active .hamburger-inner {
 | |
|   transform: rotate(-180deg);
 | |
| }
 | |
| 
 | |
| .hamburger--arrowturn.is-active .hamburger-inner::before {
 | |
|   transform: translate3d(3px, 1px, 0) rotate(45deg) scale(0.7, 1);
 | |
| }
 | |
| 
 | |
| .hamburger--arrowturn.is-active .hamburger-inner::after {
 | |
|   transform: translate3d(3px, -1px, 0) rotate(-45deg) scale(0.7, 1);
 | |
| }
 | |
| 
 | |
| .fade-enter-active,
 | |
| .fade-leave-active {
 | |
|   transition: opacity 0.2s;
 | |
| }
 | |
| 
 | |
| .fade-enter,
 | |
| .fade-leave-active {
 | |
|   opacity: 0;
 | |
| }
 | |
| 
 | |
| .gauge {
 | |
|   position: relative;
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
| }
 | |
| 
 | |
| .gauge-lg .basic-gauge,
 | |
| .gauge-lg .donut-gauge,
 | |
| .gauge-lg .color-gauge {
 | |
|   height: 250px;
 | |
| }
 | |
| 
 | |
| .gauge-lg .gauge-label {
 | |
|   font-size: 40px;
 | |
| }
 | |
| 
 | |
| .gauge-md .basic-gauge,
 | |
| .gauge-md .donut-gauge,
 | |
| .gauge-md .color-gauge {
 | |
|   height: 180px;
 | |
| }
 | |
| 
 | |
| .gauge-sm .basic-gauge,
 | |
| .gauge-sm .donut-gauge,
 | |
| .gauge-sm .color-gauge {
 | |
|   height: 120px;
 | |
| }
 | |
| 
 | |
| .gauge-sm .gauge-label {
 | |
|   font-size: 20px;
 | |
| }
 | |
| 
 | |
| .gauge-label {
 | |
|   display: inline-block;
 | |
|   position: absolute;
 | |
|   top: 60%;
 | |
|   left: 0px;
 | |
|   width: 100%;
 | |
|   text-align: center;
 | |
|   font-size: 28px;
 | |
|   font-weight: bold;
 | |
| }
 | |
| 
 | |
| .gauge-label.middle-label {
 | |
|   top: 50%;
 | |
|   transform: translateY(-50%);
 | |
| }
 | |
| 
 | |
| .gauge {
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| @media (max-width: 480px) {
 | |
|   .gauge-lg .basic-gauge,
 | |
|   .gauge-lg .donut-gauge,
 | |
|   .gauge-lg .color-gauge {
 | |
|     height: 180px !important;
 | |
|     width: auto !important;
 | |
|   }
 | |
| 
 | |
|   .gauge-lg .gauge-label {
 | |
|     font-size: 28px;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .pace {
 | |
|   -webkit-pointer-events: none;
 | |
|   pointer-events: none;
 | |
|   -webkit-user-select: none;
 | |
|   -moz-user-select: none;
 | |
|   -ms-user-select: none;
 | |
|       user-select: none;
 | |
| }
 | |
| 
 | |
| .pace-inactive {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| .pace .pace-progress {
 | |
|   background: #2a249f;
 | |
|   position: fixed;
 | |
|   z-index: 2000;
 | |
|   top: 0;
 | |
|   right: 100%;
 | |
|   width: 100%;
 | |
|   height: 2px;
 | |
| }
 | |
| 
 | |
| .pace .pace-progress-inner {
 | |
|   display: block;
 | |
|   position: absolute;
 | |
|   right: 0px;
 | |
|   width: 100px;
 | |
|   height: 100%;
 | |
|   box-shadow: 0 0 10px #352dc9, 0 0 5px #352dc9;
 | |
|   opacity: 1;
 | |
|   transform: rotate(3deg) translate(0px, -4px);
 | |
| }
 | |
| 
 | |
| .pace .pace-activity {
 | |
|   display: block;
 | |
|   position: fixed;
 | |
|   z-index: 2000;
 | |
|   top: 15px;
 | |
|   right: 15px;
 | |
|   width: 14px;
 | |
|   height: 14px;
 | |
|   border: solid 2px transparent;
 | |
|   border-top-color: #352dc9;
 | |
|   border-left-color: #352dc9;
 | |
|   border-radius: 10px;
 | |
|   -webkit-animation: pace-spinner 400ms linear infinite;
 | |
|   animation: pace-spinner 400ms linear infinite;
 | |
| }
 | |
| 
 | |
| @-webkit-keyframes pace-spinner {
 | |
|   0% {
 | |
|     transform: rotate(0deg);
 | |
|   }
 | |
| 
 | |
|   100% {
 | |
|     transform: rotate(360deg);
 | |
|   }
 | |
| }
 | |
| 
 | |
| @keyframes pace-spinner {
 | |
|   0% {
 | |
|     transform: rotate(0deg);
 | |
|     transform: rotate(0deg);
 | |
|   }
 | |
| 
 | |
|   100% {
 | |
|     transform: rotate(360deg);
 | |
|     transform: rotate(360deg);
 | |
|   }
 | |
| }
 | |
| 
 | |
| .vue-tabs-demo .card-body .default .tabs-component .tabs-component-tabs {
 | |
|   padding-left: 0px;
 | |
| }
 | |
| 
 | |
| .vue-tabs-demo .card-body .default .suffix {
 | |
|   background-color: #c03;
 | |
|   color: #fff;
 | |
|   margin-left: 0.35em;
 | |
| }
 | |
| 
 | |
| .vue-tabs-demo .card-body .default .prefix {
 | |
|   background-color: #d1e8eb;
 | |
|   color: #0c5174;
 | |
|   margin-right: 0.35em;
 | |
| }
 | |
| 
 | |
| .vue-tabs-demo .card-body .default .prefix,
 | |
| .vue-tabs-demo .card-body .default .suffix {
 | |
|   align-items: center;
 | |
|   border-radius: 1.25rem;
 | |
|   display: flex;
 | |
|   font-size: 0.75rem;
 | |
|   flex-shrink: 0;
 | |
|   height: 1.25rem;
 | |
|   justify-content: center;
 | |
|   line-height: 1.25rem;
 | |
|   min-width: 1.25rem;
 | |
|   padding: 0 0.1em;
 | |
| }
 | |
| 
 | |
| .vue-tabs-demo .card-body .default .tabs-component {
 | |
|   margin: 2em 0;
 | |
| }
 | |
| 
 | |
| .vue-tabs-demo .card-body .default .page-subtitle {
 | |
|   font-size: 1.25rem;
 | |
|   margin-bottom: 1em;
 | |
|   padding-top: 0.25em;
 | |
| }
 | |
| 
 | |
| .suffix {
 | |
|   position: absolute;
 | |
|   right: -0.725em;
 | |
|   top: -0.725em;
 | |
| }
 | |
| 
 | |
| .tabs-component {
 | |
|   margin: 0 !important;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-default .tabs-component-tabs {
 | |
|   padding: 0px;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-default .tabs-component-tab {
 | |
|   border: none;
 | |
|   background-color: none;
 | |
|   border-radius: none;
 | |
|   margin-right: 0.1rem !important;
 | |
|   transform: none;
 | |
|   transition: none;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-default .tabs-component-tab {
 | |
|   margin: 0px;
 | |
|   border: 1px solid transparent;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-default .tabs-component-tab a {
 | |
|   padding: 0.75em 2rem !important;
 | |
|   color: #333333;
 | |
|   font-weight: normal;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-default .tabs-component-tab a:hover {
 | |
|   color: #333333;
 | |
|   text-decoration: none;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-default .tabs-component-tab.is-active {
 | |
|   border: 1px solid #333;
 | |
|   background: #333;
 | |
|   color: #ffde00;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-default .tabs-component-tab.is-active a {
 | |
|   color: #ffde00;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-default .tabs-component-tab:hover {
 | |
|   border: 1px solid #333;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-default .tabs-component-panels {
 | |
|   border-top: 1px solid #333333 !important;
 | |
|   border: none;
 | |
|   position: relative;
 | |
|   border-radius: 0;
 | |
|   padding: 1em 0em !important;
 | |
|   box-shadow: none;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-default.primary .tabs-component-tab a {
 | |
|   color: #333333;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-default.primary .tabs-component-tab.is-active {
 | |
|   border: 1px solid #007dcc;
 | |
|   background: #007dcc;
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-default.primary .tabs-component-tab.is-active a {
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-default.primary .tabs-component-tab:hover {
 | |
|   border: 1px solid #007dcc;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-default.primary .tabs-component-panels {
 | |
|   border-top: 1px solid #007dcc !important;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-vertical {
 | |
|   display: flex !important;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-vertical .tabs-component-tabs {
 | |
|   display: inline-block !important;
 | |
|   border-right: 1px solid #333333 !important;
 | |
|   border-radius: 0;
 | |
|   padding: 0px;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-vertical .tabs-component-tabs .tabs-component-tab {
 | |
|   border: none;
 | |
|   background-color: none;
 | |
|   border-radius: 4px 0 0 4px;
 | |
|   margin-bottom: 0.2rem !important;
 | |
|   transform: none;
 | |
|   transition: none;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-vertical .tabs-component-tabs .tabs-component-tab {
 | |
|   margin: 0px;
 | |
|   border: 1px solid transparent;
 | |
|   border-right: 0;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-vertical .tabs-component-tabs .tabs-component-tab a {
 | |
|   padding: 0.75em 2rem !important;
 | |
|   color: #333333;
 | |
|   font-weight: normal;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-vertical .tabs-component-tabs .tabs-component-tab a:hover {
 | |
|   color: #333333;
 | |
|   text-decoration: none;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-vertical .tabs-component-tabs .tabs-component-tab.is-active {
 | |
|   border: 1px solid transparent;
 | |
|   border-right: 0;
 | |
|   background: #333333;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-vertical .tabs-component-tabs .tabs-component-tab.is-active a {
 | |
|   color: #ffde00;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-vertical .tabs-component-tabs .tabs-component-tab:hover {
 | |
|   border: 1px solid #333333;
 | |
|   border-right: 0;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-vertical .tabs-component-panels {
 | |
|   border: none;
 | |
|   position: relative;
 | |
|   border-radius: 0;
 | |
|   padding: 0em 0em !important;
 | |
|   padding-left: 2em !important;
 | |
|   box-shadow: none;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-vertical.primary .tabs-component-tabs {
 | |
|   border-right: 1px solid #007dcc !important;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-vertical.primary .tabs-component-tabs .tabs-component-tab.is-active {
 | |
|   background: #007dcc;
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-vertical.primary .tabs-component-tabs .tabs-component-tab.is-active a {
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-vertical.primary .tabs-component-tabs .tabs-component-tab:hover {
 | |
|   border: 1px solid #007dcc;
 | |
|   border-right: 0;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-simple .tabs-component-tabs {
 | |
|   padding: 0px;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-simple .tabs-component-tabs .tabs-component-tab {
 | |
|   border: none;
 | |
|   background-color: none;
 | |
|   border-radius: none;
 | |
|   transform: none;
 | |
|   transition: none;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-simple .tabs-component-tabs .tabs-component-tab {
 | |
|   margin: 0px;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-simple .tabs-component-tabs .tabs-component-tab a {
 | |
|   padding: 0.75em 2rem !important;
 | |
|   color: #333333;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-simple .tabs-component-tabs .tabs-component-tab a:hover {
 | |
|   color: #333333;
 | |
|   outline: none;
 | |
|   border-bottom: 3px solid #fff299;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-simple .tabs-component-tabs .tabs-component-tab.is-active {
 | |
|   border-bottom: 3px solid #ffde00;
 | |
|   color: #333;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-simple .tabs-component-tabs .tabs-component-tab.is-active a:hover {
 | |
|   border-bottom: none;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-simple .tabs-component-panels {
 | |
|   border-top: 1px solid #ddd !important;
 | |
|   border: none;
 | |
|   position: relative;
 | |
|   border-radius: 0;
 | |
|   padding: 1em 0em !important;
 | |
|   box-shadow: none;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-simple-vertical {
 | |
|   display: flex !important;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-simple-vertical .tabs-component-tabs {
 | |
|   padding: 0px;
 | |
|   display: inline-block !important;
 | |
|   border-bottom: none;
 | |
|   border-right: 1px solid #ddd !important;
 | |
|   border-radius: 0;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-simple-vertical .tabs-component-tabs .tabs-component-tab {
 | |
|   border: none;
 | |
|   background-color: none;
 | |
|   border-radius: none;
 | |
|   transform: none;
 | |
|   transition: none;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-simple-vertical .tabs-component-tabs .tabs-component-tab {
 | |
|   margin: 0px;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-simple-vertical .tabs-component-tabs .tabs-component-tab a {
 | |
|   padding: 0.75em 2rem !important;
 | |
|   color: #333333;
 | |
|   border-right: 3px solid transparent;
 | |
|   background: transparent;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-simple-vertical .tabs-component-tabs .tabs-component-tab a:hover {
 | |
|   background-color: transparent;
 | |
|   border-right: 3px solid #fff299;
 | |
|   border-radius: 0;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-simple-vertical .tabs-component-tabs .tabs-component-tab.is-active {
 | |
|   border-right: 3px solid #ffde00;
 | |
|   color: #333;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-simple-vertical .tabs-component-tabs .tabs-component-tab.is-active a:hover {
 | |
|   border-color: transparent;
 | |
| }
 | |
| 
 | |
| .tabs-component.tabs-simple-vertical .tabs-component-panels {
 | |
|   border: none;
 | |
|   position: relative;
 | |
|   border-radius: 0;
 | |
|   padding: 0em 0em !important;
 | |
|   padding-left: 2em !important;
 | |
|   box-shadow: none;
 | |
| }
 | |
| 
 | |
| .tabs-component-tabs {
 | |
|   border: none !important;
 | |
| }
 | |
| 
 | |
| .dropdown-group {
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| .dropdown-group.active .dropdown-container {
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| .dropdown-group .dropdown-container {
 | |
|   position: absolute;
 | |
|   top: 100%;
 | |
|   left: 0;
 | |
|   z-index: 1000;
 | |
|   display: none;
 | |
|   float: left;
 | |
|   min-width: 10rem;
 | |
|   padding: 0.5rem;
 | |
|   margin: 0.125rem 0 0 0.125rem;
 | |
|   font-size: 1rem;
 | |
|   color: #fff;
 | |
|   text-align: left;
 | |
|   list-style: none;
 | |
|   background-color: #040405;
 | |
|   background-clip: padding-box;
 | |
|   border-radius: 0.25rem;
 | |
|   box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
 | |
|   border: none;
 | |
| }
 | |
| 
 | |
| .dropdown-group .dropdown-container.align-right {
 | |
|   right: 0;
 | |
|   left: auto;
 | |
| }
 | |
| 
 | |
| .dropdown-group .dropdown-container .dropdown-group {
 | |
|   display: block;
 | |
|   margin: 0;
 | |
| }
 | |
| 
 | |
| .dropdown-group .dropdown-container .dropdown-group-item .dropdown-item {
 | |
|   display: block;
 | |
|   font-size: 15px;
 | |
|   padding: 8px 12px;
 | |
|   font-weight: 300;
 | |
|   color: #040405;
 | |
|   background-color: transparent;
 | |
|   border-radius: 5px;
 | |
| }
 | |
| 
 | |
| .dropdown-group .dropdown-container .dropdown-group-item .dropdown-item:hover {
 | |
|   background-color: #EBF1FA;
 | |
| }
 | |
| 
 | |
| .dropdown-group .dropdown-container .dropdown-group-item .dropdown-item.active {
 | |
|   color: #5851D8;
 | |
| }
 | |
| 
 | |
| .dropdown-group .dropdown-container .dropdown-group-item .dropdown-item i {
 | |
|   color: #A5ACC1;
 | |
|   margin-right: 5px;
 | |
| }
 | |
| 
 | |
| .dropdown-group .dropdown-container .dropdown-activator {
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| .dropdown-group .dropdown-container .dropdown-activator::after {
 | |
|   content: none !important;
 | |
| }
 | |
| 
 | |
| .dropdown-group .dropdown-container .dropdown-activator::before {
 | |
|   border-color: #fff transparent transparent;
 | |
|   border-style: solid;
 | |
|   border-width: 5px 4px 0;
 | |
|   content: "";
 | |
|   display: block;
 | |
|   height: 0;
 | |
|   position: absolute;
 | |
|   right: 10px;
 | |
|   top: 18px;
 | |
|   transition: all 0.2s ease-in-out;
 | |
|   width: 0;
 | |
|   transform: rotate(90deg);
 | |
| }
 | |
| 
 | |
| .dropdown-group .dropdown-container .dropdown-group.active .dropdown-activator a {
 | |
|   color: #5851D8;
 | |
| }
 | |
| 
 | |
| .dropdown-group .dropdown-container .dropdown-group.active .dropdown-activator::before {
 | |
|   transform: rotate(-90deg);
 | |
|   border-color: #5851D8 transparent transparent;
 | |
| }
 | |
| 
 | |
| .dropdown-group .dropdown-container .dropdown-container {
 | |
|   display: block;
 | |
|   margin: 0;
 | |
|   left: 100%;
 | |
|   top: 0;
 | |
|   position: absolute;
 | |
|   margin: 0.125rem 0.125rem 0;
 | |
| }
 | |
| 
 | |
| .dropdown-group .dropdown-container .dropdown-container.align-right {
 | |
|   right: 100%;
 | |
|   left: auto;
 | |
| }
 | |
| 
 | |
| .dropdown-group .dropdown-container .dropdon-group-item {
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| .dropdown-group .dropdown-item-divider {
 | |
|   border-top: 1px solid #fff;
 | |
|   height: 1px;
 | |
|   margin: 0.5rem 0;
 | |
|   overflow: hidden;
 | |
| }
 | |
| 
 | |
| .dropdown-group.dropdown-light .dropdown-container {
 | |
|   color: #040405;
 | |
|   background-color: #fff;
 | |
|   border: 1px solid #c3c8d6;
 | |
| }
 | |
| 
 | |
| .dropdown-group.dropdown-light .dropdown-container .dropdown-group-item a {
 | |
|   color: #040405;
 | |
| }
 | |
| 
 | |
| .dropdown-group.dropdown-light .dropdown-container .dropdown-group-item a.active {
 | |
|   color: #040405;
 | |
|   background-color: #cfd4df;
 | |
| }
 | |
| 
 | |
| .dropdown-group.dropdown-light .dropdown-container .dropdown-group-item a:hover {
 | |
|   background-color: #cfd4df;
 | |
| }
 | |
| 
 | |
| .dropdown-group.dropdown-light .dropdown-container .dropdown-activator::before {
 | |
|   border-color: #A5ACC1 transparent transparent;
 | |
| }
 | |
| 
 | |
| .dropdown-group.dropdown-light .dropdown-container .dropdown-group.active .dropdown-activator a {
 | |
|   color: #040405;
 | |
|   background-color: #cfd4df;
 | |
| }
 | |
| 
 | |
| .dropdown-group.dropdown-light .dropdown-container .dropdown-group.active .dropdown-activator::before {
 | |
|   border-color: #A5ACC1 transparent transparent;
 | |
| }
 | |
| 
 | |
| .dropdown-group.dropdown-light .dropdown-item-divider {
 | |
|   border-top: 1px solid #040405;
 | |
| }
 | |
| 
 | |
| .dropdown-item .dropdown-item-icon {
 | |
|   width: 20px;
 | |
|   height: 14px;
 | |
|   margin-right: 6px;
 | |
|   color: #55547A;
 | |
| }
 | |
| 
 | |
| .action {
 | |
|   position: absolute;
 | |
|   right: 0;
 | |
|   z-index: 1;
 | |
| }
 | |
| 
 | |
| .action .action-btn {
 | |
|   color: #5851D8;
 | |
|   background: transparent;
 | |
|   border: none;
 | |
| }
 | |
| 
 | |
| .vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day:hover,
 | |
| .vdp-datepicker__calendar .cell:not(.blank):not(.disabled).month:hover,
 | |
| .vdp-datepicker__calendar .cell:not(.blank):not(.disabled).year:hover {
 | |
|   border: 1px solid #5851D8 !important;
 | |
| }
 | |
| 
 | |
| .vdp-datepicker__calendar .cell.selected {
 | |
|   background: #5851D8 !important;
 | |
| }
 | |
| 
 | |
| .vdp-datepicker__calendar .cell.highlighted {
 | |
|   background: #bcb9ef !important;
 | |
| }
 | |
| 
 | |
| fieldset[disabled] .multiselect {
 | |
|   pointer-events: none;
 | |
| }
 | |
| 
 | |
| .in-valid {
 | |
|   border: 1px solid #FB7178 !important;
 | |
| }
 | |
| 
 | |
| .multiselect {
 | |
|   min-height: 40px;
 | |
| }
 | |
| 
 | |
| .multiselect__spinner {
 | |
|   position: absolute;
 | |
|   right: 1px;
 | |
|   top: 1px;
 | |
|   width: 48px;
 | |
|   height: 35px;
 | |
|   background: #fff;
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| .multiselect__spinner:before,
 | |
| .multiselect__spinner:after {
 | |
|   position: absolute;
 | |
|   content: "";
 | |
|   top: 50%;
 | |
|   left: 50%;
 | |
|   margin: -8px 0 0 -8px;
 | |
|   width: 16px;
 | |
|   height: 16px;
 | |
|   border-radius: 100%;
 | |
|   border-color: #41b883 transparent transparent;
 | |
|   border-style: solid;
 | |
|   border-width: 2px;
 | |
|   box-shadow: 0 0 0 1px transparent;
 | |
| }
 | |
| 
 | |
| .multiselect__spinner:before {
 | |
|   -webkit-animation: spinning 2.4s cubic-bezier(0.41, 0.26, 0.2, 0.62);
 | |
|           animation: spinning 2.4s cubic-bezier(0.41, 0.26, 0.2, 0.62);
 | |
|   -webkit-animation-iteration-count: infinite;
 | |
|           animation-iteration-count: infinite;
 | |
| }
 | |
| 
 | |
| .multiselect__spinner:after {
 | |
|   -webkit-animation: spinning 2.4s cubic-bezier(0.51, 0.09, 0.21, 0.8);
 | |
|           animation: spinning 2.4s cubic-bezier(0.51, 0.09, 0.21, 0.8);
 | |
|   -webkit-animation-iteration-count: infinite;
 | |
|           animation-iteration-count: infinite;
 | |
| }
 | |
| 
 | |
| .multiselect__loading-enter-active,
 | |
| .multiselect__loading-leave-active {
 | |
|   transition: opacity 0.4s ease-in-out;
 | |
|   opacity: 1;
 | |
| }
 | |
| 
 | |
| .multiselect__loading-enter,
 | |
| .multiselect__loading-leave-active {
 | |
|   opacity: 0;
 | |
| }
 | |
| 
 | |
| .multiselect,
 | |
| .multiselect__input,
 | |
| .multiselect__single {
 | |
|   font-family: inherit;
 | |
|   font-size: 14px;
 | |
|   touch-action: manipulation;
 | |
| }
 | |
| 
 | |
| .multiselect {
 | |
|   box-sizing: content-box;
 | |
|   display: block;
 | |
|   position: relative;
 | |
|   width: 100%;
 | |
|   min-height: 45px;
 | |
|   text-align: left;
 | |
|   color: #35495e;
 | |
| }
 | |
| 
 | |
| .multiselect * {
 | |
|   box-sizing: border-box;
 | |
| }
 | |
| 
 | |
| .multiselect:focus {
 | |
|   border: 1px solid #817ae3 !important;
 | |
| }
 | |
| 
 | |
| .multiselect--disabled {
 | |
|   pointer-events: none;
 | |
|   opacity: 0.6;
 | |
| }
 | |
| 
 | |
| .multiselect--active {
 | |
|   z-index: 50;
 | |
| }
 | |
| 
 | |
| .multiselect--active:not(.multiselect--above) .multiselect__current,
 | |
| .multiselect--active:not(.multiselect--above) .multiselect__input,
 | |
| .multiselect--active:not(.multiselect--above) .multiselect__tags {
 | |
|   border-bottom-left-radius: 0;
 | |
|   border-bottom-right-radius: 0;
 | |
| }
 | |
| 
 | |
| .multiselect--active .multiselect__select {
 | |
|   transform: rotateZ(180deg);
 | |
| }
 | |
| 
 | |
| .multiselect--above.multiselect--active .multiselect__current,
 | |
| .multiselect--above.multiselect--active .multiselect__input,
 | |
| .multiselect--above.multiselect--active .multiselect__tags {
 | |
|   border-top-left-radius: 0;
 | |
|   border-top-right-radius: 0;
 | |
| }
 | |
| 
 | |
| .multiselect__input,
 | |
| .multiselect__single {
 | |
|   position: relative;
 | |
|   display: inline-block;
 | |
|   min-height: 20px;
 | |
|   line-height: 20px;
 | |
|   border: none;
 | |
|   border-radius: 5px;
 | |
|   background: #fff;
 | |
|   padding: 0 0 0 5px;
 | |
|   width: calc(100%);
 | |
|   transition: border 0.1s ease;
 | |
|   box-sizing: border-box;
 | |
|   vertical-align: top;
 | |
| }
 | |
| 
 | |
| .multiselect__input::-webkit-input-placeholder {
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .multiselect__input::-moz-placeholder {
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .multiselect__input:-ms-input-placeholder {
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .multiselect__input::-ms-input-placeholder {
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .multiselect__input::placeholder {
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .multiselect__tag ~ .multiselect__input,
 | |
| .multiselect__tag ~ .multiselect__single {
 | |
|   width: auto;
 | |
| }
 | |
| 
 | |
| .multiselect__input:hover,
 | |
| .multiselect__single:hover {
 | |
|   border-color: #cfcfcf;
 | |
| }
 | |
| 
 | |
| .multiselect__input:focus,
 | |
| .multiselect__single:focus {
 | |
|   border-color: #a8a8a8;
 | |
|   outline: none;
 | |
| }
 | |
| 
 | |
| .multiselect__single {
 | |
|   padding-left: 5px;
 | |
|   margin-bottom: 8px;
 | |
| }
 | |
| 
 | |
| .multiselect__tags-wrap {
 | |
|   display: inline;
 | |
| }
 | |
| 
 | |
| .multiselect__tags {
 | |
|   min-height: 40px;
 | |
|   display: block;
 | |
|   padding: 8px 40px 0 8px;
 | |
|   border-radius: 5px;
 | |
|   border: 1px solid #EBF1FA;
 | |
|   background: #fff;
 | |
|   font-size: 14px;
 | |
| }
 | |
| 
 | |
| .multiselect__tag {
 | |
|   position: relative;
 | |
|   display: inline-block;
 | |
|   padding: 4px 26px 4px 10px;
 | |
|   border-radius: 5px;
 | |
|   margin-right: 10px;
 | |
|   color: #fff;
 | |
|   line-height: 1;
 | |
|   background: #41b883;
 | |
|   margin-bottom: 5px;
 | |
|   white-space: nowrap;
 | |
|   overflow: hidden;
 | |
|   max-width: 100%;
 | |
|   text-overflow: ellipsis;
 | |
| }
 | |
| 
 | |
| .multiselect__tag-icon {
 | |
|   cursor: pointer;
 | |
|   margin-left: 7px;
 | |
|   position: absolute;
 | |
|   right: 0;
 | |
|   top: 0;
 | |
|   bottom: 0;
 | |
|   font-weight: 700;
 | |
|   font-style: initial;
 | |
|   width: 22px;
 | |
|   text-align: center;
 | |
|   line-height: 22px;
 | |
|   transition: all 0.2s ease;
 | |
|   border-radius: 5px;
 | |
| }
 | |
| 
 | |
| .multiselect__tag-icon:after {
 | |
|   content: "\D7";
 | |
|   color: #266d4d;
 | |
|   font-size: 14px;
 | |
| }
 | |
| 
 | |
| .multiselect__tag-icon:focus,
 | |
| .multiselect__tag-icon:hover {
 | |
|   background: #369a6e;
 | |
| }
 | |
| 
 | |
| .multiselect__tag-icon:focus:after,
 | |
| .multiselect__tag-icon:hover:after {
 | |
|   color: white;
 | |
| }
 | |
| 
 | |
| .multiselect__current {
 | |
|   line-height: 16px;
 | |
|   min-height: 40px;
 | |
|   box-sizing: border-box;
 | |
|   display: block;
 | |
|   overflow: hidden;
 | |
|   padding: 8px 12px 0;
 | |
|   padding-right: 30px;
 | |
|   white-space: nowrap;
 | |
|   margin: 0;
 | |
|   text-decoration: none;
 | |
|   border-radius: 5px;
 | |
|   border: 1px solid #EBF1FA;
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .multiselect__select {
 | |
|   line-height: 20px;
 | |
|   display: block;
 | |
|   position: absolute;
 | |
|   box-sizing: border-box;
 | |
|   width: 30px;
 | |
|   height: 40px;
 | |
|   right: 1px;
 | |
|   top: 1px;
 | |
|   padding: 4px 8px;
 | |
|   margin: 0;
 | |
|   text-decoration: none;
 | |
|   text-align: center;
 | |
|   cursor: pointer;
 | |
|   transition: transform 0.2s;
 | |
| }
 | |
| 
 | |
| .multiselect__select:before {
 | |
|   position: relative;
 | |
|   right: 0;
 | |
|   top: 65%;
 | |
|   color: #A5ACC1;
 | |
|   margin-top: 4px;
 | |
|   border-style: solid;
 | |
|   border-width: 5px 5px 0 5px;
 | |
|   border-color: #A5ACC1 transparent transparent transparent;
 | |
|   content: "";
 | |
| }
 | |
| 
 | |
| .multiselect__placeholder {
 | |
|   color: #B9C1D1;
 | |
|   display: inline-block;
 | |
|   margin-bottom: 10px;
 | |
|   padding-top: 2px;
 | |
| }
 | |
| 
 | |
| .multiselect--active .multiselect__placeholder {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| .multiselect__content-wrapper {
 | |
|   position: absolute;
 | |
|   display: block;
 | |
|   background: #fff;
 | |
|   width: 100%;
 | |
|   max-height: 240px;
 | |
|   overflow: auto;
 | |
|   border: 1px solid #EBF1FA;
 | |
|   border-top: none;
 | |
|   border-bottom-left-radius: 5px;
 | |
|   border-bottom-right-radius: 5px;
 | |
|   z-index: 50;
 | |
|   -webkit-overflow-scrolling: touch;
 | |
| }
 | |
| 
 | |
| .multiselect__content {
 | |
|   list-style: none;
 | |
|   display: inline-block;
 | |
|   padding: 0;
 | |
|   margin: 0;
 | |
|   min-width: 100%;
 | |
|   vertical-align: top;
 | |
| }
 | |
| 
 | |
| .multiselect--above .multiselect__content-wrapper {
 | |
|   bottom: 100%;
 | |
|   border-bottom-left-radius: 0;
 | |
|   border-bottom-right-radius: 0;
 | |
|   border-top-left-radius: 5px;
 | |
|   border-top-right-radius: 5px;
 | |
|   border-bottom: none;
 | |
|   border-top: 1px solid #e8e8e8;
 | |
| }
 | |
| 
 | |
| .multiselect__content::webkit-scrollbar {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| .multiselect__element {
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| .multiselect__option {
 | |
|   display: block;
 | |
|   padding: 12px;
 | |
|   min-height: 40px;
 | |
|   line-height: 16px;
 | |
|   text-decoration: none;
 | |
|   text-transform: none;
 | |
|   vertical-align: middle;
 | |
|   position: relative;
 | |
|   cursor: pointer;
 | |
|   white-space: nowrap;
 | |
| }
 | |
| 
 | |
| .multiselect__option:after {
 | |
|   top: 0;
 | |
|   right: 0;
 | |
|   position: absolute;
 | |
|   line-height: 40px;
 | |
|   padding-right: 12px;
 | |
|   padding-left: 20px;
 | |
|   font-size: 13px;
 | |
| }
 | |
| 
 | |
| .multiselect__option--highlight {
 | |
|   background: #41b883;
 | |
|   outline: none;
 | |
|   color: white;
 | |
| }
 | |
| 
 | |
| .multiselect__option--highlight:after {
 | |
|   content: attr(data-select);
 | |
|   background: #41b883;
 | |
|   color: white;
 | |
| }
 | |
| 
 | |
| .multiselect__option--selected {
 | |
|   background: #f3f3f3;
 | |
|   color: #35495e;
 | |
|   font-weight: bold;
 | |
| }
 | |
| 
 | |
| .multiselect__option--selected:after {
 | |
|   content: attr(data-selected);
 | |
|   color: silver;
 | |
| }
 | |
| 
 | |
| .multiselect__option--selected.multiselect__option--highlight {
 | |
|   background: #ff6a6a;
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .multiselect__option--selected.multiselect__option--highlight:after {
 | |
|   background: #ff6a6a;
 | |
|   content: attr(data-deselect);
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .multiselect--disabled .multiselect__current,
 | |
| .multiselect--disabled .multiselect__select {
 | |
|   background: #EBF1FA;
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .multiselect--disabled .multiselect__tags {
 | |
|   background: #EBF1FA;
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .multiselect--disabled .multiselect__input {
 | |
|   background: #EBF1FA;
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .multiselect__option--disabled {
 | |
|   background: transparent !important;
 | |
|   color: #dddddd !important;
 | |
|   cursor: text;
 | |
|   pointer-events: none;
 | |
| }
 | |
| 
 | |
| .multiselect__option--group {
 | |
|   background: #ededed;
 | |
|   color: #35495e;
 | |
| }
 | |
| 
 | |
| .multiselect__option--group.multiselect__option--highlight {
 | |
|   background: #35495e;
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .multiselect__option--group.multiselect__option--highlight:after {
 | |
|   background: #35495e;
 | |
| }
 | |
| 
 | |
| .multiselect__option--disabled.multiselect__option--highlight {
 | |
|   background: #dedede;
 | |
| }
 | |
| 
 | |
| .multiselect__option--group-selected.multiselect__option--highlight {
 | |
|   background: #ff6a6a;
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .multiselect__option--group-selected.multiselect__option--highlight:after {
 | |
|   background: #ff6a6a;
 | |
|   content: attr(data-deselect);
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .multiselect-enter-active,
 | |
| .multiselect-leave-active {
 | |
|   transition: all 0.15s ease;
 | |
| }
 | |
| 
 | |
| .multiselect-enter,
 | |
| .multiselect-leave-active {
 | |
|   opacity: 0;
 | |
| }
 | |
| 
 | |
| .multiselect__strong {
 | |
|   margin-bottom: 8px;
 | |
|   line-height: 20px;
 | |
|   display: inline-block;
 | |
|   vertical-align: top;
 | |
| }
 | |
| 
 | |
| *[dir=rtl] .multiselect {
 | |
|   text-align: right;
 | |
| }
 | |
| 
 | |
| *[dir=rtl] .multiselect__select {
 | |
|   right: auto;
 | |
|   left: 1px;
 | |
| }
 | |
| 
 | |
| *[dir=rtl] .multiselect__tags {
 | |
|   padding: 8px 8px 0px 40px;
 | |
| }
 | |
| 
 | |
| *[dir=rtl] .multiselect__content {
 | |
|   text-align: right;
 | |
| }
 | |
| 
 | |
| *[dir=rtl] .multiselect__option:after {
 | |
|   right: auto;
 | |
|   left: 0;
 | |
| }
 | |
| 
 | |
| *[dir=rtl] .multiselect__clear {
 | |
|   right: auto;
 | |
|   left: 12px;
 | |
| }
 | |
| 
 | |
| *[dir=rtl] .multiselect__spinner {
 | |
|   right: auto;
 | |
|   left: 1px;
 | |
| }
 | |
| 
 | |
| @-webkit-keyframes spinning {
 | |
|   from {
 | |
|     transform: rotate(0);
 | |
|   }
 | |
| 
 | |
|   to {
 | |
|     transform: rotate(2turn);
 | |
|   }
 | |
| }
 | |
| 
 | |
| @keyframes spinning {
 | |
|   from {
 | |
|     transform: rotate(0);
 | |
|   }
 | |
| 
 | |
|   to {
 | |
|     transform: rotate(2turn);
 | |
|   }
 | |
| }
 | |
| 
 | |
| .multiselect .multiselect__option--highlight {
 | |
|   background: #5851D8;
 | |
|   color: #040405;
 | |
|   font-weight: normal !important;
 | |
| }
 | |
| 
 | |
| .multiselect .multiselect__option--highlight.multiselect__option--selected {
 | |
|   background: #EBF1FA;
 | |
|   color: #040405;
 | |
|   font-size: 1rem;
 | |
|   font-weight: normal !important;
 | |
| }
 | |
| 
 | |
| .multiselect .multiselect__option--highlight.multiselect__option--selected::after {
 | |
|   background: #040405;
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .multiselect .multiselect__option--highlight::after {
 | |
|   background: #040405;
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .multiselect .multiselect__option--selected {
 | |
|   font-weight: normal !important;
 | |
|   background: #EBF1FA;
 | |
| }
 | |
| 
 | |
| .multiselect .multiselect__tags-wrap .multiselect__tag {
 | |
|   background: #5851D8;
 | |
|   color: #040405;
 | |
| }
 | |
| 
 | |
| .multiselect .multiselect__tags-wrap .multiselect__tag .multiselect__tag-icon:hover {
 | |
|   background: #5851D8;
 | |
| }
 | |
| 
 | |
| .multiselect .multiselect__tags-wrap .multiselect__tag .multiselect__tag-icon::after {
 | |
|   color: #040405;
 | |
| }
 | |
| 
 | |
| .multiselect.error {
 | |
|   border: 1px solid #FB7178;
 | |
|   border-radius: 5px;
 | |
| }
 | |
| 
 | |
| .customer-select label {
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .customer-select .main {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
|   width: 100%;
 | |
| }
 | |
| 
 | |
| .customer-select .main .search-bar {
 | |
|   display: flex;
 | |
|   padding: 15px 15px 5px 15px;
 | |
| }
 | |
| 
 | |
| .customer-select .main .search-bar .search-icon {
 | |
|   color: #B9C1D1;
 | |
|   font-size: 14px;
 | |
|   font-weight: 900;
 | |
|   margin: 4px 0 0 0;
 | |
| }
 | |
| 
 | |
| .customer-select .main .no-data-label {
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
|   color: #B9C1D1;
 | |
|   padding: 20px 20px;
 | |
| }
 | |
| 
 | |
| .customer-select .main .no-data-label label {
 | |
|   margin: 0 0 0 0;
 | |
| }
 | |
| 
 | |
| .customer-select .list {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
|   position: relative;
 | |
|   overflow: auto;
 | |
|   max-height: 173px;
 | |
|   min-height: 173px;
 | |
| }
 | |
| 
 | |
| .customer-select .list .list-item {
 | |
|   display: flex;
 | |
|   padding: 10px 23px;
 | |
|   border-bottom: 1px solid rgba(185, 193, 209, 0.41);
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .customer-select .list .avatar {
 | |
|   width: 35px;
 | |
|   height: 35px;
 | |
|   background: #B9C1D1;
 | |
|   border-radius: 50%;
 | |
|   margin: 1px 21px 0 0;
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
|   align-items: center;
 | |
|   font-weight: 600;
 | |
|   font-size: 16px;
 | |
|   line-height: 24px;
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .customer-select .list .name {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
|   justify-content: center;
 | |
| }
 | |
| 
 | |
| .customer-select .list .name .title {
 | |
|   font-size: 16px;
 | |
|   font-family: Poppins;
 | |
|   margin: 0 0 0 0;
 | |
|   line-height: 1.2;
 | |
| }
 | |
| 
 | |
| .customer-select .list .name .sub-title {
 | |
|   font-family: Poppins;
 | |
|   font-weight: 500;
 | |
|   font-size: 12px;
 | |
|   color: #A5ACC1;
 | |
|   letter-spacing: 0.5px;
 | |
|   margin: 0 0 0 0;
 | |
| }
 | |
| 
 | |
| .customer-select .list .list-item:last-child {
 | |
|   border: none;
 | |
| }
 | |
| 
 | |
| .customer-select .list .list-item:hover {
 | |
|   background: #F9FBFF;
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .item-select .main-section {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
|   width: 100%;
 | |
|   padding: 15px 15px 0 15px;
 | |
| }
 | |
| 
 | |
| .item-select .main-section .search-bar {
 | |
|   display: flex;
 | |
|   position: relative;
 | |
|   width: 100%;
 | |
| }
 | |
| 
 | |
| .item-select .main-section .no-data-label {
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
|   color: #B9C1D1;
 | |
|   padding: 20px 20px;
 | |
| }
 | |
| 
 | |
| .item-select .main-section .no-data-label label {
 | |
|   margin: 0 0 0 0;
 | |
| }
 | |
| 
 | |
| .item-select .list {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
|   position: relative;
 | |
|   overflow: auto;
 | |
| }
 | |
| 
 | |
| .item-select .list .list-item {
 | |
|   display: flex;
 | |
|   justify-content: space-between;
 | |
|   padding: 16px 23px;
 | |
|   max-height: 56px;
 | |
|   border-bottom: 1px solid rgba(185, 193, 209, 0.41);
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .item-select .list .list-item .title {
 | |
|   font-size: 16px;
 | |
|   color: black;
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .item-select .list .list-item .price {
 | |
|   font-size: 16px;
 | |
|   color: black;
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .item-select .list .list-item:last-child {
 | |
|   border: none;
 | |
| }
 | |
| 
 | |
| .item-select .list .list-item:hover {
 | |
|   background: #F9FBFF;
 | |
| }
 | |
| 
 | |
| .tax-select .main-section {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
|   width: 100%;
 | |
|   padding: 15px 15px 0 15px;
 | |
| }
 | |
| 
 | |
| .tax-select .search-bar {
 | |
|   display: flex;
 | |
|   position: relative;
 | |
|   width: 100%;
 | |
| }
 | |
| 
 | |
| .tax-select .no-data-label {
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
|   color: #B9C1D1;
 | |
|   padding: 20px 20px;
 | |
| }
 | |
| 
 | |
| .tax-select .no-data-label label {
 | |
|   margin: 0 0 0 0;
 | |
| }
 | |
| 
 | |
| .tax-select .list {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
|   position: relative;
 | |
|   overflow: auto;
 | |
|   max-height: 112px;
 | |
| }
 | |
| 
 | |
| .tax-select .list .list-item {
 | |
|   display: flex;
 | |
|   justify-content: space-between;
 | |
|   padding: 16px;
 | |
|   max-height: 56px;
 | |
|   border-bottom: 1px solid rgba(185, 193, 209, 0.41);
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .tax-select .list .list-item label {
 | |
|   font-size: 16px;
 | |
|   margin: 0;
 | |
|   font-weight: normal;
 | |
|   color: #262630;
 | |
|   line-height: 1.2;
 | |
|   display: inline-block;
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .tax-select .list .list-item:last-child {
 | |
|   border: none;
 | |
| }
 | |
| 
 | |
| .tax-select .list .list-item:hover {
 | |
|   background: #F9FBFF;
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .tax-select .list .item-disabled {
 | |
|   background: #F9FBFF;
 | |
|   cursor: not-allowed !important;
 | |
|   opacity: 0.5;
 | |
|   z-index: -10;
 | |
|   pointer-events: none !important;
 | |
| }
 | |
| 
 | |
| .image-upload-box {
 | |
|   height: 110px;
 | |
|   padding: 20px;
 | |
|   background-color: transparent;
 | |
|   border: 2px dashed #EBF1FA;
 | |
|   border-radius: 5px;
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
|   align-items: center;
 | |
|   position: relative;
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .image-upload-box .preview-logo {
 | |
|   max-height: 50%;
 | |
|   position: absolute;
 | |
| }
 | |
| 
 | |
| .image-upload-box .upload-content {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
|   align-items: center;
 | |
| }
 | |
| 
 | |
| .image-upload-box .upload-text {
 | |
|   font-size: 12px;
 | |
|   line-height: 18px;
 | |
|   text-align: center;
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .image-upload-box .upload-icon {
 | |
|   font-size: 20px;
 | |
|   line-height: 23px;
 | |
|   color: #B9C1D1;
 | |
|   margin-bottom: 10px;
 | |
| }
 | |
| 
 | |
| .base-modal {
 | |
|   position: fixed;
 | |
|   width: 100%;
 | |
|   height: 100%;
 | |
|   background: rgba(4, 4, 5, 0.1);
 | |
|   z-index: 10001;
 | |
|   justify-content: center;
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
|   justify-content: center;
 | |
| }
 | |
| 
 | |
| .base-modal .modal-header {
 | |
|   display: flex;
 | |
|   justify-content: space-between;
 | |
|   height: 70px;
 | |
|   border-bottom: 1px solid #EBF1FA;
 | |
|   padding: 30px 30px 20px 30px !important;
 | |
| }
 | |
| 
 | |
| .base-modal .modal-header::before {
 | |
|   content: "";
 | |
|   position: absolute;
 | |
|   width: 100%;
 | |
|   top: 0;
 | |
|   left: 0;
 | |
|   height: 10px;
 | |
|   background: #5851D8;
 | |
| }
 | |
| 
 | |
| .base-modal .modal-header .modal-heading {
 | |
|   font-size: 17.5px;
 | |
|   font-weight: 500;
 | |
|   margin: 0;
 | |
| }
 | |
| 
 | |
| .base-modal .modal-body {
 | |
|   background: white;
 | |
|   box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
 | |
|   position: relative;
 | |
|   max-width: 600px;
 | |
|   border: none;
 | |
|   border-radius: 10px;
 | |
|   overflow: hidden;
 | |
|   padding: 0;
 | |
| }
 | |
| 
 | |
| .base-modal.size-lg .modal-body {
 | |
|   max-width: 800px;
 | |
| }
 | |
| 
 | |
| .base-modal.size-sm .modal-body {
 | |
|   max-width: 400px;
 | |
| }
 | |
| 
 | |
| .base-modal .close-icon {
 | |
|   position: absolute;
 | |
|   padding: 6px 0 0 0;
 | |
|   top: 23px;
 | |
|   right: 15px;
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .item-modal .card-footer {
 | |
|   display: flex;
 | |
|   justify-content: flex-end;
 | |
|   padding: 20px 20px;
 | |
| }
 | |
| 
 | |
| .item-modal .col-form-label {
 | |
|   text-align: end;
 | |
|   padding-right: 0;
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| .item-modal .required {
 | |
|   position: absolute;
 | |
|   right: -10px;
 | |
|   color: #FB7178;
 | |
| }
 | |
| 
 | |
| .template-modal .template-container {
 | |
|   display: flex;
 | |
|   justify-content: flex-start;
 | |
|   overflow-x: auto;
 | |
|   flex-wrap: wrap;
 | |
|   padding: 5px;
 | |
| }
 | |
| 
 | |
| .template-modal .template-img {
 | |
|   margin: 12px;
 | |
|   border: 1px solid #EBF1FA;
 | |
| }
 | |
| 
 | |
| .template-modal .selected-template {
 | |
|   border: 1px solid #5851D8;
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| .template-modal .check-icon {
 | |
|   width: 20px;
 | |
|   height: 20px;
 | |
|   position: absolute;
 | |
|   color: #5851D8;
 | |
|   top: -6px;
 | |
|   right: -5px;
 | |
|   z-index: 10;
 | |
| }
 | |
| 
 | |
| .template-modal .card-footer {
 | |
|   display: flex;
 | |
|   justify-content: flex-end;
 | |
|   padding: 20px 20px;
 | |
| }
 | |
| 
 | |
| .template-modal .card-footer .btn-crater {
 | |
|   margin-left: 15px;
 | |
| }
 | |
| 
 | |
| .customer-modal .card-body {
 | |
|   padding-bottom: 4px;
 | |
| }
 | |
| 
 | |
| .customer-modal .col-form-label {
 | |
|   text-align: end;
 | |
|   font-family: poppins, sans-serif;
 | |
|   padding-right: 0;
 | |
|   font-size: 14px;
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| .customer-modal .required {
 | |
|   position: absolute;
 | |
|   color: #FB7178;
 | |
|   right: -10px;
 | |
| }
 | |
| 
 | |
| .customer-modal .card-footer {
 | |
|   display: flex;
 | |
|   justify-content: flex-end;
 | |
|   padding: 20px 20px;
 | |
| }
 | |
| 
 | |
| .customer-modal .card-footer .btn-crater {
 | |
|   margin-left: 15px;
 | |
| }
 | |
| 
 | |
| .customer-modal .copy-address-button {
 | |
|   display: flex;
 | |
|   justify-content: flex-end;
 | |
| }
 | |
| 
 | |
| .tax-type-modal .card-footer {
 | |
|   display: flex;
 | |
|   justify-content: flex-end;
 | |
|   padding: 20px 20px;
 | |
| }
 | |
| 
 | |
| .tax-type-modal .input-label {
 | |
|   text-align: end;
 | |
|   padding-right: 0;
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| .tax-type-modal .required {
 | |
|   position: absolute;
 | |
|   left: -10px;
 | |
|   color: #FB7178;
 | |
| }
 | |
| 
 | |
| .tax-type-modal .compound-tax-toggle {
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
|   margin-top: 9px;
 | |
| }
 | |
| 
 | |
| @media (max-width: 480px) {
 | |
|   .base-modal .tax-type-modal .input-label {
 | |
|     text-align: left;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .category-modal .card-footer {
 | |
|   display: flex;
 | |
|   justify-content: flex-end;
 | |
|   padding: 20px 20px;
 | |
| }
 | |
| 
 | |
| .category-modal .col-form-label {
 | |
|   text-align: end;
 | |
|   padding-right: 0;
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| .category-modal .required {
 | |
|   position: absolute;
 | |
|   right: -10px;
 | |
|   color: #FB7178;
 | |
| }
 | |
| 
 | |
| .dashbox {
 | |
|   background-color: #fff;
 | |
|   box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
 | |
|   border-radius: 4px;
 | |
|   margin-bottom: 30px;
 | |
|   padding: 20px;
 | |
|   position: relative;
 | |
|   display: flex;
 | |
|   justify-content: space-between;
 | |
| }
 | |
| 
 | |
| .dashbox i {
 | |
|   font-size: 30px;
 | |
|   left: 40px;
 | |
|   position: absolute;
 | |
|   top: 53px;
 | |
| }
 | |
| 
 | |
| .dashbox .title {
 | |
|   color: #A5ACC1;
 | |
|   display: block;
 | |
|   font-size: 17.5px;
 | |
|   line-height: 21px;
 | |
|   margin-top: 5px;
 | |
| }
 | |
| 
 | |
| .dashbox .amount {
 | |
|   color: #040405;
 | |
|   font-weight: 600;
 | |
|   font-size: 28px;
 | |
|   line-height: 34px;
 | |
| }
 | |
| 
 | |
| .dashbox:active,
 | |
| .dashbox:focus,
 | |
| .dashbox:hover {
 | |
|   text-decoration: none;
 | |
|   background-color: #F9FBFF;
 | |
| }
 | |
| 
 | |
| .dash-item {
 | |
|   flex: 3;
 | |
|   padding: 0 15px 0 15px;
 | |
| }
 | |
| 
 | |
| .dash-item:first-child {
 | |
|   flex: 5;
 | |
| }
 | |
| 
 | |
| .dashboard-card .card-header {
 | |
|   border: none !important;
 | |
|   margin-bottom: 30px;
 | |
|   display: flex;
 | |
|   justify-content: space-between;
 | |
|   align-items: center;
 | |
|   padding: 0;
 | |
|   padding-left: 10px;
 | |
| }
 | |
| 
 | |
| .dashboard-card .card-header h6 {
 | |
|   font-weight: 500;
 | |
|   font-size: 17.5px;
 | |
|   line-height: 21px;
 | |
|   letter-spacing: 0.1px;
 | |
|   flex: 1;
 | |
| }
 | |
| 
 | |
| .dashboard-card .card-header .year-selector {
 | |
|   height: 50px;
 | |
|   width: 150px;
 | |
| }
 | |
| 
 | |
| .graph-body {
 | |
|   display: flex !important;
 | |
| }
 | |
| 
 | |
| .graph-body .chart-desc {
 | |
|   border-left: 1px solid #EBF1FA;
 | |
|   padding: 0;
 | |
| }
 | |
| 
 | |
| .graph-body .stats {
 | |
|   text-align: right;
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
|   height: 100%;
 | |
| }
 | |
| 
 | |
| .graph-body .stats .description {
 | |
|   padding-top: 30px;
 | |
|   flex: 1;
 | |
| }
 | |
| 
 | |
| .graph-body .stats .description:last-child {
 | |
|   border-top: 1px solid #EBF1FA;
 | |
|   padding-top: 30px;
 | |
| }
 | |
| 
 | |
| .graph-body .stats .title {
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
|   letter-spacing: 0.01em;
 | |
|   padding-right: 25px;
 | |
| }
 | |
| 
 | |
| .graph-body .stats .total {
 | |
|   display: block;
 | |
|   margin-top: 6px;
 | |
|   font-weight: 600;
 | |
|   font-size: 24.5px;
 | |
|   line-height: 29px;
 | |
|   padding-right: 25px;
 | |
| }
 | |
| 
 | |
| .table-row {
 | |
|   margin-top: 20px;
 | |
| }
 | |
| 
 | |
| .table-row .table-header {
 | |
|   display: flex;
 | |
|   justify-content: space-between;
 | |
|   position: relative;
 | |
|   align-items: center;
 | |
|   z-index: 1;
 | |
|   margin-bottom: 10px;
 | |
| }
 | |
| 
 | |
| .table-row .table-header .table-title {
 | |
|   font-weight: 600;
 | |
|   font-size: 21px;
 | |
|   line-height: 25px;
 | |
|   margin-bottom: 0;
 | |
| }
 | |
| 
 | |
| .dashbox-line-progress {
 | |
|   padding: 30px;
 | |
|   text-align: left;
 | |
| }
 | |
| 
 | |
| .dashbox-line-progress i {
 | |
|   right: 30px;
 | |
|   left: auto;
 | |
|   top: 30px;
 | |
| }
 | |
| 
 | |
| .dashbox-line-progress .progress {
 | |
|   height: 0.5rem;
 | |
|   margin-bottom: 0;
 | |
|   background-color: #EBF1FA;
 | |
| }
 | |
| 
 | |
| .dashbox-line-progress .title {
 | |
|   margin-bottom: 15px;
 | |
|   font-size: 26px;
 | |
| }
 | |
| 
 | |
| .dashbox-circle-progress {
 | |
|   text-align: left;
 | |
|   padding: 30px;
 | |
| }
 | |
| 
 | |
| .dashbox-circle-progress .easy-pie-chart {
 | |
|   position: absolute;
 | |
|   right: 30px;
 | |
|   top: 50%;
 | |
|   transform: translate(0, -50%);
 | |
| }
 | |
| 
 | |
| @media (min-width: 1200px) and (max-width: 1400px) {
 | |
|   .dashbox {
 | |
|     padding: 15px;
 | |
|   }
 | |
| 
 | |
|   .dashbox i {
 | |
|     left: 30px;
 | |
|     top: 25px;
 | |
|   }
 | |
| 
 | |
|   .dashbox.dashbox-line-progress i {
 | |
|     right: 15px;
 | |
|     left: auto;
 | |
|     top: 15px;
 | |
|   }
 | |
| 
 | |
|   .dashbox-circle-progress {
 | |
|     padding: 30px;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (max-width: 1200px) {
 | |
|   .dashbox {
 | |
|     padding: 12px;
 | |
|   }
 | |
| 
 | |
|   .dashbox .title {
 | |
|     font-size: 14px;
 | |
|     line-height: 16px;
 | |
|     margin-top: 3px;
 | |
|   }
 | |
| 
 | |
|   .dashbox .amount {
 | |
|     font-weight: 500;
 | |
|     font-size: 24px;
 | |
|     line-height: 30px;
 | |
|   }
 | |
| 
 | |
|   .graph-body {
 | |
|     display: block !important;
 | |
|   }
 | |
| 
 | |
|   .graph-body .stats {
 | |
|     flex-direction: row;
 | |
|     flex-wrap: wrap;
 | |
|     text-align: center;
 | |
|     border-top: 1px solid #EBF1FA;
 | |
|   }
 | |
| 
 | |
|   .graph-body .stats .total {
 | |
|     padding-right: 0;
 | |
|   }
 | |
| 
 | |
|   .graph-body .stats .description {
 | |
|     padding: 30px 25px;
 | |
|   }
 | |
| 
 | |
|   .graph-body .stats .description:last-child {
 | |
|     border-top: none;
 | |
|     padding-top: 30px;
 | |
|     border-left: 1px solid #EBF1FA;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (max-width: 992px) {
 | |
|   .dashbox .icon .card-icon {
 | |
|     height: 40px;
 | |
|     width: 40px;
 | |
|   }
 | |
| 
 | |
|   .dashboard-card .card-header {
 | |
|     margin-bottom: 20px;
 | |
|   }
 | |
| 
 | |
|   .dashboard-card .card-header .year-selector {
 | |
|     height: 40px;
 | |
|   }
 | |
| 
 | |
|   .dashboard-card .card-header {
 | |
|     padding-left: 0;
 | |
|   }
 | |
| 
 | |
|   .dashboard-card .card-header h6 {
 | |
|     font-size: 16px;
 | |
|     line-height: 19px;
 | |
|     letter-spacing: 0;
 | |
|   }
 | |
| 
 | |
|   .dash-item {
 | |
|     flex: 3px;
 | |
|     padding: 0 15px 0 15px;
 | |
|   }
 | |
| 
 | |
|   .dash-item:nth-child(odd) {
 | |
|     padding: 0 15px 0 15px;
 | |
|     flex: 100%;
 | |
|   }
 | |
| 
 | |
|   .dash-item:nth-child(even) {
 | |
|     padding: 0 15px 0 15px;
 | |
|     flex: 100%;
 | |
|   }
 | |
| 
 | |
|   .graph-body .stats .title {
 | |
|     font-size: 12px;
 | |
|     line-height: 12px;
 | |
|     padding-right: 0;
 | |
|   }
 | |
| 
 | |
|   .graph-body .stats .total {
 | |
|     display: block;
 | |
|     margin-top: 3px;
 | |
|     font-weight: 600;
 | |
|     font-size: 16px;
 | |
|     line-height: 1.2;
 | |
|   }
 | |
| 
 | |
|   .graph-body .stats .description {
 | |
|     padding: 10px;
 | |
|   }
 | |
| 
 | |
|   .graph-body .stats .description:last-child {
 | |
|     padding: 10px;
 | |
|     flex: 100%;
 | |
|     border-top: 1px solid #EBF1FA;
 | |
|   }
 | |
| 
 | |
|   .graph-body .stats .description:last-child .title {
 | |
|     padding-right: 0;
 | |
|   }
 | |
| 
 | |
|   .table-row .mob-table {
 | |
|     margin-top: 25px !important;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .card.with-tabs .tabs-component .tabs-component-tabs {
 | |
|   position: absolute;
 | |
|   right: 1.25rem;
 | |
|   top: 14px;
 | |
| }
 | |
| 
 | |
| .card.with-tabs .tabs-component .tabs-component-panels {
 | |
|   border: 0 !important;
 | |
| }
 | |
| 
 | |
| @media (max-width: 768px) {
 | |
|   .card.with-tabs .tabs-component .tabs-component-tabs {
 | |
|     position: relative;
 | |
|     display: block;
 | |
|     margin-right: -41px;
 | |
|     border-radius: 0;
 | |
|     top: -21px;
 | |
|     margin-left: -1px;
 | |
|   }
 | |
| 
 | |
|   .card.with-tabs .tabs-component .tabs-component-tab:not(:last-child) {
 | |
|     border-bottom: dotted 1px #B9C1D1;
 | |
|   }
 | |
| 
 | |
|   .dashboard-table .table-component tr:first-child {
 | |
|     margin-top: 20px;
 | |
|   }
 | |
| 
 | |
|   .dashboard-table .table-component td:first-child {
 | |
|     padding-top: 40px !important;
 | |
|     justify-content: center;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .login-page {
 | |
|   height: 100%;
 | |
|   background-color: #F9FBFF;
 | |
| }
 | |
| 
 | |
| .login-page .login-wrapper {
 | |
|   height: 100%;
 | |
|   padding-top: 0;
 | |
|   position: relative;
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
|   align-items: center;
 | |
| }
 | |
| 
 | |
| .login-page .login-box {
 | |
|   color: #fff;
 | |
|   padding: 20px;
 | |
|   width: 100%;
 | |
|   max-width: 400px;
 | |
| }
 | |
| 
 | |
| .login-page .login-box .input-label {
 | |
|   padding-bottom: 5px;
 | |
|   margin: 0;
 | |
|   font-weight: 500;
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
|   color: #55547A;
 | |
| }
 | |
| 
 | |
| .login-page .login-box .other-actions {
 | |
|   margin-bottom: 10px;
 | |
|   margin-top: 20px;
 | |
| }
 | |
| 
 | |
| .login-page .login-box .page-copyright {
 | |
|   font-size: 14px;
 | |
|   margin-top: 50px;
 | |
|   text-align: center;
 | |
| }
 | |
| 
 | |
| .login-page .login-box .page-copyright p {
 | |
|   margin-bottom: 10px;
 | |
| }
 | |
| 
 | |
| .login-page .login-box a {
 | |
|   color: #5851D8;
 | |
| }
 | |
| 
 | |
| .login-page .login-box a:hover {
 | |
|   color: #443cd3;
 | |
| }
 | |
| 
 | |
| .login-page .login-box .btn-login {
 | |
|   background-color: #5851D8;
 | |
|   color: white;
 | |
| }
 | |
| 
 | |
| .login-page .login-box .btn-login:hover {
 | |
|   background-color: #443cd3;
 | |
| }
 | |
| 
 | |
| .login-page .login-box .c-input {
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .login-page .login-box .c-input .c-indicator {
 | |
|   top: 2px;
 | |
| }
 | |
| 
 | |
| .login-page .login-wrapper .c-input > input:checked ~ .c-indicator {
 | |
|   background-color: #333;
 | |
| }
 | |
| 
 | |
| .login-page .login-wrapper .c-input > input:focus ~ .c-indicator {
 | |
|   box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.2rem #262626;
 | |
| }
 | |
| 
 | |
| .login-page .login-wrapper .c-input > input:active ~ .c-indicator {
 | |
|   background-color: #262626;
 | |
| }
 | |
| 
 | |
| .login-page .logo-main {
 | |
|   margin-bottom: 127px;
 | |
|   text-align: left;
 | |
| }
 | |
| 
 | |
| .login-page .logo-main img {
 | |
|   height: auto;
 | |
|   width: 300px;
 | |
| }
 | |
| 
 | |
| .login-page .other-options {
 | |
|   border-top: 1px solid #fff;
 | |
|   padding: 1rem 0;
 | |
|   padding-top: 2rem;
 | |
| }
 | |
| 
 | |
| .login-page .other-options h6 {
 | |
|   color: #c7cbd1;
 | |
|   font-size: 15px;
 | |
|   margin-top: 12px;
 | |
| }
 | |
| 
 | |
| .login-page .other-options a,
 | |
| .login-page .other-options a:hover {
 | |
|   color: #fff;
 | |
| }
 | |
| 
 | |
| .login-page .actions {
 | |
|   margin-top: 30px;
 | |
| }
 | |
| 
 | |
| .login-page .actions .btn-theme {
 | |
|   margin-right: 20px;
 | |
|   margin-top: 20px;
 | |
| }
 | |
| 
 | |
| @media (max-width: 768px) {
 | |
|   .login-page .other-actions {
 | |
|     font-size: 14px;
 | |
|   }
 | |
| 
 | |
|   .login-page .logo-main img {
 | |
|     height: auto;
 | |
|     max-width: 100%;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .login-page .social-links {
 | |
|   margin-top: 40px;
 | |
| }
 | |
| 
 | |
| .login-page .social-links .link-text {
 | |
|   font-style: normal;
 | |
|   font-weight: 500;
 | |
|   font-size: 15px;
 | |
|   line-height: 17px;
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .login-page .social-links .social-logo {
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
|   padding-top: 25px;
 | |
| }
 | |
| 
 | |
| .login-page .social-links .social-logo .icon {
 | |
|   display: block;
 | |
|   margin-right: 30px;
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .login-page.login-3 .site-wrapper {
 | |
|   display: flex;
 | |
| }
 | |
| 
 | |
| .login-page.login-3 .login-box {
 | |
|   color: #333;
 | |
|   flex: 2;
 | |
|   padding: 150px 60px 180px;
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
|   align-items: center;
 | |
|   max-width: 500px;
 | |
|   min-width: 450px;
 | |
| }
 | |
| 
 | |
| .login-page.login-3 .login-box .box-wrapper {
 | |
|   width: 100%;
 | |
| }
 | |
| 
 | |
| .login-page.login-3 .content-box {
 | |
|   background-image: url("/images/login-vector1.svg");
 | |
|   background-size: cover;
 | |
|   background-repeat: no-repeat;
 | |
|   height: 100%;
 | |
|   width: 100%;
 | |
|   position: relative;
 | |
|   flex: 5;
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
|   align-items: center;
 | |
|   flex-direction: column;
 | |
| }
 | |
| 
 | |
| .login-page.login-3 .content-box h1 {
 | |
|   color: #fff;
 | |
|   font-size: 50px;
 | |
| }
 | |
| 
 | |
| .login-page.login-3 .content-box p {
 | |
|   color: #F9FBFF;
 | |
|   font-style: normal;
 | |
|   font-weight: normal;
 | |
|   font-size: 16px;
 | |
|   line-height: 24px;
 | |
| }
 | |
| 
 | |
| .login-page.login-3 .content-bottom {
 | |
|   background-image: url("/images/login-vector3.svg");
 | |
|   background-size: 100% 100%;
 | |
|   background-repeat: no-repeat;
 | |
|   z-index: 100;
 | |
|   position: absolute;
 | |
|   width: 100%;
 | |
|   height: 100px;
 | |
|   bottom: 0;
 | |
|   right: 32%;
 | |
| }
 | |
| 
 | |
| .login-page.login-3 .content-box::before {
 | |
|   background-image: url("/images/frame.svg");
 | |
|   content: "";
 | |
|   background-size: 100% 100%;
 | |
|   background-repeat: no-repeat;
 | |
|   height: 300px;
 | |
|   right: 0;
 | |
|   position: absolute;
 | |
|   top: 0;
 | |
|   width: 420px;
 | |
|   z-index: 1;
 | |
| }
 | |
| 
 | |
| .login-page.login-3 .content-box::after {
 | |
|   background-image: url("/images/login-vector2.svg");
 | |
|   content: "";
 | |
|   background-size: cover;
 | |
|   background-repeat: no-repeat;
 | |
|   height: 100%;
 | |
|   width: 100%;
 | |
|   right: 7.5%;
 | |
|   position: absolute;
 | |
| }
 | |
| 
 | |
| .login-page.login-3 .c-input {
 | |
|   color: #555;
 | |
| }
 | |
| 
 | |
| .login-page.login-3 .login-box a {
 | |
|   color: #817AE3;
 | |
| }
 | |
| 
 | |
| .login-page.login-3 .login-box a:hover {
 | |
|   color: #4d4d4d;
 | |
| }
 | |
| 
 | |
| .login-page.login-3 .other-options h6 {
 | |
|   color: #555;
 | |
| }
 | |
| 
 | |
| .login-page.login-3 .page-copyright {
 | |
|   margin-top: 0;
 | |
|   padding-top: 150px;
 | |
|   color: #A5ACC1;
 | |
|   font-style: normal;
 | |
|   font-weight: 500;
 | |
|   font-size: 15px;
 | |
|   line-height: 17px;
 | |
|   text-align: left;
 | |
| }
 | |
| 
 | |
| .login-page.login-3 .page-copyright a {
 | |
|   color: #5851D8;
 | |
| }
 | |
| 
 | |
| .login-page.login-3 .page-copyright a:hover {
 | |
|   color: #352dc9;
 | |
| }
 | |
| 
 | |
| .login-page.login-3 .logo-main img {
 | |
|   width: 200px;
 | |
| }
 | |
| 
 | |
| @media (max-width: 1240px) {
 | |
|   .login-page.login-3 .content-box h1 {
 | |
|     display: none;
 | |
|   }
 | |
| 
 | |
|   .login-page.login-3 .content-box p {
 | |
|     display: none;
 | |
|   }
 | |
| 
 | |
|   .login-page.login-3 .content-box::before {
 | |
|     height: 250px;
 | |
|     width: 350px;
 | |
|   }
 | |
| 
 | |
|   .login-page.login-3 .content-box::after {
 | |
|     right: 13%;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (max-width: 992px) {
 | |
|   .login-page.login-3 .content-box h1 {
 | |
|     font-size: 15px;
 | |
|     margin-left: 50px;
 | |
|   }
 | |
| 
 | |
|   .login-page.login-3 .content-box p {
 | |
|     display: none;
 | |
|   }
 | |
| 
 | |
|   .login-page.login-3 .content-bottom {
 | |
|     width: 600px;
 | |
|     height: 0px;
 | |
|   }
 | |
| 
 | |
|   .login-page.login-3 .content-box::before {
 | |
|     height: 150px;
 | |
|     width: 250px;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (max-width: 768px) {
 | |
|   .login-page.login-3 .page-copyright {
 | |
|     padding-top: 110px;
 | |
|   }
 | |
| 
 | |
|   .login-page.login-3 .login-box {
 | |
|     width: 100%;
 | |
|     max-width: none;
 | |
|     min-width: 0;
 | |
|     padding: 30px;
 | |
|   }
 | |
| 
 | |
|   .login-page.login-3 .content-box {
 | |
|     display: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .page-error-404 {
 | |
|   background: #55547A;
 | |
| }
 | |
| 
 | |
| .page-error-404 .error-box {
 | |
|   border-radius: 4px;
 | |
|   left: 50%;
 | |
|   margin: 0 auto;
 | |
|   margin-bottom: 45px;
 | |
|   padding: 20px;
 | |
|   position: absolute;
 | |
|   top: 50%;
 | |
|   color: #fff;
 | |
|   transform: translate(-50%, -60%);
 | |
|   width: 800px;
 | |
| }
 | |
| 
 | |
| .page-error-404 h1 {
 | |
|   font-size: 10rem;
 | |
|   color: #5851D8;
 | |
|   margin-bottom: 2rem;
 | |
| }
 | |
| 
 | |
| .page-error-404 h5 {
 | |
|   font-size: 2rem;
 | |
|   color: #fff;
 | |
|   margin-bottom: 40px;
 | |
| }
 | |
| 
 | |
| .bg-yellow {
 | |
|   background-color: #5851D8;
 | |
|   color: #55547A;
 | |
| }
 | |
| 
 | |
| .bg-yellow:hover {
 | |
|   background-color: #443cd3;
 | |
| }
 | |
| 
 | |
| .settings-container {
 | |
|   margin-top: 40px;
 | |
| }
 | |
| 
 | |
| .settings-container .settings-sidebar {
 | |
|   list-style-type: none;
 | |
|   padding: 0px;
 | |
| }
 | |
| 
 | |
| .settings-container .settings-sidebar .settings-menu-item {
 | |
|   padding: 10px 0px;
 | |
|   font-weight: 500;
 | |
|   font-size: 14px;
 | |
|   line-height: 18px;
 | |
|   color: #040405;
 | |
| }
 | |
| 
 | |
| .settings-container .settings-sidebar .settings-menu-item .setting-icon {
 | |
|   width: 25px;
 | |
|   color: #B9C1D1;
 | |
|   font-size: 16px;
 | |
| }
 | |
| 
 | |
| .settings-container .settings-sidebar .link-color {
 | |
|   color: #A5ACC1;
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
| }
 | |
| 
 | |
| .settings-container .settings-sidebar .active-setting {
 | |
|   color: #5851D8 !important;
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .settings-container .settings-sidebar .active-setting .setting-icon {
 | |
|   color: #5851D8 !important;
 | |
| }
 | |
| 
 | |
| .settings-container .setting-main-container .setting-card {
 | |
|   padding: 30px;
 | |
|   min-height: 620px;
 | |
| }
 | |
| 
 | |
| .settings-container .setting-main-container .page-header {
 | |
|   margin: 0px;
 | |
| }
 | |
| 
 | |
| .settings-container .setting-main-container .page-header .page-title {
 | |
|   margin: 0;
 | |
|   padding-bottom: 10px;
 | |
|   font-weight: 500;
 | |
|   font-size: 17.5px;
 | |
|   line-height: 21px;
 | |
|   letter-spacing: 0.1px;
 | |
|   color: #000000;
 | |
| }
 | |
| 
 | |
| .settings-container .setting-main-container .page-header .page-sub-title {
 | |
|   max-width: 480px;
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
|   color: #A5ACC1;
 | |
|   margin-bottom: 30px;
 | |
| }
 | |
| 
 | |
| .settings-container .setting-main-container .input-label {
 | |
|   font-style: normal;
 | |
|   font-weight: 500;
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
|   color: #55547A;
 | |
| }
 | |
| 
 | |
| .settings-container .expense-category td {
 | |
|   background-color: #F9FBFF !important;
 | |
| }
 | |
| 
 | |
| .settings-container .tax-table td {
 | |
|   background-color: #F9FBFF !important;
 | |
| }
 | |
| 
 | |
| .settings-container .tax-table .compound-tax {
 | |
|   display: inline;
 | |
|   padding: 2px 8px;
 | |
|   font-size: 10px;
 | |
|   line-height: 15px;
 | |
|   background: #FED7D7;
 | |
|   color: #9B2C2C;
 | |
| }
 | |
| 
 | |
| .settings-container .add-new-tax {
 | |
|   height: 45px;
 | |
|   white-space: nowrap;
 | |
| }
 | |
| 
 | |
| .settings-container .flex-box {
 | |
|   display: flex;
 | |
| }
 | |
| 
 | |
| .settings-container .left {
 | |
|   position: relative;
 | |
|   width: 50px;
 | |
| }
 | |
| 
 | |
| .settings-container .btn-switch {
 | |
|   position: absolute;
 | |
|   top: -18px;
 | |
| }
 | |
| 
 | |
| .settings-container .box-title {
 | |
|   margin-bottom: 5px;
 | |
|   padding: 0;
 | |
|   font-size: 16px;
 | |
|   line-height: 21px;
 | |
|   color: #55547A;
 | |
| }
 | |
| 
 | |
| .settings-container .box-desc {
 | |
|   margin: 0;
 | |
|   padding: 0;
 | |
|   max-width: 480px;
 | |
|   font-size: 12px;
 | |
|   line-height: 18px;
 | |
|   color: #A5ACC1;
 | |
| }
 | |
| 
 | |
| .settings-container .notes {
 | |
|   overflow: hidden;
 | |
|   width: 200px;
 | |
| }
 | |
| 
 | |
| .settings-container .notes .note {
 | |
|   text-overflow: ellipsis;
 | |
|   white-space: nowrap;
 | |
|   overflow: hidden;
 | |
| }
 | |
| 
 | |
| @media (max-width: 480px) {
 | |
|   .settings-container .setting-main-container .setting-card {
 | |
|     overflow: scroll;
 | |
|   }
 | |
| 
 | |
|   .settings-container .setting-main-container .ml-15 {
 | |
|     margin-left: 15px;
 | |
|   }
 | |
| 
 | |
|   .settings-container .setting-main-container .page-header {
 | |
|     flex-wrap: wrap;
 | |
|   }
 | |
| 
 | |
|   .settings-container .table-component td:first-child {
 | |
|     height: auto;
 | |
|     min-height: 10px;
 | |
|     text-align: center;
 | |
|     justify-content: center;
 | |
|   }
 | |
| 
 | |
|   .settings-container .tax-table .tax-name {
 | |
|     margin-top: 21px;
 | |
|     width: 76%;
 | |
|   }
 | |
| 
 | |
|   .settings-container .expense-category .table-component__table__body tr:first-child td:nth-child(2) {
 | |
|     height: auto;
 | |
|     width: 101%;
 | |
|   }
 | |
| 
 | |
|   .settings-container .add-new-tax {
 | |
|     position: relative;
 | |
|     z-index: 1;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .invoice-create-page {
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .page-header {
 | |
|   margin: 0 0 40px 0;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .page-header .page-title {
 | |
|   font-size: 24.5px;
 | |
|   margin: 0 0 15px 0;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .page-header .breadcrumb .breadcrumb-item {
 | |
|   font-size: 14px;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .page-header .page-actions .btn-crater {
 | |
|   margin: 0 0 0 14px;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .invoice-input {
 | |
|   padding-left: 40px;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .show-customer {
 | |
|   background: #FFFFFF;
 | |
|   padding: 0 10px 0 10px;
 | |
|   min-height: 170px;
 | |
|   border: 1px solid #EBF1FA;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .show-customer label {
 | |
|   font-size: 14px;
 | |
|   margin: 0 0 0 0;
 | |
|   padding: 0 0 0 0;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .address-menu {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .address-menu .title {
 | |
|   font-size: 15px;
 | |
|   white-space: nowrap;
 | |
|   color: #B9C1D1;
 | |
|   font-weight: 500;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .address-menu .content {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .address-menu .content label {
 | |
|   position: relative;
 | |
|   white-space: nowrap;
 | |
|   width: 90%;
 | |
|   font-size: 14px;
 | |
|   overflow: hidden;
 | |
|   text-overflow: ellipsis;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .customer-content {
 | |
|   display: flex;
 | |
|   justify-content: space-between;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .customer-content .email {
 | |
|   flex: 8;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .customer-content .action {
 | |
|   cursor: pointer;
 | |
|   flex: 1;
 | |
|   font-size: 14px;
 | |
|   font-weight: 500;
 | |
|   color: #5851D8;
 | |
|   margin: 0 0 0 0;
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .add-customer {
 | |
|   padding: 0 0 0 0;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .add-customer .add-customer-action {
 | |
|   position: relative;
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
|   background: #ffffff;
 | |
|   border: 1px solid #EBF1FA;
 | |
|   min-height: 170px;
 | |
|   border-radius: 5px;
 | |
|   padding: 64px 0;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .add-customer .add-customer-action .customer-icon {
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
|   background: #EBF1FA;
 | |
|   width: 40px;
 | |
|   color: white;
 | |
|   height: 40px;
 | |
|   font-size: 14px;
 | |
|   font-family: Poppins;
 | |
|   padding: 11px 14px 11px 13px;
 | |
|   border-radius: 50%;
 | |
|   margin: 0 15px 0 0;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .add-customer .add-customer-action label {
 | |
|   font-size: 17.5px;
 | |
|   margin: 7px 0 0 0;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .customer-required {
 | |
|   border: 1px solid #FB7178;
 | |
|   border-radius: 5px;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .offset-md-1 {
 | |
|   margin-left: 5%;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .invoice-input-group {
 | |
|   margin-bottom: 41px;
 | |
|   margin-right: 0;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .invoice-input-group .invoice-input {
 | |
|   padding-right: 0;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .invoice-input-group .invoice-input label {
 | |
|   font-family: Poppins;
 | |
|   font-style: normal;
 | |
|   font-weight: 500;
 | |
|   font-size: 14px;
 | |
|   color: #263B5E;
 | |
|   margin: 0 0 10px 0;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-table {
 | |
|   width: 100%;
 | |
|   text-align: center;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-table .item-table-header {
 | |
|   border: 1px solid #EBF1FA;
 | |
|   background: white;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-table .item-table-header th {
 | |
|   padding: 10px 20px;
 | |
|   font-style: normal;
 | |
|   font-weight: 500;
 | |
|   font-size: 15px;
 | |
|   line-height: 21px;
 | |
|   color: #55547A;
 | |
|   border-top: 1px solid #EBF1FA;
 | |
|   border-bottom: 1px solid #EBF1FA;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-table .item-table-header .item-heading {
 | |
|   padding-left: 50px;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-table .item-table-header .amount-heading {
 | |
|   padding-right: 50px;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-table .item-table-header th:first-child {
 | |
|   padding-left: 0 !important;
 | |
|   border-left: 1px solid #EBF1FA;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-table .item-table-header th:last-child {
 | |
|   padding-right: 0 !important;
 | |
|   border-right: 1px solid #EBF1FA;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-table .item-body td:first-child {
 | |
|   padding-left: 0 !important;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-table .item-body td:last-child {
 | |
|   padding-right: 0 !important;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-table .item-body .item-row {
 | |
|   background: #FFFFFF;
 | |
|   border: 1px solid #EBF1FA;
 | |
|   box-sizing: border-box;
 | |
|   border-radius: 0px 0px 5px 5px;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-table .item-body .item-row td {
 | |
|   padding: 15px 20px;
 | |
|   text-align: left;
 | |
|   vertical-align: top;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-table .item-body .item-row > td {
 | |
|   padding: 0;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-table .item-body .item-row .item-select {
 | |
|   font-style: normal;
 | |
|   font-weight: normal;
 | |
|   font-size: 14px;
 | |
|   line-height: 20px;
 | |
|   color: #A5ACC1;
 | |
|   overflow: auto !important;
 | |
|   max-height: 250px !important;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-table .item-body .item-row .search-select .selector-menu {
 | |
|   top: 45px !important;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-table .item-body .item-row .main {
 | |
|   padding: 0 !important;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-table .item-body .item-row .item-amount {
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
|   justify-content: flex-end;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-table .item-body .item-row .item-select-wrapper {
 | |
|   display: flex;
 | |
|   justify-content: flex-start;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-table .item-body .item-row .item-selector {
 | |
|   flex: 1;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-table .item-body .item-row .selected-item {
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
|   height: 40px;
 | |
|   padding-left: 10px;
 | |
|   border: 1px solid #EBF1FA;
 | |
|   background: #F9FBFF;
 | |
|   border-radius: 5px;
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-table .item-body .item-row .deselect-icon {
 | |
|   color: #B9C1D1;
 | |
|   position: absolute;
 | |
|   top: 10px;
 | |
|   right: 10px;
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-table .item-body .item-row .sort-icon-wrapper,
 | |
| .invoice-create-page .item-table .item-body .item-row .remove-icon-wrapper {
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
|   align-items: center;
 | |
|   margin: 0 15px;
 | |
|   height: 40px;
 | |
|   width: 20px;
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-table .item-body .item-row .sort-icon-wrapper {
 | |
|   color: #B9C1D1;
 | |
|   height: 20px;
 | |
|   margin-top: 8px;
 | |
|   cursor: move;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-table .item-body .item-row .remove-icon {
 | |
|   color: #55547A;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .tax-row {
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
|   justify-content: space-between;
 | |
|   margin-bottom: 10px;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .tax-row .tax-amount {
 | |
|   flex: 3;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .tax-row .tax-select {
 | |
|   flex: 4;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .tax-tr td {
 | |
|   padding: 0 21px;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .multi-select-item .multiselect,
 | |
| .invoice-create-page .multi-select-item .multiselect__input,
 | |
| .invoice-create-page .multi-select-item .multiselect__single {
 | |
|   border: none;
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .multi-select-item .multiselect:focus {
 | |
|   outline: none;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .multi-select-item .multiselect__input,
 | |
| .invoice-create-page .multi-select-item .multiselect__single {
 | |
|   min-height: 40px;
 | |
|   padding-left: 10px;
 | |
|   border: 1px solid #eaf1fb;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .multi-select-item .multiselect__tags {
 | |
|   min-height: 30px;
 | |
|   padding: 0;
 | |
|   border: 0px;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .multi-select-item .multiselect__select {
 | |
|   line-height: 16px;
 | |
|   width: 40px;
 | |
|   height: 38px;
 | |
|   transition: transform 0.2s ease;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .multi-select-item .multiselect__content-wrapper {
 | |
|   overflow: hidden;
 | |
|   border: 1px solid #EBF1FA;
 | |
|   box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
 | |
|   border-radius: 0px 0px 5px 5px;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .multi-select-item .multiselect__content {
 | |
|   max-height: 240px;
 | |
|   overflow: auto;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .add-item-action {
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
|   align-items: center;
 | |
|   color: #817AE3;
 | |
|   padding: 13px 23px;
 | |
|   width: 100%;
 | |
|   font-size: 15px;
 | |
|   border-bottom: 1px solid #EBF1FA;
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .add-item-action:hover {
 | |
|   background: #EBF1FA;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .add-item-action .icon-fa {
 | |
|   margin: 2px 11px 0 0;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .invoice-foot {
 | |
|   display: flex;
 | |
|   justify-content: space-between;
 | |
|   margin: 35px 0;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .invoice-foot .btn-template {
 | |
|   background: #EBF1FA;
 | |
|   border: 1px solid #EBF1FA;
 | |
|   color: #040405;
 | |
|   font-size: 14px;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .invoice-foot .icon-button {
 | |
|   color: #A5ACC1;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .invoice-foot label {
 | |
|   font-size: 14px;
 | |
|   margin: 0 0 0 0;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .invoice-foot .invoice-notes {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
|   margin: 5px 0 0 0;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .invoice-foot .invoice-notes textarea {
 | |
|   border: 1px solid #EBF1FA;
 | |
|   border-radius: 5px;
 | |
|   width: 100%;
 | |
|   min-height: 100px;
 | |
|   padding: 0 0 0 0;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .invoice-foot .invoice-total {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
|   background: #ffffff;
 | |
|   min-width: 390px;
 | |
|   padding: 15px 20px;
 | |
|   border: 1px solid #EBF1FA;
 | |
|   border-radius: 5px;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .invoice-foot .invoice-total > label {
 | |
|   text-transform: uppercase;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .invoice-foot .invoice-total .section {
 | |
|   width: 100%;
 | |
|   display: flex;
 | |
|   justify-content: space-between;
 | |
|   align-items: center;
 | |
|   margin: 0 0 7px 0;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .invoice-foot .invoice-total .section .invoice-label {
 | |
|   font-size: 14px;
 | |
|   font-weight: 600;
 | |
|   text-transform: uppercase;
 | |
|   line-height: 21px;
 | |
|   color: #A5ACC1;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .invoice-foot .invoice-total .section .invoice-amount {
 | |
|   font-size: 18px;
 | |
|   color: #55547A;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .invoice-foot .invoice-total .section .total {
 | |
|   color: #817AE3;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .invoice-foot .invoice-total .section .discount-drop-down {
 | |
|   width: 105px;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .invoice-foot .invoice-total .section .item-dropdown {
 | |
|   font-family: Arial, Helvetica, sans-serif !important;
 | |
|   font-size: 16px;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .invoice-foot .invoice-total .border-top {
 | |
|   margin: 0;
 | |
|   padding-top: 7px;
 | |
|   border-top: 1px solid #EBF1FA;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .invoice-foot .invoice-total .tax-selector {
 | |
|   font-weight: 600;
 | |
|   font-size: 14px;
 | |
|   margin-top: 12px;
 | |
|   line-height: 21px;
 | |
|   color: #817AE3;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-row .item-name {
 | |
|   font-weight: 500;
 | |
|   text-align: left;
 | |
|   font-size: 14px;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-row .item-description {
 | |
|   width: 100%;
 | |
|   font-weight: 300;
 | |
|   font-size: 12px;
 | |
|   padding-top: 2px;
 | |
|   padding-left: 10px;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-row .item-description textarea {
 | |
|   border: none;
 | |
|   resize: none;
 | |
|   width: 100%;
 | |
|   color: #595959;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-row .item-description textarea::-webkit-input-placeholder {
 | |
|   font-family: Poppins;
 | |
|   font-style: normal;
 | |
|   font-size: 12px;
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-row .item-description textarea::-moz-placeholder {
 | |
|   font-family: Poppins;
 | |
|   font-style: normal;
 | |
|   font-size: 12px;
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-row .item-description textarea:-ms-input-placeholder {
 | |
|   font-family: Poppins;
 | |
|   font-style: normal;
 | |
|   font-size: 12px;
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-row .item-description textarea::-ms-input-placeholder {
 | |
|   font-family: Poppins;
 | |
|   font-style: normal;
 | |
|   font-size: 12px;
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-row .item-description textarea::placeholder {
 | |
|   font-family: Poppins;
 | |
|   font-style: normal;
 | |
|   font-size: 12px;
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-row .action {
 | |
|   font-weight: 500;
 | |
|   font-size: 14px;
 | |
|   color: #5851D8;
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-row .activator label {
 | |
|   color: #A5ACC1;
 | |
|   font-size: 14px;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-dropdown {
 | |
|   display: flex;
 | |
|   border: 1px solid #EBF1FA !important;
 | |
|   background-color: #fff !important;
 | |
|   border-radius: 0px 5px 5px 0px !important;
 | |
|   justify-content: center;
 | |
|   align-items: center;
 | |
|   height: 40px;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-dropdown:focus {
 | |
|   box-shadow: none !important;
 | |
| }
 | |
| 
 | |
| .invoice-create-page .item-discount {
 | |
|   border-radius: 5px 0px 0px 5px !important;
 | |
|   height: 40px;
 | |
| }
 | |
| 
 | |
| @media (max-width: 480px) {
 | |
|   .invoice-create-page .page-actions {
 | |
|     position: relative;
 | |
|     transform: none;
 | |
|     display: flex;
 | |
|     flex-wrap: wrap;
 | |
|   }
 | |
| 
 | |
|   .invoice-create-page .page-actions button {
 | |
|     margin-bottom: 10px;
 | |
|   }
 | |
| 
 | |
|   .invoice-create-page .invoice-input-group .invoice-input {
 | |
|     padding-right: 15px;
 | |
|     padding-left: 20px;
 | |
|     margin-top: 1.5rem;
 | |
|   }
 | |
| 
 | |
|   .invoice-create-page .invoice-foot {
 | |
|     display: flex;
 | |
|     flex-direction: column;
 | |
|     justify-content: center;
 | |
|     align-items: center;
 | |
|   }
 | |
| 
 | |
|   .invoice-create-page .invoice-foot .btn-template {
 | |
|     width: 100%;
 | |
|     display: flex;
 | |
|     justify-content: center;
 | |
|   }
 | |
| 
 | |
|   .invoice-create-page .invoice-foot .invoice-total {
 | |
|     margin-top: 25px;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .invoice-view-page {
 | |
|   padding-left: 570px !important;
 | |
| }
 | |
| 
 | |
| .invoice-view-page .invoice-sidebar {
 | |
|   width: 300px;
 | |
|   height: 100vh;
 | |
|   height: 100%;
 | |
|   left: 240px;
 | |
|   padding: 60px 0 10px;
 | |
|   position: fixed;
 | |
|   top: 0;
 | |
|   width: 300px;
 | |
|   z-index: 30;
 | |
|   background: #FFFFFF;
 | |
| }
 | |
| 
 | |
| .invoice-view-page .inv-search {
 | |
|   background: #F9FBFF !important;
 | |
| }
 | |
| 
 | |
| .invoice-view-page .side-invoice {
 | |
|   padding: 12px 16px;
 | |
|   display: flex;
 | |
|   justify-content: space-between;
 | |
|   border-bottom: 1px solid rgba(185, 193, 209, 0.41);
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .invoice-view-page .side-invoice:last-child {
 | |
|   margin-bottom: 98px;
 | |
| }
 | |
| 
 | |
| .invoice-view-page .side-invoice:hover {
 | |
|   background-color: #F9FBFF;
 | |
| }
 | |
| 
 | |
| .invoice-view-page .side-invoice .left .inv-name {
 | |
|   font-style: normal;
 | |
|   font-weight: normal;
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
|   text-transform: capitalize;
 | |
|   color: #040405;
 | |
|   margin-bottom: 6px;
 | |
| }
 | |
| 
 | |
| .invoice-view-page .side-invoice .left .inv-number {
 | |
|   font-style: normal;
 | |
|   font-weight: 500;
 | |
|   font-size: 12px;
 | |
|   line-height: 18px;
 | |
|   color: #A5ACC1;
 | |
|   margin-bottom: 6px;
 | |
| }
 | |
| 
 | |
| .invoice-view-page .side-invoice .left .inv-status {
 | |
|   font-style: normal;
 | |
|   font-weight: normal;
 | |
|   font-size: 10px;
 | |
|   line-height: 15px;
 | |
|   padding: 2px 10px;
 | |
|   display: inline-block;
 | |
| }
 | |
| 
 | |
| .invoice-view-page .side-invoice .right .inv-amount {
 | |
|   font-style: normal;
 | |
|   font-weight: 600;
 | |
|   font-size: 20px;
 | |
|   line-height: 30px;
 | |
|   text-align: right;
 | |
|   color: #263B5E;
 | |
| }
 | |
| 
 | |
| .invoice-view-page .side-invoice .right .inv-date {
 | |
|   font-style: normal;
 | |
|   font-weight: normal;
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
|   text-align: right;
 | |
|   color: #A5ACC1;
 | |
| }
 | |
| 
 | |
| .invoice-view-page .no-result {
 | |
|   color: #B9C1D1;
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
|   margin-top: 20px;
 | |
| }
 | |
| 
 | |
| .invoice-view-page .side-header {
 | |
|   height: 100px;
 | |
|   display: flex;
 | |
|   justify-content: space-between;
 | |
|   align-items: center;
 | |
|   padding: 30px 15px;
 | |
|   border-bottom: 1px solid rgba(185, 193, 209, 0.41);
 | |
| }
 | |
| 
 | |
| .invoice-view-page .side-header .inv-button {
 | |
|   background: #F9FBFF;
 | |
|   border: 1px solid #EBF1FA;
 | |
|   box-sizing: border-box;
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .invoice-view-page .side-content {
 | |
|   overflow-y: scroll;
 | |
|   height: 100%;
 | |
| }
 | |
| 
 | |
| .invoice-view-page .invoice-view-page-container {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
|   height: 75vh;
 | |
|   min-height: 0;
 | |
|   overflow: hidden;
 | |
| }
 | |
| 
 | |
| .invoice-view-page .frame-style {
 | |
|   flex: 1 1 auto;
 | |
|   border: 1px solid #B9C1D1;
 | |
|   border-radius: 7px;
 | |
| }
 | |
| 
 | |
| .invoice-view-page .inv-filter-fields-btn:focus,
 | |
| .invoice-view-page .inv-filter-sorting-btn:focus {
 | |
|   border-color: inherit;
 | |
|   box-shadow: none;
 | |
|   outline: none !important;
 | |
| }
 | |
| 
 | |
| .invoice-view-page .filter-container {
 | |
|   margin-left: 12px;
 | |
| }
 | |
| 
 | |
| .invoice-view-page .filter-container .filter-items {
 | |
|   display: flex;
 | |
| }
 | |
| 
 | |
| .invoice-view-page .filter-container .filter-items:first-child {
 | |
|   margin-top: auto;
 | |
| }
 | |
| 
 | |
| .invoice-view-page .filter-container .inv-label {
 | |
|   font-style: normal;
 | |
|   font-weight: normal;
 | |
|   font-size: 14px;
 | |
|   line-height: 18px;
 | |
|   text-transform: capitalize;
 | |
|   color: #040405;
 | |
|   margin-bottom: 6px;
 | |
|   margin-left: 10px;
 | |
| }
 | |
| 
 | |
| .invoice-view-page .filter-container .base-input {
 | |
|   width: 20%;
 | |
| }
 | |
| 
 | |
| .invoice-view-page .filter-container .dropdown-container {
 | |
|   padding: 11px;
 | |
|   left: auto;
 | |
|   right: 0px;
 | |
|   width: 155px;
 | |
| }
 | |
| 
 | |
| .invoice-view-page .filter-invoice-date .vdp-datepicker div .vdp-datepicker__clear-button {
 | |
|   margin-left: -21px;
 | |
|   margin-top: 2px;
 | |
|   font-size: 20px;
 | |
|   font-weight: 800;
 | |
| }
 | |
| 
 | |
| .invoice-view-page .date-group {
 | |
|   display: flex;
 | |
| }
 | |
| 
 | |
| .invoice-view-page .to-text {
 | |
|   padding: 8px;
 | |
| }
 | |
| 
 | |
| @media (max-width: 768px) {
 | |
|   .invoice-view-page {
 | |
|     padding-left: 310px !important;
 | |
|   }
 | |
| 
 | |
|   .invoice-sidebar {
 | |
|     transition: 0.2s all;
 | |
|     left: 0px !important;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .invoice-index-page .table-actions {
 | |
|   position: relative;
 | |
|   border: none;
 | |
| }
 | |
| 
 | |
| .invoice-index-page .table-actions .table-actions-button {
 | |
|   position: absolute;
 | |
|   right: 0px;
 | |
|   top: -15px;
 | |
| }
 | |
| 
 | |
| .invoice-index-page .table-actions .table-stats {
 | |
|   margin: 0;
 | |
|   position: absolute;
 | |
|   right: 0px;
 | |
|   top: 40px;
 | |
| }
 | |
| 
 | |
| .invoice-index-page .filter-container {
 | |
|   display: flex;
 | |
|   justify-content: space-between;
 | |
| }
 | |
| 
 | |
| .invoice-index-page .filter-customer,
 | |
| .invoice-index-page .filter-status {
 | |
|   margin-right: 40px;
 | |
|   flex: 1;
 | |
| }
 | |
| 
 | |
| .invoice-index-page .filter-date {
 | |
|   flex: 1;
 | |
|   display: flex;
 | |
|   margin-right: 40px;
 | |
|   align-items: center;
 | |
| }
 | |
| 
 | |
| .invoice-index-page .filter-date .from {
 | |
|   flex: 1;
 | |
| }
 | |
| 
 | |
| .invoice-index-page .filter-date .to {
 | |
|   flex: 1;
 | |
| }
 | |
| 
 | |
| .invoice-index-page .filter-invoice {
 | |
|   flex: 1;
 | |
| }
 | |
| 
 | |
| .invoice-index-page .dashed {
 | |
|   border: 1px solid #B9C1D1;
 | |
|   width: 10px;
 | |
|   margin-top: 28px;
 | |
| }
 | |
| 
 | |
| @media (max-width: 992px) {
 | |
|   .invoice-index-page .filter-container {
 | |
|     flex-direction: column;
 | |
|   }
 | |
| 
 | |
|   .invoice-index-page .filter-invoice {
 | |
|     margin-right: 40px;
 | |
|   }
 | |
| 
 | |
|   .invoice-index-page .filter-customer,
 | |
|   .invoice-index-page .filter-status,
 | |
|   .invoice-index-page .filter-date,
 | |
|   .invoice-index-page .filter-invoice {
 | |
|     margin-bottom: 10px;
 | |
|     margin-right: 0px;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (max-width: 480px) {
 | |
|   .invoice-index-page .page-actions {
 | |
|     position: relative;
 | |
|     transform: none;
 | |
|     display: flex;
 | |
|     flex-wrap: wrap;
 | |
|   }
 | |
| 
 | |
|   .invoice-index-page .page-actions button {
 | |
|     margin-bottom: 10px;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .estimate-create-page {
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .page-header {
 | |
|   margin: 0 0 40px 0;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .page-header .page-title {
 | |
|   font-size: 24.5px;
 | |
|   margin: 0 0 15px 0;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .page-header .breadcrumb .breadcrumb-item {
 | |
|   font-size: 14px;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .page-header .page-actions .btn-crater {
 | |
|   margin: 0 0 0 14px;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .estimate-input {
 | |
|   padding-left: 40px;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .show-customer {
 | |
|   background: #FFFFFF;
 | |
|   padding: 0 10px 0 10px;
 | |
|   min-height: 170px;
 | |
|   border: 1px solid #EBF1FA;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .show-customer label {
 | |
|   font-size: 14px;
 | |
|   margin: 0 0 0 0;
 | |
|   padding: 0 0 0 0;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .address-menu {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .address-menu .title {
 | |
|   font-size: 15px;
 | |
|   white-space: nowrap;
 | |
|   color: #B9C1D1;
 | |
|   font-weight: 500;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .address-menu .content {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .address-menu .content label {
 | |
|   position: relative;
 | |
|   white-space: nowrap;
 | |
|   width: 90%;
 | |
|   font-size: 14px;
 | |
|   overflow: hidden;
 | |
|   text-overflow: ellipsis;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .customer-content {
 | |
|   display: flex;
 | |
|   justify-content: space-between;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .customer-content .email {
 | |
|   flex: 8;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .customer-content .action {
 | |
|   cursor: pointer;
 | |
|   flex: 1;
 | |
|   font-size: 14px;
 | |
|   font-weight: 500;
 | |
|   color: #5851D8;
 | |
|   margin: 0 0 0 0;
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .add-customer {
 | |
|   padding: 0 0 0 0;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .add-customer .add-customer-action {
 | |
|   position: relative;
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
|   background: #ffffff;
 | |
|   border: 1px solid #EBF1FA;
 | |
|   min-height: 170px;
 | |
|   border-radius: 5px;
 | |
|   padding: 64px 0;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .add-customer .add-customer-action .customer-icon {
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
|   background: #EBF1FA;
 | |
|   width: 40px;
 | |
|   color: white;
 | |
|   height: 40px;
 | |
|   font-size: 14px;
 | |
|   font-family: Poppins;
 | |
|   padding: 11px 14px 11px 13px;
 | |
|   border-radius: 50%;
 | |
|   margin: 0 15px 0 0;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .add-customer .add-customer-action label {
 | |
|   font-size: 17.5px;
 | |
|   margin: 7px 0 0 0;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .customer-required {
 | |
|   border: 1px solid #FB7178;
 | |
|   border-radius: 5px;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .offset-md-1 {
 | |
|   margin-left: 5%;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .estimate-input-group {
 | |
|   margin-bottom: 41px;
 | |
|   margin-right: 0;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .estimate-input-group .estimate-input {
 | |
|   padding-right: 0;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .estimate-input-group .estimate-input label {
 | |
|   font-family: Poppins;
 | |
|   font-style: normal;
 | |
|   font-weight: 500;
 | |
|   font-size: 14px;
 | |
|   color: #263B5E;
 | |
|   margin: 0 0 10px 0;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-table {
 | |
|   width: 100%;
 | |
|   text-align: center;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-table .item-table-header {
 | |
|   border: 1px solid #EBF1FA;
 | |
|   background: white;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-table .item-table-header th {
 | |
|   padding: 10px 20px;
 | |
|   font-style: normal;
 | |
|   font-weight: 500;
 | |
|   font-size: 15px;
 | |
|   line-height: 21px;
 | |
|   color: #55547A;
 | |
|   border-top: 1px solid #EBF1FA;
 | |
|   border-bottom: 1px solid #EBF1FA;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-table .item-table-header .item-heading {
 | |
|   padding-left: 50px;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-table .item-table-header .amount-heading {
 | |
|   padding-right: 50px;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-table .item-table-header th:first-child {
 | |
|   padding-left: 0 !important;
 | |
|   border-left: 1px solid #EBF1FA;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-table .item-table-header th:last-child {
 | |
|   padding-right: 0 !important;
 | |
|   border-right: 1px solid #EBF1FA;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-table .item-body td:first-child {
 | |
|   padding-left: 0 !important;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-table .item-body td:last-child {
 | |
|   padding-right: 0 !important;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-table .item-body .item-row {
 | |
|   background: #FFFFFF;
 | |
|   border: 1px solid #EBF1FA;
 | |
|   box-sizing: border-box;
 | |
|   border-radius: 0px 0px 5px 5px;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-table .item-body .item-row td {
 | |
|   padding: 15px 20px;
 | |
|   text-align: left;
 | |
|   vertical-align: top;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-table .item-body .item-row > td {
 | |
|   padding: 0;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-table .item-body .item-row .item-select {
 | |
|   font-style: normal;
 | |
|   font-weight: normal;
 | |
|   font-size: 14px;
 | |
|   line-height: 20px;
 | |
|   color: #A5ACC1;
 | |
|   overflow: auto !important;
 | |
|   max-height: 250px !important;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-table .item-body .item-row .search-select .selector-menu {
 | |
|   top: 45px !important;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-table .item-body .item-row .main {
 | |
|   padding: 0 !important;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-table .item-body .item-row .item-amount {
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
|   justify-content: flex-end;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-table .item-body .item-row .item-select-wrapper {
 | |
|   display: flex;
 | |
|   justify-content: flex-start;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-table .item-body .item-row .item-selector {
 | |
|   flex: 1;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-table .item-body .item-row .selected-item {
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
|   height: 40px;
 | |
|   padding-left: 10px;
 | |
|   border: 1px solid #EBF1FA;
 | |
|   background: #F9FBFF;
 | |
|   border-radius: 5px;
 | |
|   position: relative;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-table .item-body .item-row .deselect-icon {
 | |
|   color: #B9C1D1;
 | |
|   position: absolute;
 | |
|   top: 10px;
 | |
|   right: 10px;
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-table .item-body .item-row .sort-icon-wrapper,
 | |
| .estimate-create-page .item-table .item-body .item-row .remove-icon-wrapper {
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
|   align-items: center;
 | |
|   margin: 0 15px;
 | |
|   height: 40px;
 | |
|   width: 20px;
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-table .item-body .item-row .sort-icon-wrapper {
 | |
|   color: #B9C1D1;
 | |
|   height: 20px;
 | |
|   margin-top: 8px;
 | |
|   cursor: move;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-table .item-body .item-row .remove-icon {
 | |
|   color: #55547A;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .tax-row {
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
|   justify-content: space-between;
 | |
|   margin-bottom: 10px;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .tax-row .tax-amount {
 | |
|   flex: 3;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .tax-row .tax-select {
 | |
|   flex: 4;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .tax-tr td {
 | |
|   padding: 0 21px;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .multi-select-item .multiselect,
 | |
| .estimate-create-page .multi-select-item .multiselect__input,
 | |
| .estimate-create-page .multi-select-item .multiselect__single {
 | |
|   border: none;
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .multi-select-item .multiselect:focus {
 | |
|   outline: none;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .multi-select-item .multiselect__input,
 | |
| .estimate-create-page .multi-select-item .multiselect__single {
 | |
|   min-height: 40px;
 | |
|   padding-left: 10px;
 | |
|   border: 1px solid #eaf1fb;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .multi-select-item .multiselect__tags {
 | |
|   min-height: 30px;
 | |
|   padding: 0;
 | |
|   border: 0px;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .multi-select-item .multiselect__select {
 | |
|   line-height: 16px;
 | |
|   width: 40px;
 | |
|   height: 38px;
 | |
|   transition: transform 0.2s ease;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .multi-select-item .multiselect__content-wrapper {
 | |
|   overflow: hidden;
 | |
|   border: 1px solid #EBF1FA;
 | |
|   box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
 | |
|   border-radius: 0px 0px 5px 5px;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .multi-select-item .multiselect__content {
 | |
|   max-height: 240px;
 | |
|   overflow: auto;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .add-item-action {
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
|   align-items: center;
 | |
|   color: #817AE3;
 | |
|   padding: 13px 23px;
 | |
|   width: 100%;
 | |
|   font-size: 15px;
 | |
|   border-bottom: 1px solid #EBF1FA;
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .add-item-action:hover {
 | |
|   background: #EBF1FA;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .add-item-action .icon-fa {
 | |
|   margin: 2px 11px 0 0;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .estimate-foot {
 | |
|   display: flex;
 | |
|   justify-content: space-between;
 | |
|   margin: 35px 0;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .estimate-foot .btn-template {
 | |
|   background: #EBF1FA;
 | |
|   border: 1px solid #EBF1FA;
 | |
|   color: #040405;
 | |
|   font-size: 14px;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .estimate-foot .icon-button {
 | |
|   color: #A5ACC1;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .estimate-foot label {
 | |
|   font-size: 14px;
 | |
|   margin: 0 0 0 0;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .estimate-foot .estimate-notes {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
|   margin: 5px 0 0 0;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .estimate-foot .estimate-notes textarea {
 | |
|   border: 1px solid #EBF1FA;
 | |
|   border-radius: 5px;
 | |
|   width: 100%;
 | |
|   min-height: 100px;
 | |
|   padding: 0 0 0 0;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .estimate-foot .estimate-total {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
|   background: #ffffff;
 | |
|   min-width: 390px;
 | |
|   padding: 15px 20px;
 | |
|   border: 1px solid #EBF1FA;
 | |
|   border-radius: 5px;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .estimate-foot .estimate-total > label {
 | |
|   text-transform: uppercase;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .estimate-foot .estimate-total .section {
 | |
|   width: 100%;
 | |
|   display: flex;
 | |
|   justify-content: space-between;
 | |
|   align-items: center;
 | |
|   margin: 0 0 7px 0;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .estimate-foot .estimate-total .section .estimate-label {
 | |
|   font-size: 14px;
 | |
|   font-weight: 600;
 | |
|   text-transform: uppercase;
 | |
|   line-height: 21px;
 | |
|   color: #A5ACC1;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .estimate-foot .estimate-total .section .estimate-amount {
 | |
|   font-size: 18px;
 | |
|   color: #55547A;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .estimate-foot .estimate-total .section .total {
 | |
|   color: #817AE3;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .estimate-foot .estimate-total .section .discount-drop-down {
 | |
|   width: 105px;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .estimate-foot .estimate-total .section .item-dropdown {
 | |
|   font-family: Arial, Helvetica, sans-serif !important;
 | |
|   font-size: 16px;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .estimate-foot .estimate-total .border-top {
 | |
|   margin: 0;
 | |
|   padding-top: 7px;
 | |
|   border-top: 1px solid #EBF1FA;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .estimate-foot .estimate-total .tax-selector {
 | |
|   font-weight: 600;
 | |
|   font-size: 14px;
 | |
|   margin-top: 12px;
 | |
|   line-height: 21px;
 | |
|   color: #817AE3;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-row .item-name {
 | |
|   font-weight: 500;
 | |
|   text-align: left;
 | |
|   font-size: 14px;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-row .item-description {
 | |
|   width: 100%;
 | |
|   font-weight: 300;
 | |
|   font-size: 12px;
 | |
|   padding-top: 2px;
 | |
|   padding-left: 10px;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-row .item-description textarea {
 | |
|   border: none;
 | |
|   resize: none;
 | |
|   width: 100%;
 | |
|   color: #595959;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-row .item-description textarea::-webkit-input-placeholder {
 | |
|   font-family: Poppins;
 | |
|   font-style: normal;
 | |
|   font-size: 12px;
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-row .item-description textarea::-moz-placeholder {
 | |
|   font-family: Poppins;
 | |
|   font-style: normal;
 | |
|   font-size: 12px;
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-row .item-description textarea:-ms-input-placeholder {
 | |
|   font-family: Poppins;
 | |
|   font-style: normal;
 | |
|   font-size: 12px;
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-row .item-description textarea::-ms-input-placeholder {
 | |
|   font-family: Poppins;
 | |
|   font-style: normal;
 | |
|   font-size: 12px;
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-row .item-description textarea::placeholder {
 | |
|   font-family: Poppins;
 | |
|   font-style: normal;
 | |
|   font-size: 12px;
 | |
|   color: #B9C1D1;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-row .action {
 | |
|   font-weight: 500;
 | |
|   font-size: 14px;
 | |
|   color: #5851D8;
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-row .activator label {
 | |
|   color: #A5ACC1;
 | |
|   font-size: 14px;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-dropdown {
 | |
|   display: flex;
 | |
|   border: 1px solid #EBF1FA !important;
 | |
|   background-color: #fff !important;
 | |
|   border-radius: 0px 5px 5px 0px !important;
 | |
|   justify-content: center;
 | |
|   align-items: center;
 | |
|   height: 40px;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-dropdown:focus {
 | |
|   box-shadow: none !important;
 | |
| }
 | |
| 
 | |
| .estimate-create-page .item-discount {
 | |
|   border-radius: 5px 0px 0px 5px !important;
 | |
|   height: 40px;
 | |
| }
 | |
| 
 | |
| @media (max-width: 480px) {
 | |
|   .estimate-create-page .page-actions {
 | |
|     position: relative;
 | |
|     transform: none;
 | |
|     display: flex;
 | |
|     flex-wrap: wrap;
 | |
|   }
 | |
| 
 | |
|   .estimate-create-page .page-actions button {
 | |
|     margin-bottom: 10px;
 | |
|   }
 | |
| 
 | |
|   .estimate-create-page .estimate-input-group .estimate-input {
 | |
|     padding-right: 15px;
 | |
|     padding-left: 20px;
 | |
|     margin-top: 1.5rem;
 | |
|   }
 | |
| 
 | |
|   .estimate-create-page .estimate-foot {
 | |
|     display: flex;
 | |
|     flex-direction: column;
 | |
|     justify-content: center;
 | |
|     align-items: center;
 | |
|   }
 | |
| 
 | |
|   .estimate-create-page .estimate-foot .btn-template {
 | |
|     width: 100%;
 | |
|     display: flex;
 | |
|     justify-content: center;
 | |
|   }
 | |
| 
 | |
|   .estimate-create-page .estimate-foot .estimate-total {
 | |
|     margin-top: 25px;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .estimate-index-page .table-actions {
 | |
|   position: relative;
 | |
|   border: none;
 | |
| }
 | |
| 
 | |
| .estimate-index-page .table-actions .table-actions-button {
 | |
|   position: absolute;
 | |
|   right: 0px;
 | |
|   top: -15px;
 | |
| }
 | |
| 
 | |
| .estimate-index-page .table-actions .table-stats {
 | |
|   margin: 0;
 | |
|   position: absolute;
 | |
|   right: 0px;
 | |
|   top: 40px;
 | |
| }
 | |
| 
 | |
| .estimate-index-page .filter-container {
 | |
|   display: flex;
 | |
|   justify-content: space-between;
 | |
| }
 | |
| 
 | |
| .estimate-index-page .filter-customer {
 | |
|   margin-right: 40px;
 | |
|   flex: 1;
 | |
| }
 | |
| 
 | |
| .estimate-index-page .filter-status {
 | |
|   margin-right: 40px;
 | |
|   flex: 1;
 | |
| }
 | |
| 
 | |
| .estimate-index-page .filter-date {
 | |
|   flex: 1;
 | |
|   display: flex;
 | |
|   margin-right: 40px;
 | |
|   align-items: center;
 | |
| }
 | |
| 
 | |
| .estimate-index-page .filter-date .from {
 | |
|   flex: 1;
 | |
| }
 | |
| 
 | |
| .estimate-index-page .filter-date .to {
 | |
|   flex: 1;
 | |
| }
 | |
| 
 | |
| .estimate-index-page .filter-estimate {
 | |
|   flex: 1;
 | |
| }
 | |
| 
 | |
| .estimate-index-page .dashed {
 | |
|   border: 1px solid #B9C1D1;
 | |
|   width: 10px;
 | |
|   margin-top: 28px;
 | |
| }
 | |
| 
 | |
| @media (max-width: 992px) {
 | |
|   .estimate-index-page .filter-container {
 | |
|     flex-direction: column;
 | |
|   }
 | |
| 
 | |
|   .estimate-index-page .filter-estimate {
 | |
|     margin-right: 40px;
 | |
|   }
 | |
| 
 | |
|   .estimate-index-page .filter-customer,
 | |
|   .estimate-index-page .filter-status,
 | |
|   .estimate-index-page .filter-date,
 | |
|   .estimate-index-page .filter-estimate {
 | |
|     margin-bottom: 10px;
 | |
|     margin-right: 0px;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (max-width: 480px) {
 | |
|   .estimate-index-page .page-actions {
 | |
|     position: relative;
 | |
|     transform: none;
 | |
|     display: flex;
 | |
|     flex-wrap: wrap;
 | |
|   }
 | |
| 
 | |
|   .estimate-index-page .page-actions button {
 | |
|     margin-bottom: 10px;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .estimate-view-page {
 | |
|   padding-left: 570px !important;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .estimate-sidebar {
 | |
|   width: 300px;
 | |
|   height: 100vh;
 | |
|   height: 100%;
 | |
|   left: 240px;
 | |
|   padding: 60px 0 10px;
 | |
|   position: fixed;
 | |
|   top: 0;
 | |
|   width: 300px;
 | |
|   z-index: 30;
 | |
|   background: #ffffff;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .inv-search {
 | |
|   background: #F9FBFF !important;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .side-estimate {
 | |
|   padding: 12px 16px;
 | |
|   display: flex;
 | |
|   justify-content: space-between;
 | |
|   border-bottom: 1px solid rgba(185, 193, 209, 0.41);
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .side-estimate:last-child {
 | |
|   margin-bottom: 98px;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .side-estimate:hover {
 | |
|   background-color: #F9FBFF;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .side-estimate .left .status-expired {
 | |
|   background: #FED7D7;
 | |
|   font-size: 13px;
 | |
|   color: #9B2C2C;
 | |
|   padding: 5px 10px;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .side-estimate .left .status-accepted {
 | |
|   background: #D5EED0;
 | |
|   font-size: 13px;
 | |
|   color: #354930;
 | |
|   padding: 5px 10px;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .side-estimate .left .status-sent {
 | |
|   background: rgba(246, 208, 154, 0.4);
 | |
|   font-size: 13px;
 | |
|   color: #A96E1A;
 | |
|   padding: 5px 10px;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .side-estimate .left .status-viewed {
 | |
|   background: #C9E3EC;
 | |
|   font-size: 13px;
 | |
|   color: #1E576C;
 | |
|   padding: 5px 10px;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .side-estimate .left .status-pending {
 | |
|   background: #FED7D7;
 | |
|   font-size: 13px;
 | |
|   color: #9B2C2C;
 | |
|   padding: 5px 10px;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .side-estimate .left .status-rejected {
 | |
|   background: #E1E0EA;
 | |
|   font-size: 13px;
 | |
|   color: #312F57;
 | |
|   padding: 5px 10px;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .side-estimate .left .status-draft {
 | |
|   background: #F8EDCB;
 | |
|   font-size: 13px;
 | |
|   color: #6C432E;
 | |
|   padding: 5px 10px;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .side-estimate .left .inv-name {
 | |
|   font-style: normal;
 | |
|   font-weight: normal;
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
|   text-transform: capitalize;
 | |
|   color: #040405;
 | |
|   margin-bottom: 6px;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .side-estimate .left .inv-number {
 | |
|   font-style: normal;
 | |
|   font-weight: 500;
 | |
|   font-size: 12px;
 | |
|   line-height: 18px;
 | |
|   color: #595959;
 | |
|   margin-bottom: 6px;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .side-estimate .left .inv-status {
 | |
|   font-style: normal;
 | |
|   font-weight: normal;
 | |
|   font-size: 10px;
 | |
|   line-height: 15px;
 | |
|   padding: 2px 10px;
 | |
|   display: inline-block;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .side-estimate .right .inv-amount {
 | |
|   font-style: normal;
 | |
|   font-weight: 600;
 | |
|   font-size: 20px;
 | |
|   line-height: 30px;
 | |
|   text-align: right;
 | |
|   color: #263B5E;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .side-estimate .right .inv-date {
 | |
|   font-style: normal;
 | |
|   font-weight: normal;
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
|   text-align: right;
 | |
|   color: #595959;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .no-result {
 | |
|   color: #B9C1D1;
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
|   margin-top: 20px;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .side-header {
 | |
|   height: 100px;
 | |
|   display: flex;
 | |
|   justify-content: space-between;
 | |
|   align-items: center;
 | |
|   padding: 30px 15px;
 | |
|   border-bottom: 1px solid rgba(185, 193, 209, 0.41);
 | |
| }
 | |
| 
 | |
| .estimate-view-page .side-header .inv-button {
 | |
|   background: #F9FBFF;
 | |
|   border: 1px solid #eaf1fb;
 | |
|   box-sizing: border-box;
 | |
|   color: #A5ACC1;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .side-content {
 | |
|   overflow-y: scroll;
 | |
|   height: 100%;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .estimate-view-page-container {
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
|   height: 75vh;
 | |
|   min-height: 0;
 | |
|   overflow: hidden;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .frame-style {
 | |
|   flex: 1 1 auto;
 | |
|   border: 1px solid #B9C1D1;
 | |
|   border-radius: 7px;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .inv-filter-fields-btn:focus,
 | |
| .estimate-view-page .inv-filter-sorting-btn:focus {
 | |
|   outline: none !important;
 | |
|   box-shadow: 0 0 0 0.09rem rgba(111, 110, 142, 0.5) !important;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .filter-container {
 | |
|   margin-left: 12px;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .filter-container .filter-items {
 | |
|   display: flex;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .filter-container .filter-items:first-child {
 | |
|   margin-top: auto;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .filter-container .inv-label {
 | |
|   font-style: normal;
 | |
|   font-weight: normal;
 | |
|   font-size: 14px;
 | |
|   line-height: 18px;
 | |
|   text-transform: capitalize;
 | |
|   color: #040405;
 | |
|   margin-bottom: 6px;
 | |
|   margin-left: 10px;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .filter-container .base-input {
 | |
|   width: 20%;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .filter-container .dropdown-container {
 | |
|   padding: 11px;
 | |
|   left: auto;
 | |
|   right: 0px;
 | |
|   width: 166px;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .filter-estimate-date .vdp-datepicker div .vdp-datepicker__clear-button {
 | |
|   margin-left: -21px;
 | |
|   margin-top: 2px;
 | |
|   font-size: 20px;
 | |
|   font-weight: 800;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .date-group {
 | |
|   display: flex;
 | |
| }
 | |
| 
 | |
| .estimate-view-page .to-text {
 | |
|   padding: 8px;
 | |
| }
 | |
| 
 | |
| @media (max-width: 768px) {
 | |
|   .estimate-view-page {
 | |
|     padding-left: 310px !important;
 | |
|   }
 | |
| 
 | |
|   .estimate-sidebar {
 | |
|     transition: 0.2s all;
 | |
|     left: 0px !important;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .expenses .collapse-button-container {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| .expenses .collapse-button-container .collapse-button {
 | |
|   width: 100%;
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
| }
 | |
| 
 | |
| .expenses .notes {
 | |
|   overflow: hidden;
 | |
|   width: 200px;
 | |
| }
 | |
| 
 | |
| .expenses .notes .note {
 | |
|   text-overflow: ellipsis;
 | |
|   white-space: nowrap;
 | |
|   overflow: hidden;
 | |
| }
 | |
| 
 | |
| @media (max-width: 480px) {
 | |
|   .expenses .page-actions {
 | |
|     position: relative;
 | |
|     transform: none;
 | |
|     display: flex;
 | |
|     flex-wrap: wrap;
 | |
|   }
 | |
| 
 | |
|   .expenses .page-actions button {
 | |
|     margin-bottom: 10px;
 | |
|   }
 | |
| 
 | |
|   .expenses .page-header {
 | |
|     margin-bottom: 5px;
 | |
|   }
 | |
| 
 | |
|   .expenses .table-actions {
 | |
|     margin-top: 0px !important;
 | |
|   }
 | |
| 
 | |
|   .expenses .header-button-container {
 | |
|     display: none;
 | |
|   }
 | |
| 
 | |
|   .expenses .collapse-button-container {
 | |
|     margin-top: 8px;
 | |
|     display: block;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (max-width: 480px) {
 | |
|   .payments .page-actions {
 | |
|     position: relative;
 | |
|     transform: none;
 | |
|     display: flex;
 | |
|     flex-wrap: wrap;
 | |
|   }
 | |
| 
 | |
|   .payments .page-actions button {
 | |
|     margin-bottom: 10px;
 | |
|   }
 | |
| 
 | |
|   .payments .page-header {
 | |
|     margin-bottom: 5px;
 | |
|   }
 | |
| 
 | |
|   .payments .table-actions {
 | |
|     margin-top: 0px !important;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .payment-create .header-button-container {
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| .payment-create .collapse-button-container {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| .payment-create .collapse-button-container .collapse-button {
 | |
|   width: 100%;
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
| }
 | |
| 
 | |
| @media (max-width: 480px) {
 | |
|   .payment-create .page-actions,
 | |
|   .payment-index .page-actions {
 | |
|     position: relative;
 | |
|     transform: none;
 | |
|     display: flex;
 | |
|     flex-wrap: wrap;
 | |
|   }
 | |
| 
 | |
|   .payment-create .page-actions button,
 | |
|   .payment-index .page-actions button {
 | |
|     margin-bottom: 10px;
 | |
|   }
 | |
| 
 | |
|   .payment-create .header-button-container,
 | |
|   .payment-index .header-button-container {
 | |
|     display: none;
 | |
|   }
 | |
| 
 | |
|   .payment-create .collapse-button-container,
 | |
|   .payment-index .collapse-button-container {
 | |
|     display: block;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .settings-container {
 | |
|   margin-top: 40px;
 | |
| }
 | |
| 
 | |
| .settings-container .settings-sidebar {
 | |
|   list-style-type: none;
 | |
|   padding: 0px;
 | |
| }
 | |
| 
 | |
| .settings-container .settings-sidebar .settings-menu-item {
 | |
|   padding: 10px 0px;
 | |
|   font-weight: 500;
 | |
|   font-size: 14px;
 | |
|   line-height: 18px;
 | |
|   color: #040405;
 | |
| }
 | |
| 
 | |
| .settings-container .settings-sidebar .settings-menu-item .setting-icon {
 | |
|   width: 25px;
 | |
|   color: #B9C1D1;
 | |
|   font-size: 16px;
 | |
| }
 | |
| 
 | |
| .settings-container .settings-sidebar .link-color {
 | |
|   color: #A5ACC1;
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
| }
 | |
| 
 | |
| .settings-container .settings-sidebar .active-setting {
 | |
|   color: #5851D8 !important;
 | |
|   cursor: pointer;
 | |
| }
 | |
| 
 | |
| .settings-container .settings-sidebar .active-setting .setting-icon {
 | |
|   color: #5851D8 !important;
 | |
| }
 | |
| 
 | |
| .settings-container .setting-main-container .setting-card {
 | |
|   padding: 30px;
 | |
|   min-height: 620px;
 | |
| }
 | |
| 
 | |
| .settings-container .setting-main-container .page-header {
 | |
|   margin: 0px;
 | |
| }
 | |
| 
 | |
| .settings-container .setting-main-container .page-header .page-title {
 | |
|   margin: 0;
 | |
|   padding-bottom: 10px;
 | |
|   font-weight: 500;
 | |
|   font-size: 17.5px;
 | |
|   line-height: 21px;
 | |
|   letter-spacing: 0.1px;
 | |
|   color: #000000;
 | |
| }
 | |
| 
 | |
| .settings-container .setting-main-container .page-header .page-sub-title {
 | |
|   max-width: 480px;
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
|   color: #A5ACC1;
 | |
|   margin-bottom: 30px;
 | |
| }
 | |
| 
 | |
| .settings-container .setting-main-container .input-label {
 | |
|   font-style: normal;
 | |
|   font-weight: 500;
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
|   color: #55547A;
 | |
| }
 | |
| 
 | |
| .settings-container .expense-category td {
 | |
|   background-color: #F9FBFF !important;
 | |
| }
 | |
| 
 | |
| .settings-container .tax-table td {
 | |
|   background-color: #F9FBFF !important;
 | |
| }
 | |
| 
 | |
| .settings-container .tax-table .compound-tax {
 | |
|   display: inline;
 | |
|   padding: 2px 8px;
 | |
|   font-size: 10px;
 | |
|   line-height: 15px;
 | |
|   background: #FED7D7;
 | |
|   color: #9B2C2C;
 | |
| }
 | |
| 
 | |
| .settings-container .add-new-tax {
 | |
|   height: 45px;
 | |
|   white-space: nowrap;
 | |
| }
 | |
| 
 | |
| .settings-container .flex-box {
 | |
|   display: flex;
 | |
| }
 | |
| 
 | |
| .settings-container .left {
 | |
|   position: relative;
 | |
|   width: 50px;
 | |
| }
 | |
| 
 | |
| .settings-container .btn-switch {
 | |
|   position: absolute;
 | |
|   top: -18px;
 | |
| }
 | |
| 
 | |
| .settings-container .box-title {
 | |
|   margin-bottom: 5px;
 | |
|   padding: 0;
 | |
|   font-size: 16px;
 | |
|   line-height: 21px;
 | |
|   color: #55547A;
 | |
| }
 | |
| 
 | |
| .settings-container .box-desc {
 | |
|   margin: 0;
 | |
|   padding: 0;
 | |
|   max-width: 480px;
 | |
|   font-size: 12px;
 | |
|   line-height: 18px;
 | |
|   color: #A5ACC1;
 | |
| }
 | |
| 
 | |
| .settings-container .notes {
 | |
|   overflow: hidden;
 | |
|   width: 200px;
 | |
| }
 | |
| 
 | |
| .settings-container .notes .note {
 | |
|   text-overflow: ellipsis;
 | |
|   white-space: nowrap;
 | |
|   overflow: hidden;
 | |
| }
 | |
| 
 | |
| @media (max-width: 480px) {
 | |
|   .settings-container .setting-main-container .setting-card {
 | |
|     overflow: scroll;
 | |
|   }
 | |
| 
 | |
|   .settings-container .setting-main-container .ml-15 {
 | |
|     margin-left: 15px;
 | |
|   }
 | |
| 
 | |
|   .settings-container .setting-main-container .page-header {
 | |
|     flex-wrap: wrap;
 | |
|   }
 | |
| 
 | |
|   .settings-container .table-component td:first-child {
 | |
|     height: auto;
 | |
|     min-height: 10px;
 | |
|     text-align: center;
 | |
|     justify-content: center;
 | |
|   }
 | |
| 
 | |
|   .settings-container .tax-table .tax-name {
 | |
|     margin-top: 21px;
 | |
|     width: 76%;
 | |
|   }
 | |
| 
 | |
|   .settings-container .expense-category .table-component__table__body tr:first-child td:nth-child(2) {
 | |
|     height: auto;
 | |
|     width: 101%;
 | |
|   }
 | |
| 
 | |
|   .settings-container .add-new-tax {
 | |
|     position: relative;
 | |
|     z-index: 1;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .wizard .logo-main {
 | |
|   height: 50px;
 | |
| }
 | |
| 
 | |
| .wizard .wizard-card {
 | |
|   padding: 30px;
 | |
|   width: 100%;
 | |
| }
 | |
| 
 | |
| .wizard .row {
 | |
|   margin-bottom: 27px;
 | |
| }
 | |
| 
 | |
| .wizard .form-content {
 | |
|   margin-top: 70px;
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
| }
 | |
| 
 | |
| .wizard .form-title {
 | |
|   font-style: normal;
 | |
|   font-weight: 600;
 | |
|   font-size: 24.5px;
 | |
|   line-height: 29px;
 | |
|   color: #000000;
 | |
| }
 | |
| 
 | |
| .wizard .form-desc {
 | |
|   font-style: normal;
 | |
|   font-weight: normal;
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
|   color: #A5ACC1;
 | |
|   width: 55%;
 | |
|   margin-bottom: 30px;
 | |
| }
 | |
| 
 | |
| .wizard .form-label {
 | |
|   font-style: normal;
 | |
|   font-weight: 500;
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
| }
 | |
| 
 | |
| .wizard .step-indicator {
 | |
|   padding-top: 40px;
 | |
|   display: flex;
 | |
|   flex-direction: column;
 | |
|   justify-content: space-between;
 | |
|   align-items: center;
 | |
|   height: 120px;
 | |
| }
 | |
| 
 | |
| .wizard .indicator-line {
 | |
|   border: 5px solid #EBF1FA;
 | |
|   border-radius: 5px;
 | |
|   box-sizing: border-box;
 | |
|   width: 520px;
 | |
|   position: relative;
 | |
|   display: flex;
 | |
|   justify-content: space-around;
 | |
|   margin-top: 60px;
 | |
| }
 | |
| 
 | |
| .wizard .indicator-line .center {
 | |
|   position: absolute;
 | |
|   top: -11px;
 | |
|   width: 105%;
 | |
|   display: flex;
 | |
|   justify-content: space-between;
 | |
| }
 | |
| 
 | |
| .wizard .indicator-line .steps {
 | |
|   border-radius: 50%;
 | |
|   float: left;
 | |
|   border: 5px solid #EBF1FA;
 | |
|   padding: 0px 5px;
 | |
|   height: 21px;
 | |
|   width: 21px;
 | |
|   background: #EBF1FA;
 | |
| }
 | |
| 
 | |
| .wizard .indicator-line .steps.active {
 | |
|   border: 5px solid #5851d8;
 | |
|   background: #ffffff;
 | |
|   border-radius: 50%;
 | |
|   height: 21px;
 | |
|   width: 21px;
 | |
| }
 | |
| 
 | |
| .wizard .indicator-line .steps.completed {
 | |
|   padding: 0px;
 | |
|   background: #5851d8;
 | |
|   border: 5px solid #5851d8;
 | |
|   border-radius: 50%;
 | |
|   height: 21px;
 | |
|   width: 21px;
 | |
| }
 | |
| 
 | |
| .wizard .indicator-line .steps.completed .icon-check {
 | |
|   font-style: normal;
 | |
|   font-weight: 900;
 | |
|   font-size: 12px;
 | |
|   /* line-height: 21px; */
 | |
|   color: #ffffff;
 | |
|   text-align: center;
 | |
|   display: flex;
 | |
|   align-items: center;
 | |
|   justify-content: center;
 | |
|   height: 100%;
 | |
| }
 | |
| 
 | |
| .wizard .upload-logo {
 | |
|   position: absolute;
 | |
|   right: 60px;
 | |
| }
 | |
| 
 | |
| .wizard .upload-logo .preview-logo {
 | |
|   height: 50px;
 | |
|   max-width: 300px;
 | |
|   padding: 10px;
 | |
|   border: 4px solid #EBF1FA;
 | |
| }
 | |
| 
 | |
| .wizard .list-items {
 | |
|   display: flex;
 | |
|   justify-content: space-between;
 | |
|   margin-bottom: 0;
 | |
|   border: 1px solid #EBF1FA;
 | |
| }
 | |
| 
 | |
| .wizard .list-items .left-item,
 | |
| .wizard .list-items .right-item {
 | |
|   padding: 12px 10px;
 | |
|   margin-bottom: 0;
 | |
| }
 | |
| 
 | |
| .wizard .list-items .right-item {
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
|   align-items: center;
 | |
| }
 | |
| 
 | |
| .wizard .verified,
 | |
| .wizard .not-verified {
 | |
|   height: 15px;
 | |
|   width: 15px;
 | |
|   background-color: #00C99C;
 | |
|   display: inline-block;
 | |
|   margin: 0 10px;
 | |
|   border-radius: 50%;
 | |
| }
 | |
| 
 | |
| .wizard .not-verified {
 | |
|   background-color: #FB7178;
 | |
| }
 | |
| 
 | |
| .reports .reports-tab-container {
 | |
|   margin-top: 25px;
 | |
| }
 | |
| 
 | |
| .reports .reports-frame-style {
 | |
|   height: 100vh;
 | |
|   width: 100%;
 | |
|   border: 1px solid #B9C1D1;
 | |
|   border-radius: 7px;
 | |
| }
 | |
| 
 | |
| .reports .report-button {
 | |
|   width: auto;
 | |
| }
 | |
| 
 | |
| .reports .report-view-button {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| .reports .report-fields-container {
 | |
|   margin-top: 25px;
 | |
| }
 | |
| 
 | |
| .reports .report-field-container {
 | |
|   margin-top: auto;
 | |
| }
 | |
| 
 | |
| .reports .report-submit-button-container {
 | |
|   margin-top: 32px;
 | |
| }
 | |
| 
 | |
| .reports .report-label {
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
|   color: #55547A;
 | |
| }
 | |
| 
 | |
| .reports .report-label {
 | |
|   font-weight: 500;
 | |
|   color: #55547A;
 | |
|   font-size: 14px;
 | |
| }
 | |
| 
 | |
| @media (max-width: 480px) {
 | |
|   .reports .reports-tab {
 | |
|     padding: 10px 19px;
 | |
|   }
 | |
| 
 | |
|   .reports .reports-frame-style {
 | |
|     display: none;
 | |
|   }
 | |
| 
 | |
|   .reports .report-view-button {
 | |
|     display: flex;
 | |
|     justify-content: center;
 | |
|   }
 | |
| 
 | |
|   .reports .report-button {
 | |
|     width: 100%;
 | |
|     display: flex;
 | |
|     justify-content: center;
 | |
|   }
 | |
| 
 | |
|   .reports .report-fields-container {
 | |
|     margin-top: 0px;
 | |
|   }
 | |
| 
 | |
|   .reports .report-field-container {
 | |
|     margin-top: 20px;
 | |
|   }
 | |
| 
 | |
|   .reports .tabs .tab {
 | |
|     padding: 10px 15px;
 | |
|   }
 | |
| 
 | |
|   .reports .tabs .tab .tab-link {
 | |
|     padding: 10px 17px !important;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .customer-create .section-title {
 | |
|   font-style: normal;
 | |
|   font-weight: 500;
 | |
|   font-size: 17.5px;
 | |
|   line-height: 21px;
 | |
|   letter-spacing: 0.1px;
 | |
|   color: #000000;
 | |
| }
 | |
| 
 | |
| .customer-create .form-label {
 | |
|   font-style: normal;
 | |
|   font-weight: 500;
 | |
|   font-size: 14px;
 | |
|   line-height: 21px;
 | |
|   color: #55547A;
 | |
| }
 | |
| 
 | |
| .customer-create .customer-card {
 | |
|   border: 1px solid #EBF1FA;
 | |
|   padding: 10px;
 | |
| }
 | |
| 
 | |
| .customer-create .same-address-checkbox-container {
 | |
|   display: flex;
 | |
|   justify-content: flex-end;
 | |
|   padding-left: 12px;
 | |
|   margin-bottom: 1.5rem;
 | |
|   align-items: center;
 | |
|   justify-content: flex-end;
 | |
| }
 | |
| 
 | |
| .customer-create hr {
 | |
|   margin-bottom: 1.8rem;
 | |
|   border: 1px solid #EBF1FA;
 | |
| }
 | |
| 
 | |
| .customer-create .header-button-container {
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| .customer-create .collapse-button-container {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| .customer-create .collapse-button-container .collapse-button {
 | |
|   width: 100%;
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
| }
 | |
| 
 | |
| @media (max-width: 480px) {
 | |
|   .customer-index .page-actions {
 | |
|     position: relative;
 | |
|     transform: none;
 | |
|     display: flex;
 | |
|     flex-wrap: wrap;
 | |
|   }
 | |
| 
 | |
|   .customer-index .page-actions button {
 | |
|     margin-bottom: 10px;
 | |
|   }
 | |
| 
 | |
|   .customer-create .page-actions {
 | |
|     position: relative;
 | |
|     transform: none;
 | |
|     display: flex;
 | |
|     flex-wrap: wrap;
 | |
|   }
 | |
| 
 | |
|   .customer-create .page-actions button {
 | |
|     margin-bottom: 10px;
 | |
|   }
 | |
| 
 | |
|   .customer-create .same-address-checkbox-container {
 | |
|     display: flex;
 | |
|     justify-content: flex-start;
 | |
|     padding-left: 15px;
 | |
|     margin-bottom: 0rem;
 | |
|   }
 | |
| 
 | |
|   .customer-create hr {
 | |
|     margin-bottom: 1.2rem;
 | |
|     border: 1px solid #EBF1FA;
 | |
|   }
 | |
| 
 | |
|   .customer-create .section-title {
 | |
|     padding: 15px;
 | |
|   }
 | |
| 
 | |
|   .customer-create .collapse-button-container {
 | |
|     display: block;
 | |
|   }
 | |
| 
 | |
|   .customer-create .header-button-container {
 | |
|     display: none;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @media (max-width: 480px) {
 | |
|   .payments .page-actions {
 | |
|     position: relative;
 | |
|     transform: none;
 | |
|     display: flex;
 | |
|     flex-wrap: wrap;
 | |
|   }
 | |
| 
 | |
|   .payments .page-actions button {
 | |
|     margin-bottom: 10px;
 | |
|   }
 | |
| 
 | |
|   .payments .page-header {
 | |
|     margin-bottom: 5px;
 | |
|   }
 | |
| 
 | |
|   .payments .table-actions {
 | |
|     margin-top: 0px !important;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .payment-create .header-button-container {
 | |
|   display: block;
 | |
| }
 | |
| 
 | |
| .payment-create .collapse-button-container {
 | |
|   display: none;
 | |
| }
 | |
| 
 | |
| .payment-create .collapse-button-container .collapse-button {
 | |
|   width: 100%;
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
| }
 | |
| 
 | |
| @media (max-width: 480px) {
 | |
|   .payment-create .page-actions,
 | |
|   .payment-index .page-actions {
 | |
|     position: relative;
 | |
|     transform: none;
 | |
|     display: flex;
 | |
|     flex-wrap: wrap;
 | |
|   }
 | |
| 
 | |
|   .payment-create .page-actions button,
 | |
|   .payment-index .page-actions button {
 | |
|     margin-bottom: 10px;
 | |
|   }
 | |
| 
 | |
|   .payment-create .header-button-container,
 | |
|   .payment-index .header-button-container {
 | |
|     display: none;
 | |
|   }
 | |
| 
 | |
|   .payment-create .collapse-button-container,
 | |
|   .payment-index .collapse-button-container {
 | |
|     display: block;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .items .table-loader {
 | |
|   padding: 25px 0px;
 | |
|   display: flex;
 | |
|   justify-content: center;
 | |
|   align-items: center;
 | |
| }
 | |
| 
 | |
| @media (max-width: 480px) {
 | |
|   .items .page-actions {
 | |
|     position: relative;
 | |
|     transform: none;
 | |
|     display: flex;
 | |
|     flex-wrap: wrap;
 | |
|   }
 | |
| 
 | |
|   .items .page-actions button {
 | |
|     margin-bottom: 10px;
 | |
|   }
 | |
| 
 | |
|   .items .page-header {
 | |
|     margin-bottom: 5px;
 | |
|   }
 | |
| 
 | |
|   .items .table-actions {
 | |
|     margin-top: 0px !important;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .item-create .collapse-button {
 | |
|   width: auto;
 | |
| }
 | |
| 
 | |
| @media (max-width: 480px) {
 | |
|   .item-create .collapse-button {
 | |
|     width: 100%;
 | |
|     display: flex;
 | |
|     justify-content: center;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .inv-status-due {
 | |
|   background: #FED7D7;
 | |
|   font-size: 13px;
 | |
|   color: #9B2C2C;
 | |
|   padding: 5px 10px;
 | |
| }
 | |
| 
 | |
| .inv-status-paid {
 | |
|   background: #D5EED0;
 | |
|   font-size: 13px;
 | |
|   color: #354930;
 | |
|   padding: 5px 10px;
 | |
| }
 | |
| 
 | |
| .inv-status-unpaid {
 | |
|   background: rgba(246, 208, 154, 0.4);
 | |
|   font-size: 13px;
 | |
|   color: #A96E1A;
 | |
|   padding: 5px 10px;
 | |
| }
 | |
| 
 | |
| .inv-status-sent {
 | |
|   background: rgba(246, 208, 154, 0.4);
 | |
|   font-size: 13px;
 | |
|   color: #A96E1A;
 | |
|   padding: 5px 10px;
 | |
| }
 | |
| 
 | |
| .inv-status-viewed {
 | |
|   background: #C9E3EC;
 | |
|   font-size: 13px;
 | |
|   color: #1E576C;
 | |
|   padding: 5px 10px;
 | |
| }
 | |
| 
 | |
| .inv-status-completed {
 | |
|   background: #D5EED0;
 | |
|   font-size: 13px;
 | |
|   color: #354930;
 | |
|   padding: 5px 10px;
 | |
| }
 | |
| 
 | |
| .inv-status-pending {
 | |
|   background: #FED7D7;
 | |
|   font-size: 13px;
 | |
|   color: #9B2C2C;
 | |
|   padding: 5px 10px;
 | |
| }
 | |
| 
 | |
| .inv-status-partially_paid {
 | |
|   background: #E1E0EA;
 | |
|   font-size: 13px;
 | |
|   color: #312F57;
 | |
|   padding: 5px 10px;
 | |
| }
 | |
| 
 | |
| .inv-status-draft {
 | |
|   background: #F8EDCB;
 | |
|   font-size: 13px;
 | |
|   color: #6C432E;
 | |
|   padding: 5px 10px;
 | |
| }
 | |
| 
 | |
| .est-status-expired {
 | |
|   background: #FED7D7;
 | |
|   font-size: 13px;
 | |
|   color: #9B2C2C;
 | |
|   padding: 5px 10px;
 | |
| }
 | |
| 
 | |
| .est-status-accepted {
 | |
|   background: #D5EED0;
 | |
|   font-size: 13px;
 | |
|   color: #354930;
 | |
|   padding: 5px 10px;
 | |
| }
 | |
| 
 | |
| .est-status-sent {
 | |
|   background: rgba(246, 208, 154, 0.4);
 | |
|   font-size: 13px;
 | |
|   color: #A96E1A;
 | |
|   padding: 5px 10px;
 | |
| }
 | |
| 
 | |
| .est-status-viewed {
 | |
|   background: #C9E3EC;
 | |
|   font-size: 13px;
 | |
|   color: #1E576C;
 | |
|   padding: 5px 10px;
 | |
| }
 | |
| 
 | |
| .est-status-pending {
 | |
|   background: #FED7D7;
 | |
|   font-size: 13px;
 | |
|   color: #9B2C2C;
 | |
|   padding: 5px 10px;
 | |
| }
 | |
| 
 | |
| .est-status-rejected {
 | |
|   background: #E1E0EA;
 | |
|   font-size: 13px;
 | |
|   color: #312F57;
 | |
|   padding: 5px 10px;
 | |
| }
 | |
| 
 | |
| .est-status-draft {
 | |
|   background: #F8EDCB;
 | |
|   font-size: 13px;
 | |
|   color: #6C432E;
 | |
|   padding: 5px 10px;
 | |
| }
 | |
| 
 | |
| 
 | |
| /*# sourceMappingURL=laraspace.css.map*/ |